dwww Home | Show directory contents | Find package

# Generated by Makefile. Do not edit.

commit d303d9f36064c5dcf523c5a545a6542e635bbf3d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 14 12:52:56 2012 +0100

    3.6.3

 NEWS         | 20 +++++++++++++++++---
 configure.ac |  2 +-
 2 files changed, 18 insertions(+), 4 deletions(-)

commit 05f19e36a4b0c7516858126250a8d1a5af46b9a0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 14 13:07:23 2012 +0100

    build: Fix distcheck
    
    Left-over files from update-icon-cache shouldn't be created
    in the first place when running distcheck.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 001156637a858969eee45e868a03a294c559093b
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Sat Nov 10 18:48:25 2012 +0100

    bluetooth: Align the device list with the all settings button
    
    Fixes: https://bugzilla.gnome.org/688055

 panels/bluetooth/bluetooth.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a22f0605c5099079828d0cffbdf6698fa1fe8f0
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Sat Nov 10 18:42:01 2012 +0100

    online-accounts: Align the accounts list with the all settings button
    
    Fixes: https://bugzilla.gnome.org/668312

 panels/online-accounts/online-accounts.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b23aef0aef77c3844c6a665713c68f96b20fb628
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Fri Nov 9 19:12:46 2012 +0100

    online-accounts: Don't preselect the first item when adding an account
    
    Fixes: https://bugzilla.gnome.org/687875

 panels/online-accounts/cc-online-accounts-add-account-dialog.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 725aecc9e38c8a817aa62d676ced466aeeeeb8f1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 9 11:32:52 2012 +0100

    network: Avoid type clashes with the Bluetooth panel
    
    Done with:
    sed -i -e 's/RfkillGlib/CcRfkillGlib/g'         \
            -e 's/RFKILL_GLIB/CC_RFKILL_GLIB/g' \
            -e 's/rfkill_glib/cc_rfkill_glib/g' \
            -e 's/RFKILL_TYPE_GLIB/CC_RFKILL_TYPE_GLIB/g' \
            rfkill-glib.[ch] cc-network-panel.c
    
    This would need to be done when we reset the copy/paste from
    gnome-bluetooth.

 panels/network/cc-network-panel.c | 10 ++++----
 panels/network/rfkill-glib.c      | 48 +++++++++++++++++++--------------------
 panels/network/rfkill-glib.h      | 44 +++++++++++++++++------------------
 3 files changed, 51 insertions(+), 51 deletions(-)

commit 7aef2fb307a9ff9c32fbe9dc6bc36e1eef5e72ab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 9 11:16:07 2012 +0100

    network: Make sure Airplane mode switch everything off
    
    And not just wireless. We need to use /dev/rfkill directly
    to make sure that all the devices (3G, GPS, Bluetooth, etc.) get
    switched off correctly when airplane mode is on.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675778

 panels/network/Makefile.am        |   5 +-
 panels/network/cc-network-panel.c |  94 ++++++++++--
 panels/network/rfkill-glib.c      | 299 ++++++++++++++++++++++++++++++++++++++
 panels/network/rfkill-glib.h      |  65 +++++++++
 panels/network/rfkill.h           | 107 ++++++++++++++
 5 files changed, 560 insertions(+), 10 deletions(-)

commit 627238003890e18069b90e8e2935f9548bf96f98
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 9 10:20:29 2012 +0100

    network: Make sure flight mode is always visible
    
    Because it's not just about disabling the network, it needs
    to disable a host of other wireless devices, and those need to
    be blocked even if you end up plugging them into your computer.

 panels/network/cc-network-panel.c | 54 +--------------------------------------
 1 file changed, 1 insertion(+), 53 deletions(-)

commit c8837d2650c8558492e8f3aeb2362c7a7118c517
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:52:28 2012 +0100

    bluetooth: Use spinner when connecting
    
    Rather than having an unusable switch (which wouldn't represent
    the real state of the connection), show a spinner until the
    connection is finished doing.

 panels/bluetooth/bluetooth.ui         |  2 +-
 panels/bluetooth/cc-bluetooth-panel.c | 30 ++++++++++++++++++++++++++----
 2 files changed, 27 insertions(+), 5 deletions(-)

commit f299846ba76a8c2d712414b9380dc4adfc1a545a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:36:33 2012 +0100

    bluetooth: Simplify ->finalize

 panels/bluetooth/cc-bluetooth-panel.c | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

commit d309183dd352cef5e075070caaac8ac050b4d11d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:31:07 2012 +0100

    bluetooth: Fix main switch acting bizarrely
    
    The only time we were looking at the powered state of the adapter
    is when the killswitch state was changing. Except that we're fast enough
    that bluetoothd didn't have time to power up the adapter, so its
    state was unpowered, which we would set the switch to.
    
    The switch was off, the adapter was on.
    
    We fix that problem by tracking the powered state of the adapter
    separately.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=841881

 panels/bluetooth/cc-bluetooth-panel.c | 32 +++++++++++++++++++++++++-------
 1 file changed, 25 insertions(+), 7 deletions(-)

commit 68917676a077ad36ae3c7570afe3789bdd6fea65
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:11:47 2012 +0100

    bluetooth: Add UI code for a spinner during the connection

 panels/bluetooth/bluetooth.ui | 45 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 40 insertions(+), 5 deletions(-)

commit 2dc30a08d5a4844c1f9028356c44440d2be62eaf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:00:03 2012 +0100

    bluetooth: Remove unused variable

 panels/bluetooth/cc-bluetooth-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit f9f6e7525e55059361ca15dbda7826105eb3fdbc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 17:56:26 2012 +0100

    bluetooth: Avoid possible loops when Connection fails
    
    If we switch "Connection" on via the switch, the disabling on failure
    will create a loop where it always tries to connect again. Break that
    loop.

 panels/bluetooth/cc-bluetooth-panel.c | 46 ++++++++++++++++++++++++++++++++---
 1 file changed, 42 insertions(+), 4 deletions(-)

commit 80c1f5a79da01091f93eb48ed686192781852efe
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Oct 18 11:35:14 2012 +0200

    printers: Resolve symlink when passing a PPD to CUPS
    
    root is not able to resolve symlinks in /tmp/ created by ordinary users
    because of a new policy and PPDs got from CUPS are symlinks to /etc/cups/ppd/*
    placed to /tmp/.
    Since we need to pass PPD file of original printer to CUPS when renaming
    a printer we resolve given symlink and pass original filename to the CUPS.

 panels/printers/pp-utils.c | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

commit 8f3733dfca5ceb1d9862dbe2aa6137a57277dee6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 09:02:38 2012 +0100

    NEWS: Prepare for release
    
    Last updated item is:
    d2e70f2d45d5460296d027c44e0e3aa86078329c

 NEWS | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit d2e70f2d45d5460296d027c44e0e3aa86078329c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 5 09:35:13 2012 +0100

    region: Fix possible crasher on startup
    
    When the X11Variant localed property was empty, variants[i] was
    being checked even though only variants[0] was defined (an empty
    string).
    
    ==17035== Invalid read of size 8
    ==17035==    at 0x26B9529A: on_localed_properties_changed (gnome-region-panel-system.c:339)
    ==17035==    by 0x26B95546: localed_proxy_ready (gnome-region-panel-system.c:381)
    ==17035==    by 0x8CA2589: g_simple_async_result_complete (gsimpleasyncresult.c:775)
    ==17035==    by 0x8CA25BB: complete_in_idle_cb (gsimpleasyncresult.c:787)
    ==17035==    by 0x94B8ED4: g_idle_dispatch (gmain.c:4806)
    ==17035==    by 0x94B6890: g_main_dispatch (gmain.c:2715)
    ==17035==    by 0x94B7440: g_main_context_dispatch (gmain.c:3219)
    ==17035==    by 0x94B7623: g_main_context_iterate (gmain.c:3290)
    ==17035==    by 0x94B76E7: g_main_context_iteration (gmain.c:3351)
    ==17035==    by 0x8CDB1A1: g_application_run (gapplication.c:1620)
    ==17035==    by 0x4083C6: main (control-center.c:256)
    ==17035==  Address 0x13b92e18 is 0 bytes after a block of size 8 alloc'd
    ==17035==    at 0x4A0883C: malloc (vg_replace_malloc.c:270)
    ==17035==    by 0x94BE97B: standard_malloc (gmem.c:85)
    ==17035==    by 0x94BEA04: g_malloc (gmem.c:159)
    ==17035==    by 0x94BED2F: g_malloc_n (gmem.c:400)
    ==17035==    by 0x94DB26A: g_strsplit (gstrfuncs.c:2281)
    ==17035==    by 0x26B95169: on_localed_properties_changed (gnome-region-panel-system.c:319)
    ==17035==    by 0x26B95546: localed_proxy_ready (gnome-region-panel-system.c:381)
    ==17035==    by 0x8CA2589: g_simple_async_result_complete (gsimpleasyncresult.c:775)
    ==17035==    by 0x8CA25BB: complete_in_idle_cb (gsimpleasyncresult.c:787)
    ==17035==    by 0x94B8ED4: g_idle_dispatch (gmain.c:4806)
    ==17035==    by 0x94B6890: g_main_dispatch (gmain.c:2715)
    ==17035==    by 0x94B7440: g_main_context_dispatch (gmain.c:3219)

 panels/region/gnome-region-panel-system.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

commit 28bcf96598ed63a50235f4908d67a10d5c22be85
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 5 09:34:37 2012 +0100

    common: Quiet valgrind when checking lang codeset

 panels/common/gdm-languages.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a9718601b62ef411e384a0eb332c10dd7accf97f
Author: Pavol Klačanský <pavol@klacansky.com>
Date:   Sun Nov 4 11:27:58 2012 +0100

    Updated slovak translation

 po/sk.po | 7268 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 4190 insertions(+), 3078 deletions(-)

commit 59cd59945102e783557e81d872cd95c17eba1b38
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Fri Nov 2 21:04:11 2012 -0400

    keyboard: Point help to more specific page
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687486

 panels/keyboard/cc-keyboard-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c251e5962b510ca3b2869f4835078271e0460144
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Fri Nov 2 20:50:42 2012 -0400

    shell: Add F1 accelerator to show help
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687485

 shell/control-center.c | 3 +++
 1 file changed, 3 insertions(+)

commit 07b76034f8cb26acf5d172cf5e40975b975c1f9b
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Nov 3 01:34:33 2012 +0900

    Updated Korean translation

 po/ko.po | 151 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 74 insertions(+), 77 deletions(-)

commit ad25b22e16bf2dacf0a157d0bfcb3c8d591d9055
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Wed Oct 31 06:46:28 2012 -0400

    Show Printers & Region panels in Unity but hide Background
    
    Ubuntu plans to fork a separate Appearance panel this cycle so
    that Gnomebuntu can use the GNOME Background panel.
    
    I believe Ubuntu will try to use the Printers and Region & Language
    panels instead of system-config-printer & language-selector
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687258

 panels/background/gnome-background-panel.desktop.in.in | 2 +-
 panels/printers/gnome-printers-panel.desktop.in.in     | 2 +-
 panels/region/gnome-region-panel.desktop.in.in         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit bf820b005f3ca9af74e26b7ef615ce37734885b0
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Mon Oct 29 12:07:21 2012 +0530

    Updated gujarati file

 po/gu.po | 43 +++++++++++++++++++++++++++----------------
 1 file changed, 27 insertions(+), 16 deletions(-)

commit 1302e9c43cbbdd6ccd4384b71653b222229ec200
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Fri Oct 26 13:23:23 2012 -0600

    Updated Irish translation.

 po/ga.po | 6440 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3770 insertions(+), 2670 deletions(-)

commit 32bfab1e526166f03f79132723cd98b2184fb0e8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 22 16:14:59 2012 +0200

    3.6.2

 NEWS         | 21 +++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 22 insertions(+), 1 deletion(-)

commit e7722d9eea8f77334954c20b33e0234e16aaccb4
Author: Ondrej Holy <oholy@redhat.com>
Date:   Fri Oct 19 10:12:58 2012 +0200

    user-accounts: fix wrong sensitivity of the autologin combo
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686383

 panels/user-accounts/um-user-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 600ad0176bf4b20eaef8cbe78ecfee85c0ee0d19
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Fri Oct 19 15:41:43 2012 +0200

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 61 +++++++++++++++++++++++++++++++++--------
 panels/wacom/gsd-wacom-device.h |  2 ++
 2 files changed, 52 insertions(+), 11 deletions(-)

commit b9b2f6a91fa45bcd387d468daf5d48c8343aa8b9
Author: Stef Walter <stefw@gnome.org>
Date:   Thu Oct 18 18:37:24 2012 +0200

    user-accounts: Don't have domains twice in the drop down
    
    If we discover domains again, don't add them twice to the drop
    down and confuse the user. This is especially important if we
    receive two realms from realmd for the same domain for use with
    different clients (ie: sssd/winbind). We only want to offer the
    first choice
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686397

 panels/user-accounts/um-account-dialog.c | 34 ++++++++++++++++++++++++++++----
 1 file changed, 30 insertions(+), 4 deletions(-)

commit c16278d484d4d2f43da29b24dc4e20ddc3f8456c
Author: Stef Walter <stefw@gnome.org>
Date:   Thu Oct 18 18:40:00 2012 +0200

    user-accounts: Set timeouts on all realmd interface proxies
    
    Without this, we can get timeout problems during joining a domain.
    
    This is a regression from when we refactored UmRealmManager to
    use GDBusObjectManagerClient. Make sure to call
    g_dbus_proxy_set_default_timeout() on all realmd interface
    proxies whenever they show up.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686390

 panels/user-accounts/um-realm-manager.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

commit 24421985d74dac4f1531e66a2b8a86ae783efbb7
Author: Stef Walter <stefw@gnome.org>
Date:   Fri Oct 19 10:55:02 2012 +0200

    background: Fix compilation error
    
    Related to: https://bugzilla.redhat.com/show_bug.cgi?id=866973

 panels/background/cc-background-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d5af7612603a57983d06a277e9ac57709563c140
Author: Stef Walter <stefw@gnome.org>
Date:   Sat Oct 6 12:17:21 2012 -0400

    user-accounts: Remove the realmd version check
    
    The idea is that the realmd DBus API will remain stable
    from now on, so remove the version check. It was broken anyway.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685616

 panels/user-accounts/um-realm-manager.c | 167 +++++++++++++++++---------------
 1 file changed, 91 insertions(+), 76 deletions(-)

commit 32937d2b27fd4816cec88c20b4d5c88518c3af8a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Oct 16 14:36:16 2012 -0400

    network: Fix 8021x connections
    
    We were always throwing away requests to connect to 8021x
    APs, due to missing braces.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686244

 panels/network/cc-network-panel.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit e3a42c6ba87e4fe28479dd3bd65cdde22208f199
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 17 09:38:05 2012 +0200

    background: Fix crash when exiting panel too quickly
    
    The background capture would still be on-going, and we would
    crash poking at the now gone panel.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=866973

 panels/background/cc-background-panel.c | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

commit 38b7e045f1d439ea81429d5b414008960575c62b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 17 09:37:10 2012 +0200

    background: Handle copy cancellation correctly
    
    Make sure to avoid poking at the panel when the file copy
    is cancelled.

 panels/background/cc-background-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 8a27842d73ac265d56e22c8146d102967ded049e
Author: Andreas Nesdal <gedemiti@gmail.com>
Date:   Tue Oct 16 20:58:10 2012 +0200

    Updated Norwegian Nynorsk translation (sync with Ubuntu)

 po/nn.po | 7646 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 4264 insertions(+), 3382 deletions(-)

commit 78257521ed083529668f3bedf858441c5aaf17bf
Author: Stef Walter <stefw@gnome.org>
Date:   Sat Oct 6 13:01:03 2012 -0400

    user-accounts: Recognize that some kerberos domains cannot be joined
    
    realmd supports discovering generic kerberos domains, which cannot
    be joined.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685618

 panels/user-accounts/um-realm-manager.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit e581b12786e9424ea1dddc62787f5df823041b94
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Mon Oct 15 17:19:09 2012 +0530

    Updated gujarati file

 po/gu.po | 355 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 140 insertions(+), 215 deletions(-)

commit cf065fb8f420c2d6cda63838f60af7b577165dc7
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Mon Oct 15 06:35:16 2012 +0200

    Updated Danish translation

 po/da.po | 328 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 164 insertions(+), 164 deletions(-)

commit 242f2b268a43ee6c1db6a9aca4d7d1cf837ae627
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 13 12:33:43 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 702 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 330 insertions(+), 372 deletions(-)

commit bb94a0166a6f764efd4b8ec0718f21254498d9ad
Author: Arash Mousavi <mousavi.arash@gmail.com>
Date:   Sat Oct 13 10:17:00 2012 +0330

    L10N: Updated Persian translation

 po/fa.po | 729 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 293 insertions(+), 436 deletions(-)

commit 5fc63896eed325a297fef2a1daff4e6d755bfdd6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 11 13:13:32 2012 +0200

    screen: Don't print a warning with no backlight device

 panels/screen/cc-screen-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit fc7c41f4293a1d3e37c45eb6f2d95cd80dd52edc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 12 18:22:28 2012 +0100

    screen: Avoid accessing destroyed panel
    
    When we cancel the Brightness calls because the panel is getting
    destroyed, we shouldn't try to access panel widgets.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677963

 panels/screen/cc-screen-panel.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit d4f24d6608a056da3addb51fbd0d80a373e66404
Author: Stef Walter <stefw@gnome.org>
Date:   Sat Oct 6 12:27:34 2012 -0400

    user-accounts: Complete discover on failure
    
    When realmd discovery doesn't return a domain, complete the discovery
    appropriately. Previously we would never complete.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685617

 panels/user-accounts/um-realm-manager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e5b58ed51dbd19005d096aa48011d432d90f8dba
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Oct 8 23:33:54 2012 +0200

    Remove excess colon from Hungarian translation

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b8df7443f53e99249cb55d31b75fde755783ea08
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Oct 8 22:57:14 2012 +0200

    Use better wording in Hungarian translation

 po/hu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6d8ac68f7ee0fe69f70056841799a12dd70ac6eb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 8 18:55:14 2012 +0200

    3.6.1

 NEWS         | 44 ++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 45 insertions(+), 1 deletion(-)

commit aef03317e81b358d0fc0c26e58bcad8334d11a17
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 8 18:18:49 2012 +0200

    background: Fix distcheck

 panels/background/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f0091c2c9c313ef360d022c2786bf512b3bcb7a
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Oct 8 17:40:26 2012 +0200

    region: Add the Marathi phonetic input source to the white list
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685721

 panels/region/gnome-region-panel-input.c | 1 +
 1 file changed, 1 insertion(+)

commit a9ba8f9bc4197ce53b58a29ccb74dac747d9598d
Author: Wouter Bolsterlee <uws@xs4all.nl>
Date:   Sat Oct 6 15:07:52 2012 +0200

    Updated Dutch translation

 po/nl.po | 3597 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2305 insertions(+), 1292 deletions(-)

commit 841ce5ace6b2699546b9ac37806ec09bbb093819
Author: Khoem Sokhem <khoemsokhem@khmeros.info>
Date:   Wed Oct 3 17:41:03 2012 +0200

    [l10n] Added Khmer translation

 po/LINGUAS |    1 +
 po/km.po   | 5784 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 5785 insertions(+)

commit c35850649175044aa8d93e217d48884f49ac37fb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 3 14:49:23 2012 +0200

    network: Verify command-line arguments
    
    To avoid invalid bug reports ;)

 panels/network/cc-network-panel.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit ea0f359e4df4cdeb07c82e88469274002819852b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Sep 30 21:14:36 2012 -0400

    network: Use a regular button for 'Connect to Hidden'
    
    The treeview is not really up to this level of custom UI.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684819

 panels/network/net-device-wifi.c | 44 ++++++--------------------------------
 panels/network/network-wifi.ui   | 46 ++++++++++++++++++++++++++++++++--------
 2 files changed, 44 insertions(+), 46 deletions(-)

commit 3e32d858a1880fb0abc428b10c125cfe180d7c77
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Oct 1 16:42:22 2012 +0200

    region: Add inscript2 m17n keymaps to the whitelist
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684854

 panels/region/gnome-region-panel-input.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

commit c7677010a0d4f5e9fdfc82b216b866d5b51dca75
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sat Sep 29 19:47:38 2012 +0200

    region: Repopulate input sources chooser when IBus becomes available
    
    Otherwise the IBus sources wouldn't be available in the chooser until
    it was closed and re-opened.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684874

 panels/region/gnome-region-panel-input.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit fb6c89f45a3c73d34de4cf0c8d381bce301176f1
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Thu Sep 27 17:46:40 2012 +0900

    region: build IBus setup app filename only from the engine prefix
    
    There are 84 m17n engines in the whitelist and they all use
    ibus-setup-m17n.  To reduce the number of .desktop files, this
    patch uses the prefix before the first ":" to construct the .desktop
    filename and set IBUS_ENGINE_NAME envvar to let the setup app know
    the actual engine ID.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684935

 panels/region/gnome-region-panel-input.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 42d835b3ce92188fc9f01d0461b53b6f44f67160
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Oct 2 15:11:59 2012 +0200

    network: Further refinements to out-of-range avoidance

 panels/network/net-device-wifi.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit 75086eb149079ae9f1818774d8b3f73ecab62120
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 2 14:55:59 2012 +0200

    network: Fix WPA Enterprise connection not working
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685207

 panels/network/net-device-wifi.c | 52 +++++++++++++++++++++++++++++++++++-----
 1 file changed, 46 insertions(+), 6 deletions(-)

commit 7e708ae52c48a1b1dcc240f0007c5066cec0a19b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 2 12:33:15 2012 +0200

    network: Scope correctly the connection variable

 panels/network/net-device-wifi.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit e7e02390b6b4506a002f48b5d20b40d3270d0902
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 2 12:28:58 2012 +0200

    network: Add debug for connection activation failures

 panels/network/net-device-wifi.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 6264fea2fe06d3ee06279b1aba14109d149fcdcf
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 29 19:35:23 2012 -0400

    Don't try to activate out-of-range connections
    
    It is not going to work...
    https://bugzilla.gnome.org/show_bug.cgi?id=684824

 panels/network/net-device-wifi.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 446f7cf0272f5ba88790c012cde193c393246f07
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 2 08:57:38 2012 +0200

    network: Fix parenting of the broadband wizard
    
    By showing the wizard in an idle by default, or waiting until
    the shell is visible.

 panels/network/network-dialogs.c | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

commit aceaf347a93f3a8dd2a53a9a8457c6d53a1c5100
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 1 23:05:41 2012 +0200

    network: Show the network dialogues after showing the shell
    
    To avoid confusing the hell out of Mutter, we should show the
    parented dialogue _after_ showing the parent itself.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684927

 panels/network/network-dialogs.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 3c973b587deec0570f743af83699c567ee15eea1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 1 23:05:29 2012 +0200

    network: Add debug for argv handling

 panels/network/cc-network-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit d941ca15af9799efbba55bc62ee5a4f1a0668dae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 1 23:03:54 2012 +0200

    network: Fix possible incorrect exit of the loop
    
    A bug fix for the Proxy page handling

 panels/network/cc-network-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 813843cf85bffd66af4421dcfec35487487edacf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 1 21:16:05 2012 +0200

    network: Fix possible crasher when handling argv prop
    
    When looking for a matching device, we might end up checking
    for the proxy page's nm-device, which it obviously doesn't have.

 panels/network/cc-network-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 9dcf8cbfef005d4a473504b687588f93eb88ebed
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 12:41:56 2012 +0200

    region: Remove dead button
    
    The button hasn't ever been hooked to anything. Let's remove it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684864

 panels/region/gnome-region-panel.ui | 15 ---------------
 1 file changed, 15 deletions(-)

commit 2a24b5978e51bfcc5e9431a319ae481eac830a73
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 1 09:32:18 2012 +0200

    common: Fix list-languages build

 panels/common/list-languages.c | 1 +
 1 file changed, 1 insertion(+)

commit 5b6385067d89f6b2262ad7da3bd13b928ccc36e9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 30 05:40:56 2012 +0200

    background: Fix clearing too much from the background

 panels/background/cc-background-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fbddd14a454cebfff6c2203abb0715b31d8ad2d1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 30 05:39:08 2012 +0200

    common: Add i18n support to language test app

 panels/common/list-languages.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 1522b3909a3beb95628773472fab9498d383c9f8
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Sat Sep 29 14:52:30 2012 +0300

    Fixes for Greek translation

 po/el.po | 87 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 43 insertions(+), 44 deletions(-)

commit 4b30021a97f7385eaffea209e269134e7a8ad1ef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 28 13:35:28 2012 +0200

    network: Top-align the back button in wifi panels

 panels/network/network-wifi.ui | 61 ++++++++++++++++++++++++++----------------
 1 file changed, 38 insertions(+), 23 deletions(-)

commit ccc3f0bf3ce8927cd62d9ddf208e6b1b1f1ca16d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 28 11:44:19 2012 +0200

    network: Don't resize the panel or the wifi list

 panels/network/cc-network-panel.c | 6 ++++--
 panels/network/net-device-wifi.c  | 1 +
 panels/network/network-wifi.ui    | 5 ++++-
 3 files changed, 9 insertions(+), 3 deletions(-)

commit 194d28ae5002444e5d2495f4681bb18dd171cde9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 28 11:24:11 2012 +0200

    network: Simplify access to the device treeview

 panels/network/cc-network-panel.c | 31 +++++++++----------------------
 1 file changed, 9 insertions(+), 22 deletions(-)

commit a11ad3bed1a2df01fb1a292eda4925927164fbda
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 21:07:53 2012 +0200

    network: Handle argv property every time it changes
    
    Newer version of network-manager-applet required to avoid the
    run-time warnings though.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684983

 panels/network/cc-network-panel.c | 123 +++++++++++++++++++++++++++-----------
 1 file changed, 88 insertions(+), 35 deletions(-)

commit f49261bb8d0728f77c45a287c4fc9c94aaa7a494
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Fri Aug 24 16:25:53 2012 +0200

    background: use a lighter texture for solid colors.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682612

 panels/background/Makefile.am             |   5 +++++
 panels/background/bg-colors-source.c      |   2 +-
 panels/background/noise-texture-light.png | Bin 0 -> 69136 bytes
 3 files changed, 6 insertions(+), 1 deletion(-)

commit 97af01b56f7fdbb979e4484c8c38a8d08935b9fb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 28 01:31:02 2012 +0200

    background: Fix preview when primary is not the leftmost
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684985

 panels/background/cc-background-panel.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 4c237034747e34bcc5d18f98d6111470e5eea69d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 22:39:12 2012 +0200

    network: Remove g_print() debug

 panels/network/net-device-wifi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2ab1f2172338608f5b95858d46c05b71cf46b438
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 22:12:52 2012 +0200

    datetime: Update current time when tz changes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665137

 panels/datetime/cc-datetime-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit f4a8e0a73c2dc01bcaa8545fa399b944239f4201
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 20:37:01 2012 +0200

    background: Add debug to get_screenshot_async()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684985

 panels/background/cc-background-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit 112edc7cf72f34b6fc0b43ce714b3228f0b86699
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 20:36:35 2012 +0200

    background: Capture the primary monitor
    
    Not monitor 0.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684985

 panels/background/cc-background-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit dc559e3a9953ccef8f01802031375a722164c458
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 20:26:50 2012 +0200

    network: Clean up all args when done handling them

 panels/network/cc-network-panel.c | 14 +++++++-------
 panels/network/network-dialogs.c  |  2 ++
 2 files changed, 9 insertions(+), 7 deletions(-)

commit 38cbe1fb1674bc4a152398683c2592b4be477004
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 20:22:57 2012 +0200

    network: Add function to clean up the argv property

 panels/network/cc-network-panel.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit 5ae3d6b01aeda595f6a02454141f2c3be9ed673a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 16:11:55 2012 +0200

    wacom: Bump the required version of g-s-d
    
    So that GSD_WACOM_ACTION_TYPE_SWITCH_MONITOR is available.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684952

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 287b0b917ab1e8182a2f8da0d60c6210d5ce296b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 27 12:43:39 2012 +0200

    region: Fix possibly uninitialised variable

 panels/region/gnome-region-panel-system.c | 1 +
 1 file changed, 1 insertion(+)

commit 3d7e215024afd4b94c86a2328f6f07d71fbd9302
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 26 18:34:49 2012 +0200

    mouse: Reset test area to the bottom at every try
    
    This prevents window resizes from making the first visit to the
    mouse test area one that doesn't scroll all the way to the bottom.
    
    1. Open System Settings
    2. Open a panel that's smaller than the mouse one (eg. Background)
    3. Back to overview
    4. Open Mouse panel, click on test button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684817

 panels/mouse/cc-mouse-panel.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit f48db43be9e3642040070c7f733580f15da41fa1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 26 17:25:28 2012 +0200

    common: Add more debug for select_current_language()

 panels/common/cc-common-language.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 7181ca7c95b4fa9c08a02afbd95e4e17d196f133
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Sep 25 17:47:04 2012 -0400

    user-panel: make the autologin cell renderer follow state
    
    Since it renders a symbolic icon, let it follow the state, so
    it takes the selected text color when the row is selected
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684828

 panels/user-accounts/um-user-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit 89bb6457a2d9382deb4d37bfafc8636e8d3f2ca8
Author: Timur Zhamakeev <ztimur@gmail.com>
Date:   Wed Sep 26 22:28:56 2012 +0600

    Updated Kyrgyz translation

 po/ky.po | 245 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 125 insertions(+), 120 deletions(-)

commit 420240840a4c5f271342e12af34bc4ea1e968dbd
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Sep 25 17:38:31 2012 -0400

    printers: don't override search entry's icon name
    
    GtkSearchEntry already gets it right; this icon should be symbolic and
    there's no need to override it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684827

 panels/printers/new-printer-dialog.ui | 1 -
 1 file changed, 1 deletion(-)

commit cc07f54956614b0e4e04957c248e20e5061276ce
Author: Timur Zhamakeev <ztimur@gmail.com>
Date:   Wed Sep 26 12:52:35 2012 +0600

    Updated Kyrgyz translation

 po/ky.po | 308 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 159 insertions(+), 149 deletions(-)

commit 5115a8ba7a0b9446588e545aab58e80c3739c0a1
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Wed Sep 26 08:49:32 2012 +0300

    Added uk translation

 po/uk.po | 12394 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 6207 insertions(+), 6187 deletions(-)

commit d1afdf4dd11c01b20704ebe304e6d07dc667a78c
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Wed Sep 26 11:51:49 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 193 +++++++++++++++++++++++++++++++-----------------------------
 po/zh_TW.po | 193 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 198 insertions(+), 188 deletions(-)

commit b3287e1b971db4955f2914be9f6ff69a89ad99dd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 25 21:23:57 2012 +0200

    shell: Fix entering the same panel twice
    
    Manually this time.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684812

 shell/cinnamon-control-center.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit a6cb76eff8984a263cd6bbb18fe962cb5ae658b5
Author: Timur Zhamakeev <ztimur@gmail.com>
Date:   Tue Sep 25 23:27:38 2012 +0600

    Added Kyrgyz translation

 po/ky.po | 734 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 381 insertions(+), 353 deletions(-)

commit 4abdc131c9725d116157c85f515cfab2f6b14b4a
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Fri Sep 21 22:24:50 2012 +0200

    Revert "region: Create a source from the X layout in use when setting is empty"
    
    This reverts commit 1e0192555b686f24d084903d4ce70b5534af6260.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684584

 panels/region/gnome-region-panel-input.c  | 48 -------------------------------
 panels/region/gnome-region-panel-input.h  |  2 --
 panels/region/gnome-region-panel-system.c |  6 ----
 3 files changed, 56 deletions(-)

commit 52387c58bea62059b4c99d1c7c176ba1d1281117
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 22 13:32:24 2012 -0400

    network: RTL flipping for details arrow
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684604

 panels/network/net-device-wifi.c | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

commit fb8b858cba020c850e09f65f9b4d83adecface3a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 22 23:04:02 2012 -0400

    sound: Flip the input level bar in RTL languages
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684603

 panels/sound/gvc-level-bar.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 2c8b16ed64e410482818e4a4bb245442fb51b1eb
Author: Timur Zhamakeev <ztimur@gmail.com>
Date:   Tue Sep 25 16:19:56 2012 +0600

    Added ky to LINGUAS

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 70d405aaf602a440beb60e0133763fe29fa91f01
Author: Timur Zhamakeev <ztimur@gmail.com>
Date:   Tue Sep 25 16:19:36 2012 +0600

    Added Kyrgyz translation

 po/ky.po | 5183 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 5183 insertions(+)

commit 4a993e753a898899a6cc05dbbcc222ef6fe5cbae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 24 11:37:56 2012 +0200

    online-accounts: Remove unneeded signal disconnections
    
    Those signals will not be emitted anymore, as the objects that
    could emit them will be destroyed.
    
    Fixes a warning on exit, as panel->accounts_treeview is already
    destroyed when we get there.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684702

 panels/online-accounts/cc-online-accounts-panel.c | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

commit 8f3c5793bba8c152549535b5d2716766aeb1b91f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 25 10:47:48 2012 +0200

    3.6.0

 NEWS         | 17 +++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 18 insertions(+), 1 deletion(-)

commit fdbcda8233ef7438e6bc0a28ab34e4cda9dbed0b
Author: Petr Kovar <pkovar@redhat.com>
Date:   Mon Sep 24 22:03:45 2012 +0200

    Update Czech translation

 po/cs.po | 26 +++++++++++---------------
 1 file changed, 11 insertions(+), 15 deletions(-)

commit a80b3d75c501a08acbbd97406bd21d2926c72b42
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 22 14:08:29 2012 -0400

    users: Don't ask for the old password when none is set
    
    This prevents passwordless users (common on live cd setups) from
    setting a password.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684492

 panels/user-accounts/um-password-dialog.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 752bfc47aa776233c3aba1e38e04383719122926
Author: Petr Kovar <pkovar@redhat.com>
Date:   Mon Sep 24 16:01:31 2012 +0200

    Update Czech translation by Adam Matousek
    
    Review by Lucas Lommer.

 po/cs.po | 3204 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1896 insertions(+), 1308 deletions(-)

commit f85347c5d05ea0500c8dbba88a8e024702b49601
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:   Mon Sep 24 13:15:37 2012 +0200

    Update French translation

 po/fr.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 5198f7a5d05346b88bb17e3d3721f215e1508d5e
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Mon Sep 24 10:54:07 2012 +0300

    [l10n] Updated Estonian translation

 po/et.po | 2174 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 1491 insertions(+), 683 deletions(-)

commit cea712cc2191717d396c24b368eff3ff8369796e
Author: Timo Jyrinki <timo@debian.org>
Date:   Mon Sep 24 09:29:00 2012 +0300

    Finnish translation update by Jiri Grönroos

 po/fi.po | 138 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 68 insertions(+), 70 deletions(-)

commit 154349ba08f3a65c33865cf7855ed2705c654c58
Author: Anita Reitere <nitalynx@gmail.com>
Date:   Mon Sep 24 01:18:00 2012 +0300

    Updated Latvian translation

 po/lv.po | 4367 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2659 insertions(+), 1708 deletions(-)

commit d345f2e799560ceb31d9b987a1b389035ad488af
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:   Sun Sep 23 14:40:37 2012 +0200

    [l10n] Updated German translation

 po/de.po | 436 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 218 insertions(+), 218 deletions(-)

commit c4f6c714632932e3ee9e12370974410df63143b7
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Sep 23 16:25:39 2012 +0700

    Updated Thai translation

 po/th.po | 132 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 68 insertions(+), 64 deletions(-)

commit eaa0edee70cdda9310016e63042f8dfc6a14429e
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Sun Sep 23 01:26:38 2012 +0200

    [l10n]Updated Catalan (Valencian) translation

 po/ca@valencia.po | 3685 +++++++++++++++++++++++++++++++++--------------------
 1 file changed, 2311 insertions(+), 1374 deletions(-)

commit 62328d03d5cb1579a0fdbb957d8c58848c6a793d
Author: Joan Duran <jodufi@gmail.com>
Date:   Sun Sep 23 01:26:26 2012 +0200

    [l10n] Updated Catalan translation

 po/ca.po | 3710 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 2324 insertions(+), 1386 deletions(-)

commit c2c69fb93e5abafe3a163d603c475f9d62a13878
Author: Cheng Lu <chenglu1990@gmail.com>
Date:   Sat Sep 22 21:22:44 2012 +0400

    update Simplified Chinese (zh_CN) translation

 po/zh_CN.po | 1921 ++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1040 insertions(+), 881 deletions(-)

commit f00a1cb6450140d0adb02782c0d8c0cac407a7c1
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sat Sep 22 21:22:44 2012 +0400

    Updated Russian translation

 po/ru.po | 268 ++++++++++++++++++---------------------------------------------
 1 file changed, 77 insertions(+), 191 deletions(-)

commit c3d00a6c44f56292d3541bc489899d379a5132b4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Sep 21 16:07:46 2012 -0400

    Make connecting to Enterprise WPA work again
    
    gnome-shell relies on being able to call
    cinnamon-control-center network connect-8021x-wifi <DEVICE> <AP>
    This was broken in the big refactoring of the wifi panel
    last cycle. Bring it back.

 panels/network/cc-network-panel.c | 20 ++++++++++----------
 panels/network/net-device-wifi.c  | 11 -----------
 panels/network/network-dialogs.c  | 13 ++++++++++++-
 panels/network/network-dialogs.h  |  2 +-
 4 files changed, 23 insertions(+), 23 deletions(-)

commit 1218fff1cc1b0c2453d6d7dd668b54b3a412fd82
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Sep 22 14:58:10 2012 +0300

    Updated Hebrew translation.

 po/he.po | 349 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 183 insertions(+), 166 deletions(-)

commit f82d1246dac6746fad0ddc6fd8715485ef463925
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Sat Sep 22 11:22:09 2012 +0100

    Updated British English translation

 po/en_GB.po | 68 +++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 37 insertions(+), 31 deletions(-)

commit 867125c816075b1a15094132ef4b25ca1443f0c6
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Sat Sep 22 18:21:38 2012 +0900

    Updated Korean translation

 po/ko.po | 171 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 88 insertions(+), 83 deletions(-)

commit c8b4efd10bd05697ce66987085fcca6097c04f18
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 18 13:26:28 2012 +0200

    region: Switch to the input sources section
    
    When clicking on the link.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684280

 panels/region/gnome-region-panel-input.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 35029d6b17bc12f8d7d7bcdd8e6dd7b8befc7bf4
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Fri Sep 21 20:50:56 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 131 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 65 insertions(+), 66 deletions(-)

commit 03ceb2dfea6e06e95e23e88bc97e1b98b4d1523b
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Fri Sep 21 20:04:43 2012 +0300

    Updated Belarusian translation.

 po/be.po | 129 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 66 insertions(+), 63 deletions(-)

commit 8dd9ec4b2da2929908422ea5bad8c953185740cb
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Sep 21 17:52:01 2012 +0200

    Updated Spanish translation

 po/es.po | 120 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 62 insertions(+), 58 deletions(-)

commit ff96fb22c1f709b51f230f8d5b00f3371c0ceacd
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Fri Sep 21 20:30:06 2012 +0530

    Updated translation for Odia.

 po/or.po | 657 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 306 insertions(+), 351 deletions(-)

commit 65ed1ca9ef922072add434454a4606637d59ed01
Author: Ani Peter <apeter@redhat.com>
Date:   Fri Sep 21 19:42:11 2012 +0530

    Updated Malayalam file

 po/ml.po | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit f7ae60f058bf170945a2b24045755f77a70b5f00
Author: Ani Peter <apeter@redhat.com>
Date:   Fri Sep 21 19:39:09 2012 +0530

    Updated Malayalam file

 po/ml.po | 259 +++++++++++++++++++++------------------------------------------
 1 file changed, 85 insertions(+), 174 deletions(-)

commit 558a231fc6854ff72ee8560a90a488628a863fdd
Author: Ani Peter <apeter@redhat.com>
Date:   Fri Sep 21 19:36:24 2012 +0530

    Updated Malayalam file

 po/ml.po | 6167 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3415 insertions(+), 2752 deletions(-)

commit 93af763f32afa66373e0fd82d0d2f8de27fa5401
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Fri Sep 21 17:41:04 2012 +0530

    Updated translation for Odia.

 po/or.po | 64 ++++++++++------------------------------------------------------
 1 file changed, 10 insertions(+), 54 deletions(-)

commit 024f2c49fb5c4d39f0c6a8c3d9b037fb23af1db2
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Fri Sep 21 12:42:45 2012 +0530

    Updated gujarati file

 po/gu.po | 72 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 36 insertions(+), 36 deletions(-)

commit cbab0b66ec90061ecf1e15726f4a272672ef6857
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Sep 20 22:15:52 2012 +0100

    Updated Portuguese translation

 po/pt.po | 122 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 64 insertions(+), 58 deletions(-)

commit 876d41b141ee102fc383369459827101af406e69
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 20 20:58:28 2012 +0200

    shell: Pass args to existing panels
    
    When re-activating the same panel, we could destroy and recreate the
    panel, or better reuse the panel, and set the new argv
    (usually to switch pages).
    
    Since we're changing the "argv" property of panels to not be construct-
    only anymore, we reviewed the panels for potential memory leaks as well.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684490

 shell/cc-panel.c             |  2 +-
 shell/cinnamon-control-center.c | 29 +++++++++++++++++++++++------
 2 files changed, 24 insertions(+), 7 deletions(-)

commit ab435aa9e18f550e6926e06ab08e71282a9d442b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 20 20:51:14 2012 +0200

    shell: Rename current_panel to current_panel_box
    
    So that we can use current_panel for the current panel, not
    for the container parent of the panel.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684490

 shell/cinnamon-control-center.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit ca8d78e6201ba07d7b8546f62b1becd16e97f3da
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Fri Sep 21 01:14:06 2012 +0530

    Updated kn translation

 po/kn.po | 511 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 249 insertions(+), 262 deletions(-)

commit 74751e874eae8778b0d382440edb73809af5d015
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Thu Sep 20 20:58:04 2012 +0200

    Updated Serbian translation

 po/sr.po       | 134 +++++++++++++++++++++++++++++----------------------------
 po/sr@latin.po | 134 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 136 insertions(+), 132 deletions(-)

commit 67d9f3a4b4655f41abfd538264a3dc0efc542bfc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Sep 20 14:39:55 2012 +0200

    Updated Hungarian translation

 po/hu.po | 66 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 35 insertions(+), 31 deletions(-)

commit 44bfa9d31fc5b138e859bbe30e6ffd38a6c2a86a
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Thu Sep 20 15:16:16 2012 +0530

    Updated gujarati file

 po/gu.po | 955 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 385 insertions(+), 570 deletions(-)

commit 45b2689f6bde5018bd1d18a2ba350cbaa598f9b9
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Thu Sep 20 11:09:42 2012 +0300

    Updated Greek translation

 po/el.po | 134 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 68 insertions(+), 66 deletions(-)

commit 0dfb1e2725c4b3adc2796a0de29d76068b5028d9
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:   Thu Sep 20 09:11:52 2012 +0200

    Update French translation

 po/fr.po | 127 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 65 insertions(+), 62 deletions(-)

commit 7fc288302f07fe0ed6ccc821893cdc603e2b2989
Author: Sandeep Sheshrao Shedmake <sshedmak@redhat.com>
Date:   Thu Sep 20 11:47:34 2012 +0530

    Updated Marathi Translations

 po/mr.po | 122 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 62 insertions(+), 60 deletions(-)

commit c9344e5f416adb5a116a1e67bdd67fdb7ed8098e
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Sep 20 06:40:53 2012 +0200

    Updated Arabic translation

 po/ar.po | 69 +++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 38 insertions(+), 31 deletions(-)

commit 5b776981f38674d2bc0f5fd48cad687a76133f77
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Wed Sep 19 23:25:14 2012 +0530

    Updated Telugu Translation

 po/te.po | 3809 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2357 insertions(+), 1452 deletions(-)

commit 6782f962a5299e8c67630123718146e6934a83f4
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Wed Sep 19 20:45:31 2012 +0300

    Updated Bulgarian translation

 po/bg.po | 125 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 66 insertions(+), 59 deletions(-)

commit 9973d617496bae90e79f6c569a3f0cb82fddb59c
Author: Noriko Mizumoto <noriko@fedoraproject.org>
Date:   Thu Sep 20 01:12:15 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 1273 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 595 insertions(+), 678 deletions(-)

commit d02c7c0338ff3146737bb9023fd9761ade7ed10c
Author: A S Alam <aalam@users.sf.net>
Date:   Wed Sep 19 21:40:57 2012 +0530

    update Punjabi Translation

 po/pa.po | 134 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 68 insertions(+), 66 deletions(-)

commit 27f7319073955d42e5fec01266121e1c34909621
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   Wed Sep 19 10:04:01 2012 -0300

    Updated Brazilian Portuguese Translation

 po/pt_BR.po | 101 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 50 insertions(+), 51 deletions(-)

commit 2406c3a4e9b7e1443350e9b4d6d08e39193fb3ae
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Wed Sep 19 17:51:00 2012 +0530

    updated Tamil translation

 po/ta.po | 343 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 183 insertions(+), 160 deletions(-)

commit 4d3bf50f1f8bfbe0425d1aab7e6aa0124890ffd6
Author: Rajesh Ranjan <rranjan@redhat.com>
Date:   Wed Sep 19 16:55:22 2012 +0530

    hindi update

 po/hi.po | 40 +++++++++++++++++++---------------------
 1 file changed, 19 insertions(+), 21 deletions(-)

commit 80b89a87ff75c915d9b0940af8589bc299cb9ab5
Author: Rajesh Ranjan <rranjan@redhat.com>
Date:   Wed Sep 19 14:17:15 2012 +0530

    hindi update

 po/hi.po | 465 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 164 insertions(+), 301 deletions(-)

commit e3defaa82e3b82a2303c81b659d0b586b57b8eed
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Wed Sep 19 09:03:44 2012 +0200

    Updated Slovenian translation

 po/sl.po | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 742a3cecd4d0bb4bb4b42a3b58e61ba8030e665d
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Wed Sep 19 12:06:41 2012 +0530

    Assamese translation updated

 po/as.po | 137 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 69 insertions(+), 68 deletions(-)

commit 9228ddc36e09a167ff4cab2707b14e5187dcf101
Author: Andika Triwidada <andika@gmail.com>
Date:   Wed Sep 19 10:37:38 2012 +0700

    Updated Indonesian translation

 po/id.po | 134 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 68 insertions(+), 66 deletions(-)

commit 50ae0268666a8fae2a175001427015bc7a0dc0fd
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Wed Sep 19 02:52:04 2012 +0200

    Updated Galician translations

 po/gl.po | 131 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 68 insertions(+), 63 deletions(-)

commit 25973a1ea4d75a41921bc986b9e182ac87254233
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Sep 19 01:14:11 2012 +0200

    Updated Polish translation

 po/pl.po | 137 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 71 insertions(+), 66 deletions(-)

commit 5f27eb0cec5efd3da76fae8a8bfbb1bedf01656a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 19 00:52:24 2012 +0200

    power: Make Tip translatable
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684309

 panels/power/cc-power-panel.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 491234c533adecf83abe03fa298e1e76639bdc4e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 18 19:01:36 2012 +0200

    keyboard: Handle arguments for the shortcuts tab
    
    So it's possible to switch directly to a section of the shortcuts
    tab, rather than have users look for particular sections when redirected
    there through a link.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684280

 panels/keyboard/cc-keyboard-panel.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

commit 22e31eb3f7c946cdf987f6fc38ef616bd82dd46e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 18 19:01:06 2012 +0200

    keyboard: Add ability to switch to a shortcuts section
    
    With some new API.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684280

 panels/keyboard/keyboard-shortcuts.c | 78 +++++++++++++++++++++++++++++++++---
 panels/keyboard/keyboard-shortcuts.h |  1 +
 2 files changed, 73 insertions(+), 6 deletions(-)

commit 968618ef8b0206971addf6924abc63b6d37795ba
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 18 18:57:50 2012 +0200

    keyboard: Add unique IDs for each shortcuts section
    
    Rather than relying on comparison of translated strings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684280

 panels/keyboard/keyboard-shortcuts.c | 37 ++++++++++++++++++++----------------
 1 file changed, 21 insertions(+), 16 deletions(-)

commit d150446139a601276b3868260fa77fc31191ef69
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Sep 18 21:08:31 2012 +0200

    Updated Slovenian translation

 po/sl.po | 96 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 50 insertions(+), 46 deletions(-)

commit c3c0f2a3e54e00555666c05ad2d4a41ffbf3f7c4
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Sep 18 18:39:52 2012 +0200

    Mark string as translatable

 panels/network/network-wifi.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 486d17039b0c8da44732b2e90ad717f585ffc841
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Sep 18 16:35:36 2012 +0200

    Updated Spanish translation

 po/es.po | 42 +++++++++++++++++++-----------------------
 1 file changed, 19 insertions(+), 23 deletions(-)

commit 5b6c95500b74c88e83b3c3452d6055d12e65ceb6
Author: Rajesh Ranjan <rranjan@redhat.com>
Date:   Tue Sep 18 17:23:19 2012 +0530

    hindi update

 po/hi.po | 4290 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2624 insertions(+), 1666 deletions(-)

commit a3cda9a3daa9d93a4c7044d820e15f1f00d97e1d
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Sep 18 10:04:28 2012 +0200

    Updated Hungarian translation

 po/hu.po | 1041 +++++++++++---------------------------------------------------
 1 file changed, 183 insertions(+), 858 deletions(-)

commit ff34f7e29b6e4e20ea7995a47b6ce0ea2a7b918d
Author: Sandeep Sheshrao Shedmake <sshedmak@redhat.com>
Date:   Tue Sep 18 13:33:00 2012 +0530

    Updated Marathi Translations

 po/mr.po | 248 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 111 insertions(+), 137 deletions(-)

commit c8bb4c8fbed5382e58dfbb0706d767d3c11433fe
Author: Chris Leonard <cjl@laptop.org>
Date:   Mon Sep 17 20:45:52 2012 +0100

    Updated British English translation

 po/en_GB.po | 572 +++++++++++++++++++++++++++++-------------------------------
 1 file changed, 281 insertions(+), 291 deletions(-)

commit 9648fae3beb793b6e0aab1cd727e25ec3012cd53
Author: Chris Leonard <cjl@laptop.org>
Date:   Mon Sep 17 20:42:58 2012 +0100

    Updated British English translation

 po/en_GB.po | 34 +++++++++++++++++++++++++++-------
 1 file changed, 27 insertions(+), 7 deletions(-)

commit d2209c3542cc762f76461cf88ee3b01a9ee85754
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Sep 17 20:43:41 2012 +0200

    Updated Arabic translation

 po/ar.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit e846becec0ba60170325a2e0db0d7fc091c9a070
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Sep 17 20:31:04 2012 +0200

    Updated Arabic translation

 po/ar.po | 357 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 187 insertions(+), 170 deletions(-)

commit 5a23d99ce95c707ce326ff6c9f75cc9e3175f058
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 17 19:49:36 2012 +0200

    3.5.92

 NEWS         | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 54 insertions(+), 1 deletion(-)

commit 95fb453d879b00f98c2e7cc13eb988ca48b2ae13
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 17 12:33:51 2012 +0100

    user-accounts: Disable password changing for remote users
    
    Works-around:
    https://bugs.freedesktop.org/show_bug.cgi?id=55002
    See also:
    https://bugzilla.gnome.org/show_bug.cgi?id=681866#c11

 panels/user-accounts/um-user-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 0721469d566e1005415c974c8cfd29ad718497cd
Author: Stef Walter <stefw@gnome.org>
Date:   Mon Sep 17 14:19:53 2012 +0200

    user-accounts: Default LocalAccount property to TRUE
    
    When loading properties from the AccountsService we may encounter
    an implementation that does not yet have the LocalAccount property,
    so set the LocalAccount property to TRUE by default to make things
    work correctly in the above case.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684207

 panels/user-accounts/um-user.c | 3 +++
 1 file changed, 3 insertions(+)

commit 0882d9131823dc34f2b8aa70d91961422e54c408
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Sep 17 22:31:57 2012 +0700

    Updated Thai translation

 po/th.po | 5257 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 3128 insertions(+), 2129 deletions(-)

commit 531c568645ba3ba21a8b600f8b7ab35925748d0b
Author: Djavan Fagundes <djavanf@gnome.org>
Date:   Mon Sep 17 10:05:34 2012 -0300

    Updated Brazilian Portuguese translation by Rafael Ferreira <rafael.f.f1@gmail.com> and myself

 po/pt_BR.po | 5061 +++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 3003 insertions(+), 2058 deletions(-)

commit 31a293bc08d2ac5fe3b0a8c9e8cb06b1d3b9d432
Author: Stef Walter <stefw@gnome.org>
Date:   Mon Sep 17 10:32:23 2012 +0200

    user-accounts: Fix memory leak of realm list
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684188

 panels/user-accounts/um-realm-manager.c | 1 +
 1 file changed, 1 insertion(+)

commit 65aaaf9d0451ba076ee7d8f09e7a472dc9926024
Author: Stef Walter <stefw@gnome.org>
Date:   Mon Sep 3 16:16:42 2012 +0200

    user-accounts: Add debug messages to user creation and realm procedures
    
    https://bugzilla.gnome.org/show_bug.cgi?id=684185

 panels/user-accounts/um-account-dialog.c | 27 +++++++++++++++++
 panels/user-accounts/um-realm-manager.c  | 52 +++++++++++++++++++++++++++-----
 2 files changed, 72 insertions(+), 7 deletions(-)

commit 09e62d679c9f16fe05d476773632c3761510c92d
Author: Stef Walter <stefw@gnome.org>
Date:   Mon Sep 17 10:42:31 2012 +0200

    user-accounts: Relicense UmRealmManager to GPLv2+
    
    And update the 'Written By' of UmRealmManager
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683420

 panels/user-accounts/um-realm-manager.c | 5 ++---
 panels/user-accounts/um-realm-manager.h | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

commit b4251d847be7d25ffcdb28b85fbdef42a542222e
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Thu Sep 13 10:15:46 2012 +0900

    region: move Amharic in IBus engine whitelist
    
    Move Amharic input method to non-trivial unconfirmed section.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683697

 panels/region/gnome-region-panel-input.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit e09ca1074c1ed585d1379980f83a2ae191618080
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Tue Sep 11 10:38:17 2012 +0900

    region: add non-trivial IBus engines to whitelist
    
    Add non-trivial IBus engines such as transliteration based ones.
    Though these engines have not yet confirmed by local language
    users, it would be probably safe to leave them.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683697

 panels/region/gnome-region-panel-input.c | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

commit bd5105d7f61d2e536d981991c6d94cc9f86fb7d1
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Tue Sep 11 10:13:26 2012 +0900

    region: whitelist IBus engines with no XKB equiv
    
    Some IBus engines don't have XKB equivalents, so need to be
    whitelisted to be usable.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683697

 panels/region/gnome-region-panel-input.c | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit ab43e935a5c4fc1824acaf9d9357be22be438657
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Tue Sep 11 09:56:35 2012 +0900

    region: add wubi and erbi to IBus engine whitelist
    
    wubi and erbi (both from ibus-table) are popular stroke based input
    methods for inputing Simplified Chinese and Traditional Chinese.
    A local user said that wubi covers at least 20% of the Simplified
    Chinese users.  erbi is similar to wubi and getting popular because
    of easiness to learn.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683697

 panels/region/gnome-region-panel-input.c | 2 ++
 1 file changed, 2 insertions(+)

commit 521bcadd512f81a4c103f03177ced7c59049aae7
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Thu Sep 13 10:03:37 2012 +0900

    region: remove Farsi item from IBus engine whitelist
    
    m17n:fa:isiri is removed from IBus engine whitelist, since it
    has XKB equivalent.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683697

 panels/region/gnome-region-panel-input.c | 3 ---
 1 file changed, 3 deletions(-)

commit 89007c64ff3a7584bc0e79c80910c6e22a244c1f
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Tue Sep 11 09:51:50 2012 +0900

    region: mark Vietnamese IBus engine whitelist as confirmed
    
    A local user confirmed that the Vietnamese whitelist items cover 90% of
    the language users, thus it is now marked as "confirmed".
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683697

 panels/region/gnome-region-panel-input.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a61f0654b98357283ef68bea6d827aabc0a2779e
Author: Benjamin Berg <benjamin@sipsolutions.net>
Date:   Sun Sep 16 17:09:45 2012 -0400

    display: Fix coordinate calculations
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681475

 panels/display/scrollarea.c | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

commit bfca71076d654f91190b2349ad481aff9490c148
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Sep 16 16:15:22 2012 -0400

    users: Fix a typo
    
    One translatable string contained the typo 'enterpise logins',
    where it should have said 'enterprise logins'. Pointed out in
    https://bugzilla.gnome.org/show_bug.cgi?id=684122
    
    This commit updates the msgid in all .po files, so translations
    should not be negatively affected by this string change.

 panels/user-accounts/data/account-dialog.ui | 2 +-
 po/ar.po                                    | 2 +-
 po/as.po                                    | 2 +-
 po/be.po                                    | 2 +-
 po/bg.po                                    | 2 +-
 po/da.po                                    | 2 +-
 po/de.po                                    | 2 +-
 po/el.po                                    | 2 +-
 po/en_GB.po                                 | 4 ++--
 po/es.po                                    | 2 +-
 po/fa.po                                    | 2 +-
 po/fi.po                                    | 2 +-
 po/fr.po                                    | 2 +-
 po/gl.po                                    | 2 +-
 po/gu.po                                    | 2 +-
 po/he.po                                    | 2 +-
 po/hu.po                                    | 2 +-
 po/id.po                                    | 2 +-
 po/ja.po                                    | 2 +-
 po/kn.po                                    | 2 +-
 po/ko.po                                    | 2 +-
 po/lt.po                                    | 2 +-
 po/mr.po                                    | 2 +-
 po/nb.po                                    | 2 +-
 po/or.po                                    | 2 +-
 po/pa.po                                    | 2 +-
 po/pl.po                                    | 2 +-
 po/pt.po                                    | 2 +-
 po/ru.po                                    | 2 +-
 po/sl.po                                    | 2 +-
 po/sr.po                                    | 2 +-
 po/sr@latin.po                              | 2 +-
 po/ta.po                                    | 2 +-
 po/uk.po                                    | 2 +-
 po/vi.po                                    | 2 +-
 po/zh_CN.po                                 | 2 +-
 po/zh_HK.po                                 | 2 +-
 po/zh_TW.po                                 | 2 +-
 38 files changed, 39 insertions(+), 39 deletions(-)

commit f251788f9ae4fb0a9dac84c4999d6bc11c3cc192
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Sep 16 15:46:25 2012 -0400

    region: Fix a layout problem on the system tab
    
    The Format: row was being pushed to the bottom, and when the
    input sources value was longer on the one side than the other,
    the horizontal alignment was broken.

 panels/region/gnome-region-panel.ui | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 914e8b25629dbb1c8da83926098ecd7de9c2242f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 13 01:23:38 2012 +0100

    region: Handle input sources in the system tab
    
    Unfortunately we don't have a way yet to make gsettings system wide
    defaults so we are just using the localed API to export the XKB input
    sources and ignore the IBus ones.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683875

 panels/region/gnome-region-panel-input.c  |   2 +-
 panels/region/gnome-region-panel-input.h  |   2 +
 panels/region/gnome-region-panel-system.c | 157 +++++++++++++++++++++++++++++-
 3 files changed, 155 insertions(+), 6 deletions(-)

commit 77700f82ffa623d9776ac5b3ab69a7f996b9c21b
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:   Mon Sep 17 01:35:00 2012 +0900

    Updated Korean translation

 po/ko.po | 3626 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 2037 insertions(+), 1589 deletions(-)

commit 8083977272c04107ec6f3f4c5d306517f05f45dc
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Sep 16 13:19:38 2012 +0200

    Updated Spanish translation

 po/es.po | 201 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 111 insertions(+), 90 deletions(-)

commit f5c0dda9eb8add1618f8f6da58135229c363c47a
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sun Sep 16 12:22:50 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 294 ++++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 294 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 312 insertions(+), 276 deletions(-)

commit c69d46cc4e098baaada0c40a6b61ec7cd24e889a
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Sun Sep 16 02:04:10 2012 +0200

    Updated Danish translation

 po/da.po | 5055 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 2983 insertions(+), 2072 deletions(-)

commit e4907262773b42cb0a295c7f18f281e3d97f3479
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Sep 15 22:48:26 2012 +0200

    Updated Slovenian translation

 po/sl.po | 156 +++++++++++++++++++++++----------------------------------------
 1 file changed, 56 insertions(+), 100 deletions(-)

commit c063f854176e6ee2cf9a821972723dd7ff759fd6
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Sep 15 22:13:56 2012 +0200

    Updated Slovenian translation

 po/sl.po | 409 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 186 insertions(+), 223 deletions(-)

commit 08f57a1b6644e5c7a6249dae309f1c00d1bb5d71
Author: Timo Jyrinki <timo@debian.org>
Date:   Sat Sep 15 22:51:27 2012 +0300

    Finnish translation update by Jiri Grönroos

 po/fi.po | 459 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 160 insertions(+), 299 deletions(-)

commit d4e00f6ced184577be50ce918956450e3e2b9201
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Sep 15 19:41:33 2012 +0100

    Updated Portuguese translation

 po/pt.po | 204 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 110 insertions(+), 94 deletions(-)

commit 8cdcc1eb433571c03841db9fdc949d69d971c92f
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sat Sep 15 15:39:39 2012 +0400

    Updated Russian translation

 po/ru.po | 154 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 64 insertions(+), 90 deletions(-)

commit 9b9dfc9ebd01791a211dfdaedb562e2d8fb3ba65
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Sat Sep 15 09:37:14 2012 +0300

    Updated Bulgarian translation

 po/bg.po | 3392 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 2007 insertions(+), 1385 deletions(-)

commit f52d6c35137d46fa136cce1ebdb23342d93647eb
Author: Andika Triwidada <andika@gmail.com>
Date:   Sat Sep 15 11:54:12 2012 +0700

    Updated Indonesian translation

 po/id.po | 274 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 141 insertions(+), 133 deletions(-)

commit 56744d801bd80b2cbb10885f6156dd527f9ae793
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Fri Sep 14 20:38:53 2012 +0400

    Updated Russian translation

 po/ru.po | 2912 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1842 insertions(+), 1070 deletions(-)

commit b68b6d84cd01eff2517aed27c57b6471a65294d5
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Fri Sep 14 13:38:06 2012 +0200

    online-accounts: Get rid of extra "Add Account" label
    
    Back in the day when titles were not shown for modal dialogs we added
    the big "Add Account" label. Now that modal dialogs have titles, we
    don't need it anymore.
    
    Fixes: https://bugzilla.gnome.org/684013

 .../online-accounts/cc-online-accounts-add-account-dialog.c  | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

commit 5f6391059273bdf7309763a26ab499d9da7a7b0d
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Fri Sep 14 13:21:57 2012 +0300

    Updated Belarusian translation.

 po/be.po | 258 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 135 insertions(+), 123 deletions(-)

commit 932a23ba308b9c009d76bc0949dc9856f23714c4
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Fri Sep 14 09:44:45 2012 +0200

    Updated Serbian translation

 po/sr.po       | 279 ++++++++++++++++++++++++++++++---------------------------
 po/sr@latin.po | 279 ++++++++++++++++++++++++++++++---------------------------
 2 files changed, 298 insertions(+), 260 deletions(-)

commit 24f21af498e78965708f757ea7eafdfd7944c972
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:   Fri Sep 14 09:32:55 2012 +0200

    Update French translation

 po/fr.po | 3120 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1850 insertions(+), 1270 deletions(-)

commit 8b036a133f5270c8a558463c63b13b86909d4919
Author: A S Alam <aalam@users.sf.net>
Date:   Fri Sep 14 07:24:20 2012 +0530

    update Punjabi Translation

 po/pa.po | 190 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 102 insertions(+), 88 deletions(-)

commit 1e0192555b686f24d084903d4ce70b5534af6260
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Thu Sep 13 16:20:29 2012 +0200

    region: Create a source from the X layout in use when setting is empty
    
    We don't want to show an empty input sources list so we create a
    source from the current X layout in case the setting is empty.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683879

 panels/region/gnome-region-panel-input.c | 48 ++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

commit fb6881d53b6487c3503e352b0bf0356faf6b637a
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sat Sep 8 18:25:50 2012 +0200

    region: Handle the case of an empty input sources list
    
    We would end up in an endless loop on update.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683879

 panels/region/gnome-region-panel-input.c | 28 +++++++++++++---------------
 1 file changed, 13 insertions(+), 15 deletions(-)

commit ff5767b9cb56ec30b89be6d7dde47bf623373a23
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Sep 14 00:12:31 2012 +0200

    Updated Galician translations

 po/gl.po | 185 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 100 insertions(+), 85 deletions(-)

commit 100c87519aa9a99d721855b3aa35457212eb1040
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Thu Sep 13 22:37:21 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 263 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 135 insertions(+), 128 deletions(-)

commit 75f76aa453ffd3de23e0c4e506ca3151645614cc
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Thu Sep 13 20:11:53 2012 +0300

    uk update

 po/uk.po | 9144 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 4572 insertions(+), 4572 deletions(-)

commit d2e56f2bd6a14b2f497220061af4c238ebfcf293
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Thu Sep 13 20:06:35 2012 +0300

    uk update

 po/uk.po | 5069 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 2983 insertions(+), 2086 deletions(-)

commit d2b5c1cbfa137193557c446d3a49774c13056a9b
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Thu Sep 13 21:04:26 2012 +0530

    Assamese translation updated

 po/as.po | 205 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 104 insertions(+), 101 deletions(-)

commit 941dd0ead5fb2df239d47866876caa3a08b95511
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Sep 13 17:02:36 2012 +0200

    Updated Polish translation

 po/pl.po | 267 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 138 insertions(+), 129 deletions(-)

commit 44fff9996a762299ac792d739eba43aefc2f6c55
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Thu Sep 13 18:02:27 2012 +0300

    Updated Greek translation

 po/el.po | 187 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 103 insertions(+), 84 deletions(-)

commit 98040db22a6450d7d782b8f63d83f6d86a870683
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 23:33:24 2012 -0400

    network: No selection in the wifi list
    
    Set the selection mode to none, to avoid a meaningless and
    distracting blue selection in the wifi list.

 panels/network/network-wifi.ui | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 794b89d561b20a7237509f581ac431a09b6265e6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 23:29:15 2012 -0400

    network: Handle activation in the wifi list better
    
    Instead of manually handling button release events on the
    treeview, use activatable cell renderers for the ssid text
    and for the arrow, and connect to activate signals for them.
    
    We use cell area focus-sibling technology to make the keynav
    in the list just have focus locations for the ssid and the
    arrow.
    
    This makes the details pages reachable by keynav, which was
    not the case before.

 panels/network/net-device-wifi.c | 203 ++++++++++++++++++++-------------------
 1 file changed, 106 insertions(+), 97 deletions(-)

commit 24968aad71ddd32edd5213f7eef925a180bfaf25
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 23:28:10 2012 -0400

    network: Add cell renderers
    
    These are activatable variants of text and pixbuf cell
    renderers. They emit an 'activate' signal when clicked
    or activated by keyboard.

 panels/network/Makefile.am                  |  4 ++
 panels/network/panel-cell-renderer-pixbuf.c | 82 +++++++++++++++++++++++++++++
 panels/network/panel-cell-renderer-pixbuf.h | 61 +++++++++++++++++++++
 panels/network/panel-cell-renderer-text.c   | 82 +++++++++++++++++++++++++++++
 panels/network/panel-cell-renderer-text.h   | 61 +++++++++++++++++++++
 5 files changed, 290 insertions(+)

commit 292c8b9fe68bad03186c9bc22acfdeecb2aa731b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 23:32:21 2012 -0400

    network: Don't override cell renderer properties
    
    The mode cell renderer had a property named 'mode', which
    clashed with the GtkCellRenderer property of that name, which
    confused the treeview keynav.
    
    Rename the new property to ap-mode.

 panels/network/net-device-wifi.c          |  2 +-
 panels/network/panel-cell-renderer-mode.c | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

commit 701fb2846ff8c8705e7df3e284b57d34acc0aeff
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 21:37:47 2012 -0400

    network: Avoid critical warnings
    
    Remove the reference to the new longer existing viewport_list
    widget, and be more careful about getting a NMRemoteSettings
    object when calculating the last used time.

 panels/network/net-device-wifi.c | 106 +++++++++++++++++++--------------------
 1 file changed, 51 insertions(+), 55 deletions(-)

commit 36958cbf84325805ee16f74a04362239f607e9ff
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 21:17:47 2012 -0400

    network: Improve the wifi list appearance
    
    Use non-symbolic icons for the arrow, and add padding around the
    arrow and the check mark.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682270

 panels/network/net-device-wifi.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit a04445ebd75d48ab25489647c096eca137ad538a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 21:17:24 2012 -0400

    network: Remove one more reference to the subnet widgets

 panels/network/panel-common.c | 5 -----
 1 file changed, 5 deletions(-)

commit 7882874a14b62dfbaf93aa05a698e0007c79344f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 21:13:19 2012 -0400

    network: Remove a reference to a no-longer existing widget

 panels/network/network-wired.ui | 1 -
 1 file changed, 1 deletion(-)

commit 63fd710f8334b2c24d84a5722754c98c378e0594
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 20:26:11 2012 -0400

    network: Small tweak for vpn page
    
    Make selectable labels on the vpn page focusable as well.

 panels/network/network-vpn.ui | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit aec8cdd7f19374b265d0d5ccd2700a9ab8eaf9e1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 20:24:48 2012 -0400

    network: Don't show subnet for wired either
    
    We don't show it for wifi details, and it is causing ugly warnings
    from the setting code.
    
    At the same time, make all selectable labels on the wired page
    focusable as well, to be consistent with wifi.

 panels/network/network-wired.ui | 51 ++++++++---------------------------------
 panels/network/panel-common.c   |  7 ------
 2 files changed, 9 insertions(+), 49 deletions(-)

commit 17e3c23cd5d75cc89341a22cb54ee6f484d6261b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 20:10:26 2012 -0400

    network: Remove references to no-longer existing widgets
    
    And also make sure the initial focus on the details page is
    always on the back button.

 panels/network/net-device-wifi.c | 32 +++++++++++++++++---------------
 1 file changed, 17 insertions(+), 15 deletions(-)

commit 75d815ded3903734f0ae25bc0eecb401bd225beb
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 19:48:36 2012 -0400

    network: Remove the saved-ap tab
    
    Saved connections without an access point are now shown
    in the same tab as all the others.

 panels/network/net-device-wifi.c |  22 +---
 panels/network/network-wifi.ui   | 249 ---------------------------------------
 2 files changed, 2 insertions(+), 269 deletions(-)

commit 18248493d51ab12081b81a43694869cdbc95c4a0
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 19:41:31 2012 -0400

    network: Remove an unused object from the ui file

 panels/network/network-wifi.ui | 5 -----
 1 file changed, 5 deletions(-)

commit 32c29a3f253b13910912b3529d3ddfccc02c9f91
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 19:35:15 2012 -0400

    network: Only show 'Out of range' when appropriate
    
    Showing it whenever we have a saved connection goes wrong for
    all items where we have both an ap and a saved connection.
    
    Also, use the same details page for out-of-range saved connections.

 panels/network/net-device-wifi.c | 42 ++++++++++++++++++----------------------
 panels/network/network-wifi.ui   | 10 ++++++----
 2 files changed, 25 insertions(+), 27 deletions(-)

commit 3871d52947120c4b08e3898ae6e0e5ab0294898b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 19:06:28 2012 -0400

    network: Make 'Connect to hidden' work again

 panels/network/net-device-wifi.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

commit f10a29b10f5ae2fbf681481d400ec44393092c59
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 18:15:53 2012 -0400

    network: Make all values selectable and focusable
    
    Also, sort them so that the focus chain makes sense.

 panels/network/network-wifi.ui | 287 ++++++++++++++++++++---------------------
 1 file changed, 143 insertions(+), 144 deletions(-)

commit 78e9ed9ceacb0b09cbe4eda35261dc66b4d8222e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 17:49:25 2012 -0400

    network: Say 'never' when the connection hasn't been used
    
    Nicer to say 'Last used: never', then to show nothing.

 panels/network/net-device-wifi.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 16011384efe4ad5841be067b2856060c949f87b3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 17:47:01 2012 -0400

    network: Say 'today' instead of '0 days ago'
    
    'Last used: 0 days ago' is odd. Also, say 'yesterday' instead
    of '1 day ago'.

 panels/network/net-device-wifi.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit f6aff65e6434a92dddcbc43dd3dfc815fdc253dc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 17:44:05 2012 -0400

    network: Add a 'Last used' item
    
    Copy the 'Last used' item for non-active, in-range access
    points.
    
    This is another step towards using the same details page
    for all aps and connections.

 panels/network/net-device-wifi.c |  10 ++
 panels/network/network-wifi.ui   | 279 ++++++++++++++++++++++-----------------
 2 files changed, 166 insertions(+), 123 deletions(-)

commit ab045fcc0b9a48267a4c61ed9918a51407b1171d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 17:30:37 2012 -0400

    network: Add a period to the disconnect warning

 panels/network/net-device-wifi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1ba197468b76e935608b6b3af5a7c4ae2a7f6c8a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 17:29:46 2012 -0400

    network: Add a 'Connect' button
    
    When showing details of a non-active access point, replace the
    'Disconnect' button with a 'Connect' button.

 panels/network/net-device-wifi.c |  60 +++++++++++++++++++++--
 panels/network/network-wifi.ui   | 102 +++++++++++++++++++++++++--------------
 2 files changed, 122 insertions(+), 40 deletions(-)

commit 518efcda09cc492792732dca04b2124c43c3b154
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 16:58:14 2012 -0400

    network: Start handling disconnected APs correctly
    
    When showing the details for an in-range, but not active access
    point, we were just always showing details for the currently
    active connection. This commit starts to sort things apart.

 panels/network/net-device-wifi.c | 120 ++++++++++++++++++++++++---------------
 panels/network/network-wifi.ui   |  28 ++++-----
 panels/network/panel-common.c    |  10 ++++
 panels/network/panel-common.h    |   1 +
 4 files changed, 94 insertions(+), 65 deletions(-)

commit bcbc6d1aafbb26f6379e0448da16539afcab8d53
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 16:11:29 2012 -0400

    network: Remove unused object from ui file
    
    The liststore for wifi connections is now defined in
    network-wifi.ui, the object in network.ui is a leftover.

 panels/network/network.ui | 18 ------------------
 1 file changed, 18 deletions(-)

commit 69a823f9a9a2ea986de293b48c779391ac4ad0bd
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 15:41:18 2012 -0400

    network: Rename a function
    
    'Connect to hidden' is not really an access point.
    Update the function name to reflect that. Also, update
    the translator comment to be more to the point.

 panels/network/net-device-wifi.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit ac67290cb7cf2f0830afd39350d5e501c7d1d0d9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 15:25:31 2012 -0400

    network: Make the 'Settings...' buttons work properly
    
    The code was assuming that 'editing' always means editing the
    currently active connection. With the new design of the wifi
    details tabs, that is no longer the case, we want to be able
    to edit non-active connections. This commit makes it so.

 panels/network/net-device-wifi.c | 48 +++++++++++++++++++++++++++++++++++-----
 1 file changed, 42 insertions(+), 6 deletions(-)

commit 56a0be042243d250c32c98c448b20049f56bc7c3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 15:24:39 2012 -0400

    network: Add more buttons
    
    Make the details pages for in-range and out-of-range aps more
    similar, by adding 'Forget Network' and 'Settings...' buttons
    to both.
    
    This is a step towards using the same details page for all
    aps and connections.

 panels/network/network-wifi.ui | 127 +++++++++++++++++++++++++++--------------
 1 file changed, 84 insertions(+), 43 deletions(-)

commit 31dade6279e9b23f77d37beb013921f009be0168
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 14:23:36 2012 -0400

    network: Mark all rows representing saved connections as such
    
    When we find a saved connection among the access points already
    in the list, we forget to mark it as saved, so the arrow to go
    to the details page is not shown.

 panels/network/net-device-wifi.c | 1 +
 1 file changed, 1 insertion(+)

commit ec629b73ad5e2b29eb49992861b0c46faf58b7b4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Sep 8 14:22:17 2012 -0400

    network: Add a separator before the arrow when needed
    
    The separator is giving a hint that there are two clickable
    areas in the row.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682270

 panels/network/Makefile.am                     |   2 +
 panels/network/net-device-wifi.c               |  57 ++++++++++-
 panels/network/panel-cell-renderer-separator.c | 130 +++++++++++++++++++++++++
 panels/network/panel-cell-renderer-separator.h |  62 ++++++++++++
 4 files changed, 250 insertions(+), 1 deletion(-)

commit 7ef84e87e9728587aea5fd3cf80031c5b1a894c1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 13 01:19:35 2012 -0400

    mouse: Fix accessible labels for switches in mouse panel
    
    Setting mnemonic-widget on the labels makes orca read out meaningful
    text for the switches.
    https://bugzilla.gnome.org/show_bug.cgi?id=683703

 panels/mouse/gnome-mouse-properties.ui | 1 +
 1 file changed, 1 insertion(+)

commit 828e896e12a31427e6e56f855365bfca2ff151dc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 13 01:18:55 2012 -0400

    bluetooth: Fix accessible labels for switches in bluetooth panel
    
    Setting mnemonic-widget on the labels makes orca read out meaningful
    text for the switches.
    https://bugzilla.gnome.org/show_bug.cgi?id=683703

 panels/bluetooth/bluetooth.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 1db660c410769930eef6d043e36e3e13f4267a96
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 13 00:40:32 2012 -0400

    screen: Make notification checkbox focusable
    
    This was certainly just an oversight, but it makes the
    checkbox essentially nonaccessible.

 panels/screen/screen.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 539d78cb63e542b6d0e060c9d2e41ea817701458
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 13 06:28:44 2012 -0400

    universal access: Fix labels for switches in zoom options
    
    Setting mnemonic-widget on the labels makes orca read out meaningful
    text for the switches.
    https://bugzilla.gnome.org/show_bug.cgi?id=683703

 panels/universal-access/zoom-options.ui | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 4e24e944ebed97cf9ca7e813267b6ffbb1fa7090
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 13 06:26:24 2012 -0400

    Universal access: Fix up whitespace in zoom options dialog
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683544

 panels/universal-access/zoom-options.ui | 56 ++++++++++++++++-----------------
 1 file changed, 27 insertions(+), 29 deletions(-)

commit d5a186d26c3bf4f9af9eab6c786b44e45ca82f3a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 13 00:38:46 2012 -0400

    universal access: Fix accessible labels for switches
    
    Setting mnemonic-widget on the labels makes orca read out meaningful
    text for the switches.
    https://bugzilla.gnome.org/show_bug.cgi?id=683703

 panels/universal-access/uap.ui | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 4f59a4aee657b11aa11fe23f74cea8a570725083
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Thu Sep 13 13:15:55 2012 +0300

    Updated Greek translation

 po/el.po | 185 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 87 insertions(+), 98 deletions(-)

commit e0c68028be17a5a102c699620f08486616027f62
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Sep 13 09:46:00 2012 +0200

    Updated Spanish translation

 po/es.po | 99 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 47 insertions(+), 52 deletions(-)

commit 8679167492daf471e2bb81dbae82ecc565fe4177
Author: Ville-Pekka Vainio <vpvainio@iki.fi>
Date:   Wed Sep 12 22:31:31 2012 +0300

    Finnish translation update by Jiri Grönroos

 po/fi.po | 3883 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2490 insertions(+), 1393 deletions(-)

commit 5186ae767c343a349637a992eed578994eaac144
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Wed Sep 12 20:31:03 2012 +0530

    Updated translation for Odia.

 po/or.po | 3976 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2584 insertions(+), 1392 deletions(-)

commit 885f44c1c8bd56de99477d6721e9440e901bb432
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Wed Sep 12 18:43:01 2012 +0530

    Updated kn translation

 po/kn.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e9c6aefeb70db2238d8281415ed192c63885fb79
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Wed Sep 12 18:39:18 2012 +0530

    Updated kn translation

 po/kn.po | 78 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 36 insertions(+), 42 deletions(-)

commit c4544a8a470b3dd3cc396b77f5416f2fa8024845
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Wed Sep 12 16:31:35 2012 +0530

    Updated kn translation

 po/kn.po | 82 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 48 insertions(+), 34 deletions(-)

commit d06250b1bab3f25de55c5d43e0344a6b36550f11
Author: Sandeep Sheshrao Shedmake <sshedmak@redhat.com>
Date:   Wed Sep 12 15:44:41 2012 +0530

    Updated Marathi Translations

 po/mr.po | 1906 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 866 insertions(+), 1040 deletions(-)

commit 2a88736cf61395b731b3d3f8f9615ec11248d004
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 12 10:24:19 2012 +0100

    wacom: Add link to wacom docs
    
    And not the generic control-center docs.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471#c40

 panels/wacom/cc-wacom-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 2ebf2ecad24df1567380d30b2d2929aa63e9fc90
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 12 10:23:39 2012 +0100

    wacom: Bump g-s-d requirement
    
    For the new action type.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 083c19d5528f5c765a2990e9a8c13e45563c1fbb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 12 09:44:00 2012 +0100

    wacom: Bump minimum libwacom req to 0.6

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1384bb5ecea83fce78a1a7451e86ac09f6b76cd9
Author: A S Alam <aalam@users.sf.net>
Date:   Wed Sep 12 07:20:56 2012 +0530

    update Punjabi Translation

 po/pa.po | 382 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 186 insertions(+), 196 deletions(-)

commit eebb95d2f7a7697324518cab64d9cd1418ca6855
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Tue Sep 11 20:46:30 2012 +0530

    Assamese translation updated

 po/as.po | 782 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 408 insertions(+), 374 deletions(-)

commit 3550944c489d3d73be2f409765f7895e2f828128
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Tue Sep 11 21:04:02 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 26 ++++++++------------------
 1 file changed, 8 insertions(+), 18 deletions(-)

commit 34da50157175abbb569b408d745aa11168e82621
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Tue Sep 11 21:01:25 2012 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 438 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 232 insertions(+), 206 deletions(-)

commit 1eb906515fe100bb3193ed29ceda616266f5ebd4
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Sep 6 14:06:01 2012 +0200

    printers: Use GPLv2+ for files created by Marek Kasik
    
    This commit is related to the bug #683420.

 panels/printers/pp-cups.c                 | 2 +-
 panels/printers/pp-cups.h                 | 2 +-
 panels/printers/pp-host.c                 | 2 +-
 panels/printers/pp-host.h                 | 2 +-
 panels/printers/pp-ipp-option-widget.c    | 2 +-
 panels/printers/pp-ipp-option-widget.h    | 2 +-
 panels/printers/pp-jobs-dialog.c          | 2 +-
 panels/printers/pp-jobs-dialog.h          | 2 +-
 panels/printers/pp-maintenance-command.c  | 2 +-
 panels/printers/pp-maintenance-command.h  | 2 +-
 panels/printers/pp-new-printer-dialog.c   | 2 +-
 panels/printers/pp-new-printer-dialog.h   | 2 +-
 panels/printers/pp-new-printer.c          | 2 +-
 panels/printers/pp-new-printer.h          | 2 +-
 panels/printers/pp-options-dialog.c       | 2 +-
 panels/printers/pp-options-dialog.h       | 2 +-
 panels/printers/pp-ppd-option-widget.c    | 2 +-
 panels/printers/pp-ppd-option-widget.h    | 2 +-
 panels/printers/pp-ppd-selection-dialog.c | 2 +-
 panels/printers/pp-ppd-selection-dialog.h | 2 +-
 panels/printers/pp-utils.c                | 2 +-
 panels/printers/pp-utils.h                | 2 +-
 22 files changed, 22 insertions(+), 22 deletions(-)

commit fde7b55ce3902d2772a0ecf046f6f544f78dd2ac
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Tue Sep 11 18:33:16 2012 +0530

    Updated kn translation

 po/kn.po | 1685 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 857 insertions(+), 828 deletions(-)

commit 52dca977990e4e5194378bcaac957b7a3843a501
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Tue Sep 11 16:58:13 2012 +0530

    Updated gujarati file

 po/gu.po | 4074 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2518 insertions(+), 1556 deletions(-)

commit e2d852c58390a8d2d9b730620b3a2ddd919402e4
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Mon Sep 10 21:25:01 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 54 +++++++++++++++++++-----------------------------------
 1 file changed, 19 insertions(+), 35 deletions(-)

commit 0a0bc59afacc08fe0ec6378a7171eb3fdb549fe3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 10 14:55:04 2012 +0100

    printers: Avoid redefinition of UserResponseCallback
    
    It was declared to be the same value in all three headers, which
    causes problems with old version of GCC.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683696

 panels/printers/pp-jobs-dialog.h          | 3 +--
 panels/printers/pp-options-dialog.h       | 3 +--
 panels/printers/pp-ppd-selection-dialog.h | 2 --
 panels/printers/pp-utils.h                | 2 ++
 4 files changed, 4 insertions(+), 6 deletions(-)

commit 312a5dfe874483ebfd59c960b804e70086ac4519
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Sep 10 09:42:24 2012 -0400

    Set pixbuf renderer stock size to 32 so emblems render at 16px
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682123

 panels/background/cc-background-chooser-dialog.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 35219123286cfcf08452ef49e2c6a578fd1fd1f3
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Sep 10 15:06:37 2012 +0200

    Updated Galician translations

 po/gl.po | 108 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 56 insertions(+), 52 deletions(-)

commit f2e54f77feb22cd021ba8676878594f81169ec8d
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Sep 10 01:11:43 2012 +0100

    Updated Portuguese translation

 po/pt.po | 3754 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2312 insertions(+), 1442 deletions(-)

commit 8af69625d3373809ffb5e603e69c6979e5e67247
Author: Daiki Ueno <ueno@unixuser.org>
Date:   Tue Aug 28 14:04:34 2012 +0900

    region: Use ibus_get_language_name() to get a language from its code
    
    ibus_engine_desc_get_language() may return an empty string or language
    codes that gdm_get_language_from_name() doesn't understand. Use
    ibus_get_language_name() instead to handle such cases properly.
    
    This also allows us to use the same method in gnome-shell to get
    consistent display strings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682851

 panels/region/gnome-region-panel-input.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit 830c1aa5a2df1d4a5a37656b3ee5ec86117d9c97
Author: Arash Mousavi <mousavi.arash@gmail.com>
Date:   Sat Sep 8 15:28:58 2012 +0430

    l10n: Updated Persian translation

 po/fa.po | 5085 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 3413 insertions(+), 1672 deletions(-)

commit 014f153dcfdc0ff62a4d8a3a5a0f336ead1f7fb8
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Sep 8 00:03:33 2012 +0200

    Updated Hungarian translation

 po/hu.po | 5194 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 3146 insertions(+), 2048 deletions(-)

commit 5f353fa2b6d44a4be4e601b25f712e73736cd4c2
Author: Michael Terry <michael.terry@canonical.com>
Date:   Fri Sep 7 15:37:42 2012 -0400

    power: Use GCancellable better, to avoid a crash
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683533

 panels/power/cc-power-panel.c | 37 ++++++++++++++++++++++---------------
 1 file changed, 22 insertions(+), 15 deletions(-)

commit 11d808953933143bb272730a417322c8161e7f3d
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Fri Sep 7 20:33:36 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 251 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 106 insertions(+), 145 deletions(-)

commit 3406a950b6bd5e023e9d348adb5e20ea7df46a60
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Fri Sep 7 19:29:17 2012 +0300

    Updated Belarusian translation.

 po/be.po | 999 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 476 insertions(+), 523 deletions(-)

commit ec35ef91d6e5f863ac4e2c6ec2cb4f68d0b72c11
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Sep 7 16:19:00 2012 +0300

    Updated Hebrew translation.

 po/he.po | 536 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 289 insertions(+), 247 deletions(-)

commit 12a319875a96b01e8f717880371a6e462a51fcb9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 28 16:27:19 2012 +0100

    bluetooth: Don't break the custom widgets on connect
    
    We used to destroy and recreate the custom widgets whenever any of
    the properties changed. Now we make sure that the custom widgets are
    only destroyed and recreated when the device selected is a different one.
    
    This fixes NetworkManager's Bluetooth plugins getting destroyed
    because the Connected property changed, as it was trying to connect to
    the device.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681456

 panels/bluetooth/cc-bluetooth-panel.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit ba7171a57972cf7cd3189ac006aad492db302a9c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 6 19:17:21 2012 -0400

    Set a window title on the add printer dialog
    
    Otherwise, it shows up as cinnamon-control-center, which is ugly.

 panels/printers/new-printer-dialog.ui | 1 +
 1 file changed, 1 insertion(+)

commit 299530a7a6f9a3ebb028a4c1e9ae02e0b2c5b651
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 6 19:12:19 2012 -0400

    Set a window title on the add network dialog
    
    Otherwise, it shows up as cinnamon-control-center, which is ugly.

 panels/network/network.ui | 1 +
 1 file changed, 1 insertion(+)

commit cd0363d3f59d7d53d28188bef3479073f724d1ce
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 6 19:10:37 2012 -0400

    Set a window title on the hotspot dialog
    
    Set a blank title on the hotspot dialog, otherwise it shows up
    as cinnamon-control-center, which is ugly.

 panels/network/network-wifi.ui | 1 +
 1 file changed, 1 insertion(+)

commit a955ec4152584f208c4e4e26bf58a1a4d285ce7a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 6 07:43:05 2012 -0400

    Switch files created by me to GPLv2+
    
    This matches the rest of the control-center code base.
    https://bugzilla.gnome.org/show_bug.cgi?id=683420

 panels/common/cc-common-language.c        | 2 +-
 panels/common/cc-common-language.h        | 2 +-
 panels/common/cc-language-chooser.c       | 2 +-
 panels/common/cc-language-chooser.h       | 2 +-
 panels/user-accounts/pw-utils.c           | 2 +-
 panels/user-accounts/pw-utils.h           | 2 +-
 panels/user-accounts/um-account-dialog.c  | 2 +-
 panels/user-accounts/um-account-dialog.h  | 2 +-
 panels/user-accounts/um-account-type.c    | 2 +-
 panels/user-accounts/um-account-type.h    | 2 +-
 panels/user-accounts/um-crop-area.c       | 2 +-
 panels/user-accounts/um-editable-button.c | 2 +-
 panels/user-accounts/um-editable-button.h | 2 +-
 panels/user-accounts/um-editable-combo.c  | 2 +-
 panels/user-accounts/um-editable-combo.h  | 2 +-
 panels/user-accounts/um-password-dialog.c | 2 +-
 panels/user-accounts/um-password-dialog.h | 2 +-
 panels/user-accounts/um-photo-dialog.c    | 2 +-
 panels/user-accounts/um-photo-dialog.h    | 2 +-
 panels/user-accounts/um-user-manager.c    | 2 +-
 panels/user-accounts/um-user-manager.h    | 2 +-
 panels/user-accounts/um-user-module.c     | 2 +-
 panels/user-accounts/um-user-panel.c      | 2 +-
 panels/user-accounts/um-user-panel.h      | 2 +-
 panels/user-accounts/um-utils.c           | 2 +-
 panels/user-accounts/um-utils.h           | 2 +-
 shell/cc-editable-entry.c                 | 2 +-
 shell/cc-editable-entry.h                 | 2 +-
 28 files changed, 28 insertions(+), 28 deletions(-)

commit 611cc74c14881fb019b43fe176ff004a3ab10b25
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Fri Sep 7 00:07:21 2012 +0200

    Updated German translation

 po/de.po | 2536 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 1206 insertions(+), 1330 deletions(-)

commit 8d5a43a0878a6ecfdbb4224750b2faf565d4a9bb
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Thu Sep 6 22:54:31 2012 +0200

    Updated Serbian translation

 po/sr.po       | 51 +++++++++++++--------------------------------------
 po/sr@latin.po | 51 +++++++++++++--------------------------------------
 2 files changed, 26 insertions(+), 76 deletions(-)

commit 406b1f4b74570a4497683efa33d37db238a004bd
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Sep 6 21:49:33 2012 +0200

    Fix Slovenian translation

 po/sl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 19d04d6dff5c49f3076ccc98e6bf3e97b2c2c004
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Sep 6 21:09:39 2012 +0200

    Updated Slovenian translation

 po/sl.po | 2605 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1545 insertions(+), 1060 deletions(-)

commit 226a0af02893d83faee0faeba40c8ebb6a443b5e
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Sep 6 18:26:14 2012 +0200

    Updated Spanish translation

 po/es.po | 288 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 143 insertions(+), 145 deletions(-)

commit c1857b0f9c80434890679ace83865db5d2565fa6
Author: Benjamin Berg <benjamin@sipsolutions.net>
Date:   Wed Aug 8 21:49:00 2012 +0200

    display: Fix mouse events not working in preview
    
    We need to save event areas with the correct transformation.
    
    The following things need to be take into account:
     * Current cairo matrix (translations)
     * Widget allocation because it is painting on the parents widgets window
     * Cairo device offset, which GTK+ sets (but not for a full window redraw)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681475

 panels/display/scrollarea.c | 34 +++++++++++++++++++++++++++-------
 1 file changed, 27 insertions(+), 7 deletions(-)

commit 72cce6b89f7013a9004ddd3b240c823155cc49ce
Author: Andika Triwidada <andika@gmail.com>
Date:   Thu Sep 6 16:00:01 2012 +0700

    Updated Indonesian translation

 po/id.po | 65 ++++++++--------------------------------------------------------
 1 file changed, 8 insertions(+), 57 deletions(-)

commit 4130be13b55fdf1f6d7d76c2f7b928a4f3fcf2c4
Author: Dirgita <dirgitadevina@yahoo.co.id>
Date:   Thu Sep 6 15:57:42 2012 +0700

    Updated Indonesian translation

 po/id.po | 323 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 147 insertions(+), 176 deletions(-)

commit 3e86bed190ae912778ff8b1b6dd3f3d552168a30
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Thu Sep 6 02:37:48 2012 +0300

    Updated Greek translation

 po/el.po | 282 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 144 insertions(+), 138 deletions(-)

commit 954b530d37fe5070fc64d508d3498fc4218c66d4
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Sep 5 21:07:06 2012 +0200

    Updated Polish translation
    
    \m/
    
    I kinda miss the easter egg GEGL Invaders game.

 po/pl.po | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

commit eee381abddf230a2518ff49e745eab4903ed0d45
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Aug 22 19:28:41 2012 +0200

    mouse: Add penta-click test in addition to double-click
    
    Clicking anything five times should obviously bring up an image (by
    Jakub Steiner) of a five-legged goat :-)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682492

 panels/mouse/Makefile.am           |    1 +
 panels/mouse/double-click-gegl.png |  Bin 0 -> 9568 bytes
 panels/mouse/gnome-mouse-test.c    |   93 +-
 panels/mouse/scroll-test-gegl.svg  | 1781 ++++++++++++++++++++++++++++++++++++
 4 files changed, 1861 insertions(+), 14 deletions(-)

commit 49797e8ae2753bacc74b86cd28be250ff93a62cc
Author: Stefano Facchini <stefano.facchini@gmail.com>
Date:   Wed Sep 5 19:34:19 2012 +0200

    printers: Add missing definition of HAVE_CUPS_1_6
    
    Commit 1532d7ef forgot to actually define HAVE_CUPS_1_6
    when building against CUPS 1.6
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683441

 panels/printers/pp-maintenance-command.c | 4 ++++
 1 file changed, 4 insertions(+)

commit dbff39026baac85e96ad1fa38bbd95ba68680a11
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Sat Sep 1 00:31:34 2012 +0200

    background: Use a varied color palette
    
    The original palette for color selection was a bit flat.
    The new selection includes 9 "fun" colors that are highly
    saturated and people would be initialy drawn to select, as well
    as 6 colors that are more appropriate wallpapers and are good to
    use for extended periods of time.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682556

 panels/background/bg-colors-source.c | 27 +++++++++++++++------------
 1 file changed, 15 insertions(+), 12 deletions(-)

commit eaacb99d5feae22fb6b2794b318fc303962e0cf9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jul 24 12:27:19 2012 -0400

    user-accounts: Use GStreamer 1.0
    
    Just changing the versions in configure.ac seems to make cheese
    build fine against gstreamer 1.0.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680538

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1913cc212644b1464a595d2799e6300465c1fcc9
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Wed Sep 5 19:58:30 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 850 +++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 852 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 900 insertions(+), 802 deletions(-)

commit 1cd19d0f472c48108d35222fd74ae316a37fdace
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Wed Sep 5 10:02:43 2012 +0200

    Updated Serbian translation

 po/sr.po       | 1261 ++++++++++++++++++++++++++++++--------------------------
 po/sr@latin.po | 1261 ++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1354 insertions(+), 1168 deletions(-)

commit dd18ab17d44c5981b8f4e74c33ce58202bee9758
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Sep 5 07:18:57 2012 +0200

    Updated Arabic translation

 po/ar.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 753f9472dcf4ec53f68bb45bfa1e083f7f950755
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Sep 5 07:15:38 2012 +0200

    Updated Arabic translation

 po/ar.po | 256 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 126 insertions(+), 130 deletions(-)

commit 9e4566b1f5cac101eeaedba97bf29763a0c33bfe
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Sep 5 00:24:11 2012 +0200

    Updated Polish translation

 po/pl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3bff79d8210453e31ec30a4d69df1a7e546da3ec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 4 21:51:58 2012 +0100

    3.5.91

 NEWS         | 44 ++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 45 insertions(+), 1 deletion(-)

commit 503a9104ed10970cc492ecee1820b0b59cce56f0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 4 21:34:35 2012 +0100

    build: Bump dependencies for keyboard panel changes
    
    We want the "show all the input sources" setting to work.

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ef4d5c57431128c3746f9b1d614786be9ff80776
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Sep 4 22:37:32 2012 +0200

    Updated Galician translations

 po/gl.po | 267 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 132 insertions(+), 135 deletions(-)

commit edba26d342b2cdc51049b657791bfe741e1dbfe5
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Tue Sep 4 21:08:26 2012 +0530

    updated Tamil translation

 po/ta.po | 255 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 124 insertions(+), 131 deletions(-)

commit 13319e391ada514809762a442c2ffa8c462b4a7e
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Tue Sep 4 21:04:36 2012 +0530

    updated Tamil translation

 po/ta.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7bdfb4017edbd54a2be1dfbfbc726b009429b025
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Tue Sep 4 20:58:29 2012 +0530

    updated Tamil translation

 po/ta.po | 3620 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2254 insertions(+), 1366 deletions(-)

commit 9d46f8393c0074cbc65c1c4b62e3996fd5b6b255
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Tue Sep 4 14:43:42 2012 +0200

    region: Expand the supported IBus engines whitelist
    
    Thanks to Daiki Ueno for assembling the list.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682313

 panels/region/gnome-region-panel-input.c | 130 ++++++++++++++++++++++++++++++-
 1 file changed, 129 insertions(+), 1 deletion(-)

commit 42e8783376c89f3a8ed04c30d763f6d52614703d
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Sep 4 15:00:49 2012 +0200

    Updated Polish translation

 po/pl.po | 174 +++++++++++++++++++++++----------------------------------------
 1 file changed, 62 insertions(+), 112 deletions(-)

commit a0ad46365fa96b7159ab16dede4b5e39b1346750
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 21:35:21 2012 +0200

    printers: Remove redundant functions
    
    Remove functions which are not used anymore. (#683229)

 panels/printers/pp-utils.c | 1216 --------------------------------------------
 panels/printers/pp-utils.h |   11 -
 2 files changed, 1227 deletions(-)

commit 45ba8e89e86397df912e07df14d76373f1c7e7af
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 21:25:59 2012 +0200

    printers: Redesign of new printer dialog
    
    This commit implements design changes from
    https://live.gnome.org/Design/SystemSettings/Printers.
    
    The new printer dialog gets informations about connected devices
    from CUPS server asynchronously and separately for each backend now.
    
    Entering an address into the entry and pressing the icon inside
    the entry or enter starts to detect printers on the entered host.
    
    Entering a text which is a substring of a name of a device or its location
    filters the list to contain just devicess with the string in it (e.g. Canon
    will keep devices with "Canon" in their name).
    
    The PpNewPrinterDialog is regular object now. It emits signal "pre-response"
    when dialog is closed and a printer is being added and signal "response" when
    the new printer was added, addition of the new printer failed or the dialog was
    cancelled.
    This commit removes FirewallD support from new printer dialog. (#683229)

 panels/printers/cc-printers-panel.c     |  390 ++++-
 panels/printers/new-printer-dialog.ui   |  448 ++---
 panels/printers/pp-new-printer-dialog.c | 2900 ++++++++++++-------------------
 panels/printers/pp-new-printer-dialog.h |   39 +-
 4 files changed, 1641 insertions(+), 2136 deletions(-)

commit 9428b7a641052f164a4d7f1b78958ecf931e01f5
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 21:18:58 2012 +0200

    printers: Set longer timeouts
    
    Set longer timeouts for GetBestDrivers, PrinterAddOption and
    PrinterAddOptionDefault. These can take more time than already
    specified timeouts. (#683229)

 panels/printers/pp-utils.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit c34e282babfc6e7d90c9f9a832c186b2c8a3288f
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 21:16:06 2012 +0200

    printers: Return after callback
    
    Return from get_ppds_attribute_async() right after callback
    was called. Otherwise the callback could be called twice. (#683229)

 panels/printers/pp-utils.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit dea424dbeeaabb46cb0a5e9d950371c837babb6e
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 20:44:32 2012 +0200

    printers: Add PpNewPrinter object for installation of new printer
    
    PpNewPrinter contains asynchronous method for installation of
    new printer. The new printer is specified by given parameters (e.g. name,
    device-id, device-uri, ppd-name, info, location, ...). (#683229)

 panels/printers/Makefile.am      |    2 +
 panels/printers/pp-new-printer.c | 1444 ++++++++++++++++++++++++++++++++++++++
 panels/printers/pp-new-printer.h |   66 ++
 3 files changed, 1512 insertions(+)

commit 6f8b9e88254cb01879ff4a9891b123eb8270b488
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 20:33:21 2012 +0200

    printers: Allow printer_get_ppd_async() to get PPD from remote host
    
    Adds host_name and port parameters to printer_get_ppd_async(). If host_name
    is NULL then it gets the PPD from local CUPS server. (#683229)

 panels/printers/pp-options-dialog.c    |  2 ++
 panels/printers/pp-ppd-option-widget.c |  2 ++
 panels/printers/pp-utils.c             | 23 ++++++++++++++++++++++-
 panels/printers/pp-utils.h             |  2 ++
 4 files changed, 28 insertions(+), 1 deletion(-)

commit 869555455795d688ec0c520df0bba9ae6ba3c12b
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 20:27:04 2012 +0200

    printers: Make get_paper_size_from_locale() available to other source files
    
    Export get_paper_size_from_locale() in pp-utils.h. (#683229)

 panels/printers/pp-utils.c | 2 +-
 panels/printers/pp-utils.h | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 1532d7ef1af7790c7eda92ae2fff1179230fd6d0
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 20:18:47 2012 +0200

    printers: Add PpMaintenanceCommand object for execution of commands
    
    PpMaintenanceCommand object contains asynchronous method which executes
    given CUPS maintenance command (e.g. "AutoConfigure"). (#683229)

 panels/printers/Makefile.am              |   2 +
 panels/printers/pp-maintenance-command.c | 325 +++++++++++++++++++++++++++++++
 panels/printers/pp-maintenance-command.h |  69 +++++++
 3 files changed, 396 insertions(+)

commit 142d2c65b4fa01100d7cc8d6f6ca856c94d07182
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 20:04:38 2012 +0200

    printers: Add PpHost object for listing print devices
    
    This commit adds PpHost object which represents a remote
    host from which we want to get printers. It contains
    asynchronous method for enumerating printers list from the host
    using CUPS' SNMP backend and method for enumerating printers list
    directly from the remote CUPS server running on the host. (#683229)

 panels/printers/Makefile.am |   2 +
 panels/printers/pp-host.c   | 459 ++++++++++++++++++++++++++++++++++++++++++++
 panels/printers/pp-host.h   |  82 ++++++++
 panels/printers/pp-utils.h  |   4 +-
 4 files changed, 546 insertions(+), 1 deletion(-)

commit 0cb0dab3778d75c3edec5b6de956ee70ddb026b5
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 19:50:31 2012 +0200

    printers: Add async method for listing print devices
    
    This commit adds asynchronous function get_cups_devices_async() which
    sequentially executes CUPS' backends and returns found devices
    by a callback. (#683229)

 panels/printers/pp-utils.c | 286 +++++++++++++++++++++++++++++++++++++++++++++
 panels/printers/pp-utils.h |  29 +++++
 2 files changed, 315 insertions(+)

commit 5a2794a7fefaebe7c3467136a27ad8c9facda747
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 21:46:50 2012 +0200

    printers: Add PpCups object for getting destinations
    
    PpCups object represents local CUPS server. It contains
    asynchronous method for getting printers installed on
    the server. It is an asynchronous version of cupsGetDests().
    (#683229)

 panels/printers/Makefile.am |   2 +
 panels/printers/pp-cups.c   | 125 ++++++++++++++++++++++++++++++++++++++++++++
 panels/printers/pp-cups.h   |  71 +++++++++++++++++++++++++
 3 files changed, 198 insertions(+)

commit cc2e15a592b34be022bb649e18fe397c31214cb4
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 21:43:14 2012 +0200

    printers: Move common constants to pp-utils.h
    
    Move constants which are used in more than one source file
    to pp-utils.h. (#683229)

 panels/printers/pp-new-printer-dialog.c | 8 --------
 panels/printers/pp-utils.c              | 6 ------
 panels/printers/pp-utils.h              | 8 ++++++++
 3 files changed, 8 insertions(+), 14 deletions(-)

commit 1f76a739e3e0a79190b036fc890fdaac1a6b8c16
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 3 19:11:28 2012 +0200

    printers: Include missing header
    
    <cups/cups.h> has to be included in pp-utils.h because there
    are functions in pp-utils.h which accepts types defined
    in the cups.h as their parameters. (#683229)

 panels/printers/pp-utils.h | 1 +
 1 file changed, 1 insertion(+)

commit 2a87480f2654fa18cd683497fe2a569f732dab68
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Sep 3 01:36:20 2012 +0200

    region: Honor the 'show-all-sources' gsettings key
    
    This setting overrides our supported IBus engines whitelist and makes
    us show every engine installed on the system when enabled.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682313

 panels/region/gnome-region-panel-input.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 72bf4895558173dcfbdeead2175fd619fc2264e8
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Tue Sep 4 12:09:17 2012 +0100

    Updated British English translation

 po/en_GB.po | 3710 ++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 2288 insertions(+), 1422 deletions(-)

commit dd256f265b1a94d6466034e7933196e4668b81a1
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Sep 3 21:53:45 2012 +0200

    Updated Polish translation

 po/pl.po | 55 +++++++++++++++++++++++++++++++------------------------
 1 file changed, 31 insertions(+), 24 deletions(-)

commit f0be9146d418d7db8dce6826134e8e7ab15af911
Author: Federico Mena Quintero <federico@gnome.org>
Date:   Mon Sep 3 14:07:29 2012 -0500

    displays: bgo#592412 - Make 'Mirrored Displays' string consistent with GnomeRRLabeler
    
    We had 'Mirror displays' as a command in the control center, but 'Mirror screens' as a description in
    GnomeRRLabeler.  Now we have 'Mirrored Displays' as a description of the current state.
    
    Signed-off-by: Federico Mena Quintero <federico@gnome.org>

 panels/display/cc-display-panel.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 7171520e72f633b905e9b6ea8afa48adada8d4ea
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sat Aug 25 21:23:23 2012 +0200

    region: Use the async IBus engines getter
    
    https://bugzilla.gnome.org/show_bug.cgi?id=683035

 panels/region/gnome-region-panel-input.c | 63 +++++++++++++++++++++++++++-----
 1 file changed, 54 insertions(+), 9 deletions(-)

commit 0703d545a5d82f0748d30d898659a340d78684bf
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Aug 21 23:16:33 2012 -0400

    datetime: make the map insensitive when the panel is locked
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672445

 panels/datetime/Makefile.am                 |  43 ++++++++++++++++-
 panels/datetime/cc-timezone-map.c           |  72 +++++++++++++++++++++++-----
 panels/datetime/data/bg_dim.png             | Bin 0 -> 95862 bytes
 panels/datetime/data/timezone_-10_dim.png   | Bin 0 -> 5139 bytes
 panels/datetime/data/timezone_-11_dim.png   | Bin 0 -> 4815 bytes
 panels/datetime/data/timezone_-1_dim.png    | Bin 0 -> 4953 bytes
 panels/datetime/data/timezone_-2_dim.png    | Bin 0 -> 2670 bytes
 panels/datetime/data/timezone_-3.5_dim.png  | Bin 0 -> 995 bytes
 panels/datetime/data/timezone_-3_dim.png    | Bin 0 -> 8773 bytes
 panels/datetime/data/timezone_-4.5_dim.png  | Bin 0 -> 1527 bytes
 panels/datetime/data/timezone_-4_dim.png    | Bin 0 -> 9836 bytes
 panels/datetime/data/timezone_-5.5_dim.png  | Bin 0 -> 859 bytes
 panels/datetime/data/timezone_-5_dim.png    | Bin 0 -> 12224 bytes
 panels/datetime/data/timezone_-6_dim.png    | Bin 0 -> 8833 bytes
 panels/datetime/data/timezone_-7_dim.png    | Bin 0 -> 7868 bytes
 panels/datetime/data/timezone_-8_dim.png    | Bin 0 -> 4261 bytes
 panels/datetime/data/timezone_-9.5_dim.png  | Bin 0 -> 859 bytes
 panels/datetime/data/timezone_-9_dim.png    | Bin 0 -> 4972 bytes
 panels/datetime/data/timezone_0_dim.png     | Bin 0 -> 7074 bytes
 panels/datetime/data/timezone_10.5_dim.png  | Bin 0 -> 844 bytes
 panels/datetime/data/timezone_10_dim.png    | Bin 0 -> 8395 bytes
 panels/datetime/data/timezone_11.5_dim.png  | Bin 0 -> 868 bytes
 panels/datetime/data/timezone_11_dim.png    | Bin 0 -> 6744 bytes
 panels/datetime/data/timezone_12.75_dim.png | Bin 0 -> 846 bytes
 panels/datetime/data/timezone_12_dim.png    | Bin 0 -> 3935 bytes
 panels/datetime/data/timezone_13_dim.png    | Bin 0 -> 876 bytes
 panels/datetime/data/timezone_14_dim.png    | Bin 0 -> 4150 bytes
 panels/datetime/data/timezone_1_dim.png     | Bin 0 -> 10187 bytes
 panels/datetime/data/timezone_2_dim.png     | Bin 0 -> 8709 bytes
 panels/datetime/data/timezone_3.5_dim.png   | Bin 0 -> 1781 bytes
 panels/datetime/data/timezone_3_dim.png     | Bin 0 -> 9877 bytes
 panels/datetime/data/timezone_4.5_dim.png   | Bin 0 -> 1385 bytes
 panels/datetime/data/timezone_4_dim.png     | Bin 0 -> 2754 bytes
 panels/datetime/data/timezone_5.5_dim.png   | Bin 0 -> 3405 bytes
 panels/datetime/data/timezone_5.75_dim.png  | Bin 0 -> 1596 bytes
 panels/datetime/data/timezone_5_dim.png     | Bin 0 -> 8117 bytes
 panels/datetime/data/timezone_6.5_dim.png   | Bin 0 -> 1675 bytes
 panels/datetime/data/timezone_6_dim.png     | Bin 0 -> 4678 bytes
 panels/datetime/data/timezone_7_dim.png     | Bin 0 -> 7972 bytes
 panels/datetime/data/timezone_8.75_dim.png  | Bin 0 -> 7064 bytes
 panels/datetime/data/timezone_8_dim.png     | Bin 0 -> 9378 bytes
 panels/datetime/data/timezone_9.5_dim.png   | Bin 0 -> 1611 bytes
 panels/datetime/data/timezone_9_dim.png     | Bin 0 -> 8383 bytes
 43 files changed, 103 insertions(+), 12 deletions(-)

commit ca987eefa277d0a2db0371cedc6aa96820eafffc
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Sep 3 15:58:32 2012 +0200

    Updated Spanish translation

 po/es.po | 48 +++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 37 insertions(+), 11 deletions(-)

commit baa6139536bdf8eedf5cc49be87b0bb472904441
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Sun Sep 2 15:54:24 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 44 +++++++++++++++++++++++++++++++++-----------
 1 file changed, 33 insertions(+), 11 deletions(-)

commit 2f62ee3ca32b266dc905a9baecc5c2b120f7fc89
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Sep 2 11:12:52 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 250 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 139 insertions(+), 111 deletions(-)

commit 1043d7c741e9f122f2969dc1249793fb8952391f
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Sep 2 09:57:23 2012 +0530

    update Punjabi Translation

 po/pa.po | 462 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 255 insertions(+), 207 deletions(-)

commit bf6cff639f6618105ca32c94ccf8c629c5724b69
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Sep 1 21:07:54 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 52 ++++++++++++++++++++++------------------------------
 1 file changed, 22 insertions(+), 30 deletions(-)

commit 62082e8bfdb3b75e0167677b1342c67b7f9d6ab7
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Sep 1 20:42:24 2012 +0700

    po/vi: import from Damned Lies

 po/vi.po | 535 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 265 insertions(+), 270 deletions(-)

commit 26638cdc7cd8dce50f48d90c64541534269c0951
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Sep 1 12:38:18 2012 +0200

    Updated Galician translations

 po/gl.po | 135 ++++++---------------------------------------------------------
 1 file changed, 11 insertions(+), 124 deletions(-)

commit 041245eeff3646f1cc7027fbea37d95bcf062ea8
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Aug 31 21:52:39 2012 +0200

    Updated Polish translation

 po/pl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 41a79d6a35d18e9293fb6326cfac803d92b61f81
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Aug 31 15:10:45 2012 -0400

    Fix big editable labels
    
    The code we used to match the entry and label font size and
    weight broke down with the latest CSS improvements in GTK+.
    Use a new GtkEntry api for this instead.
    The GTK+ requirement has been bumped to 3.5.13.

 configure.ac              |  2 +-
 shell/cc-editable-entry.c | 36 +-----------------------------------
 2 files changed, 2 insertions(+), 36 deletions(-)

commit cc6734e5c12f859330eb8a8f4b67cfb854cff8c4
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Aug 31 20:58:20 2012 +0200

    Updated Galician translations

 po/gl.po | 29 +++++++++++++++++++++++++++--
 1 file changed, 27 insertions(+), 2 deletions(-)

commit 2231b3dacc23e91c44ff48c9127d13c7fdb62857
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Fri Aug 31 17:56:06 2012 +0300

    Updated Greek translation

 po/el.po | 2304 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1316 insertions(+), 988 deletions(-)

commit 08c06849aa669847003d391aac60bc4946f3b113
Author: Andika Triwidada <andika@gmail.com>
Date:   Fri Aug 31 10:33:14 2012 +0700

    Updated Indonesian translation

 po/id.po | 1281 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 650 insertions(+), 631 deletions(-)

commit 4c761c29750ccb2bbdb3a210436b0ac883d354bb
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Aug 30 22:21:43 2012 +0200

    Updated Arabic translation

 po/ar.po | 263 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 152 insertions(+), 111 deletions(-)

commit 23ce2dbea7ea7341220eb63b4ace34afb64b988b
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Aug 30 18:13:48 2012 +0200

    Updated Polish translation

 po/pl.po | 50 ++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 38 insertions(+), 12 deletions(-)

commit a73aa77465351cad1da54d9cfb6278bdb1a970df
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Aug 30 17:08:52 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 42b6a0138a730415a3eb6ee1b80ec9bc8c98946f
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Aug 30 14:20:19 2012 +0200

    Updated Galician translations

 po/gl.po | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 936c188bf04a4cddc49308435948e530523d7718
Author: Ondrej Holy <oholy@redhat.com>
Date:   Wed Aug 29 12:44:55 2012 +0200

    mouse: Widget allocated size fallback
    
    https://bugzilla.gnome.org/show_bug.cgi?id=579135

 panels/mouse/gnome-mouse-test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1f68f46d74f29403d518be8793f240abcda0ecad
Author: Ondrej Holy <oholy@redhat.com>
Date:   Wed Aug 29 09:33:16 2012 +0200

    mouse: Reset timeouts id to zero
    
    https://bugzilla.gnome.org/show_bug.cgi?id=579135

 panels/mouse/gnome-mouse-test.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit 1cf9c9b078b1068276d4ec548b84b42ac3c6295c
Author: Ondrej Holy <oholy@redhat.com>
Date:   Thu Aug 23 15:10:19 2012 +0200

    mouse: New testing area according to mockup
    
    https://bugzilla.gnome.org/show_bug.cgi?id=579135

 panels/mouse/Makefile.am            |   12 +-
 panels/mouse/double-click-maybe.png |  Bin 4643 -> 0 bytes
 panels/mouse/double-click-off.png   |  Bin 4751 -> 0 bytes
 panels/mouse/double-click-on.png    |  Bin 6360 -> 0 bytes
 panels/mouse/gnome-mouse-test.c     |  197 +++-
 panels/mouse/gnome-mouse-test.ui    |   78 +-
 panels/mouse/scroll-test.svg        | 1960 +++++++++++++++++++++++++++++++++++
 7 files changed, 2182 insertions(+), 65 deletions(-)

commit 419a0481a33cf708c25e944b0d223ffe4fd0b096
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Wed Aug 29 22:36:19 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 629 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 300 insertions(+), 329 deletions(-)

commit c4f19cdf22f688efe157a7d7b197142788a4a9f5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Aug 29 17:01:52 2012 +0200

    Updated Spanish translation

 po/es.po | 396 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 206 insertions(+), 190 deletions(-)

commit 8198d2602cae1acf5784ab7bae8f29c443f90ab3
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Wed Aug 29 00:41:28 2012 +0200

    Updated Galician translations

 po/gl.po | 1172 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 610 insertions(+), 562 deletions(-)

commit 3b87bfd1c0ee55b25e41a475a9d14cf0fe5e325d
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Aug 28 18:54:04 2012 +0200

    Updated Polish translation

 po/pl.po | 298 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 151 insertions(+), 147 deletions(-)

commit 8b7fd5787f9bf9d9d9c29f01df9da50cacbcf91b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 28 16:47:20 2012 +0100

    universal-access: Remove unused object
    
    One less thing for translators to translate.

 panels/universal-access/uap.ui | 23 -----------------------
 1 file changed, 23 deletions(-)

commit 8c921b2dd4071aa96f27a8d1ecb7edb95f928577
Author: Jiro Matsuzawa <jmatsuzawa@gnome.org>
Date:   Tue Aug 28 23:17:22 2012 +0900

    network: add translation context for Wifi security
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682876

 panels/network/net-device-wifi.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 41584b6e5bef9c175872f0247a7690682e3628d5
Author: Jiro Matsuzawa <jmatsuzawa@gnome.org>
Date:   Tue Aug 28 23:58:06 2012 +0900

    universal-access: add translation context for Zoom
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682876

 panels/universal-access/zoom-options.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ce53dc7fd95528fa3069991e55d859e4a9145b21
Author: Jiro Matsuzawa <jmatsuzawa@gnome.org>
Date:   Tue Aug 28 21:43:02 2012 +0900

    wacom: add translation context for Wacom action type
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682876

 panels/wacom/cc-wacom-page.c | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

commit 658083fffa95a8787baf734f5b87d1a7e0cff2dc
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sun Aug 26 16:55:11 2012 +0200

    region: Don't use IBus if running in fallback mode
    
    In fallback mode we don't want to touch IBus since the gnome-shell UI
    isn't there to provide the full integrated user experience.
    
    We expect users to continue using existing IBus UIs in fallback mode.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682864

 panels/region/gnome-region-panel-input.c | 45 ++++++++++++++++++++++++--------
 1 file changed, 34 insertions(+), 11 deletions(-)

commit dee8e0917abdc2ec9b33baf571b944508ae42447
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sun Aug 26 15:33:24 2012 +0200

    region: Use a filter model on input sources
    
    This allows us to hide some entries which for whatever reason we can't
    display without removing them from gsettings.
    
    This reverts commit 54835c8f4486309c1517a7f71735fbdd7e098c5f.
    This reverts commit 953cc81b0f07c0e5f4e1f34a139efafe6d61fea1.
    This reverts commit ab0594239c5e43b3a14a0cf40ab2cce039a17a53.
    This reverts commit 03f08fd36c059c17f3af723ca29e0ad931fc6a26.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682864

 panels/region/gnome-region-panel-input.c | 125 ++++++++++++++++++++++++-------
 1 file changed, 100 insertions(+), 25 deletions(-)

commit 14dde72dfe2205629b0db17aa5ba239b31ced284
Author: Ondrej Holy <oholy@redhat.com>
Date:   Thu Aug 23 16:50:33 2012 +0200

    mouse: Fix of bad radio spacing in RTL.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669961

 panels/mouse/gnome-mouse-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e5cdb6fce45e1ce3cce4801ef36df3abcbc8fc8
Author: Ondrej Holy <oholy@redhat.com>
Date:   Thu Aug 23 14:34:59 2012 +0200

    mouse: Switch left/right radios according text direction.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669961

 panels/mouse/gnome-mouse-properties.c  | 2 ++
 panels/mouse/gnome-mouse-properties.ui | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit b0dcb2985742292947e5f44422de50a7a1bc5de3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 23 15:37:11 2012 +0100

    sound: The angry flower read the comments again

 panels/sound/gvc-mixer-control.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 5b8509088cdd8e8d8bfe832f9b64aa8b1b27faf3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 23 15:30:35 2012 +0100

    sound: Spell "Can't" properly in debug

 panels/sound/gvc-mixer-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f9f9f38a969990c10c0891542fea316ad985d928
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 28 07:35:05 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 195 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 105 insertions(+), 90 deletions(-)

commit 058edd5922378576484c6ea6a09d7cbd943d9a38
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Mon Aug 27 23:48:44 2012 +0530

    Implemented FUEL entries to Assamese translation

 po/as.po | 128 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 64 insertions(+), 64 deletions(-)

commit 33a628be07d6032e8787d77e50056370a757c730
Author: Jiro Matsuzawa <jmatsuzawa@gnome.org>
Date:   Mon Aug 27 23:58:05 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 1598 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 893 insertions(+), 705 deletions(-)

commit 39c1ecab054977edff77f89263b7be176516a505
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Mon Aug 27 13:47:11 2012 +0530

    Assamese translation updated

 po/as.po | 957 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 496 insertions(+), 461 deletions(-)

commit 46b269eb8bd79e8f9e36f62fdef0e6e002c59477
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Aug 26 11:13:07 2012 +0300

    Updated Hebrew translation.

 po/he.po | 2296 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1345 insertions(+), 951 deletions(-)

commit cec48ff08a2e6c6eb705db20fa5923d9e32f7a28
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Jul 12 19:11:11 2012 +0300

    Updated Hebrew translation.

 po/he.po | 777 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 450 insertions(+), 327 deletions(-)

commit 1a53ec676284175093e38202457a1a7eb956bff4
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Aug 26 05:15:08 2012 +0200

    Updated Arabic translation

 po/ar.po | 443 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 223 insertions(+), 220 deletions(-)

commit 4d80e477763742d0dc06ac57e308a0662773018c
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Sat Apr 14 01:51:35 2012 +0200

    system info: set related mime types when changing preferred apps
    
    Setting the preferred music or video app only changed the handler
    for ogg audio/video, leaving an inconsistent state where the previous
    (system default) app would be used for other images, audio and video
    formats.
    Instead make it so that when the user changes his preferences,
    the application becomes the default for all mime types in the same
    group that it supports.
    Nothing changes if configuration is modified externally (e.g.
    by hand or through nautilus): expose as preferred app the one that
    is configured to handle the primary content type.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674084

 panels/info/cc-info-panel.c | 102 ++++++++++++++++++++++++++++----------------
 1 file changed, 66 insertions(+), 36 deletions(-)

commit 98137cc4e63aa022ee4cb6dd96e1c3526b49a4e6
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Aug 24 04:32:21 2012 +0200

    Updated Polish translation

 po/pl.po | 3275 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1950 insertions(+), 1325 deletions(-)

commit 74b09b6edad57d23dd0c608e8cb0827a8ceaaec6
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Aug 23 17:40:29 2012 +0200

    Updated Spanish translation

 po/es.po | 467 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 243 insertions(+), 224 deletions(-)

commit f4c3d190bc5210418b65a6fe5c398cf99068eb91
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 23 14:22:19 2012 +0100

    display: Avoid possible warning on exit
    
    (cinnamon-control-center:8728): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    
    (cinnamon-control-center:8728): GLib-GObject-CRITICAL **: g_signal_handler_disconnect: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed

 panels/display/cc-display-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 570bafaf6b2ae0d24d921a9b34811cb3ef4fd005
Author: Zan Dobersek <zandobersek@gmail.com>
Date:   Thu Apr 5 08:11:23 2012 +0200

    user-accounts: Fix match icon not updating in some cases
    
    Check the new password matching after focusing out either entries.
    
    Validate the content of the verify password entry after
    focusing out either the new password entry or the verify entry.
    
    Previously the user could mistype his new password in the new
    password entry, but when it was corrected, the verify entry
    would still be indicating that the confirmation password did not
    match when it did.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668844

 panels/user-accounts/um-password-dialog.c | 49 +++++++++++++++++++++----------
 1 file changed, 33 insertions(+), 16 deletions(-)

commit af8a6440756ce3845b94c685918f8959968e6dd0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 22 16:31:59 2012 +0100

    user-accounts: Fix login keyring password not getting updated
    
    By passing the environment down to passwed rather than an empty one.
    This means that passwd's PAM modules will be able to access the session
    D-Bus, for the gnome-keyring PAM module to change the keyring password
    for example.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=616703

 panels/user-accounts/run-passwd.c | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

commit b682a3c6e936a889436e53c81250a826dd1f8504
Author: Javier Jardón <jjardon@gnome.org>
Date:   Tue Aug 14 20:34:51 2012 +0900

    common: Add Arabic as a common language
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671530

 panels/common/cc-common-language.c | 3 +++
 1 file changed, 3 insertions(+)

commit 0e2b4a9600cf9c82c021baa034beecf067f6fbc4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 8 13:54:30 2012 +0100

    common: Add Russian as a common language
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671530

 panels/common/cc-common-language.c | 3 +++
 1 file changed, 3 insertions(+)

commit d1cfd2b0f367c944854e9aa3156cd78fe27e7415
Author: Dominique Leuenberger <dominique@leuenberger.net>
Date:   Mon Jul 23 16:45:59 2012 +0200

    build: Update COPYING with new mailing address
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680456

 COPYING | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit 8f1b6d678755a0497c1abc34a626b77f95cfa099
Author: Dan Winship <danw@gnome.org>
Date:   Wed Aug 22 09:23:03 2012 -0400

    network: don't try to activate slave connections
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682469

 panels/network/net-device.c | 43 +++++++++++++++++++++++++++++++++++--------
 1 file changed, 35 insertions(+), 8 deletions(-)

commit 8df1069f7dedc31886acc04ae744cd052926472d
Author: Dan Winship <danw@gnome.org>
Date:   Wed Aug 22 09:22:03 2012 -0400

    network: fix wired/mobile activation
    
    You have to pass the NMDevice to nm_client_activate_connection() for a
    device-specific connection. This got broken at some point in the
    rewrites since 3.4.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682469

 panels/network/net-device-mobile.c | 5 +++--
 panels/network/net-device-wired.c  | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

commit ecdb1d847794b43dc0d1ae3b107d811fe52e5846
Author: Dan Winship <danw@gnome.org>
Date:   Wed Aug 22 09:00:35 2012 -0400

    network: ignore unrecognized device types
    
    rather than showing a blank line in the device-type list that doesn't
    do anything.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678210

 panels/network/cc-network-panel.c | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

commit 20a980d6ca8d4e40d62d9add1c3745ba403cf08a
Author: Colin Walters <walters@verbum.org>
Date:   Wed Aug 22 09:42:18 2012 -0400

    Fix missing =

 panels/common/cc-common-language.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d62e05fb088d64c3133912f0995a42157b8e968
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 22 14:15:04 2012 +0100

    common: Add Policykit rules for hostname setting
    
    Allow setting the computer's pretty hostname if the user is an admin.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679281

 panels/common/Makefile.am                | 5 +++++
 panels/common/cinnamon-control-center.rules | 8 ++++++++
 2 files changed, 13 insertions(+)

commit d2aa0ce5d8c93e777d201da779f13802e5249c95
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Thu Jul 12 17:26:03 2012 -0400

    common: Fix memory leaks in language sorting
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679836

 panels/common/cc-common-language.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit e730edb6cc4a5477be9608bf6798ac747558f0f0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 22 14:10:21 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1384 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 761 insertions(+), 623 deletions(-)

commit ddf8c56caf3ba9bb68884840c398e6485c107cfd
Author: Rico Tzschichholz <ricotz@t-online.de>
Date:   Wed Aug 22 12:52:29 2012 +0200

    background: Add missing include
    
    bg_pictures_source_get_*_path is defined in bg-pictures-source.h

 panels/background/cc-background-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 03a88bbba537e3360bfaed3b6f89f2f0d4420187
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 22 10:38:34 2012 +0100

    mouse: Remove unused variable

 panels/mouse/cc-mouse-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit 905b7f999c52f7ca064a01fa5e5dee9ef7d71649
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 22 10:37:34 2012 +0100

    mouse: Remove italics from test page
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682397

 NEWS                             | 1 +
 panels/mouse/gnome-mouse-test.ui | 3 ---
 2 files changed, 1 insertion(+), 3 deletions(-)

commit 51c06e781d69e73ce866bacc010fb1bf21eaebd0
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Wed Aug 22 15:01:14 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 263 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 103 insertions(+), 160 deletions(-)

commit 26f65ccd57345a8ff0abfdef047f008271389763
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Wed Aug 22 14:42:52 2012 +0700

    po/vi: imported from Damned Lies

 po/vi.po | 2494 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1467 insertions(+), 1027 deletions(-)

commit eaef6e5d50140fd7ff9803f79c71e6ccfca18838
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Tue Aug 14 17:14:10 2012 -0300

    um-user: Use GdkCairo operations to draw on the pixbuf
    
    Remove a bunch of bit twiddling code.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682391

 panels/user-accounts/um-user.c | 139 ++---------------------------------------
 1 file changed, 4 insertions(+), 135 deletions(-)

commit 36d09e19176c73183d1f47b546dbfa6b327ec92c
Author: A S Alam <aalam@users.sf.net>
Date:   Wed Aug 22 07:14:22 2012 +0530

    update Punjabi Translation

 po/pa.po | 717 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 363 insertions(+), 354 deletions(-)

commit 9538df6ba1da6353396ff901f8cfdafe2351d978
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Tue Aug 21 23:11:39 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 1722 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 857 insertions(+), 865 deletions(-)

commit e87c564cdbf7810e0c15b40ed680d9c8bc6734b5
Author: Frédéric Péters <fpeters@0d.be>
Date:   Tue Aug 21 22:05:35 2012 +0200

    printers: remove blank class_finalize function

 panels/printers/cc-printers-panel.c | 5 -----
 1 file changed, 5 deletions(-)

commit b0e7a5efa819525bf6709ac3a009b12bb145d601
Author: Ray Strode <rstrode@redhat.com>
Date:   Tue Aug 21 14:29:22 2012 -0400

    panels: add register macro
    
    Bastien says he doesn't like the blank class_finalize
    functions in every panel and he would like a wrapper
    macro to hide them.
    
    This commit does that.

 panels/background/cc-background-panel.c           |  7 +------
 panels/bluetooth/cc-bluetooth-panel.c             |  7 +------
 panels/color/cc-color-panel.c                     |  7 +------
 panels/datetime/cc-datetime-panel.c               |  8 +-------
 panels/display/cc-display-panel.c                 |  7 +------
 panels/info/cc-info-panel.c                       |  7 +------
 panels/keyboard/cc-keyboard-panel.c               |  7 +------
 panels/mouse/cc-mouse-panel.c                     |  7 +------
 panels/network/cc-network-panel.c                 |  7 +------
 panels/online-accounts/cc-online-accounts-panel.c |  7 +------
 panels/power/cc-power-panel.c                     |  7 +------
 panels/printers/cc-printers-panel.c               |  2 +-
 panels/region/cc-region-panel.c                   |  7 +------
 panels/screen/cc-screen-panel.c                   |  7 +------
 panels/sound/cc-sound-panel.c                     |  7 +------
 panels/universal-access/cc-ua-panel.c             |  7 +------
 panels/user-accounts/um-user-panel.c              |  7 +------
 panels/wacom/cc-wacom-panel.c                     |  7 +------
 shell/cc-panel.h                                  | 14 ++++++++++++++
 19 files changed, 32 insertions(+), 104 deletions(-)

commit 0c1a76df6ac1d12b23f911c07607b19e51f167f8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 21 18:41:25 2012 +0100

    3.5.90

 NEWS         | 43 +++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 44 insertions(+), 1 deletion(-)

commit 3bf8bcf3f8a357f0c33f1f790852c42eec954483
Author: Ray Strode <rstrode@redhat.com>
Date:   Tue Aug 21 13:29:46 2012 -0400

    online-accounts: set up finalize handler at class init time
    
    It was being set up at class finalization time, which is too late.
    
    Fixes crash when switching from panel to shell and back
    (and then try to interact with the switches).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682379

 panels/online-accounts/cc-online-accounts-panel.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 06ede122abd90194eff4275ed1b97cd9bfa1902e
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Tue Aug 21 17:23:50 2012 +0200

    online-accounts: Don't show spurious "No online accounts configured"
    
    Programmatically deleting or inserting a row into a GtkTreeModel
    implementation does not change the selection on the GtkTreeView even
    if it is in browse mode (see GTK+ documentation). So, we need to
    connect to the model's row-deleted and row-inserted signals and adjust
    the selection ourselves.
    
    Fixes: https://bugzilla.gnome.org/682175

 panels/online-accounts/cc-online-accounts-panel.c | 69 ++++++++++++++++++++++-
 1 file changed, 68 insertions(+), 1 deletion(-)

commit 7b20a3d0f30601353c9ae510b4a884a89c6cd4d1
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Aug 21 18:56:26 2012 +0200

    Updated Arabic translation

 po/ar.po | 701 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 382 insertions(+), 319 deletions(-)

commit 44f742659e5d039327009364e6b53071bcbe8212
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 21 15:23:43 2012 +0100

    common: Add more debug to list-languages

 panels/common/list-languages.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 8c7632e66e410c03579a9caa9abf695e36bf51fb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 21 17:40:30 2012 +0100

    sound: Avoid use-after-free of destroyed streams
    
    When switching between 2 outputs that share the same device with
    different connector types, the old stream is destroyed, and a new one
    with the new connector type created.
    
    We were generating warnings because the old stream was destroyed, and
    we were trying to access it. Instead we should remove the reference
    to that old stream from the GvcLevelBars used for output and input
    levels.

 panels/sound/gvc-mixer-dialog.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit e34dd3bb83dfbda6c130c5851453082bc8f2b16a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 21 17:33:18 2012 +0100

    sound: Fix incorrectly documented return type
    
    gvc_mixer_control_get_stream_from_device returns a GvcMixerStream,
    not a container that contains one of those.

 panels/sound/gvc-mixer-control.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4513207bfb7801868f84ff3524f0d46f4f9b40a9
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Fri Jul 13 14:47:44 2012 +0200

    sound: Remove hardware tab
    
    Since the output and input tabs now offer the possibility to select
    profile, we can remove the hardware tab completely.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-dialog.c | 312 ----------------------------------------
 1 file changed, 312 deletions(-)

commit ac2a8ced05324c2a97332fb0f61efd0a9c2c5365
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Fri Jul 13 13:54:45 2012 +0200

    sound: Move "Test speakers" to the output tab
    
    Test speakers will now test the speakers of the active output on
    the output tab.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-dialog.c | 80 ++++++++++++++++++++++++++++++++---------
 1 file changed, 63 insertions(+), 17 deletions(-)

commit db8ee1eabe4f719f494e16813609e9054cc44806
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Fri Jun 22 11:36:35 2012 +0200

    sound: Make speaker test work for sinks without card
    
    By speaker-test taking a stream/sink instead of card as
    parameter, it can be used for outputs that don't have cards
    (e g network sinks).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-speaker-test.c | 91 ++++++++++-------------------------------
 panels/sound/gvc-speaker-test.h |  2 +-
 2 files changed, 23 insertions(+), 70 deletions(-)

commit b3fe98e7c1eca17ef8e2e728e44a9a42edd0e149
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Tue Jul 10 17:45:27 2012 +0200

    sound: Make the dialog UI use GvcMixerUIDevice
    
    The input and output treeview now represent GvcMixerUIDevices,
    not sinks and sources. Also turn the connector combobox into a
    profile combobox.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-dialog.c | 1054 +++++++++++++++++++++------------------
 1 file changed, 579 insertions(+), 475 deletions(-)

commit a2e515ea39e136ed19c52e3572da64f5dc6944a7
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Tue Jun 26 11:06:07 2012 +0200

    wacom: add different action types to mapping dialog
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679067

 panels/wacom/cc-wacom-mapping-panel.c |   4 +-
 panels/wacom/cc-wacom-page.c          | 181 +++++++++++++++++++++++++++++++---
 2 files changed, 172 insertions(+), 13 deletions(-)

commit 8d8cf753528e991578d01203f440fd482fb41060
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Tue Aug 21 17:59:36 2012 +0200

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c | 13 +++++++++++++
 panels/wacom/gsd-input-helper.h |  2 ++
 panels/wacom/gsd-wacom-device.c | 14 +++++++-------
 panels/wacom/gsd-wacom-device.h |  3 +++
 4 files changed, 25 insertions(+), 7 deletions(-)

commit 29c49c9a48cd258dc1361648a83f01ee74a5cd0c
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Tue Aug 21 19:27:54 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 271 ++++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 271 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 286 insertions(+), 256 deletions(-)

commit 349cdb533fde7180fe4609ab13ebe81104ab4c1c
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Aug 20 21:50:51 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 3 +++
 1 file changed, 3 insertions(+)

commit 3b1238a5568cfa3f623702c919153ca8aadf6133
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Aug 20 20:46:47 2012 +0200

    Updated Spanish translation

 po/es.po | 283 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 142 insertions(+), 141 deletions(-)

commit 544a8ff8896da9361f22cf515ab3587404d828a1
Author: Ondrej Holy <oholy@redhat.com>
Date:   Mon Aug 20 19:49:07 2012 +0200

    mouse: Add mouse test toggle
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677206

 panels/mouse/Makefile.am      |  8 +++-
 panels/mouse/cc-mouse-panel.c | 98 +++++++++++++++++++++++++++++++++++++++----
 2 files changed, 96 insertions(+), 10 deletions(-)

commit 7981d4423a35ca6dcebabe8571abd92aa28b317d
Author: Ondrej Holy <oholy@redhat.com>
Date:   Mon Aug 20 19:24:03 2012 +0200

    mouse: Add mouse test window
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677206

 panels/mouse/Makefile.am             |  10 ++
 panels/mouse/gnome-mouse-test.c      | 171 +++++++++++++++++++++++++++++++++++
 panels/mouse/gnome-mouse-test.h      |  27 ++++++
 panels/mouse/gnome-mouse-test.ui     |  70 ++++++++++++++
 panels/mouse/test-gnome-mouse-test.c |  44 +++++++++
 5 files changed, 322 insertions(+)

commit 278c89fdce5e5351192652079386c29d806128f4
Author: Ondrej Holy <oholy@redhat.com>
Date:   Mon Aug 20 14:50:44 2012 +0200

    mouse: Show mouse section only if mouse is present
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677206

 panels/mouse/gnome-mouse-properties.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 7929e550f1eacccf804403b748879377f68d29d5
Author: Ondrej Holy <oholy@redhat.com>
Date:   Thu Aug 9 15:34:51 2012 +0200

    mouse: Add natural scroll toggle
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677206

 panels/mouse/gnome-mouse-properties.c  |  3 +++
 panels/mouse/gnome-mouse-properties.ui | 24 +++++++++++++++++++++++-
 2 files changed, 26 insertions(+), 1 deletion(-)

commit 9f76e8966104b361ffc6474dfe5a04e64989a323
Author: Ondrej Holy <oholy@redhat.com>
Date:   Thu Aug 9 15:16:05 2012 +0200

    mouse: Sensitivity and acceleration sliders merge
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677206

 panels/mouse/gnome-mouse-properties.c  |  54 +++++----
 panels/mouse/gnome-mouse-properties.ui | 205 +++------------------------------
 2 files changed, 43 insertions(+), 216 deletions(-)

commit a6262b0ad448c25e656ab08aaf1c423abfd01c12
Author: Ondrej Holy <oholy@redhat.com>
Date:   Thu Aug 9 14:11:52 2012 +0200

    mouse: Reorganize widgets according to mockup
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677206

 panels/mouse/gnome-mouse-properties.c  |  181 +----
 panels/mouse/gnome-mouse-properties.ui | 1233 +++++++++++---------------------
 2 files changed, 439 insertions(+), 975 deletions(-)

commit a41624305039f7d3e0503e72ea63268da8b80242
Author: Ray Strode <rstrode@redhat.com>
Date:   Mon Aug 20 13:52:49 2012 -0400

    user-accounts: fix crash for incompatible realmd version
    
    The version property may not be available if realmd is
    version 0.1 (which lacked the property) or if other
    properties changed signatures (causing gdbus to fail to load
    cache any property)
    
    This commit fixes a crash where property is NULL in those cases.

 panels/user-accounts/um-realm-manager.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit daa8b098a434809baaf92441b43d09c750953e15
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Aug 20 15:53:55 2012 +0100

    mouse: Update from gnome-settings-daemon

 panels/mouse/gsd-input-helper.c | 37 +++++++++++++++++++++++++++++++------
 panels/mouse/gsd-input-helper.h |  2 ++
 2 files changed, 33 insertions(+), 6 deletions(-)

commit 8947021b3eb76d6b8cbdc317552e6cd858baef7f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Aug 20 15:43:41 2012 +0100

    build: Check news before release

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 978ab40f3eb6e4ec2a632941cd8f879919aa2e02
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Tue Jul 31 18:27:17 2012 +0200

    keyboard: Add common XKB options to the Typing shortcuts section
    
    Both the compose key and the 3rd level chooser are common and useful
    enough to expose in the control center.
    
    Since these shortcuts are a small pre-defined set of only modifier
    keys we present them in combo cell renderers.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682069

 configure.ac                         |   8 +-
 panels/keyboard/Makefile.am          |   2 +
 panels/keyboard/cc-keyboard-option.c | 449 +++++++++++++++++++++++++++++++++++
 panels/keyboard/cc-keyboard-option.h |  48 ++++
 panels/keyboard/keyboard-shortcuts.c | 291 ++++++++++++++++++-----
 5 files changed, 736 insertions(+), 62 deletions(-)

commit 4e0bc86e5b665519980aa562d3a3311a73c2066a
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sat Aug 18 19:18:51 2012 +0200

    keyboard: Rename the Input Sources shortcuts section to Typing
    
    This way we can add more typing related keybindings here.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682069

 panels/keyboard/01-input-sources.xml.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a24f221eeb69879aebaa90fb1dfaed6849a96d5e
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Thu Aug 16 19:30:08 2012 +0200

    keyboard: Introduce a BINDING_GROUP_SEPARATOR type for the separator
    
    This way we can control the shortcut section separator position in
    case we introduce other types.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682069

 panels/keyboard/cc-keyboard-item.h   |  1 +
 panels/keyboard/keyboard-shortcuts.c | 40 +++++++++++-------------------------
 2 files changed, 13 insertions(+), 28 deletions(-)

commit 71978a802e10f076a577bbc66a9a6f89dc906caa
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Aug 20 23:13:40 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 421 ++++++++++++++++++++++++++++++++++--------------------------
 po/zh_TW.po | 421 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 478 insertions(+), 364 deletions(-)

commit 56b2d3221819952c67e6034ed9be327e748ac191
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Aug 20 15:46:36 2012 +0200

    Updated Polish translation

 po/pl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b8a919fccbf7751e1b692979a398175d3c500d7d
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Aug 20 14:16:23 2012 +0200

    Updated Spanish translation

 po/es.po | 304 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 153 insertions(+), 151 deletions(-)

commit 3aab3eb358805c1b7a06c5a54b04ceaff2cc06b8
Author: Stef Walter <stefw@gnome.org>
Date:   Fri Aug 17 16:58:10 2012 +0200

    user-accounts: Update for realmd DBus interface changes
    
     * DBus interface was reviewed and there were several things added
       to make it more generic and useful for other realm types.
     * Use ObjectManager to track objects in realmd. This facilitates
       using realmd with the way it now uses multiple interfaces
       on objects.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682185

 panels/user-accounts/Makefile.am                   |   4 +-
 .../user-accounts/data/org.freedesktop.realmd.xml  | 645 ++++++++++++++++++---
 ...org.gnome.controlcenter.user-accounts.policy.in |   2 +-
 panels/user-accounts/um-account-dialog.c           |  68 ++-
 panels/user-accounts/um-realm-manager.c            | 501 +++++++---------
 panels/user-accounts/um-realm-manager.h            |  13 +-
 6 files changed, 837 insertions(+), 396 deletions(-)

commit 6b2557f1b3380119d06848cc4c84f064780480cd
Author: Sebastian Keller <sebastian-keller@gmx.de>
Date:   Mon Aug 20 10:50:08 2012 +0100

    network: Improve wifi layout
    
    - Increase size of the window
    - Remove killswitch and hotspot buttons from scrollview
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/network-wifi.ui | 154 ++++++++++++++++++++---------------------
 1 file changed, 76 insertions(+), 78 deletions(-)

commit 21c6fccc129c052899a4e8c4bd830041bcb6fce6
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sun Aug 19 18:35:37 2012 +0200

    Updated Polish translation

 po/pl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 99a99b7f13b2df41aa883e30f60701e18ad36cc1
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Aug 19 15:08:33 2012 +0530

    Update Punjabi Translation

 po/pa.po | 437 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 249 insertions(+), 188 deletions(-)

commit 7ffbf3bc5eb4d65510040465177c5525d1ca6a6c
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sun Aug 19 00:46:09 2012 +0300

    Updated Belarusian translation.

 po/be.po | 1296 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 685 insertions(+), 611 deletions(-)

commit 7dd80f829fe092e25d8e8c8bb64eb467c30db3be
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 8 17:04:39 2012 +0200

    online-accounts: Open specific account through command-line
    
    Bump required GOA version to 3.5.90 for goa_client_lookup_by_id.
    
    Fixes: https://bugzilla.gnome.org/680458

 configure.ac                                      |  2 +-
 panels/online-accounts/cc-online-accounts-panel.c | 66 +++++++++++++++++++++++
 2 files changed, 67 insertions(+), 1 deletion(-)

commit db2ff0fe5210f1fd752b1b035b99277fb0b56fc7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 15 16:56:21 2012 +0100

    keyboard: Clarify screenshot actions
    
    And explain that it saves directly to the Pictures directory.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681849

 panels/keyboard/01-screenshot.xml.in | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit f217fa286af37fbd040a3d9a98922d02929bc2de
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Aug 14 18:34:22 2012 +0200

    user-accounts: Change behavior/display of panel for remote accounts
    
     * Hide the automatic-login and fingerprint widgets
     * Insensitive account type and real name widgets
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681770

 panels/user-accounts/um-user-panel.c | 51 +++++++++++++++++++++++++-----------
 1 file changed, 36 insertions(+), 15 deletions(-)

commit 251a189cfc47b38df14e4ca515f0643973d08668
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Aug 14 18:33:30 2012 +0200

    user-accounts: Add um_user_is_local_account() method
    
     * Use new LocalAccount property in accountsservice to
       add the um_user_is_local_account() method.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681770

 panels/user-accounts/um-user.c | 12 ++++++++++++
 panels/user-accounts/um-user.h |  1 +
 2 files changed, 13 insertions(+)

commit a2149736cdb72cde857d568cff04f29d45478183
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Aug 14 17:23:28 2012 +0200

    user-accounts: Display the username in list
    
     * By displaying the username we get the unix user name for
       local accounts, and the full login name for remote accounts.
     * Can now differentiate between accounts with the same display
       'real' name.
     * Can see the full login identity of remote accounts.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681767

 panels/user-accounts/um-user-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f5502645ff683b3be9f661929591ed7f5aeef764
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Aug 13 23:20:48 2012 +0200

    keyboard: Remove unused shortcut treeview sorting code
    
    Since the shortcut treeview doesn't have visible headers the sorting
    code isn't needed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681794

 panels/keyboard/keyboard-shortcuts.c | 71 +-----------------------------------
 1 file changed, 2 insertions(+), 69 deletions(-)

commit 7bce5758c8facf21be012c815f60fdb720515e97
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Aug 13 22:02:36 2012 +0200

    keyboard: Fix adding the section separator after the first time
    
    The separator would only get added the first time the keyboard panel
    was opened.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681788

 panels/keyboard/keyboard-shortcuts.c | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

commit 923f27950a960a4e94c95c2db78ab9e89647e382
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 18 18:32:34 2012 +0100

    user-accounts: Fix crash on startup
    
    Due to badly installed PolicyKit files.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681763

 panels/user-accounts/um-user-panel.c | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

commit 0651abd7fb24278426222d9620591a3d70079693
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Aug 13 21:53:11 2012 +0200

    keyboard: Plug a memory leak
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681787

 panels/keyboard/keyboard-shortcuts.c | 2 ++
 1 file changed, 2 insertions(+)

commit 3f76a97915643522eeac207c17f2d62960271bad
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Aug 14 17:04:41 2012 +0200

    user-accounts: Create the add account dialog on demand
    
     * Creating the add account dialog as the panel gets created
       means that realmd is invoked, network discovery is done
       and so on. Not optimal.
     * We also don't really need to cache the account dialog,
       and can create a new one for each [+] click.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681852

 panels/user-accounts/um-user-panel.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 36fa8bf9b76efc6eba11dec503743aa09547451b
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Aug 14 18:43:18 2012 +0200

    user-accounts: Consistent capitalization of 'Account Type'
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681771

 panels/user-accounts/data/user-accounts-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6baadbf8271c09a737ef4463c4e9bc1503425ae8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 18 18:10:44 2012 +0100

    mouse: Remove dead code

 panels/mouse/gnome-mouse-properties.c | 27 ++-------------------------
 1 file changed, 2 insertions(+), 25 deletions(-)

commit e7d6514a11605dd115ae35cec59a99526e310715
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 18 16:09:24 2012 +0100

    shell: Only link to clutter-gtk with cheese support

 configure.ac                 | 5 ++---
 shell/Makefile.am            | 6 ++++--
 shell/cinnamon-control-center.c | 4 ++++
 3 files changed, 10 insertions(+), 5 deletions(-)

commit 69b2a05b255a7b9e5623ee6007636671b596286c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 18 16:09:01 2012 +0100

    shell: Remove CcNotebook
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682127

 shell/Makefile.am            |   7 -
 shell/cc-notebook.c          | 566 -------------------------------------------
 shell/cc-notebook.h          |  70 ------
 shell/cinnamon-control-center.c |   1 -
 shell/test-notebook.c        |  92 -------
 5 files changed, 736 deletions(-)

commit 10c00125f4ce4f8fad1c11556f85bfd46c222289
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 18 16:03:19 2012 +0100

    shell: Drop panel transitions
    
    They're not finished and don't match what the designers would want.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682127

 shell/cinnamon-control-center.c | 30 +++++++++++++-----------------
 shell/shell.ui               |  3 ++-
 2 files changed, 15 insertions(+), 18 deletions(-)

commit 72fd5636e5f769d887796caaf450efeaa139ec9b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 18 16:02:39 2012 +0100

    shell: Add GtkNotebook helper functions
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682127

 shell/cinnamon-control-center.c | 57 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

commit 2a01afe25d7ca42cdd8291df58111b385ba57fec
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sat Aug 18 07:47:58 2012 +0200

    Updated Serbian translation

 po/sr.po       | 152 +++++++++++++++++++++++++++------------------------------
 po/sr@latin.po | 152 +++++++++++++++++++++++++++------------------------------
 2 files changed, 146 insertions(+), 158 deletions(-)

commit b7e549165bb2f0ba0c45862ce7353ed2cebee183
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Aug 18 00:25:50 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 4ee558bdc8374fd1093904096d05a417734daebc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Aug 15 21:12:07 2012 -0400

    background: Update the preview when the settings change
    
    They may be change from outside (eg. Nautilus).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676539

 panels/background/cc-background-panel.c | 66 ++++++++++++++-------------------
 1 file changed, 28 insertions(+), 38 deletions(-)

commit 18b3486a064e45d77526f8f270231283087c17c3
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Aug 10 18:52:12 2012 -0400

    background: Remove sheen overlay
    
    The metaphor was valid when we used a monitor to display the preview
    but now it doesn't work. There is no glass to reflect light. It
    distracts from the preview and may look like a defect.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676539

 panels/background/Makefile.am           |   3 +--
 panels/background/cc-background-panel.c |  19 -------------------
 panels/background/display-overlay.png   | Bin 6700 -> 0 bytes
 3 files changed, 1 insertion(+), 21 deletions(-)

commit 79ec684fa4912a1e5bff17ce11b036cef4a298aa
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 22 11:34:20 2012 -0400

    background: New background panel design
    
    Implement a new design for the wallpaper selection.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676539

 panels/background/Makefile.am                    |    6 +-
 panels/background/background.ui                  |  352 ++-----
 panels/background/bg-colors-source.c             |   61 +-
 panels/background/bg-flickr-source.c             |    2 +-
 panels/background/bg-pictures-source.c           |    2 +-
 panels/background/bg-source.h                    |    4 +-
 panels/background/bg-wallpapers-source.c         |    2 +-
 panels/background/cc-background-chooser-dialog.c |  335 ++++++
 panels/background/cc-background-chooser-dialog.h |   60 ++
 panels/background/cc-background-panel.c          | 1194 ++++++----------------
 panels/background/display-base.png               |  Bin 22374 -> 0 bytes
 panels/background/display-overlay.png            |  Bin 9549 -> 6700 bytes
 12 files changed, 824 insertions(+), 1194 deletions(-)

commit c2987d8cdee89be5209b1bc4c8af108bcb0f7dcb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 17 17:47:43 2012 +0100

    printers: Check that cups-config exists
    
    Before using it.

 configure.ac | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 7483b80b14aa48637c5f68c2298be1c93d905328
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Fri Aug 17 12:11:22 2012 +0200

    Updated Serbian translation

 po/sr.po       | 309 +++++++++++++++++++++++++++++++++------------------------
 po/sr@latin.po | 309 +++++++++++++++++++++++++++++++++------------------------
 2 files changed, 360 insertions(+), 258 deletions(-)

commit d3571a0b597d0846a1203892becdc1115edc41b0
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Fri Aug 17 12:08:55 2012 +0530

    Updated kn translation

 po/kn.po | 3638 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 2036 insertions(+), 1602 deletions(-)

commit b523cb386055b8d8c68f62922432841f5eb66170
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Fri Aug 17 11:58:17 2012 +0530

    Updated kn translation

 po/kn.po | 3634 +++++++++++++++++++++++++++-----------------------------------
 1 file changed, 1600 insertions(+), 2034 deletions(-)

commit bc76ba093d0d00cc29ae3ac3ded9c297bf7c7def
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Fri Aug 17 10:46:41 2012 +0530

    Updated kn translation

 po/kn.po | 369 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 149 insertions(+), 220 deletions(-)

commit 11abc4ad1c7a09fa6ac433b57c6e2e9ce9d4647d
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Fri Aug 17 07:57:26 2012 +0530

    Updated kn translation

 po/kn.po | 24 ++++++++++++++----------
 1 file changed, 14 insertions(+), 10 deletions(-)

commit 9a5d3c267b9017a7b17558c07eb6ea7e1770a5d2
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Thu Aug 16 19:25:18 2012 -0500

    Minor update for Crimean Tatar/Turkish translation

 po/crh.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d8d5cf447e330e9506cb8dd8f4563b0f52ad0cf2
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Thu Aug 16 19:03:25 2012 -0500

    Updated Crimean Tatar (Crimean Turkish) translation

 po/crh.po | 2701 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1349 insertions(+), 1352 deletions(-)

commit 5e6bf1972ef94084609335a941c130c58ee3796a
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Aug 17 01:33:53 2012 +0200

    Updated Galician translations

 po/gl.po | 2091 +++++---------------------------------------------------------
 1 file changed, 144 insertions(+), 1947 deletions(-)

commit c6e7235d5ecc61450077b2ed9dd5bcc64ebedf04
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Aug 16 16:10:03 2012 +0200

    Updated Spanish translation

 po/es.po | 307 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 176 insertions(+), 131 deletions(-)

commit 1585d18edfbeeee99b5b60ca8b65a8bfd1e61bde
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Thu Aug 16 18:39:26 2012 +0530

    Assamese translation updated

 po/as.po | 312 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 179 insertions(+), 133 deletions(-)

commit b106468e01e7ef6be5b7784808f152318a8ba925
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 15 19:05:17 2012 +0100

    universal-access: Fix deprecation warnings
    
    Related to GtkColorButton
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676817

 panels/universal-access/zoom-options.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 131a5ce94764658a6d5733fb50c24f17299b0f29
Author: Alejandro Piñeiro <apinheiro@igalia.com>
Date:   Wed Aug 15 17:02:42 2012 +0200

    universal-access: Split the zoom dialog options
    
    Split dialogue into 3 tabs:
      * Magnifier
      * Crosshair
      * Color Effects
    and add a global zoom switch for easy access.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676817

 panels/universal-access/zoom-options.c  |   12 +-
 panels/universal-access/zoom-options.ui | 1519 +++++++++++++++++--------------
 2 files changed, 837 insertions(+), 694 deletions(-)

commit 2d6161d45b09518b76cabc0567690d13cf5a02a1
Author: Joseph Scheuhammer <clown@alum.mit.edu>
Date:   Fri Jul 27 15:50:41 2012 -0400

    universal-access: Add zoom shader options
    
    Add 'Color effects' section to zoom options dialogue:
    - a toggle for inversion (White on black)
    - a slider for brightness
    - a slider for contrast
    - a slider for grey scale
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676817

 panels/universal-access/zoom-options.c  | 126 +++++++-
 panels/universal-access/zoom-options.ui | 492 ++++++++++++++++++++++++++++----
 2 files changed, 565 insertions(+), 53 deletions(-)

commit cda48dbf6ba0a0105ffc445d57395a301fbfc1db
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Tue Aug 14 17:51:22 2012 +0530

    Updated kn translation

 po/kn.po | 161 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 62 insertions(+), 99 deletions(-)

commit c4f4272f7c6ff23aa6b09dec6c862b08cda8fc01
Author: Stef Walter <stefw@gnome.org>
Date:   Mon Aug 13 10:59:47 2012 +0200

    bluetooth: Require gnome-bluetooth 3.5.5
    
     * Due to API change in gnome-bluetooth commit
       1c39fbaeaf782597857216430906a74865e7661b where there were
       changes like s/KILLSWITCH_STATE/BLUETOOTH_KILLSWITCH_STATE/
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681734

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 65b09049d88447d89e7c323a667870e3fd538548
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Aug 14 11:43:44 2012 +0200

    Updated Galician translations

 po/gl.po | 564 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 296 insertions(+), 268 deletions(-)

commit c6b24ba94ba55b04c6df9d761ea2f7cd60b7f9d9
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Mon Aug 13 15:04:53 2012 +0530

    Updated kn translation

 po/kn.po | 3545 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2157 insertions(+), 1388 deletions(-)

commit 5b9d311c2d36bd224a6b4f552650e5a1b2372c47
Author: A S Alam <aalam@users.sf.net>
Date:   Mon Aug 13 07:25:30 2012 +0530

    Update Punjabi Translation

 po/pa.po | 692 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 352 insertions(+), 340 deletions(-)

commit c693e4f33f0658d7a010b5199bfe3391f2656fa0
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sun Aug 12 23:01:55 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 778 +++++++++++++++++++++++++++++---------------------------
 po/zh_TW.po | 834 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 837 insertions(+), 775 deletions(-)

commit 9745f93922c5793b78c018eb27f5ed0b594207f8
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Aug 12 12:50:19 2012 +0200

    Updated Arabic translation

 po/ar.po | 822 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 461 insertions(+), 361 deletions(-)

commit e959be7e869d08ff041a3de4cebfbf8965e1ad9e
Author: Sandeep Sheshrao Shedmake <sshedmak@redhat.com>
Date:   Sat Aug 11 19:52:45 2012 +0530

    Updated Marathi Translations

 po/mr.po | 9390 +++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 6589 insertions(+), 2801 deletions(-)

commit 621d05e65acf397906cd124ebee7808a60b4fbf4
Author: Dirgita <dirgitadevina@yahoo.co.id>
Date:   Sat Aug 11 04:31:35 2012 +0700

    Updated Indonesian translation

 po/id.po | 485 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 291 insertions(+), 194 deletions(-)

commit 71db59d9a2b881b941df03e04eeb910f029822cf
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Aug 9 14:23:49 2012 +0200

    printers: Remove obsoleted notebook page
    
    This commit removes the notebook page which consists
    old printer options. It was replaced by separate dialog.

 panels/printers/cc-printers-panel.c |  20 ----
 panels/printers/printers.ui         | 182 +-----------------------------------
 2 files changed, 4 insertions(+), 198 deletions(-)

commit 0f5eae643b186162c1397e1b05b5aa19e144f77e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 8 17:20:52 2012 +0100

    3.5.6

 NEWS         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 49 insertions(+), 1 deletion(-)

commit 54f5a8c7c6661ad6e7565f038a4e829d199b9d03
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Aug 8 17:07:24 2012 +0200

    Updated Spanish translation

 po/es.po | 370 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 215 insertions(+), 155 deletions(-)

commit fa5e27d3209fa15eb6096ef975f305e6032ac037
Author: Jiri Popelka <jpopelka@redhat.com>
Date:   Wed Aug 8 14:33:25 2012 +0200

    Use CUPS-1.6 IPP API getter/setter functions.
    
    CUPS 1.6 makes various structures private and
    introduces these ippGet and ippSet functions
    for all of the fields in these structures.
    http://www.cups.org/str.php?L3928
    
    We define our own accessors when
    building against CUPS < 1.6. (#679759)
    (modified by Marek Kasik)

 panels/printers/cc-printers-panel.c     |  20 ++-
 panels/printers/pp-new-printer-dialog.c |  10 +-
 panels/printers/pp-utils.c              | 277 ++++++++++++++++++--------------
 3 files changed, 183 insertions(+), 124 deletions(-)

commit ec2fc6d8b6aeb9d1faf42911e675224a4d152ba9
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Aug 8 09:33:07 2012 +0200

    user-accounts: Remove needless console output
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680892

 panels/user-accounts/um-realm-manager.c | 1 -
 1 file changed, 1 deletion(-)

commit 4e67ecc45651729e2bcff40fac420098cdf41449
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Aug 8 09:30:35 2012 +0200

    user-accounts: Cleanup GVariant usage
    
     * Don't call g_variant_ref_sink() unnecessarily.
     * Don't call g_variant_new_variant() unnecessarily.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680892

 panels/user-accounts/um-account-dialog.c | 4 +---
 panels/user-accounts/um-realm-manager.c  | 9 ++-------
 2 files changed, 3 insertions(+), 10 deletions(-)

commit f28736ce17d5430510fb08e722f96809f627e50e
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Wed Aug 8 12:51:32 2012 +0530

    Assamese translation updated

 po/as.po | 525 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 259 insertions(+), 266 deletions(-)

commit fe25e2302e96483b32d67787f41d2342c1776ec1
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Wed Aug 8 07:20:46 2012 +0200

    Updated Serbian translation

 po/sr.po       | 363 +++++++++++++++++++++++++++++++++------------------------
 po/sr@latin.po | 363 +++++++++++++++++++++++++++++++++------------------------
 2 files changed, 424 insertions(+), 302 deletions(-)

commit 478c6af97d6b1f99134ec9d864aa19b430eb4ca0
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 8 01:14:58 2012 -0400

    network: Make only the list background white

 panels/network/net-device-wifi.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 96682e13684d7b0e3fd17a63635006b86bb9b53e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 8 00:32:34 2012 -0400

    network: Put the ssid in the detail page header

 panels/network/net-device-wifi.c | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)

commit 901ad8c94105993b5522968ddffd2bf9cd42823f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 8 00:20:04 2012 -0400

    network: Cosmetic fixes
    
    Mark a few strings as translatable, and rename 'Options' to
    'Settings' to match the mockups.

 panels/network/network-wifi.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 61a5c180ecc4acec1d74cb02c573660572cd32e0
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 8 00:16:37 2012 -0400

    network: Don't make the options button insensitive
    
    We always want to be able to go there.

 panels/network/net-device-wifi.c | 8 --------
 1 file changed, 8 deletions(-)

commit 0e70a56f9e713b266f5f523cf03e5e44959f4423
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Aug 7 23:44:22 2012 -0400

    Trivial: Add a missing space

 panels/network/net-device-wifi.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit e76472c5483eec908f926a6fe9ec6012959978df
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Aug 7 23:40:47 2012 -0400

    network: Improve the hotspot dialog
    
    Change the hotspot dialog to match the mockups more closely.

 panels/network/net-device-wifi.c |  80 ++++++++++---------------
 panels/network/network-wifi.ui   | 122 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 152 insertions(+), 50 deletions(-)

commit 637bd5183bb91b0ad029ef59af7b9d578bb1e906
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 1 20:37:13 2012 +0200

    info: change 'other media action' mnemonic
    
    Use the A instead of the o. There are no conflicts, and using
    the first character as mnemonic is better.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681211

 panels/info/info.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5fc4b1809b41c5acc7622df02744aba8dff91639
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 1 20:36:04 2012 +0200

    info: Fix mnemonic activation for 'other media action'
    
    The mnemonic was pointing at a box, which is not activatable.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681211

 panels/info/cc-info-panel.c | 6 ++++++
 panels/info/info.ui         | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 34caef89ef89d63548572621ed4a2166b49eee1a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 1 20:25:28 2012 +0200

    info: replace one GtkTable instance by GtkGrid
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681211

 panels/info/info.ui | 19 +++++--------------
 1 file changed, 5 insertions(+), 14 deletions(-)

commit a8662e4261fbd6edaf2ed42b503964e164d54ee9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Aug 1 20:16:21 2012 +0200

    info: Use GtkBox instead of GtkHBox/GtkVBox
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681211

 panels/info/info.ui | 48 ++++++++++++++++++++++++++++++++----------------
 1 file changed, 32 insertions(+), 16 deletions(-)

commit d06f19b903935ccbbaf736efc2513fa0f376f9de
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Aug 7 23:45:02 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 2 ++
 1 file changed, 2 insertions(+)

commit b5e0cc29e91441b73ae86a8700c9c57b143863e8
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Tue Aug 7 23:32:33 2012 +0200

    Updated Serbian translation

 po/sr.po       | 276 +++++++++++++++++++++++++--------------------------------
 po/sr@latin.po | 276 +++++++++++++++++++++++++--------------------------------
 2 files changed, 240 insertions(+), 312 deletions(-)

commit 96d58bf995d180f43fc8861f50880b7a41d36a26
Author: Andika Triwidada <andika@gmail.com>
Date:   Wed Aug 8 03:58:28 2012 +0700

    Updated Indonesian translation

 po/id.po | 6526 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3761 insertions(+), 2765 deletions(-)

commit 6a068261a67fe0f4308056a0b3676ad325598ae4
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Aug 7 21:02:46 2012 +0200

    Updated Spanish translation

 po/es.po | 264 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 119 insertions(+), 145 deletions(-)

commit 15bcc03b4063bad9c3f338ca5fd37e21c0ced779
Author: Cyrus Lien <cyrus.lien@canonical.com>
Date:   Tue Aug 7 14:23:21 2012 +0800

    display: Do not add preferred mode to drop down in clone mode.
    
    Use preferred resolution to switch to mirror mode will popup error
    messages if preferred resolution is not a common resolution.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680969

 panels/display/cc-display-panel.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit c3e71b49277e1e12bccd65b8575aa847862e6868
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Aug 7 10:19:18 2012 -0400

    network: Don't show shared connections in the wifi list
    
    A shared connection is the leftover of an inactive hotspot.
    We don't want to show these in the list.

 panels/network/net-device-wifi.c | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

commit 9db6b3c5f531578b06d80ae286609fa8468d5c34
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Aug 7 09:58:29 2012 -0400

    Trivial: fix a typo

 panels/user-accounts/um-account-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c6d8b9c8252cbf4e439cad0a225b841b2189fec0
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Aug 7 14:09:33 2012 +0200

    printers: Place jobs to separate dialog
    
    This commit places list of jobs to separate dialog. The dialog
    is updated through calling of pp_jobs_dialog_update()
    from "Printers" panel because the panel is already subscribed
    to cups notifications.

 panels/printers/Makefile.am         |   7 +-
 panels/printers/cc-printers-panel.c | 446 ++++-------------------------
 panels/printers/jobs-dialog.ui      | 183 ++++++++++++
 panels/printers/pp-jobs-dialog.c    | 541 ++++++++++++++++++++++++++++++++++++
 panels/printers/pp-jobs-dialog.h    |  42 +++
 panels/printers/pp-utils.c          | 265 ++++++++++++++++++
 panels/printers/pp-utils.h          |  26 ++
 panels/printers/printers.ui         | 154 +---------
 8 files changed, 1122 insertions(+), 542 deletions(-)

commit 439b75fcea59101c02b378388f14b502dc6baea9
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Aug 7 12:28:05 2012 +0200

    printers: Return accidentally removed code
    
    Return implementation of get_help_uri() which was accidentally removed.

 panels/printers/cc-printers-panel.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit ed1c9becf7bdd80b2d18a8635819240f9ab3579e
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Aug 7 09:19:23 2012 +0100

    network: If a hotspot is already connected at startup then don't show the AP list

 panels/network/net-device-wifi.c | 39 +++++++++++++++++++++++++++------------
 1 file changed, 27 insertions(+), 12 deletions(-)

commit a6b2db1e178d1f82409966a8ffa772955eea3525
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Aug 7 11:54:11 2012 +0200

    printers: Cancel async operations properly
    
    Don't call callbacks of async functions called
    from Printers panel if they were cancelled.
    User data are not valid in that case (rhbz#845496).

 panels/printers/cc-printers-panel.c | 90 ++++++++++++++++++++++++++++++-------
 panels/printers/pp-utils.c          | 31 ++++++++++---
 panels/printers/pp-utils.h          |  5 ++-
 3 files changed, 103 insertions(+), 23 deletions(-)

commit aa867311c2ef48ee13d6dc9acf6d446fbdc1e21b
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Tue Aug 7 14:54:47 2012 +0530

    Assamese translation updated

 po/as.po | 1303 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 826 insertions(+), 477 deletions(-)

commit 3fa35643fa5c3371a1d699d496b03a167f6732b3
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Tue Aug 7 15:10:48 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 765 +++++++++++++++++++++++++++++++-------------------------
 po/zh_TW.po | 819 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 865 insertions(+), 719 deletions(-)

commit fdad89f85205a37707649ea70514ae34774f33ce
Author: Colin Walters <walters@verbum.org>
Date:   Mon Aug 6 18:19:24 2012 -0400

    build: Add --disable-documentation option
    
    For embedded systems, it's pointless to build the docs if they're not
    going to be used/shown.
    
    Also, for gnome-ostree right now I don't have the Docbook
    infrastructure set up.

 Makefile.am  |  5 ++++-
 configure.ac | 12 +++++++++++-
 2 files changed, 15 insertions(+), 2 deletions(-)

commit 576d6ba04dc89406bd0e62ca7be23f05a9e2d489
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Aug 6 14:34:51 2012 -0400

    screen: Keep 'show notifications' sensitive
    
    Even when automatic screen locking is disabled, the user can
    still manually lock the screen, and may want to control whether
    notifications show up in that case or not.

 panels/screen/cc-screen-panel.c | 6 ------
 1 file changed, 6 deletions(-)

commit 1f4aeb1d05c24af428294b5955d36456d0a3544e
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jul 31 09:17:34 2012 +0200

    user-panel: Update to new DBus interface for realmd 0.6
    
     * In particular support of different credential methods and better
       hints for different owners of those credentials, so we can prompt
       more cleanly.
     * Less abstraction in the realmd interfaces
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680892

 .../user-accounts/data/org.freedesktop.realmd.xml  | 101 ++++++------
 panels/user-accounts/um-account-dialog.c           |  47 ++++--
 panels/user-accounts/um-realm-manager.c            | 169 ++++++++++++++++-----
 panels/user-accounts/um-realm-manager.h            |  16 +-
 4 files changed, 224 insertions(+), 109 deletions(-)

commit 6ee1e694df965c92ed8f5e16bc5067f59a845ae2
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sun Aug 5 12:18:44 2012 +0200

    Updated Serbian translation

 po/sr.po       | 479 ++++++++++++++++++++++++++++++++++-----------------------
 po/sr@latin.po | 479 ++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 568 insertions(+), 390 deletions(-)

commit dfede0780038d6aae840ef059c6efff0060876d4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 4 12:50:05 2012 -0400

    Add a man page
    
    The main purpose of this man page is to document which options
    can be given to individual panels.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680547

 Makefile.am                  |   4 +-
 configure.ac                 |   3 +
 man/Makefile.am              |  19 +++
 man/cinnamon-control-center.xml | 308 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 332 insertions(+), 2 deletions(-)

commit 45bd60108f8f4648b5b85efe556d419b29a32487
Author: Cheng Lu <chenglu1990@gmail.com>
Date:   Sat Aug 4 14:54:05 2012 +0800

    Update Chinese simplified translation for ui

 po/zh_CN.po | 1508 ++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 876 insertions(+), 632 deletions(-)

commit c272aa5eb572012b0aa5da4c63a76d4b310cbaa8
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Aug 2 11:47:39 2012 +0200

    printers: Don't restrict PPD list
    
    Don't restrict PPD list to PPDs with DeviceIDs only.
    Extend dictionary of manufacturers names.

 panels/printers/cc-printers-panel.c |   8 +-
 panels/printers/pp-utils.c          | 158 ++++++++++++++++++++++++------------
 2 files changed, 112 insertions(+), 54 deletions(-)

commit 1cffa8e206e7fb9f4a0dbab05c3a810b15ee2879
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jul 31 09:14:52 2012 +0200

    user-panel: Fix memory leak of UmRealmManager
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680890

 panels/user-accounts/um-realm-manager.c | 2 ++
 1 file changed, 2 insertions(+)

commit fb6833e57ab92cea99cc1af13a7c6b8db77ba900
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jul 31 09:08:04 2012 +0200

    user-panel: Strip remote dbus error before showing error
    
     * GDBus transfers dbus error codes in the error->message so strip that
       out before display
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680889

 panels/user-accounts/um-account-dialog.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit e707b83dc5033f44bdfb2c37596e2b2bf6588be1
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Jul 31 01:46:02 2012 +0200

    Updated Galician translations

 po/gl.po | 131 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 76 insertions(+), 55 deletions(-)

commit 4386dcadfa86fd3520cd18f4095a5b687aa50b3e
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jul 30 16:53:22 2012 +0200

    Updated Spanish translation

 po/es.po | 147 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 81 insertions(+), 66 deletions(-)

commit 68405bcf376b2187ffa7c9b0c0db29fe6135a157
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jul 30 12:48:16 2012 +0200

    Updated Spanish translation

 po/es.po | 295 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 177 insertions(+), 118 deletions(-)

commit d282d37e92f3735b042e8ee7a4468e6e289b0064
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 10:05:41 2012 +0100

    network: Fix a Gtk warning introduced recently due to a mnemonic widget name

 panels/network/network-wifi.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c0d771c277bda0ba73ab308d4c3013601e04bd3a
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 10:03:04 2012 +0100

    network: Don't show a blank name server label in the IP overview

 panels/network/panel-common.c | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

commit 763788894c4383894d638b6764507da4b036705a
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 09:59:13 2012 +0100

    network: Don't show the NULL address in the IP overview

 panels/network/panel-common.c | 2 ++
 1 file changed, 2 insertions(+)

commit ae5acbe421159fc559746713d56e6c18a84cca6d
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 09:53:38 2012 +0100

    network: Show hotspot details in a new sub-frame to match the mockup

 panels/network/net-device-wifi.c | 123 ++++++++--------
 panels/network/network-wifi.ui   | 304 ++++++++++++++++++++++++++++-----------
 2 files changed, 285 insertions(+), 142 deletions(-)

commit 14011dac11840c2894d2d3eb0e964317091b11af
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 09:49:40 2012 +0100

    network: Cleanup coding style to match the rest of the file

 panels/network/net-device-wifi.c | 20 +++++---------------
 1 file changed, 5 insertions(+), 15 deletions(-)

commit 240e3b0598926d0411bcf258a92e055b94e36966
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 09:45:44 2012 +0100

    network: Do not show the start hotspot button if the user has no permissions

 panels/network/net-device-wifi.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 5b35fb719c0527ee96af7af01afdeecec08f37e9
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 08:57:55 2012 +0100

    network: Re-enable the hidden network functionality

 panels/network/net-device-wifi.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit f7af831ff62e7975cb2b5128d3e9536ca079b3d8
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 30 08:53:43 2012 +0100

    network: Make the hidden network UI match the new mockups

 panels/network/net-device-wifi.c | 21 +++++++--------------
 1 file changed, 7 insertions(+), 14 deletions(-)

commit 26432f180f33bd8163b410b069a64d709a989306
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jul 30 02:09:41 2012 +0200

    Updated Galician translations

 po/gl.po | 1240 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 774 insertions(+), 466 deletions(-)

commit 051766d4827655be0211ffd20fcbbfd0aa82f249
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jul 27 22:37:46 2012 +0200

    network: Remove nonexisting widget from size group
    
    This was causing warnings.

 panels/network/network.ui | 3 ---
 1 file changed, 3 deletions(-)

commit 5b1491ba0c253bfaf3300eeea29b19b9c026d53b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Sun Jul 29 11:35:24 2012 +0200

    network: don't set 'dim-label' in the <packing> section
    
    It should be set among the normal properties.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680773

 panels/network/network-wifi.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2ad1d5461a08d9c761b4c66b9d237680b71639b0
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Sun Jul 29 11:34:57 2012 +0200

    network: add a shadow to the wireless scrolled window
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680773

 panels/network/network-wifi.ui | 1 +
 1 file changed, 1 insertion(+)

commit 1c762ace213c95f7111aa047617de7abd1078ddf
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Jul 28 07:07:29 2012 +0530

    update Punjabi Translation

 po/pa.po | 1331 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 836 insertions(+), 495 deletions(-)

commit b05de99a0be85ae4abaf437a9a10b6397f535320
Merge: fbe6756 5c5c538
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 27 16:20:37 2012 +0100

    Merge branch 'network-wifi-rework'

commit 5c5c538ebed771db16d51159a1f065b2b0aa8821
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 27 16:19:18 2012 +0100

    network: Don't show the speed and security when the wifi device is deactivated

 panels/network/net-device-wifi.c | 50 +++++++++++++---------------------------
 1 file changed, 16 insertions(+), 34 deletions(-)

commit 7cca78437db4bbbea291d2b915c6926dc6f26e78
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 27 14:12:18 2012 +0100

    network: Forget the last selected network when the button is clicked
    
    Before we were deleting the connection currently bound to the device...

 panels/network/net-device-wifi.c | 99 ++++++++++++++++++++++++++++------------
 1 file changed, 70 insertions(+), 29 deletions(-)

commit 1aa2ed94919a9d2e4278dd2e0f2248e6b905d199
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 27 11:49:54 2012 +0100

    network: Show detailed information about saved wireless connections

 panels/network/net-device-wifi.c | 109 +++++++++++++++---
 panels/network/network-wifi.ui   | 237 ++++++++++++++++++++++++++++++++++++---
 2 files changed, 317 insertions(+), 29 deletions(-)

commit fbe6756c6f2104d78854da927b96c3d88cd31a2e
Author: Rico Tzschichholz <ricotz@t-online.de>
Date:   Fri Jul 27 09:06:47 2012 +0200

    configure: fix build with --disable-ibus
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680133

 configure.ac | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit c1201537cdb0b8b9d304e072d6f20658126dcfef
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Thu Jul 26 23:16:22 2012 +0200

    Updated Serbian translation

 po/sr.po       | 7366 +++++++++++++++++++++++++++++++++++++-------------------
 po/sr@latin.po | 7366 +++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 9786 insertions(+), 4946 deletions(-)

commit 8776700a73f68ac00bf23d846c9158f8e6c1ce35
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 26 17:54:03 2012 +0200

    bluetooth: Update for killswitch API change

 panels/bluetooth/cc-bluetooth-panel.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 9a10722da21096501a45af13e6191971465bf799
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 15:41:25 2012 +0100

    network: Show the wireless speed as a seporate line in the details
    
    ...to match the mockup.

 panels/network/net-device-wifi.c | 19 +++++++++----------
 panels/network/network-wifi.ui   | 34 +++++++++++++++++++++++++++++-----
 2 files changed, 38 insertions(+), 15 deletions(-)

commit a0f69c0809aff8c717b6d7548c280ec9c3e1af8c
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 14:46:53 2012 +0100

    network: Don't crash when showing active APs that are not valid UTF8
    
    There doesn't appear to be any standard saying you have to have ASCII/UTF-8
    access point names...

 panels/network/net-device-wifi.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit f14b5501444faec72809b84706cc490b081218e8
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 14:43:54 2012 +0100

    network: Only show the disconnect button when a device is fully activated

 panels/network/net-device-wifi.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 9441a74e8a289f80a0542b1c665f766837328001
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 14:43:17 2012 +0100

    network: Add another panel for future hotspot information

 panels/network/network-wifi.ui | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 38ea1cdefd6fce444a409bde4706a09ebabcd373
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 14:29:57 2012 +0100

    network: Add network strength to the details panel

 panels/network/net-device-wifi.c | 2 --
 1 file changed, 2 deletions(-)

commit 6b526f121319b78e56423d41cbe1ae143077a8aa
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 14:29:38 2012 +0100

    network: Add network strength to the details panel

 panels/network/net-device-wifi.c | 22 ++++++++++++++++++++++
 panels/network/network-wifi.ui   | 34 +++++++++++++++++++++++++++++-----
 2 files changed, 51 insertions(+), 5 deletions(-)

commit e7319edc9b61bf9ca667a8d1f3b1ad7e04f43706
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 14:23:31 2012 +0100

    network: Add saved connections to the wireless network list

 panels/network/net-device-wifi.c              | 160 ++++++++++++++++++++++++--
 panels/network/network-wifi.ui                |   4 +
 panels/network/panel-cell-renderer-security.c |   4 +-
 panels/network/panel-cell-renderer-signal.c   |   2 +-
 4 files changed, 157 insertions(+), 13 deletions(-)

commit 5c11b6f94bd9518f449419e089143d7467ff6e2c
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 13:47:09 2012 +0100

    network: Only show the details arrow for active connections

 panels/network/net-device-wifi.c | 46 +++++++++++++++++++++++++++++++++++++---
 1 file changed, 43 insertions(+), 3 deletions(-)

commit 391815c2c19d833eeb61fc7e4e617c1e416ae17a
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 13:38:55 2012 +0100

    network: split the wireless panel into a network list and details panel

 panels/network/net-device-wifi.c | 322 +++++++++++++++++++++++++++------------
 panels/network/network-wifi.ui   | 223 ++++++++++++++++++---------
 2 files changed, 372 insertions(+), 173 deletions(-)

commit 22323ad6c6974891ff6680811d8f316b88e42e1d
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 26 09:58:53 2012 +0100

    network: Start to split up the network panel into different views to match the new mockup

 panels/network/net-device-wifi.c |   8 +-
 panels/network/network-wifi.ui   | 932 +++++++++++++++++++++------------------
 2 files changed, 502 insertions(+), 438 deletions(-)

commit 2bbd94094251f5b5aa2a632866974dfbca0bbd2c
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Thu Jul 26 09:49:49 2012 +0200

    Updated Serbian translation

 po/sr.po       | 7015 ++++++++++++++++++++------------------------------------
 po/sr@latin.po | 7015 ++++++++++++++++++++------------------------------------
 2 files changed, 4960 insertions(+), 9070 deletions(-)

commit 3e827ce3342681d61fc272bf1949d8aaa7717ec6
Author: Jiro Matsuzawa <jmatsuzawa@gnome.org>
Date:   Wed Jul 25 22:38:15 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 1331 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 777 insertions(+), 554 deletions(-)

commit 556e2cf4e3e41b625774a8deddf19f82a3fb274b
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   Tue Jul 24 18:35:41 2012 +0300

    Updated Greek translation

 po/el.po | 4839 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 2673 insertions(+), 2166 deletions(-)

commit c4db04f8a53548738a4fe665f56ea59e91aa92b5
Author: Dominique Leuenberger <dimstar@opensuse.org>
Date:   Mon Jul 23 15:56:53 2012 +0200

    configure: We require ibus version 1.4.99 or newer (1.5 unstable)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680133

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f9e052eea0703e0e5d7e33fada7d7d2920f2d3d7
Author: Dominique Leuenberger <dimstar@opensuse.org>
Date:   Mon Jul 23 15:04:58 2012 +0200

    configure: Bump GTK+ requirement to 3.5.8: first version to bring GtkLevelBar.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680133

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3c1d245cbc3061194c5db4d3442c3fb08bae221d
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Jul 23 22:34:14 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 2 ++
 1 file changed, 2 insertions(+)

commit 12799fdb19feea7cd53425ef9cfe877911c4b0f3
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jul 23 12:38:08 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1077 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 603 insertions(+), 474 deletions(-)

commit 125da078891c703be1fd52e305599a848145a5bc
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 23 10:43:02 2012 +0100

    network: Remove some dead code from the conversion

 panels/network/cc-network-panel.c | 110 +++++++-------------------------------
 1 file changed, 19 insertions(+), 91 deletions(-)

commit 08532a3a86e2a8ee6621c857281cf9a06bc77545
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 23 10:14:31 2012 +0100

    network: Prevent a crash when a device is removed and then re-added

 panels/network/net-device.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

commit b06bb9e5f36a26f99506c2ef0d284885b3ba6e08
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 20 12:05:10 2012 +0100

    network: Split the wifi device from the .c and .ui file

 panels/network/Makefile.am        |    3 +
 panels/network/cc-network-panel.c | 2483 ++++++-------------------------------
 panels/network/net-device-wifi.c  | 1538 +++++++++++++++++++++++
 panels/network/net-device-wifi.h  |   58 +
 panels/network/network-wifi.ui    |  525 ++++++++
 panels/network/network.ui         |  520 --------
 6 files changed, 2475 insertions(+), 2652 deletions(-)

commit a70b3f2c8e3b9c88c72e67793a82f7de006890dd
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Jul 22 23:45:39 2012 +0200

    Updated Arabic translation

 po/ar.po | 300 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 157 insertions(+), 143 deletions(-)

commit 5366d1188e212d472905ac325df9a4c03eb711a9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Jul 22 13:00:18 2012 -0400

    info: Check PackageKit version at runtime
    
    The previous patch made use use PackageKit 0.8 API. This patch
    adds a version check that keeps the info panel from crashing
    when it finds an older PackageKit at runtime.

 panels/info/cc-info-panel.c | 32 +++++++++++++++++++++++++++-----
 1 file changed, 27 insertions(+), 5 deletions(-)

commit 76add03e25d87da3c99b1ad1b29081b9195f8d69
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Jul 22 12:59:15 2012 -0400

    info: Adapt to PackageKit API breakage
    
    PackageKit 0.8.x has broken several APIs that we are using here.

 panels/info/cc-info-panel.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2b3a82b5ce1908099253148fb5fdfa4d03ed9585
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Jul 21 18:44:55 2012 +0200

    Updated Spanish translation

 po/es.po | 332 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 163 insertions(+), 169 deletions(-)

commit cb6f427798e48d7672e9d608fb614f31b2f43453
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Jul 21 01:05:18 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 4 ++++
 1 file changed, 4 insertions(+)

commit aee6325cf22156d274cfb02e2b2c6766cc6b13ce
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 20 11:43:05 2012 +0100

    network: Add a missing file for the mobile broadband UI

 panels/network/network-mobile.ui | 378 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 378 insertions(+)

commit de8993eddbbea7a67e5de590913ce4563363b256
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 20 09:28:26 2012 +0100

    network: Allow NetObjects to get the main panel object so they can show modal dialogs

 panels/network/cc-network-panel.c  |  2 ++
 panels/network/net-device-mobile.c |  5 +++--
 panels/network/net-object.c        | 22 ++++++++++++++++++++++
 panels/network/net-object.h        |  3 +++
 4 files changed, 30 insertions(+), 2 deletions(-)

commit 26b5169beeb7045b77b871cb8aa81d5637c1c025
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 20 09:21:57 2012 +0100

    network: Split the mobile broadband device from the .c and .ui file

 panels/network/Makefile.am         |   3 +
 panels/network/cc-network-panel.c  | 343 +---------------------
 panels/network/net-device-mobile.c | 570 +++++++++++++++++++++++++++++++++++++
 panels/network/net-device-mobile.h |  59 ++++
 panels/network/network.ui          | 420 ---------------------------
 5 files changed, 636 insertions(+), 759 deletions(-)

commit 62b8a4c8bbca007eb6514771baa4e3eea94e93e7
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jul 20 09:08:53 2012 +0100

    network: Add a NetObject->edit vfunc for the different devices to use

 panels/network/net-device-wired.c | 15 +--------------
 panels/network/net-device.c       | 23 +++++++++++++++++++++++
 panels/network/net-object.c       |  8 ++++++++
 panels/network/net-object.h       |  2 ++
 panels/network/net-vpn.c          |  8 ++++++++
 5 files changed, 42 insertions(+), 14 deletions(-)

commit a808633484695fbe245f5797108123c749985e5a
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Jul 18 15:08:07 2012 +0100

    network: Split the wired device from the .c and .ui file

 panels/network/Makefile.am        |   3 +
 panels/network/cc-network-panel.c | 165 +++--------------
 panels/network/net-device-wired.c | 271 ++++++++++++++++++++++++++++
 panels/network/net-device-wired.h |  58 ++++++
 panels/network/network-wired.ui   | 366 ++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         | 360 -------------------------------------
 6 files changed, 726 insertions(+), 497 deletions(-)

commit 5644bd6e6291278e3829cbb0c2a04e0a1d2fcd21
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Jul 18 14:57:26 2012 +0100

    network: Add panel_set_device_widgets() to the widget common code
    
    We can use this from the different NetDevice types, and once all the devices are
    converted to actual NetDeviceFoo-style objects we can remove the legacy code in
    cc-network-panel.c

 panels/network/panel-common.c | 172 +++++++++++++++++++++++++++++++++++++++++-
 panels/network/panel-common.h |   2 +
 2 files changed, 172 insertions(+), 2 deletions(-)

commit 1e4b0649f497e3969c73ac20e27a25df1886b435
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jul 19 21:36:20 2012 -0400

    region: Handle being opened twice gracefully
    
    When the going from the region panel to the overview and back,
    the input methods in the list loose their display names. What
    is happening is that we recreate the ibus object, but the second
    time around it is already connected since ibus uses a shared
    singleton connection internally. Thus, the ::connected signal
    is never emitted, and we don't fetch the engines.
    
    Work around this by checking if the newly created ibus object
    is already connected, and directly calling fetch_ibus_engines
    if it is. To make this work, we have to set up the treeview
    with its model earlier.

 panels/region/gnome-region-panel-input.c | 39 +++++++++++++++++---------------
 1 file changed, 21 insertions(+), 18 deletions(-)

commit 0af48c80a95f9ca6ceca0b1b65e0a17b96fcb4f3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jul 19 21:34:18 2012 -0400

    region: Make the code more robust
    
    update_ibus_active_sources may very well be called with
    an empty treeview. The code that iterates over the model
    was assuming that there is at least one item. Fix that
    by checking the return value of gtk_tree_model_get_iter_first().

 panels/region/gnome-region-panel-input.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit b807656dbb8db5bb0e61d2de47004be9a616f07a
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Thu Jul 19 22:58:20 2012 +0300

    Updated Belarusian translation.

 po/be.po | 600 +++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 428 insertions(+), 172 deletions(-)

commit 06554439b7243aa3625d52ad8fe41ed621d3ac3c
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Wed Jul 18 14:23:29 2012 +0200

    wacom: Do calibration for the selected tool only
    
    As different tools may have different resolutions (e.g.
    touch vs. stylus on tablets which support both).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680114

 panels/wacom/calibrator/gui_gtk.c | 13 +++++++++++++
 panels/wacom/calibrator/gui_gtk.h |  1 +
 panels/wacom/calibrator/main.c    |  3 ++-
 panels/wacom/cc-wacom-page.c      | 14 +++++++++++++-
 4 files changed, 29 insertions(+), 2 deletions(-)

commit f004ecb17d826ef4389ebe0d2f8ca5c34eb6392d
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Wed Jul 18 15:17:36 2012 +0200

    wacom: Fix critical warning after calibration
    
    g_variant_new_array() creates a floating reference and
    g_settings_set_value() consumes it, so don't unref the GVariant
    ourselves.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680171

 panels/wacom/cc-wacom-page.c | 1 -
 1 file changed, 1 deletion(-)

commit d37487ffa52d7294b186c75562e2753513426e6b
Author: Tobias Endrigkeit <tobiasendrigkeit@googlemail.com>
Date:   Wed Jul 18 21:48:29 2012 +0200

    Updated German translation

 po/de.po | 2714 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1740 insertions(+), 974 deletions(-)

commit 20f85e38b742d7976cea10de5f910a91b05d5648
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Wed Jul 18 09:34:45 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 594 +++++++++++++++++++++++++++++++++++++++++++-----------------
 po/zh_TW.po | 594 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 848 insertions(+), 340 deletions(-)

commit 21d93f184c192a73b6984d320a7b432c92bbc8eb
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Tue Jul 17 22:19:40 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 1592 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 754 insertions(+), 838 deletions(-)

commit fad7dcba736a2b3a3e873d442475fdd3c17e4b23
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 17 19:09:17 2012 +0100

    3.5.5

 NEWS         | 36 ++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)

commit 00c51443ae596b7e024b175e8c9f047c42fe5738
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jul 17 16:15:13 2012 +0100

    network: Add some more widget setting common code

 panels/network/panel-common.c | 20 ++++++++++++++++++++
 panels/network/panel-common.h |  3 +++
 2 files changed, 23 insertions(+)

commit f4c13e835b72c8f3f274000663390932c0f74462
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jul 17 16:00:40 2012 +0100

    network: Move setting the device header pairs to common panel code
    
    This is yet another step to splitting out the other devices types.

 panels/network/net-vpn.c      | 84 +++++++++++--------------------------------
 panels/network/network-vpn.ui | 52 +++++++++++++--------------
 panels/network/panel-common.c | 34 ++++++++++++++++++
 panels/network/panel-common.h |  4 +++
 4 files changed, 85 insertions(+), 89 deletions(-)

commit 95d0a2e537e02fcd880bf70f7d607a74145f06b9
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Tue Jul 10 16:17:15 2012 +0200

    screen: add "Show Notifications" setting
    
    Add a checkbox to control the visibility of notifications when
    the screen is locked.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658660

 panels/screen/cc-screen-panel.c | 12 ++++++++++++
 panels/screen/screen.ui         | 30 +++++++++++++++++++++++++++---
 2 files changed, 39 insertions(+), 3 deletions(-)

commit 7e5654bf484c2e1d47eb3e29658a03320f44643f
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jul 17 14:13:31 2012 +0100

    network: Fix a trivial GTK warning at startup about a missing widget

 panels/network/network.ui | 1 -
 1 file changed, 1 deletion(-)

commit 6de161617a324b49332de624b037a3d8f6132ad7
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jul 17 14:13:08 2012 +0100

    network: Fix the VPN information my setting the connection at object construction time

 panels/network/cc-network-panel.c |  1 +
 panels/network/net-vpn.c          | 73 +++++++++++++++++++++++++++++++++++++--
 panels/network/net-vpn.h          |  2 --
 3 files changed, 71 insertions(+), 5 deletions(-)

commit 04dc515aa51b0a105a9675dacd8fd0ad40ce6d7f
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Jul 17 13:26:56 2012 +0200

    Updated Arabic translation

 po/ar.po | 824 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 528 insertions(+), 296 deletions(-)

commit 89a815a6f95ff3d6846b8eec63c0095f1a5ef652
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Jul 17 12:04:18 2012 +0200

    Updated Spanish translation

 po/es.po | 364 +++++++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 285 insertions(+), 79 deletions(-)

commit 96f7cbae9064592eb4717a9ae2bd913750ce6c9d
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:37:18 2012 +0100

    network: Return success from panel_set_notebook_page_for_object()
    
    This is so we can run the panel with both old-style and new-style NetDevices
    whilst we are migrating the device kinds.

 panels/network/cc-network-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit e72194482e3eb718a42615fa9e6bd52025a15ad2
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:35:56 2012 +0100

    network: Remove some unused code

 panels/network/cc-network-panel.c | 24 ------------------------
 1 file changed, 24 deletions(-)

commit 3c2a09294cb6fc237f5f780b2f37adc8c113d12c
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:34:24 2012 +0100

    network: Set the device properties at construct time
    
    We need this for more complicated devices that need to contact other daemons,
    for instance ModemManager.

 panels/network/cc-network-panel.c | 31 ++++++++++++++++++-------------
 panels/network/net-device.c       | 10 ----------
 panels/network/net-device.h       |  2 --
 panels/network/net-object.c       | 31 ++++---------------------------
 panels/network/net-object.h       |  3 ---
 panels/network/net-vpn.c          | 11 -----------
 panels/network/net-vpn.h          |  1 -
 7 files changed, 22 insertions(+), 67 deletions(-)

commit cd765a1267b01c843fdf10ad122e4b8daab973c2
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:28:09 2012 +0100

    network: Export net_device_get_find_connection() so it can be used by future network devices

 panels/network/cc-network-panel.c | 168 ++------------------------------------
 panels/network/net-device.c       | 167 +++++++++++++++++++++++++++++++++++++
 panels/network/net-device.h       |   1 +
 3 files changed, 177 insertions(+), 159 deletions(-)

commit 5d17320817bc26418d9e07745affba50ec680e11
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:22:56 2012 +0100

    network: Add a GObject nm-device property for NetDevice

 panels/network/net-device.c | 65 ++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 64 insertions(+), 1 deletion(-)

commit f9e2828f77bb2a03b6bdc27e249f4fa7ed59c565
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:15:43 2012 +0100

    network: Add a NMRemoteSettings property to NetObject for future use

 panels/network/net-object.c | 22 ++++++++++++++++++++++
 panels/network/net-object.h |  2 ++
 2 files changed, 24 insertions(+)

commit b48fc1b65c5781a4da1fe51941d02daa2c9abc9a
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 17:14:01 2012 +0100

    network: Add a GCancellable property to NetObject for future use

 panels/network/net-object.c | 23 ++++++++++++++++++++++-
 panels/network/net-object.h |  1 +
 2 files changed, 23 insertions(+), 1 deletion(-)

commit 7fcc4666ac8fce4cb0d8599b0b921f75097358e2
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jul 17 10:21:13 2012 +0100

    network: Set the correct page when using mobile broadband devices

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 64150f145890143316fa3aefbbd322f3698369de
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jul 17 00:00:16 2012 -0400

    Avoid losing the selection
    
    When the active input sources list is changed in any way (add or
    remove or reorder a source), we write the list to the setting,
    and then we get a changed signal for the setting, and rebuild
    the list from the setting. Doing so loses the selection, unless
    we take extra precaution to keep it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=680027

 panels/region/gnome-region-panel-input.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 54835c8f4486309c1517a7f71735fbdd7e098c5f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jul 16 23:59:03 2012 -0400

    Remove one more leftover reference to a filter model
    
    The active input sources are no longer stored in a filter model.
    Also, use gtk_list_store_insert_with_values for atomic insertion.

 panels/region/gnome-region-panel-input.c | 21 ++++++++-------------
 1 file changed, 8 insertions(+), 13 deletions(-)

commit ee32c358f1f7da62f9876e38a010f72eb2323ab1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 16 18:05:04 2012 +0100

    shell: Don't handle shortcuts with excess modifiers
    
    Ctrl+Alt+W shouldn't be handled the same way as Ctrl+W.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675475

 shell/cinnamon-control-center.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit 1fdfa6bc32077ff246cc8531e01d690327467602
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Thu Jul 5 15:36:10 2012 +0200

    wacom: show calibration success
    
    by drawing an "emblem-ok-symbolic" icon when calibration is
    successful
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668610

 panels/wacom/calibrator/gui_gtk.c | 108 +++++++++++++++++++++++++++++++++++---
 1 file changed, 101 insertions(+), 7 deletions(-)

commit 953cc81b0f07c0e5f4e1f34a139efafe6d61fea1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jul 16 12:07:39 2012 -0400

    Region: Remove references to a no-longer-existing filter model
    
    There was some code left around for dealing with a filter model,
    but we don't have the active input sources in a filtered list
    anymore. This was leading to crashes when removing or rearranging
    input sources.

 panels/region/gnome-region-panel-input.c | 36 ++++++--------------------------
 1 file changed, 6 insertions(+), 30 deletions(-)

commit 3b4f577652bf0544a2070df5ea473ba08b926ab0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 16 17:03:36 2012 +0100

    shell: Fix not being able to assign Ctrl+Q to a shortcut
    
    Because the shell window was capturing it before the key editing
    cell had a change to get to it.
    
    s/g_signal_connect/g_signal_connect_after/
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671448

 shell/cinnamon-control-center.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ab0594239c5e43b3a14a0cf40ab2cce039a17a53
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 16 16:40:15 2012 +0100

    region: Fix compilation failure
    
    A use of the removed tree_view_get_actual_model() crept in.

 panels/region/gnome-region-panel-input.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bf710914becf8f228ed38cf8d9b3c7c075df65b1
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Jul 16 17:49:55 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 6 ++++++
 1 file changed, 6 insertions(+)

commit 5dd45a964d062dc2f7a066c00247bfe062f2a7f4
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jul 16 16:43:23 2012 +0200

    Updated Spanish translation

 po/es.po | 608 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 321 insertions(+), 287 deletions(-)

commit 661019dadcdfe08a7d184c37a881fafea254a10e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 16 15:24:23 2012 +0100

    region: Remove unneeded signal blockers
    
    The value isn't going to change from under us, as the settings
    object is in delayed mode.

 panels/region/gnome-region-panel-input.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

commit 3579d7bb970376a0a9d8616f334d23e7f71202af
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Jul 2 03:30:12 2012 +0200

    region: Try to keep the current input source when modifying the list
    
    When modifying the input sources list the currently active source's
    index might change. We must change the current setting accordingly to
    keep it active.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/gnome-region-panel-input.c | 62 ++++++++++++++++++++++++++------
 1 file changed, 51 insertions(+), 11 deletions(-)

commit 49f7d379bc38aeeeb84cf98571d34a1a0ba28423
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Jul 2 04:05:09 2012 +0200

    region: Fix a couple of memory leaks
    
    Unref the GSettings object and build the GnomeXkbInfo only
    once. There's no need to free and keep rebuilding the latter since it
    doesn't keep any state and is a bit expensive to build.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/gnome-region-panel-input.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 03f08fd36c059c17f3af723ca29e0ad931fc6a26
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 16 15:15:28 2012 +0100

    region: Never hide items from view
    
    If IBus is unavailable to get the input source's display name,
    just show the ID instead, and populate the display name when we get
    a change (eg. when fetching the input sources from IBus is done).

 panels/region/gnome-region-panel-input.c | 70 ++++++--------------------------
 1 file changed, 13 insertions(+), 57 deletions(-)

commit 5e737900b0df98aa5c6aac9fc0b83fff9f454692
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Mon Jul 2 03:39:10 2012 +0200

    region: Wire up the input source settings button
    
    For XKB input sources the settings button remains unsensitive. For
    IBus sources we make it sensitive and launch the engine's setup tool
    on clicked if there is one.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/gnome-region-panel-input.c | 115 ++++++++++++++++++++++++++++---
 1 file changed, 104 insertions(+), 11 deletions(-)

commit 412e53079f051c7358f0200c38cd5957dc082e94
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Tue May 22 19:14:40 2012 +0200

    region: Add IBus input sources
    
    We query IBus for the available engines and present them alongside XKB
    layouts.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 configure.ac                             |  22 +-
 panels/region/gnome-region-panel-input.c | 356 ++++++++++++++++++++++++++++---
 2 files changed, 348 insertions(+), 30 deletions(-)

commit 7ae3027b472422cdae47c09dd0420b297dacf089
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jul 16 15:25:10 2012 +0200

    printer: Add "Options" dialog
    
    Add Options dialog which allows users to set more options than current dialog.
    The dialog reads printer's PPD file and add its options to the dialog together
    with some preselected IPP options (#678637).
    All operations in the dialog are asynchronous.
    During implementation of this, the option for setting allowed users was removed
    because this is not suitable for this panel (the option is intended for
    administrators).

 panels/printers/Makefile.am            |   7 +
 panels/printers/cc-printers-panel.c    | 343 ++----------
 panels/printers/options-dialog.ui      | 182 ++++++
 panels/printers/pp-ipp-option-widget.c | 605 ++++++++++++++++++++
 panels/printers/pp-ipp-option-widget.h |  70 +++
 panels/printers/pp-options-dialog.c    | 984 +++++++++++++++++++++++++++++++++
 panels/printers/pp-options-dialog.h    |  42 ++
 panels/printers/pp-ppd-option-widget.c | 624 +++++++++++++++++++++
 panels/printers/pp-ppd-option-widget.h |  63 +++
 panels/printers/pp-utils.c             | 285 ++++++++++
 panels/printers/pp-utils.h             |  25 +
 11 files changed, 2937 insertions(+), 293 deletions(-)

commit e61ec214b06fb1b9a82abb42e076f51ef6c2ee76
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 16 14:08:25 2012 +0100

    network: Ensure to install the VPN .ui file

 panels/network/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit dd7479caeace07e44d72cd310753a87a44e3e578
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jul 16 11:10:02 2012 +0200

    printers: Allow users to change printer's PPD file
    
    This commit adds popup window which when activated allows
    user to select PPD from local database of installed PPDs,
    select directly PPD from filesystem or select one from 3
    recommended PPDs (#678637).
    The popup is activated by clicking on model field (the panel
    has to be unlocked). It starts to search for the best PPDs
    available immediately after its popup.
    All operations are asynchronous.

 panels/printers/Makefile.am               |   15 +-
 panels/printers/cc-printers-panel.c       |  641 ++++++++++-
 panels/printers/pp-ppd-selection-dialog.c |  444 ++++++++
 panels/printers/pp-ppd-selection-dialog.h |   46 +
 panels/printers/pp-utils.c                | 1635 +++++++++++++++++++++++++++++
 panels/printers/pp-utils.h                |   90 ++
 panels/printers/ppd-selection-dialog.ui   |  206 ++++
 panels/printers/printers.ui               |   75 +-
 8 files changed, 3119 insertions(+), 33 deletions(-)

commit 1b3e877ef2e1e35ab4f33fea83ffb422286dbf88
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jun 11 09:58:07 2012 -0400

    shell: remove CcStrengthBar
    
    Panels are all ported to GtkLevelBar instead.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679984

 shell/Makefile.am       |   2 -
 shell/cc-strength-bar.c | 395 ------------------------------------------------
 shell/cc-strength-bar.h |  69 ---------
 3 files changed, 466 deletions(-)

commit dfe03a1173f2c1d5cae8db948bfd57a0e193ecf4
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jun 11 09:57:31 2012 -0400

    user-accounts: port to GtkLevelBar
    
    This also adds another out parameter to pw_strength(), which is a discrete
    indication of the password strength (to be used with GtkLevelBar). The
    advantage of having such a parameter back from pw_strength() is that we
    can make sure the fill value and the hint string change at the same
    time, for better consistency.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679984

 panels/user-accounts/data/password-dialog.ui |  8 +++++++-
 panels/user-accounts/pw-utils.c              | 30 ++++++++++++++++++----------
 panels/user-accounts/pw-utils.h              |  3 ++-
 panels/user-accounts/um-password-dialog.c    |  9 ++++-----
 panels/user-accounts/um-user-panel.c         |  2 --
 5 files changed, 33 insertions(+), 19 deletions(-)

commit b05591b1654c391f6d4aa113525b70ca736f68a0
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jun 11 09:56:49 2012 -0400

    power: port to GtkLevelBar
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679984

 panels/power/cc-power-panel.c | 32 ++++++++++----------------------
 panels/power/power.ui         |  4 ++--
 2 files changed, 12 insertions(+), 24 deletions(-)

commit 38411a0d461540c9cd7a851ff13220786fef6dba
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sun Jul 15 12:10:30 2012 +0300

    Updated Belarusian translation.

 po/be.po | 735 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 417 insertions(+), 318 deletions(-)

commit 59c159da2b6e4174aafbf3e0d73ea744eb5b560c
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Jul 14 13:54:46 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 465 ++++++++++++++++++++++++++---------------------------------
 po/zh_TW.po | 467 ++++++++++++++++++++++++++----------------------------------
 2 files changed, 402 insertions(+), 530 deletions(-)

commit 118d5c276d1236b29d66f7fd3761aa7b317c381f
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Jul 12 22:23:22 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 0a98c5a921225055af230dcf218e52c99035134d
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 12 17:29:47 2012 +0100

    network: Provide a vfunc for refreshing a NetObject

 panels/network/net-device.c | 1 +
 panels/network/net-object.c | 8 ++++++++
 panels/network/net-object.h | 2 ++
 panels/network/net-vpn.c    | 8 ++++++++
 4 files changed, 19 insertions(+)

commit 8384a0b741728c33c6a84003fc6efde4ec91161c
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 12 16:58:11 2012 +0100

    network: Split the VPN parts from the .c and .ui file

 panels/network/cc-network-panel.c | 189 ++-------------------
 panels/network/net-vpn.c          | 273 ++++++++++++++++++++++++++++---
 panels/network/net-vpn.h          |   7 -
 panels/network/network-vpn.ui     | 336 ++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         | 313 -----------------------------------
 5 files changed, 603 insertions(+), 515 deletions(-)

commit ddabc6049f8aaf7e7123970ee289a1d8af309332
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 12 16:55:20 2012 +0100

    network: Add a vfunc so a NetObject can be deleted
    
    We will only support this for VPN 'devices' but it seemed a cleaner abstraction this way.

 panels/network/net-object.c | 8 ++++++++
 panels/network/net-object.h | 2 ++
 2 files changed, 10 insertions(+)

commit eeecc61d0583023dd40fcc295432cab1e50a3ca0
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 12 16:35:06 2012 +0100

    network: Share a NMClient instance between NetObjects
    
    Creating a NMClient is expensive and slow. This will be used in future code.

 panels/network/cc-network-panel.c |  1 +
 panels/network/net-object.c       | 31 +++++++++++++++++++++++++++++++
 panels/network/net-object.h       |  4 ++++
 3 files changed, 36 insertions(+)

commit c26e14518ea66491dba2c2dcf356bbab865f68ef
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 12 14:07:54 2012 +0100

    network: Split the proxy parts from the .c and .ui file
    
    A source file with 4k lines of code is not understandable, and the glade file
    was becoming quite a challenge for glade.
    To add more features we need to split things up just to keep them maintainable.
    
    This is the first patch that just splits out the proxy bits. Other device types
    will follow in the next few days.

 panels/network/Makefile.am        |   6 +-
 panels/network/cc-network-panel.c | 353 +++++--------------------------
 panels/network/net-device.c       |   4 +-
 panels/network/net-object.c       |  20 ++
 panels/network/net-object.h       |  17 +-
 panels/network/net-proxy.c        | 388 ++++++++++++++++++++++++++++++++++
 panels/network/net-proxy.h        |  59 ++++++
 panels/network/network-proxy.ui   | 427 ++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         | 415 ------------------------------------
 po/POTFILES.in                    |   2 +
 10 files changed, 975 insertions(+), 716 deletions(-)

commit 298489ee167486c0ca808805c699e73843b09356
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jul 12 14:00:40 2012 +0100

    network: Add a boolean 'removable' property to NetObject for future use
    
    Also add GObject getters and setters for the other two properties.

 panels/network/net-object.c | 99 +++++++++++++++++++++++++++++++++++++++++++++
 panels/network/net-object.h |  3 ++
 2 files changed, 102 insertions(+)

commit a995cfac99e0642517268b5ba2552cadb15a962a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 16:35:38 2012 +0100

    build: Require PulseAudio 2.0 for the sound changes

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 89fbf2b35bfef9d56e9109745f040158a5594b60
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 16:26:28 2012 +0100

    sound: Use PulseAudio's implementation of pa_cvolume_set_position()

 panels/sound/gvc-balance-bar.c | 23 +----------------------
 1 file changed, 1 insertion(+), 22 deletions(-)

commit 3cf252f4f0874276804f0c64c3c194ed42995d02
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 16:24:53 2012 +0100

    sound: Remove support code for older PulseAudio
    
    our define of PA_VOLUME_UI_MAX was only needed for PA 0.9.22 and older.

 panels/sound/gvc-mixer-control.c | 5 -----
 1 file changed, 5 deletions(-)

commit 1dfd464a5907a1aa8b241790ffe5b7f8f31e505f
Author: Conor Curran <conor.curran@canonical.com>
Date:   Wed Jul 11 16:19:24 2012 +0100

    sound: Add support for GvcMixerUIDevices in GvcMixerControl
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-control.c | 1116 +++++++++++++++++++++++++++++++++++++-
 panels/sound/gvc-mixer-control.h |   60 +-
 2 files changed, 1138 insertions(+), 38 deletions(-)

commit 3201240eeecb935d7eab985230d6104e6a5188a9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 15:28:44 2012 +0100

    sound: Add more debug

 panels/sound/gvc-mixer-control.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 2a567809a24e6a55b2b88e47225971e61b7aaf71
Author: Conor Curran <conor.curran@canonical.com>
Date:   Wed Jul 11 13:43:07 2012 +0100

    sound: Add "available" member to GvcMixerStreamPort
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-stream.h | 1 +
 1 file changed, 1 insertion(+)

commit 6135c964a7dba0792ef9be7365383667667ed657
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 13:37:56 2012 +0100

    sound: Add gvc_mixer_ui_device_get_active_profile() helper
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-ui-device.c | 45 ++++++++++++++++++++++++--------------
 panels/sound/gvc-mixer-ui-device.h |  1 +
 2 files changed, 29 insertions(+), 17 deletions(-)

commit 0489296c33edff1408f897eac768b5576e543650
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 13:18:14 2012 +0100

    sound: Fix indentation

 panels/sound/gvc-mixer-ui-device.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

commit e32a02e2dda8432572075e9134a9a04abdbecbae
Author: Conor Curran <conor.curran@canonical.com>
Date:   Wed Jul 11 12:49:20 2012 +0100

    sound: Make sort_profiles public
    
    And rename it to gvc_mixer_card_profile_compare()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-card.c | 15 ++++++++++-----
 panels/sound/gvc-mixer-card.h |  3 +++
 2 files changed, 13 insertions(+), 5 deletions(-)

commit e5e7080e4e8e4e8dc5662216d9e5daa9b04bef66
Author: Conor Curran <conor.curran@canonical.com>
Date:   Wed Jul 4 15:26:52 2012 +0200

    sound: Add get_gicon() function to GvcMixerCard
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-card.c | 18 ++++++++++++++++++
 panels/sound/gvc-mixer-card.h |  2 ++
 2 files changed, 20 insertions(+)

commit 4da83052d2c3e237795d64af588ceec9fd0b3cbe
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 12:25:31 2012 +0100

    sound: Indentation in gvc-mixer-card.h

 panels/sound/gvc-mixer-card.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit fd75ccd894e11951c7149b918759c2e3f87cb97c
Author: Conor Curran <conor.curran@canonical.com>
Date:   Fri Jun 8 13:03:58 2012 +0100

    sound: Expose ports in GvcMixerCard
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/gvc-mixer-card.c | 32 ++++++++++++++++++++++++++++++++
 panels/sound/gvc-mixer-card.h | 15 ++++++++++++++-
 2 files changed, 46 insertions(+), 1 deletion(-)

commit db6afc826644f522c4d985083deb6a5b31910a2f
Author: Conor Curran <conor.curran@canonical.com>
Date:   Fri Jun 8 12:45:22 2012 +0100

    sound: Add new UIDevice object
    
    GvcMixerUIDevice objects correspond to an item on either the input
    or output tab - typically "Headphones", "Speaker", "Internal Mic" etc.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674831

 panels/sound/Makefile.am           |   2 +
 panels/sound/gvc-mixer-ui-device.c | 645 +++++++++++++++++++++++++++++++++++++
 panels/sound/gvc-mixer-ui-device.h |  81 +++++
 3 files changed, 728 insertions(+)

commit e2a75e76c2c4380c1312157f6623efd464d89a28
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 11:21:18 2012 +0100

    sound: Remove unused eol parameter

 panels/sound/gvc-mixer-control.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 4d4aab542af24f47393526b40926f8ba6ad6630a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jul 11 11:06:34 2012 +0100

    Revert "Brightness & Lock: add Show Notifications setting"
    
    This reverts commit 11ad5954c62d3ac083d0a2cde3fd7d3db07c059e.
    
    Committed in error

 panels/screen/cc-screen-panel.c | 12 ------------
 panels/screen/screen.ui         | 42 +++--------------------------------------
 2 files changed, 3 insertions(+), 51 deletions(-)

commit ca29f85201dbd9de72a863e2d67fa198e452db35
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Tue Jul 10 17:51:39 2012 +0200

    sound: Fixup "set default source" patch
    
    The previous commit introduced a segfault due to referencing a
    NULL pointer.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674925

 panels/sound/gvc-mixer-control.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 0d4aa158d8a164aa6d6c688a79b5cc021539c53a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 10 16:17:04 2012 +0100

    build: Require newer gsettings-desktop-schemas

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 11ad5954c62d3ac083d0a2cde3fd7d3db07c059e
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Tue Jul 10 16:17:15 2012 +0200

    Brightness & Lock: add Show Notifications setting
    
    Add a switch to control the visibility of notifications when
    the screen is locked.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658660

 panels/screen/cc-screen-panel.c | 12 ++++++++++++
 panels/screen/screen.ui         | 42 ++++++++++++++++++++++++++++++++++++++---
 2 files changed, 51 insertions(+), 3 deletions(-)

commit 7d426ffda37c7ad205b96d3721f6dd27582ae78b
Author: Colin Walters <walters@verbum.org>
Date:   Tue Jul 10 17:54:38 2012 -0400

    build: Adjust previous patch to be what was intended

 configure.ac | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit e939825c6dc79accb8a00b66d519718a8b71487f
Author: Colin Walters <walters@verbum.org>
Date:   Tue Jul 10 17:31:52 2012 -0400

    build: Fix previous commit

 configure.ac | 1 +
 1 file changed, 1 insertion(+)

commit 1b26ec14e916296300126a82bf660913baf006a6
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Tue Jul 10 18:50:47 2012 +0300

    Updated Lithuanian translation

 po/lt.po | 2620 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1623 insertions(+), 997 deletions(-)

commit 484b35ec7721c62c313b4cc01eae153908ec4c60
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Thu Jun 14 22:55:58 2012 +0200

    build: Don't check for gsettings-desktop-schemas in each panel
    
    It is already in the common modules, no need to repeat it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658660

 configure.ac | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 80aac59a25f0deb59ae837ac29dd55abe9380745
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jul 9 14:55:01 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 601 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 358 insertions(+), 243 deletions(-)

commit 4eee8fab7c364565c7ebde7ab2a0da3cf237be3f
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Fri Jul 6 14:55:33 2012 +0530

    Assamese translation reviewed

 po/as.po | 453 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 260 insertions(+), 193 deletions(-)

commit 836755f593a3e31b6d22a0ef21e08937170970af
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Thu Jul 5 18:27:56 2012 +0200

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit fcc40582482b37865c301065cbd73109b0dc9363
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Jul 5 16:52:24 2012 +0200

    Updated Arabic translation

 po/ar.po | 202 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 111 insertions(+), 91 deletions(-)

commit 3083fda606bce5ce09662a16911262b4f4958c81
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Tue Jul 3 13:59:08 2012 +0200

    wacom: Destroy display mapping dialogue on unplug
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679159

 panels/wacom/cc-wacom-page.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 13b64e04867a06468051c570467b22e57d237853
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Tue Jul 3 15:25:46 2012 +0200

    keyboard: Plug a GSettings object leak
    
    Also, rename the variable holding it since there are other 'settings'
    variables in the same file.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=679328

 panels/keyboard/keyboard-shortcuts.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit f2df6d7fbbb41cee78b94a7c2d3dc331168433b7
Author: Rico Tzschichholz <ricotz@t-online.de>
Date:   Tue Jul 3 13:54:38 2012 +0200

    user-accounts: Fix build with -Werror=format-security

 panels/user-accounts/um-account-dialog.c | 2 +-
 panels/user-accounts/um-realm-manager.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 1612735104832e90efd00b8ac4557679877dfe76
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Wed May 16 16:56:28 2012 +0200

    wacom: apply display rotation to device
    
    When an output is mapped to a device, match the device rotation
    with the output (bug #676170)

 panels/wacom/cc-wacom-mapping-panel.c | 11 +++++++++++
 panels/wacom/cc-wacom-page.c          | 28 ++++++++++++++++++++++++++--
 2 files changed, 37 insertions(+), 2 deletions(-)

commit 62f34db3327dfeeaa7cc73bd1083169d6c0d78eb
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Tue Jul 3 11:49:36 2012 +0200

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 76 +++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h |  5 +++
 2 files changed, 81 insertions(+)

commit b761b7d7c4f9cbdef9dea979d4892f6210675589
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jul 2 17:29:22 2012 +0200

    Updated Spanish translation

 po/es.po | 151 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 77 insertions(+), 74 deletions(-)

commit a46eff6f8ca2137330c3302caa2c6d8623e2e3dd
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Jul 1 10:50:32 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 301 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 105 insertions(+), 196 deletions(-)

commit 8444760f3a0e92d323a0024d7de7014595184bf0
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Jul 1 10:31:57 2012 +0700

    po/vi: import from Damned Lies

 po/vi.po | 2344 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1487 insertions(+), 857 deletions(-)

commit a4d0923108412d602d9c32405b27b6edd2ef598d
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sat Jun 30 23:04:53 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 3899 ++++++++++++++++++++++++++++++++--------------------------
 po/zh_TW.po | 3907 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 4420 insertions(+), 3386 deletions(-)

commit 75e74cc09b5965ff80f41c25458ff24b6e333891
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 23:18:39 2012 -0400

    network: Use g_clear_object where appropriate
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 33 ++++++++++-----------------------
 1 file changed, 10 insertions(+), 23 deletions(-)

commit b154ebd1d639cb74ae98d2ba31a1eab3df9f1bc2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 23:20:53 2012 -0400

    network: Remove redundant returns
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678158
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit 31cd509a7502a7df9c6236554a99e1b9abf6c4b2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 27 22:42:19 2012 -0400

    network: Sort access points by strength
    
    Keep the active network at the top, and 'Other' at the bottom.
    the other access points are sorted by strength now.
    https://bugzilla.gnome.org/show_bug.cgi?id=678505
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 54 +++++++++++++++++++++++++++++----------
 panels/network/network.ui         |  2 ++
 2 files changed, 42 insertions(+), 14 deletions(-)

commit dcb34090cc5b258dcec19f88306d2119e4c57c29
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 27 23:02:02 2012 -0400

    network: avoid crashes due to leftover signal handlers
    
    The libnm objects can survive the disposal of the network panel.
    If we don't disconnect the signal handlers on them, bad things
    can happen. Use g_signal_connect_object to tie the life-cycle
    of the signal handlers to the panel.
    https://bugzilla.gnome.org/show_bug.cgi?id=677969
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

commit 6689012eb8881c548fbca52c2ac09c7511e7deae
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jun 28 12:17:18 2012 +0100

    network: Show multiple connections in the mobile broadband panel
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=647170

 panels/network/cc-network-panel.c | 137 ++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         |  40 +++++++++++
 2 files changed, 177 insertions(+)

commit f0b88883d028f43deb09d21dcec95920d4f64b64
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jun 28 13:42:44 2012 +0100

    network: Increase the amount of debugging for mobile-bb

 panels/network/cc-network-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 59b7500fb64e907fef101ef5607d721e04b0ebe2
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jun 28 13:41:29 2012 +0100

    network: Don't try to show a wizard that failed to setup
    
    This fixes a critical warning when mobile-broadband-provider-info isn't
    installed into the correct prefix.

 panels/network/network-dialogs.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit fd059a2d1447d6ec32f818dae7668933f2145848
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jun 28 13:40:08 2012 +0100

    network: Don't try to set the mobile broadband speed widgets
    
    This fixes a critical warning when using mobile broadband adaptors.

 panels/network/cc-network-panel.c | 6 ------
 1 file changed, 6 deletions(-)

commit fe69f4f1355ae7816d601bb11c155904d9dd86fe
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Fri Apr 27 11:15:52 2012 +0200

    sound: Move running input streams when default source is changed
    
    When changing the default input source, active recording streams
    are not moved. This patch will fix that, which will make input
    and output behaviour consistent.
    
    As a bonus, it will not destroy pulseaudio's input database when
    changing default sink anymore.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674925

 panels/sound/gvc-mixer-control.c | 58 +++++++++++++++++++++++++++++++++-------
 1 file changed, 49 insertions(+), 9 deletions(-)

commit 49e3d8b4ce824e8c98bbf1d343055bac8df4ed87
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 27 10:58:32 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4cdaf4e022497334cfb28e828630f9c88534d4bd
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Jun 26 21:56:05 2012 +0200

    Updated Spanish translation

 po/es.po | 73 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 42 insertions(+), 31 deletions(-)

commit 953da26d6876ecf3da9fd1841df2bc5f08a0d774
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 26 16:39:14 2012 +0100

    3.5.4

 NEWS         | 7 +++++++
 configure.ac | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit ba5aea5ef72d463eb92f434e68f2faa09bd86eb6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 26 16:33:45 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 66 +++++++++++++++++++++--------------------
 1 file changed, 34 insertions(+), 32 deletions(-)

commit 206e365eeac7165984f0dc8170cf6ed4ba44ab57
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Jun 26 09:13:13 2012 +0200

    Updated Slovenian translation

 po/sl.po | 121 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 71 insertions(+), 50 deletions(-)

commit cfa3aaed0fda99a8bfe3cb169e43992c2141560a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 25 19:01:07 2012 +0100

    3.5.3

 NEWS | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

commit 0b029d61e3970e447718a0303455de40c5487068
Author: Noriko Mizumoto <noriko@fedoraproject.org>
Date:   Tue Jun 26 00:49:08 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 2403 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1442 insertions(+), 961 deletions(-)

commit 25708e9c8e395c465be8e9643127b3b43ef4ffb7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 25 16:35:41 2012 +0100

    sound: Make sure the event sound stream stays unmuted
    
    Apply mute changes to the stream straight away so that we don't get a
    race with gvc_mixer_event_role_push_volume().
    See https://bugs.freedesktop.org/show_bug.cgi?id=51413 for details.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677478

 panels/sound/gvc-mixer-event-role.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 8138227ae3961cc6b39e17ddcb3465107970bbc3
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Wed Jun 20 14:15:38 2012 +0200

    online-accounts: Improve the layout when there is no configured account
    
    Use a GtkButton instead of a GtkLabel to incite the user to configure
    a new account, and insensitize the GtkBox on the left.
    
    Fixes: https://bugzilla.gnome.org/672421

 panels/online-accounts/cc-online-accounts-panel.c | 49 ++++++++++++-
 panels/online-accounts/online-accounts.ui         | 84 +++++++++++++++++++----
 2 files changed, 115 insertions(+), 18 deletions(-)

commit bb531687ca957072470a5851c499993fe056ea85
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 19 22:11:00 2012 +0000

    sound: Fix mouse scrolls on sliders
    
    Use gdk_event_get_scroll_deltas() to get the scroll direction.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671724

 panels/sound/gvc-balance-bar.c        | 43 +++++++++++++++++++++++++----------
 panels/sound/gvc-channel-bar.c        | 42 ++++++++++++++++++++++++++--------
 panels/sound/gvc-channel-bar.h        |  4 ++--
 panels/sound/gvc-stream-status-icon.c |  2 +-
 4 files changed, 66 insertions(+), 25 deletions(-)

commit 75cc274a3b62011958f749eb52be4b977ea152e7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 25 13:33:04 2012 +0100

    sound: Fix use of deprecated gtk_vscale_new()

 panels/sound/gvc-channel-bar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9859ffbc27aca0a4f1a58412233498cdf846da70
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 25 13:32:36 2012 +0100

    sound: Remove left-click behaviour work-around
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678598

 panels/sound/gvc-channel-bar.c | 12 ------------
 1 file changed, 12 deletions(-)

commit dd2e8ed5676b2045497e25247049c57b2ddba4d9
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jun 24 22:44:38 2012 +0200

    Updated Galician translations

 po/gl.po | 353 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 192 insertions(+), 161 deletions(-)

commit a5aeae889963216dac91ca8867e9cea2f67c13b8
Author: Wylmer Wang <wantinghard@gmail.com>
Date:   Sat Jun 23 17:09:05 2012 +0800

    update Simplified Chinese (zh_CN) translation

 po/zh_CN.po | 2140 +++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1345 insertions(+), 795 deletions(-)

commit 973adfa43b953fd52063404224952b4c55ea98b6
Author: Stef Walter <stefw@gnome.org>
Date:   Thu Jun 14 17:10:31 2012 +0200

    user-accounts: Update the realmd dbus interface to latest
    
    The changes in the realmd dbus interface are futureproofing to
    support cancellation.
    
    In addition during this time of interface flux, check the
    daemon version number to make sure we can talk to it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678105

 .../user-accounts/data/org.freedesktop.realmd.xml  | 23 +++++++++
 panels/user-accounts/um-account-dialog.c           |  2 +-
 panels/user-accounts/um-realm-manager.c            | 55 ++++++++++++++++++++--
 3 files changed, 76 insertions(+), 4 deletions(-)

commit 7ed7628ba6a6f6934b8e93a97e6f20e8ba876462
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Jun 21 22:35:42 2012 +0200

    Insert soft hyphen characters into long panel names

 po/hu.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 0f4f7b797dfdcf9a88bbdcc0b1d5839487008f7e
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Jun 21 21:32:11 2012 +0200

    Updated Arabic translation

 po/ar.po | 118 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 64 insertions(+), 54 deletions(-)

commit c920ba6d4f7ce56d2e240929278f46ddd791b54a
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Wed Jun 20 15:35:45 2012 +0200

    online-accounts: The treeview should be in BROWSE mode and not SINGLE
    
    This ensures that if there are configured accounts, then atleast one
    of them will stay selected.
    
    Fixes: https://bugzilla.gnome.org/672421

 panels/online-accounts/online-accounts.ui | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 03ccd9d7806b350e36a5c9bc70edf5a3c8f5169c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jun 21 12:30:37 2012 +0200

    Updated Spanish translation

 po/es.po | 118 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 66 insertions(+), 52 deletions(-)

commit 4db702151377804043ca6b71184096d4441bf6e3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jun 21 10:36:08 2012 +0100

    shell: Fix search results not appearing
    
    Introduced in commit d382c42e5ce9b834456b8cda80bddea65b0639c1 by
    some overeager code removal.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678514

 shell/cinnamon-control-center.c | 1 +
 1 file changed, 1 insertion(+)

commit fd3afa8d4f64d942f2da42fde7504dbd519a2ce1
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Tue Jun 12 17:53:08 2012 -0400

    shell: Handle non-existant panels more gracefully
    
    If we're at the overview screen and try to launch a non-existant panel,
    we shouldn't remove the scroll view.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677980

 shell/cinnamon-control-center.c | 40 +++++++++++++++-------------------------
 1 file changed, 15 insertions(+), 25 deletions(-)

commit 8c9a1eec336f9687aff079f6322b12bfc550f852
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jun 12 15:22:33 2012 -0400

    Be robust against extraneous signal emissions
    
    It seems that we are occasionally get duplicate ClutterTimeline::completed
    emissions. Make the code robust against that.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677946

 shell/cc-notebook.c | 1 +
 1 file changed, 1 insertion(+)

commit 651431dd839702f36c46a8dfe0702471b9b3b145
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Mon Apr 16 20:22:42 2012 +0200

    online-accounts: We might have an object even when the error is set
    
    Fixes: https://bugzilla.gnome.org/674165

 panels/online-accounts/cc-online-accounts-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 6339c1819a2ae81c831b5d22ba2a431b2af49657
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 20 13:28:22 2012 +0100

    wacom: Bump required gnome-desktop version
    
    As needed for gnome_rr_output_get_ids_from_edid()

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f935ad4bdc59692239fb023fb8723fd7a5bf629
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu May 31 00:33:11 2012 +0200

    backgrounds: add translation context for background sytles

 panels/background/background.ui | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 9d002d98fdd338593dc08718f62932327d81e5a2
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu May 31 00:32:02 2012 +0200

    universal-access: add translator context for Zoom label

 panels/universal-access/uap.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 22ea414271a6037d4c14ca16602e73367b1a5be3
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Tue Jun 19 15:42:45 2012 +0200

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 294 +++++++++++++++++++++++-----------------
 panels/wacom/gsd-wacom-device.h |   1 +
 2 files changed, 172 insertions(+), 123 deletions(-)

commit 4bbd27ad257a58fbcdb4bf011975350de6be2b22
Author: Sasi Bhushan Boddepalli <sasi@swecha.net>
Date:   Tue Jun 19 18:00:03 2012 +0530

    Updated Telugu Translation

 po/te.po | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

commit dd10dac5b3a9aa6c6d18ef5adf391aa47b1ee838
Author: A S Alam <aalam@users.sf.net>
Date:   Tue Jun 19 07:41:19 2012 +0530

    Update Punjabi Translation

 po/pa.po | 553 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 328 insertions(+), 225 deletions(-)

commit 9be10b2f6419deb8ccf8beff5da76125e2998690
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Mon Jun 18 21:08:52 2012 +0200

    Updated Slovenian translation

 po/sl.po | 843 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 487 insertions(+), 356 deletions(-)

commit 9386e13aa8009b7beec1418de2791acd5e41c289
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jun 18 14:04:52 2012 +0200

    Updated Spanish translation

 po/es.po | 28 ++++++++++++++++++----------
 1 file changed, 18 insertions(+), 10 deletions(-)

commit 806b3e0e13ec63edeb5f635e67dc5a2cd798bd62
Author: Thomas Bechtold <thomasbechtold@jpberlin.de>
Date:   Tue Jun 12 00:56:37 2012 +0200

    network: Find connections specific MAC address set
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=677899
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 180 ++++++++++++++++++++++++++++++++------
 1 file changed, 154 insertions(+), 26 deletions(-)

commit e9288acf1c4954dd7cf2f8ac4865a145d426085f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 18 11:04:19 2012 +0100

    sound: Add audio keyword
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678303

 panels/sound/data/gnome-sound-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a94f98985130cd61c3ba0d7ef896ea8bb7bf4cb5
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Jun 17 13:24:33 2012 +0200

    Updated Arabic translation

 po/ar.po | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit 43cf067cf2fedc4b0a29a5796bde915c3a708d5f
Author: Stef Walter <stefw@gnome.org>
Date:   Fri Jun 15 18:45:41 2012 +0200

    user-accounts: Use the symbolic error icon in entries
    
    Use the symbolic error icon when entries as indication when
    entries don't validate.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678178

 panels/user-accounts/um-utils.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit a9ebbaa4a89e155ea92ab4cd8a95b32bb0bf8b60
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jun 15 07:40:56 2012 -0400

    users: Set the right toolbar-style on the inline toolbar
    
    While running in a bare X server, I noticed the inline toolbar here
    showing its labels, while all the other inline toolbars in other panels
    stayed nice and icon-only. The reason is that they explicitly set the
    toolbar-style to 'icons'. Do the same here.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678157

 panels/user-accounts/data/user-accounts-dialog.ui | 1 +
 1 file changed, 1 insertion(+)

commit 27e8c650af5b3e7a8eab73242939cf7be854ccdc
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Jun 15 20:00:12 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit dd9493821cea68e9607eb1220c0785e30ff071b4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jun 15 11:40:27 2012 -0400

    screen: Fix the build
    
    Move the on_signal callback below the functions that it is using.

 panels/screen/cc-screen-panel.c | 54 ++++++++++++++++++++---------------------
 1 file changed, 27 insertions(+), 27 deletions(-)

commit a1abae0375cb24e27e6cee055ab55ae170b99ee1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Jun 15 11:04:11 2012 -0400

    online-accounts: make "Add Account" label bigger and centered
    
    So it's consistent with the User Accounts panel.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678174

 panels/online-accounts/cc-online-accounts-add-account-dialog.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b40c1fb2cfcfe70f7c84d7c825d99f7cb4c23f00
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Jun 15 11:01:52 2012 -0400

    online-accounts: fix alignment with closing button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678174

 .../cc-online-accounts-add-account-dialog.c              | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit 99047ec0f5db72e1d6fa3d8fc6844b555d23413b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Jun 15 10:37:10 2012 -0400

    user-accounts: fix right alignment of controls with actions
    
    The controls are not perfectly right-aligned with the action buttons at
    the bottom; this is because the action area has a border of 6px and the
    control box of 10px.
    Fix it, and at the same time add another 6px of spacing at the bottom
    between the control box and the action box.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678173

 panels/user-accounts/data/account-dialog.ui | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2e2ad76e59866ff616640ca7ab6b1b5f47646c9e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Jun 15 10:22:14 2012 -0400

    region: Input Sources tab has a different spacing
    
    The first two tabs have 12px, make this 12px too.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678168

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7ab09177e12b6041ca9a681c0739ffa40b6e1f57
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Fri Jun 8 23:01:10 2012 +0200

    screen: Fix for gnome-settings-daemon changes
    
    g-s-d changed its DBus interface, and that made all
    external changes to brightness invisible to the panel. Update
    accordingly.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662117

 panels/screen/cc-screen-panel.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit c8e9d70679f8a311fbf4a0a5da51006a89d2decb
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Jun 15 12:56:46 2012 +0200

    Updated Arabic translation

 po/ar.po | 325 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 164 insertions(+), 161 deletions(-)

commit 59661162bd016bae52435028be66fb5f425f8091
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jun 15 12:10:40 2012 +0200

    Updated Spanish translation

 po/es.po | 96 +++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 52 insertions(+), 44 deletions(-)

commit a70e50f268cd70c3f504d0ec6cbc905a4af34931
Author: Stef Walter <stefw@gnome.org>
Date:   Thu Jun 14 14:22:18 2012 +0200

    user-accounts: Combine realmd permissions into panel unlock
    
    Create a new policy file for the admin actions of the user
    accounts panel, combining the relevant actions of
    accountsservice and realmd.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678098

 panels/user-accounts/Makefile.am                    | 11 +++++++++++
 .../org.gnome.controlcenter.user-accounts.policy.in | 21 +++++++++++++++++++++
 panels/user-accounts/um-user-panel.c                |  2 +-
 3 files changed, 33 insertions(+), 1 deletion(-)

commit ea048cce8a0d49e24ff97942acaba47dc89396bf
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Jun 14 11:12:30 2012 -0400

    user-accounts: avoid horizontal resizing when switching local/enterprise
    
    Pack labels and controls in horizontal size groups, so we don't resize
    the dialog horizontally when switching between the local and enterprise
    pages.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=678104

 panels/user-accounts/data/account-dialog.ui | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit 6e8ddbaeeadfb02c924eae58ab8965adb0eee2f1
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Mon Mar 5 13:47:46 2012 +0100

    info: Add software media to "other media" dialogue
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671358

 panels/info/cc-info-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit cb359701923296502bc38cc4102607485b3a42a5
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Mon Mar 5 16:16:56 2012 +0100

    info: Add title for the "other media" dialog
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671374

 panels/info/cc-info-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit 978aa81a2c2ab18f2f3cbc79ea4dd30e91e9c867
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Thu May 3 14:04:20 2012 +0200

    wacom: Cancel calibration if window loses focus
    
    Make the calibrator window stay above other windows and cancel
    calibration if/when the calibrator loses input focus.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675354

 panels/wacom/calibrator/gui_gtk.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 46186a5f0227602ae0af1103ef1927926b794328
Author: Jon McCann <jmccann@redhat.com>
Date:   Wed Mar 28 15:10:32 2012 -0400

    background: Escape wallpaper filename before display
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673015

 panels/background/cc-background-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 38d693b1c8c3a8245f339d14961432c6073f4191
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jun 14 13:48:46 2012 +0200

    Updated Spanish translation

 po/es.po | 160 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 81 insertions(+), 79 deletions(-)

commit 4a76728978cc36f131db09d71ab62121196eca25
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jun 12 17:17:46 2012 +0200

    user-accounts: Set high DBus timeouts for managing realms
    
    Enrolling the machine, or discovering realms can take a long
    time. We don't want DBus timeouts.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677953

 panels/user-accounts/um-realm-manager.c | 2 ++
 1 file changed, 2 insertions(+)

commit f6838df0c5a5702362b90ed781dbdf581b49b45d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 22:28:46 2012 -0400

    network: Make buttons stay put
    
    When switching between devices, the Options buttons were jumping
    up and down. This patch makes them stay put in the lower right corner.
    
    The patch also removes a bunch of glade placeholder gunk from the
    ui file.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677054
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/network.ui | 43 +++++++++++--------------------------------
 1 file changed, 11 insertions(+), 32 deletions(-)

commit 9efba451dc8f3de47669251b12996b084b157cb8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 21:53:12 2012 -0400

    network: Make ap list more similar to the shell menu
    
    Sort the strength and security indicators in the combo box
    popup to be in the same order as the shell menu.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677788
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit 398ca18a71e2f8e7c85c071bbc1d9c2e630b10f4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 22:01:04 2012 -0400

    network: Sort Wireless first
    
    This is the most common case, and is the page we want to end up
    on when we're coming from the shell menu.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677791
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/panel-common.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit df77ca0883e965c25c1f5623bb4c9f8d9ef0508d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 22:47:29 2012 -0400

    network: Add mnemonic for Airplane mode
    
    This was lost when the airplane mode switch moved up to the top.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671879
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 22fd0deddae9f997ef9660ed54ab4fb3cec060eb
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 22:46:59 2012 -0400

    network: Add mnemonics
    
    The Create dialog was missing mnemonics for several controls.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671879
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/network.ui | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit fd8ca81f8b39b90a65f071c1bbbf6fae310270a3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jun 13 22:56:04 2012 -0400

    network: Add a mnemonic for 'Forget Network'
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671879
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/network.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d66e2be977ae9f6cd373e1172c3e1f19a599ad8e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Jun 14 01:00:35 2012 +0200

    Updated Galician translations

 po/gl.po | 341 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 211 insertions(+), 130 deletions(-)

commit a43eef3ebb33a637851a8b1a7f6afd670642ee1c
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Wed Jun 13 19:05:56 2012 +0530

    Assamese translation reviewed

 po/as.po | 2750 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1355 insertions(+), 1395 deletions(-)

commit 2589fcfb19683c9d02da835deab9d4a1c45c2c4e
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jun 12 17:17:01 2012 +0200

    user-accounts: Properly fill the join prompt dialog
    
    When prompting users for administrative domain credentials,
    correctly fill the dialog the first time the prompt is shown.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677954

 panels/user-accounts/um-account-dialog.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit e6b49fa28dd2e9fd8699fc58fb5545194a1bc982
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Jun 13 10:08:59 2012 +0200

    Updated Spanish translation

 po/es.po | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

commit 4511182439fbb31ad47e6521ab071abbcb7be831
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Jun 12 23:35:38 2012 +0200

    Updated Arabic translation

 po/ar.po | 1905 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1155 insertions(+), 750 deletions(-)

commit c619f0bb7949bea8c9e18a8089e0d2a6ff0b94f0
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Jun 12 21:33:24 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit d382c42e5ce9b834456b8cda80bddea65b0639c1
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Tue Jun 12 13:57:43 2012 -0400

    shell: Remove reparenting hacks
    
    Now that CcNotebook is buildable, we don't need to do these ugly hacks.

 shell/cinnamon-control-center.c | 14 --------------
 1 file changed, 14 deletions(-)

commit f8da96e4259ac331c69587aec26f8c777ed4111b
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Tue Jun 12 13:57:19 2012 -0400

    shell: Make CcNotebook buildable

 shell/cc-notebook.c | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

commit 54d24f0574c1ada8eb3ec6d48cb2b9990cb12950
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Tue Jun 12 13:43:45 2012 -0400

    shell: Remove unnecessary tabs

 shell/shell.ui | 6 ------
 1 file changed, 6 deletions(-)

commit 5d228b707a4ef559b9e739baf574955bb812a043
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Tue Jun 12 18:27:02 2012 +0100

    shell: Fix wrong function being used to get width
    
    get width better than get height...

 shell/cc-notebook.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7d7fc2e12453f85f0a0f90a77b6f01d89fb4bf4c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 12 18:16:36 2012 +0100

    shell: Fix possible crashers when there are no pages
    
    Wouldn't happen in cinnamon-control-center. Spotted by Jasper St. Pierre

 shell/cc-notebook.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 94033718af8d7458e50a10cf26c01c09b546deee
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Jun 12 18:31:29 2012 +0200

    Updated Spanish translation

 po/es.po | 271 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 175 insertions(+), 96 deletions(-)

commit b9e356412fad645fc55f4790f2022ef192bd1a8a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 12 14:03:25 2012 +0100

    power: Fix reference to "Screen" settings
    
    This also fixes the use of a split string, as mentioned in
    bug #675929.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670567

 panels/power/cc-power-panel.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

commit 4bb0739670e1b44eb53ad1b1568c17e78cf6c3ce
Author: Stef Walter <stefw@gnome.org>
Date:   Thu Jun 7 00:58:27 2012 +0200

    user-accounts: Implement enterprise logins in add dialog
    
     * Use realmd for domain joining and lookup, runtime dependency
     * Validate join domain correctly
     * Add UmRealmManager for handling some stuff above the autogenerated
       realmd dbus code
     * Show a dialog if the user's credentials cannot be used to join
       the domain. Prompt for admin creds.
     * Register the user's login with the AccountsService
     * This depends on the CacheUser() method of AccountsService
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 configure.ac                                       |  17 +
 panels/user-accounts/Makefile.am                   |  19 +-
 panels/user-accounts/data/Makefile.am              |   1 +
 panels/user-accounts/data/account-dialog.ui        | 359 +++++++++-
 .../user-accounts/data/org.freedesktop.realmd.xml  | 145 ++++
 panels/user-accounts/um-account-dialog.c           | 591 +++++++++++++++-
 panels/user-accounts/um-realm-manager.c            | 765 +++++++++++++++++++++
 panels/user-accounts/um-realm-manager.h            |  91 +++
 8 files changed, 1968 insertions(+), 20 deletions(-)

commit 06233ebba84913a8f3ace64b0b52c659648a638c
Author: Stef Walter <stefw@gnome.org>
Date:   Thu May 31 17:06:42 2012 +0200

    user-accounts: Add um_user_manager_cache_user()
    
    This calls the AccountsService.CacheUser() method to register
    a user that's not in /etc/passwd
    
    Depends on: https://bugs.freedesktop.org/show_bug.cgi?id=50770
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-user-manager.c | 68 +++++++++++++++++++++++++++++++---
 panels/user-accounts/um-user-manager.h | 10 +++++
 2 files changed, 73 insertions(+), 5 deletions(-)

commit 228347e713103d052c79c09cc9f76ef83fe6e97d
Author: Stef Walter <stefw@gnome.org>
Date:   Thu Jun 7 00:20:29 2012 +0200

    user-accounts: Add way to change modes
    
    Add the buttons to switch between the local account and
    enterprise modes.
    
    The enterprise area just has a place holder widget for now.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/data/account-dialog.ui |  82 ++++++++++++++++
 panels/user-accounts/um-account-dialog.c    | 147 +++++++++++++++++++++++++++-
 2 files changed, 227 insertions(+), 2 deletions(-)

commit 3a7ee1bff932edc420640fd0e2cdd3297c820ce9
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:40:32 2012 +0200

    user-accounts: Cleaner validation and validate on open
    
    Clean up the validation so we can plug in the enterprise
    login stuff.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-account-dialog.c | 81 ++++++++++++++++----------------
 1 file changed, 41 insertions(+), 40 deletions(-)

commit 67066255bae8f49755b3cabc5b40c7018a53f3c7
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:32:31 2012 +0200

    user-accounts: Separate local account stuff in accounts dialog
    
    Separate the local account stuff a bit so when the enterprise
    stuff comes in it's still readable.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/data/account-dialog.ui |  14 ++--
 panels/user-accounts/um-account-dialog.c    | 102 ++++++++++++++++------------
 2 files changed, 66 insertions(+), 50 deletions(-)

commit fd4f3cc9ce845fc23dbf1200d8ec18102464149a
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:20:42 2012 +0200

    user-accounts: Port account dialog to GtkGrid
    
    Some spacing issues will be sorted in a later commit.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/data/account-dialog.ui | 121 +++++++++-------------------
 1 file changed, 37 insertions(+), 84 deletions(-)

commit 2e0623e7d560120d8084536dbe6d5c6f7d691990
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:10:53 2012 +0200

    user-accounts: Title of accounts dialog becomes "Add Account"
    
    This title makes sense for both remote and local users. In the
    case of remote users we're not creating accounts, we're just
    adding them to the system.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/data/account-dialog.ui | 2 +-
 panels/user-accounts/um-account-dialog.c    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit b09cd23d85a5c0467436580bd7877568d365af20
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:08:22 2012 +0200

    user-accounts: Add test tool frob-account-dialog
    
    A simple tool to show the add account dialog for quick
    iterations testing of the 'enterprise login' functionality.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/Makefile.am           | 20 ++++++++++
 panels/user-accounts/frob-account-dialog.c | 61 ++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)

commit 2a545187dab163a40a9a5b6add1af72af34b371e
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:06:05 2012 +0200

    user-accounts: Show a spinner during account dialog actions
    
    During actions which can run a long time show a spinner
    indicating that something is going on.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-account-dialog.c | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit 2e228b99926a199489a664178e034714864770af
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 22:51:19 2012 +0200

    user-accounts: Cleaner interaction with UmAccountDialog actions
    
    More clear scoping and interaction with running actions in
    UmAccountDialog. In later 'enterprise login' patches we have long
    running actions that's why this needs cleaning up.
    
    In particular:
    
     * Show errors as children of the dialog.
     * Errors don't make the account dialog go away, user can correct
       problems.
     * Use more standard GAsyncResult style callbacks:
       um_account_dialog_perform() um_account_dialog_finish()
     * Disable controls while the operation is happening.
     * Allow the user to cancel long actions in UmAccountDialog by
       pressing the cancel button.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-account-dialog.c | 157 ++++++++++++++++++++++++-------
 panels/user-accounts/um-account-dialog.h |   8 +-
 panels/user-accounts/um-user-manager.c   |   3 +-
 panels/user-accounts/um-user-manager.h   |   1 +
 panels/user-accounts/um-user-panel.c     |  14 ++-
 5 files changed, 142 insertions(+), 41 deletions(-)

commit 61eadc3fe372a27bd7d464d7ead55443fbff1d90
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jun 12 10:56:09 2012 +0200

    user-accounts: Fix memory leak in create_user_done()
    
    g_dbus_error_get_remote_error() returns an allocated string
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677930

 panels/user-accounts/um-user-manager.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 5fbce5f8daddb72cf08341e6f729c0d51413d702
Author: Stef Walter <stefw@gnome.org>
Date:   Tue Jun 12 10:35:45 2012 +0200

    user-accounts: UmAccountDialog shouldn't be valid when shown
    
    The user needs to enter some data before the dialog's 'Create'
    button can be clicked.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677928

 panels/user-accounts/um-account-dialog.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 5b022773b35537c6ce5b2e8d7ab3ba00f33387e8
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 23:28:05 2012 +0200

    user-accounts: Fix memory leak of GtkBuilder in accounts dialog
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-account-dialog.c | 2 ++
 1 file changed, 2 insertions(+)

commit 195e0137b2ac9b7d03dbe15396d60bd767d3d4ed
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 22:28:44 2012 +0200

    user-accounts: Don't refer to UmAccountDialog as um
    
    It's confusing to read; it reads as 'user manager'. Since this
    is a GObject, just use self as customary.
    
    Most of these lines change in later commits anyway, so this won't
    really pollute the 'git blame'
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-account-dialog.c | 86 ++++++++++++++++----------------
 panels/user-accounts/um-account-dialog.h |  2 +-
 2 files changed, 44 insertions(+), 44 deletions(-)

commit 6aff0f9a8600de1303a56484b774151ff6207fac
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 21:43:57 2012 +0200

    user-accounts: Make UmAccountDialog a GtkDialog
    
    The dialog will get much more complex due to 'enterprise login'
    work and we want a proper object here.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/data/account-dialog.ui |  69 +-----------------
 panels/user-accounts/um-account-dialog.c    | 107 ++++++++++++++++++----------
 panels/user-accounts/um-account-dialog.h    |   7 +-
 panels/user-accounts/um-user-panel.c        |   2 +-
 4 files changed, 76 insertions(+), 109 deletions(-)

commit a5dc2b80cc13c57a6a7eff181603c00e44d688ff
Author: Stef Walter <stefw@gnome.org>
Date:   Wed Jun 6 20:43:07 2012 +0200

    user-accounts: Remove unused MAXNAMELEN definition
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677548

 panels/user-accounts/um-account-dialog.c | 2 --
 1 file changed, 2 deletions(-)

commit 6004616bbc049bf4612a1342c3a0f10768c3ce44
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jun 11 22:08:55 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 263 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 123 insertions(+), 140 deletions(-)

commit 42c65b5c5fee5830b31fd30370c1b8209ba71eca
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 11 15:42:55 2012 +0100

    shell: Use GtkSearchEntry
    
    And require GTK+ 3.3.5 for it.

 configure.ac                 |  2 +-
 shell/cinnamon-control-center.c | 19 -------------------
 shell/shell.ui               |  2 +-
 3 files changed, 2 insertions(+), 21 deletions(-)

commit 786a36db1f5ccc54b1675951a16e1d2b88400023
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Fri May 11 14:16:39 2012 +0200

    wacom: Add keep aspect ratio option
    
    Adjust tablet area to match the aspect ratio of the output
    assigned to the tablet.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668907

 panels/wacom/cc-wacom-mapping-panel.c | 53 ++++++++++++++++++++++++++++++-----
 1 file changed, 46 insertions(+), 7 deletions(-)

commit cde88dca907311164c317e394edea54c2c13fee1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed May 30 09:34:37 2012 -0400

    network: fix packing order of children in the service dialog
    
    The heading should be packed at the top, before the combobox.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674498

 panels/network/network.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 94a46524b5078c2723e4394634d7bb39dfe6679c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 11 14:26:57 2012 +0100

    shell: Don't animate between overview and search pages

 shell/cinnamon-control-center.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 0fdecb67c3709df7e9fb626c707946c4874c049e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 11 14:26:45 2012 +0100

    shell: Update test-notebook for API change

 shell/test-notebook.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 56bd29ebf3f49b8e53d37817ba6ca99b82fb7e66
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 11 14:26:20 2012 +0100

    shell: Make it possible to not animate transitions
    
    In CcNotebook.

 shell/cc-notebook.c | 20 +++++++++++++-------
 shell/cc-notebook.h |  3 ++-
 2 files changed, 15 insertions(+), 8 deletions(-)

commit 761f5f0b8bc9c6794f5df51041bfa404abec6b4c
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jun 11 08:59:09 2012 -0400

    background: always pass a cancellable down to I/O operations
    
    So they will be properly cancelled when the panel is disposed.
    Also, check early if the operation was cancelled, since it's not safe to
    assume the data of the callback is valid anymore before that point.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672572

 panels/background/bg-pictures-source.c | 50 +++++++++++++++++++++-------------
 1 file changed, 31 insertions(+), 19 deletions(-)

commit 6c140396e6dafaa20fc33b0a79251495d86ebf5f
Author: Frédéric Péters <fpeters@0d.be>
Date:   Sun Jun 10 14:13:22 2012 +0200

    configure: bump gnome-settings-daemon required version
    
    This is required to get the input-sources schema used by the Region panel
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677807

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 042b237f821d3447d69eaae6f5c7e8f4cd2bdd7b
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Fri Jun 8 18:42:03 2012 +0300

    Updated Belarusian translation.

 po/be.po | 1690 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 955 insertions(+), 735 deletions(-)

commit 8631717b3d1cb85bf21b0e0d648b784e8e7c3f8f
Author: Dan Williams <dcbw@redhat.com>
Date:   Fri Apr 20 11:48:17 2012 -0500

    network: don't crash on hidden SSIDs
    
    APs that don't broadcast their SSID will return NULL from
    nm_access_point_get_ssid() (since that's easier to check in C
    using an if statement than returning a zero-length GByteArray).
    Thus the code shouldn't try to dereference the SSID byte array
    since it could be NULL.
    
    But in fact, the panel shouldn't be showing hidden APs anywhere
    in the UI, since the user needs to manually enter the SSID to
    connect to it anyway.  So just ignore hidden APs like nm-applet
    does.
    
    Signed-off-by: Dan Williams <dcbw@redhat.com>
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit c908531feb49f24e490d23c57955ed6473d7dbef
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jun 7 12:27:48 2012 +0200

    Updated Spanish translation

 po/es.po | 93 +++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 42 insertions(+), 51 deletions(-)

commit f7245a39b795ddd1e6b819cdceb6ea9bdc5c1c9d
Author: A S Alam <aalam@users.sf.net>
Date:   Thu Jun 7 07:29:30 2012 +0530

    Update Punjabi Translation

 po/pa.po | 563 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 307 insertions(+), 256 deletions(-)

commit 469c8b3be8de563ec09a99c8ce8f6c04f58dbd7f
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Jun 6 21:22:00 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1261d73821529d5b789956fb2d1b69a8003f49ce
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 6 17:44:57 2012 +0100

    mouse: Use '&' instead of 'and'
    
    Using "&" not only keeps the names shorter but would also keeps the
    user focused on the other words which compose the name.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676562

 panels/mouse/gnome-mouse-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d07be14ba05b6110c5b4f1470bfda58504b84d5b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 6 17:44:49 2012 +0100

    region: Use '&' instead of 'and'
    
    Using "&" not only keeps the names shorter but would also keeps the
    user focused on the other words which compose the name.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676562

 panels/region/gnome-region-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8aca1c2090c2e02a376458f3321af7845ef97895
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 6 17:44:38 2012 +0100

    screen: Use '&' instead of 'and'
    
    Using "&" not only keeps the names shorter but would also keeps the
    user focused on the other words which compose the name.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676562

 panels/screen/gnome-screen-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a4475970eeca23e7d6af965106dcf4b847f7d6bb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 6 17:43:47 2012 +0100

    datetime: Use '&' instead of 'and'
    
    Using "&" not only keeps the names shorter but would also keeps the
    user focused on the other words which compose the name.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676562

 panels/datetime/gnome-datetime-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d079041b14db5dc3fb10f6ac4e9c6700df2e956b
Author: Stef Walter <stefw@gnome.org>
Date:   Mon Jun 4 10:39:34 2012 +0200

    build: Only enable _FORTIFY_SOURCE if optimization enabled
    
    Otherwise we get a spew of warnings when building non-optimized
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677373

 configure.ac | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

commit f2a9d3a4787e69f1c27fa8e2b328ec82fb707302
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 6 16:11:26 2012 +0100

    shell: Fix crash when using keynav in overview
    
    get_item_views() was expecting all the children of the overview
    to be of type "CcShellCategoryView".
    
    It's not the case since 620e70113c30b0ae868577153dda60139f3c20b4
    added GtkSeparators as children.
    
    We now just skip them non-views in get_item_views().
    
    https://bugzilla.gnome.org/show_bug.cgi?id=677314

 shell/cinnamon-control-center.c | 2 ++
 1 file changed, 2 insertions(+)

commit f94490a5b51003d6f1f45a53f57f0200ea2f62b4
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Mon Jun 4 20:44:07 2012 +0200

    build: require GOA >= 3.5.1
    
    GOA got ported from GtkTable to GtkGrid.
    
    Fixes: https://bugzilla.gnome.org/669625

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f86d8eb26cc922fabd6765f3ad2481b9f0218298
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Wed Apr 4 17:28:54 2012 +0200

    online-accounts: Remove horizontal scrolling from accounts list
    
    We have enough space. Therefore, instead of having horizontal
    scrollbars, widen the text renderer and then ellipsize, if required.
    
    Implemented design:
    https://live.gnome.org/Design/SystemSettings/OnlineAccounts
    
    Fixes: https://bugzilla.gnome.org/671980

 panels/online-accounts/cc-online-accounts-panel.c | 5 +++++
 panels/online-accounts/online-accounts.ui         | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 93051830a7fc70756334bab03e46011619755150
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Mon Mar 12 14:35:24 2012 +0100

    online-accounts: New "Add Account" dialog
    
    Implemented design:
    https://live.gnome.org/Design/SystemSettings/OnlineAccounts
    
    Fixes: https://bugzilla.gnome.org/671980

 panels/online-accounts/Makefile.am                 |   2 +
 .../cc-online-accounts-add-account-dialog.c        | 367 +++++++++++++++++++++
 .../cc-online-accounts-add-account-dialog.h        |  62 ++++
 panels/online-accounts/cc-online-accounts-panel.c  |  74 +----
 po/POTFILES.in                                     |   1 +
 5 files changed, 440 insertions(+), 66 deletions(-)

commit 3ab49ea66d3a7fd2a800359f1f5b6a7ce0da2790
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jun 5 00:27:00 2012 -0400

    Post-release version bump

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 29fc916be101ee7b259ab9a54949a2f2ed0010f5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jun 5 00:02:38 2012 -0400

    3.5.2

 NEWS         | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 68 insertions(+), 1 deletion(-)

commit 8ba96c7daffcd218b6822296f487896b5ac2725a
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Tue May 1 03:11:15 2012 +0200

    online-accounts: Don't hardcode the text color
    
    With hard coded colors, when an account is selected in the tree view,
    the text shows up as black on blue, instead of white on blue.
    
    Fixes: https://bugzilla.gnome.org/671980

 panels/online-accounts/cc-online-accounts-model.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit ca36f361d97ea96bebc40575aacaf1144cc3dd6e
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Jun 3 17:56:40 2012 +0200

    Updated Spanish translation

 po/es.po | 282 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 163 insertions(+), 119 deletions(-)

commit c6be102d1d3792567555670ca00e62d0abc84d95
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jun 3 02:35:33 2012 +0200

    Updated Galician translations

 po/gl.po | 441 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 252 insertions(+), 189 deletions(-)

commit cf3c9f33d986d9d6baaf20d4ef403dc43b631e51
Author: Yuri Kozlov <yuray@komyakino.ru>
Date:   Sat Jun 2 18:10:48 2012 +0400

    Updated Russian translation

 po/ru.po | 2039 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1212 insertions(+), 827 deletions(-)

commit fde8a37bcf750494d35d0b210350579e594f4eb6
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jun 2 12:52:34 2012 +0300

    Updated Hebrew translation.

 po/he.po | 255 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 145 insertions(+), 110 deletions(-)

commit e307f303e70e9a42b098a909851ed0b9c9770dfa
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Jun 1 20:08:48 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit e880784fcb5ac584686d3d7b855bfbe2c0818309
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 1 19:01:36 2012 +0100

    region: Update the shortcuts labels on startup
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/gnome-region-panel-input.c | 61 ++++++++++++++++++++++++--------
 1 file changed, 46 insertions(+), 15 deletions(-)

commit 5e4376cfdeaf970543d761dfbb6ddfe232a19c43
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Thu Apr 19 05:43:38 2012 +0200

    keyboard: Add key bindings to switch input sources
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/keyboard/01-input-sources.xml.in | 12 ++++++++++++
 panels/keyboard/Makefile.am             |  8 +++++++-
 2 files changed, 19 insertions(+), 1 deletion(-)

commit 0a78c3504e34927c9864d489fafd3e8025e21d5c
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Tue May 22 19:14:19 2012 +0200

    region: Add XKB input sources
    
    We allow the user to choose from all XKB layouts installed and keep a
    user picked list in gsettings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 configure.ac                                      |   3 +-
 panels/region/gnome-region-panel-input-chooser.ui |   5 +
 panels/region/gnome-region-panel-input.c          | 250 ++++++++++++++++++++--
 3 files changed, 238 insertions(+), 20 deletions(-)

commit 375bf2363fcfdf0916acb0e3550bb5909de5eb12
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Thu May 17 00:13:54 2012 +0200

    region: Improved keynav on the input chooser
    
    This makes the dialog return when the user presses Enter on the filter
    entry and prevents the GtkTreeView search popup from being used since
    we already handle searching on that tree view.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/gnome-region-panel-input.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit e38f9acf39f6e7a5fa079efb081586ec215a5bcc
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Wed Apr 18 17:11:08 2012 +0200

    region: Improved selection handling on the input chooser
    
    This makes the input chooser list always have a selected row and be
    centered on it when the filter is applied.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/gnome-region-panel-input.c | 45 +++++++++++++++++++++++---------
 1 file changed, 32 insertions(+), 13 deletions(-)

commit 0fb0d6139b373dfd6ef934d86b92aa99edf8b23e
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Wed May 16 23:22:02 2012 +0200

    region: Removal of the Layouts tab
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 configure.ac                                       |   5 +-
 panels/region/Makefile.am                          |  10 +-
 panels/region/cc-region-panel.c                    |   2 -
 panels/region/gnome-region-panel-layout-chooser.ui | 180 -------
 panels/region/gnome-region-panel-options-dialog.ui |  79 ----
 panels/region/gnome-region-panel-system.c          | 103 +----
 panels/region/gnome-region-panel-xkb.c             | 190 --------
 panels/region/gnome-region-panel-xkb.h             |  96 ----
 panels/region/gnome-region-panel-xkblt.c           | 470 -------------------
 panels/region/gnome-region-panel-xkbltadd.c        | 495 --------------------
 panels/region/gnome-region-panel-xkbot.c           | 515 ---------------------
 panels/region/gnome-region-panel-xkbpv.c           | 120 -----
 panels/region/use_cases.txt                        |  42 --
 13 files changed, 7 insertions(+), 2300 deletions(-)

commit bfaeb6a41ddd5ad0c65744397e026346a0acf89f
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Wed May 16 23:05:00 2012 +0200

    region: Add an initial input sources tab
    
    This is just the scaffolding according to
    https://live.gnome.org/Design/SystemSettings/RegionAndLanguage
    No code behind it yet.
    
    Original code from Matthias Clasen.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/region/Makefile.am                         |   3 +
 panels/region/cc-region-panel.c                   |   2 +
 panels/region/gnome-region-panel-input-chooser.ui | 152 +++++
 panels/region/gnome-region-panel-input.c          | 536 +++++++++++++++++
 panels/region/gnome-region-panel-input.h          |  36 ++
 panels/region/gnome-region-panel.ui               | 676 ++++++++++++----------
 6 files changed, 1091 insertions(+), 314 deletions(-)

commit e59dc8dec45a3092cf6ef7d5f531617bccc3b0a1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Nov 15 21:10:31 2011 -0500

    keyboard: Make it possible to jump to shortcuts tab
    
    To make this work, we need to move the setting up of priv->builder
    to the instance init, so that it is available when construct properties
    are set; the other setup needs to remain in the constructor, since
    it relies on construct properties.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662489

 panels/keyboard/cc-keyboard-panel.c | 112 +++++++++++++++++++++++++-----------
 1 file changed, 80 insertions(+), 32 deletions(-)

commit 6bc14ced7f1aca3c46b675787db0ffbad7facd2a
Author: Marek Černocký <marek@manet.cz>
Date:   Fri Jun 1 17:47:46 2012 +0200

    Updated Czech translation

 po/cs.po | 1729 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 994 insertions(+), 735 deletions(-)

commit ec27900578642435ccffc2f59b7f1efe9263c1ee
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed May 30 14:23:45 2012 +0100

    network: Allow configuring wired network devices when not connected
    
    This prevents the chicken-and-egg problem as described in #653296 by launching
    nm-connection-editor for the inactive connection for the device.
    
    This only works when there is one possible connection for the device, which is
    helpfully typical for wired ethernet devices.
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=653296

 panels/network/cc-network-panel.c | 34 +++++++++++++++++++++++++++++++---
 1 file changed, 31 insertions(+), 3 deletions(-)

commit 04fdb2b456c4752a5b28883bb90873417c21989d
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed May 30 12:46:55 2012 +0100

    network: Don't resize the panel when switching network types
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=671482

 panels/network/network.ui | 1 -
 1 file changed, 1 deletion(-)

commit 0c4bbebf4e1e67760e69ea039e8bfdab420a079a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed May 30 14:01:25 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1070 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 641 insertions(+), 429 deletions(-)

commit 160697df6ca870efc153c77d32f42ffb05359c1d
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed May 30 12:39:48 2012 +0100

    network: Do not print a critical warning when NetworkManager is restarted
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=676369

 panels/network/cc-network-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 033a7acb122b89551c141f200a6d4c489cd7b1ad
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue May 29 09:07:29 2012 +0200

    Updated Slovenian translation

 po/sl.po | 1341 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 827 insertions(+), 514 deletions(-)

commit 44c88a37a1fcd1a81107ad7c1e216c0e04e81cdb
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Mon May 28 08:44:06 2012 +0600

    Updated Kazakh translation

 po/kk.po | 442 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 286 insertions(+), 156 deletions(-)

commit fbc4d703bdfca934cedbe22c9439327f45db3a7d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat May 26 07:32:25 2012 +0300

    Updated Hebrew Translation.

 po/he.po | 76 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 38 insertions(+), 38 deletions(-)

commit f4db8bb8b27d9560c73dac4a12cdc19eae7db2cb
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri May 25 19:00:24 2012 +0300

    Updated Hebrew translation.

 po/he.po | 1149 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 696 insertions(+), 453 deletions(-)

commit c11a6398bc3935ab04d00288a24b5c75cd674542
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri May 25 16:19:41 2012 +0200

    Updated Spanish translation

 po/es.po | 181 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 103 insertions(+), 78 deletions(-)

commit 487c11c0d952ee9c70a43477d02be63b0af067dc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 25 14:04:53 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c | 15 ++++++++++-----
 panels/wacom/gsd-wacom-device.c | 30 ++++++++++++++++++++++++------
 2 files changed, 34 insertions(+), 11 deletions(-)

commit 5c78387b592bd5f3eae1f8fb667bbd3db03ac6e4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 25 12:48:34 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 3 +++
 1 file changed, 3 insertions(+)

commit 5a2b4112553f2b910c559a7624c16adfaa9d6d3d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 25 12:14:27 2012 +0100

    wacom: Fix crasher using link to display panel
    
    ->panel was never set within the page object.

 panels/wacom/cc-wacom-page.c  | 2 ++
 panels/wacom/cc-wacom-panel.c | 2 ++
 2 files changed, 4 insertions(+)

commit aa161bacc9c11b9dfee2551ef03f294dd2d78aad
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 25 11:19:37 2012 +0100

    wacom: Destroy button mapping dialogue on unplug
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676790

 panels/wacom/cc-wacom-page.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 0b782b5633249a1f8c15a24399a833ac2e41c6d5
Author: Antoine Jacoutot <ajacoutot@gnome.org>
Date:   Thu May 24 09:50:52 2012 +0200

    disable wacom on s390/s390x and non Linux platforms
    
    Follow gnome-settings-daemon behavior and disable the wacom panel on
    s390/s390x (because this architecture does not provide development files
    from the wacom xorg driver) and on non Linux platforms (where udev is
    missing).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676714

 configure.ac       | 28 ++++++++++++++++++++++++----
 panels/Makefile.am |  7 +++++--
 2 files changed, 29 insertions(+), 6 deletions(-)

commit 8f289ff79921a5bbfab72944368d0b4790333687
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 24 15:25:59 2012 +0100

    user-accounts: Require libpwquality

 configure.ac | 1 +
 1 file changed, 1 insertion(+)

commit bd3405d9e19ffc9c52bd789b645d3859a726aea4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 13 17:38:34 2012 +0100

    universal-access: Add context for haircross length
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671989

 panels/universal-access/zoom-options.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit c11e4a9c5398cd729786a216387edc4b1a3309eb
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed May 23 19:33:13 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 93bc61e0b46d5209f579ae85d00e4f8930c42356
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 23 18:06:22 2012 +0100

    shell: Fix --verbose not working anymore

 shell/cc-shell-log.c | 2 ++
 1 file changed, 2 insertions(+)

commit a2d338b2d8ffbc39da26de192bdc1bbc01d86b84
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 23 18:06:06 2012 +0100

    shell: Add debug to CcNotebook scrolling

 shell/cc-notebook.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 2c4d1b7b59c085988cfb9d314fdbdf09bd88cf2a
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed May 23 18:09:44 2012 +0200

    Updated Spanish translation

 po/es.po | 69 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 36 insertions(+), 33 deletions(-)

commit 95d5e61100aa7667f7789a28eee1b04e6614f470
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 23 17:07:29 2012 +0100

    shell: Fix first selection not working
    
    We weren't saving the last_width early enough.

 shell/cc-notebook.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f62d8016562c96dc701a6e6ad8cb2ce1aaba7b78
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat May 19 17:45:04 2012 -0400

    users: Pass more information to password checker
    
    Passing the username and the old password allows the password
    quality check find more bad passwords. Also, add a way to provide
    more information about why a password is not good enough.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676396

 panels/user-accounts/pw-utils.c           | 11 +++++++++--
 panels/user-accounts/pw-utils.h           |  5 ++++-
 panels/user-accounts/um-password-dialog.c | 10 +++++++++-
 3 files changed, 22 insertions(+), 4 deletions(-)

commit 810f29b6cee271cf784aef6478a1952a5ee60b8e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed May 23 10:43:17 2012 -0400

    users: Use libpwquality for password handling
    
    Using a library for password generation and quality checking
    has the obvious benefit that we can have centralized policy
    for password quality, and our homegrown code for this was not
    a beauty in the first place.
    
    This commit drops the use of /usr/bin/agp for generating
    random passwords.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676396

 panels/user-accounts/Makefile.am |   2 +
 panels/user-accounts/pw-utils.c  | 132 +++++++++++++--------------------------
 2 files changed, 44 insertions(+), 90 deletions(-)

commit 8947cf84688d59d710716616866c68e699ab9972
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed May 23 08:40:56 2012 -0400

    users: Separate out password generation and strength calculation
    
    This is in preparation of using a library for this purpose, and
    is just generally cleaner.

 panels/user-accounts/Makefile.am          |   2 +
 panels/user-accounts/pw-utils.c           | 158 ++++++++++++++++++++++++++++++
 panels/user-accounts/pw-utils.h           |  27 +++++
 panels/user-accounts/um-password-dialog.c | 124 ++---------------------
 4 files changed, 195 insertions(+), 116 deletions(-)

commit 142070e8ea94cc693ca43ea3ea0d08abb1bc8295
Author: Debarshi Ray <debarshir@src.gnome.org>
Date:   Fri Apr 20 16:21:20 2012 +0200

    user-accounts: Use <small> instead of <i> to indicate user role
    
    Fixes: https://bugzilla.gnome.org/674423

 panels/user-accounts/um-user-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 86bd905920104af14fdd1e047bbe1ad1ccdad37a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat May 19 17:09:39 2012 -0400

    users: Make generated password visible
    
    A generated password is useless if you can't read it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=633601

 panels/user-accounts/um-password-dialog.c | 2 ++
 1 file changed, 2 insertions(+)

commit a7beb087db07f2d7d13e52794be7f15f90e3e156
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue May 8 21:50:10 2012 -0400

    user-accounts: Simplify generated password handling
    
    Move the 'generate password' icon into the entry to make
    the focus chain more straightforward. Also switch from
    generating a choice of 6 passwords in a menu, just put
    put the next choice directly into the entry.
    To keep the password generation keyboard accessible,
    add a 'Generate password' context menu item.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=633601
    https://bugzilla.gnome.org/show_bug.cgi?id=658522

 panels/user-accounts/data/password-dialog.ui |  21 +---
 panels/user-accounts/um-password-dialog.c    | 164 +++++++++------------------
 2 files changed, 56 insertions(+), 129 deletions(-)

commit 359f029419d0c7962ae2afc04c7fd1d569897c5f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 22 18:19:39 2012 +0100

    shell: Fix keyboard focus in animated notebook
    
    But just for panels, the main overview is still sub-par.

 shell/cc-notebook.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit b82141038e3a55d01cda805badd562130a9bd887
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 22 17:48:11 2012 +0100

    shell: CcNotebook can focus indeed

 shell/cc-notebook.c | 2 ++
 1 file changed, 2 insertions(+)

commit e18742c90ea1738907b7e514c0b5eead9514907f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon May 21 23:01:50 2012 -0400

    Implement a new search results design
    
    Search results aren't laid out evenly and they are packed together too tightly.
    Also, panel descriptions are truncated. There is plenty of space available, we
    might as well use it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=654977

 shell/Makefile.am                |   2 -
 shell/cc-shell-search-renderer.c | 366 ---------------------------------------
 shell/cc-shell-search-renderer.h |  74 --------
 shell/cinnamon-control-center.c     |  96 ++++++----
 4 files changed, 60 insertions(+), 478 deletions(-)

commit d3841bb2c89b5ddf99bad61afbf2731864204496
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon May 21 15:17:53 2012 -0400

    build: require Clutter >= 1.11.3
    
    We require clutter master for ClutterScrollActor now.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676517

 configure.ac | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit fc7bc983b08d6ed224ba0e19d21d741ff88065a5
Author: A S Alam <aalam@users.sf.net>
Date:   Mon May 21 07:04:53 2012 +0530

    Update Punjabi Translation

 po/pa.po | 1495 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 889 insertions(+), 606 deletions(-)

commit 0b93e7c80f47b1ef2e6358917e073aa116e00a3e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 21 19:16:55 2012 +0100

    shell: Make all-settings button always square
    
    By wrapping it in an aspect frame.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670551

 shell/shell.ui | 31 +++++++++++++++++++++----------
 1 file changed, 21 insertions(+), 10 deletions(-)

commit 9e6ed56939b30591ecd93ea1720fb134fc90bbec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 21 18:51:18 2012 +0100

    shell: Fix possible warning on startup
    
    When started with a specific panel listed.

 shell/cc-shell.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 85dbb1d8c55d505f4759a6239fa1348e5975b987
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 21 16:08:52 2012 +0100

    shell: Update scrolled window height on smallness change
    
    When the small mode changes, make sure to update the scrolled
    window's natural height.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869#c47

 shell/cinnamon-control-center.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 8efba88f4c2a01e2fb13be01bde839f638c35de3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 21 16:01:28 2012 +0100

    shell: Use enum for small screen
    
    Instead of 2 variables to track the unset status.

 shell/cinnamon-control-center.c | 37 +++++++++++++++++++++++--------------
 1 file changed, 23 insertions(+), 14 deletions(-)

commit a112361267f6b13216937fce56c23303054b990e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 21 14:23:00 2012 +0100

    shell: Don't use workarea height
    
    Instead of monitor height to check for the available height, as
    the workarea height won't have been updated fast enough after
    a monitors-changed signal.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869#c47

 shell/cinnamon-control-center.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit a6f8a9a6134bd1d6c603d8516cb585baed186b0f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon May 21 13:57:27 2012 +0200

    Updated Spanish translation

 po/es.po | 385 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 194 insertions(+), 191 deletions(-)

commit 57f0bc4f0b03aa4d4f20a6919c76a04da2027256
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat May 19 15:46:16 2012 +0200

    Updated Galician translations

 po/gl.po | 684 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 347 insertions(+), 337 deletions(-)

commit 7e77b7b7da946ed90e68ecc21408c5b2db19c0da
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 18:46:41 2012 +0200

    shell: Fix ctrl-w keybinding

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c626ba5cdfa037fc68c6db517084fe8a3a0de6c8
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Sun May 6 02:57:51 2012 +0200

    shell: Add application menu
    
    Add a simple application menu containing just "Help" and "Quit".
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 shell/control-center.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 50 insertions(+), 1 deletion(-)

commit ad4da161269a991153408227ae9c665956fec9e6
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 16:40:31 2012 +0200

    shell: Make the main window a GtkApplicationWindow
    
    This is a prerequisite of using the new GMenu API. Also move the
    check for small screen sizes introduced in commit 22ed5a9fd5, as
    GtkApplicationWindows cannot be realized unless their application
    property has been set.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 shell/cinnamon-control-center.c | 20 ++++++++++++++++----
 shell/shell.ui               |  2 +-
 2 files changed, 17 insertions(+), 5 deletions(-)

commit a901cc1c18886c25a829111fd91f7b3c196e36e1
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:08:52 2012 +0200

    user-accounts: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/user-accounts/um-user-panel.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit fa4a95752980a9be494ad3dd042b37fd8068d590
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:08:15 2012 +0200

    universal-access: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/universal-access/cc-ua-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 45b793848fb9fcfa9b659b355a8cb0567a27e75e
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:07:48 2012 +0200

    sound: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/sound/cc-sound-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit dc381014c06322c724385feb108584a7b0a2d9ea
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:07:24 2012 +0200

    screen: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/screen/cc-screen-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 79b11894dd38bc14b0ed478ff0da326d87e0aad0
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:06:51 2012 +0200

    region: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/region/cc-region-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 0c353fb4a89085c05263f12f1d41668bfd5811e7
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:06:07 2012 +0200

    printers: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/printers/cc-printers-panel.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit e38491ed0dc917c98f398b43a16cc017422263b2
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:05:46 2012 +0200

    power: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/power/cc-power-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 4b72311259b474f481aac1af526f7c99caac0405
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:05:25 2012 +0200

    online-accounts: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/online-accounts/cc-online-accounts-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 1bbe93cd0c0e81ad8b2044479c288de9f5f4f71c
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:04:58 2012 +0200

    network: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/network/cc-network-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 164d8b54a076ac4bca4928b2100e9da411a5c0a1
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:04:32 2012 +0200

    mouse: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/mouse/cc-mouse-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 7adcd012616f7b1f2a71e9bbc452cb06e1c36cca
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:04:03 2012 +0200

    keyboard: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/keyboard/cc-keyboard-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 4e374a27f06ac19e618197d13ac3551566176774
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:03:34 2012 +0200

    display: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/display/cc-display-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit afe99e36fda6980c62015ac0981663abdc133d3b
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:03:05 2012 +0200

    datetime: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/datetime/cc-datetime-panel.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 186d615dee5b82eaf14d242f3872e01ba770024a
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 17:00:13 2012 +0200

    color: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/color/cc-color-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit bc18595051b7561e7ccce77837dae70d0282b5eb
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 16:59:27 2012 +0200

    bluetooth: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/bluetooth/cc-bluetooth-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit f8637475ba867a01369475c6b662de54de93b706
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Tue May 8 19:40:13 2012 +0200

    background: Add get_help_uri() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 panels/background/cc-background-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 6827068ade00ec04e1895c772513667b6d6a1bdb
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Tue May 8 18:47:13 2012 +0200

    cc-panel: Add get_help_uri() vfunc
    
    We want to allow panels to point to a specific help page, so add
    a vfunc for that.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 shell/cc-panel.c | 11 +++++++++++
 shell/cc-panel.h |  3 +++
 2 files changed, 14 insertions(+)

commit 78717031db90c42221a7dce1f20762b9d8b8103c
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Tue May 8 18:45:25 2012 +0200

    shell: Make sure the "active-panel" property is updated
    
    The (currently unused) cc_shell_get_active_panel() method is useless
    unless "active-panel" is actually updated correctly.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 shell/cc-shell.c             | 1 -
 shell/cinnamon-control-center.c | 3 +++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit ce8e1208bc87f91785c6ab91deb7c5e50a2d2dc6
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri May 18 16:53:41 2012 +0200

    shell: Pass the object to show_overview_page(), not its private
    
    We will need it to update the "active-panel" property properly.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675471

 shell/cinnamon-control-center.c | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

commit 4a4f3c20a4ad5e2ea57ae9f4d241d27f0a13358a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri May 18 18:44:58 2012 +0200

    universal-access: remove tabulation from a translatable string

 panels/universal-access/uap.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 948867b6d39d644733acc7b82ca71ecf22fc4ca5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 18 17:33:08 2012 +0100

    shell: Fix resetting page selection
    
    When the page selection happens when another page selection hasn't
    started yet, we need to cancel the previous animation, or only one
    of them might be effectively acted upon.
    
    This fixes the page from being selected if the search term is changed
    quickly (you'd end up at the overview page instead of staying on the
    search results page).
    
    Requires the clutter patch from:
    https://bugzilla.gnome.org/show_bug.cgi?id=676334
    
    https://bugzilla.gnome.org/show_bug.cgi?id=676328

 shell/cc-notebook.c | 3 +++
 1 file changed, 3 insertions(+)

commit 5f124d600810b1a56484bb1957f441eb5f715b16
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri May 18 18:39:31 2012 +0200

    all: fix up tooltips
    
    Idea from commit d5088b2eb1bd5f1501e36ec878e60aa3f6e7241b.

 panels/bluetooth/bluetooth.ui          | 6 +++---
 panels/color/color.ui                  | 9 +++------
 panels/region/gnome-region-panel.ui    | 5 +----
 panels/screen/screen.ui                | 2 +-
 panels/universal-access/uap.ui         | 4 ++--
 panels/wacom/gnome-wacom-properties.ui | 4 ++--
 6 files changed, 12 insertions(+), 18 deletions(-)

commit d5088b2eb1bd5f1501e36ec878e60aa3f6e7241b
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 18 16:02:13 2012 +0100

    color: Fix up a tooltip for the 'Set for all users' button

 panels/color/color.ui | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 93184f16b924478be6c5f6e6719e46463cdf458e
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 18 15:59:01 2012 +0100

    color: Make the 'Set for all users' insensitive if the profile is already set
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=676271

 panels/color/cc-color-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 19f27721073955626171ebb42adf02ce73517016
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 18 11:48:29 2012 +0100

    shell: Rename search renderer
    
    And cc- prefix it, like the rest of our widgets.

 shell/Makefile.am                |   4 +-
 shell/cc-shell-search-renderer.c | 366 +++++++++++++++++++++++++++++++++++++++
 shell/cc-shell-search-renderer.h |  74 ++++++++
 shell/cinnamon-control-center.c     |   4 +-
 shell/shell-search-renderer.c    | 365 --------------------------------------
 shell/shell-search-renderer.h    |  74 --------
 6 files changed, 444 insertions(+), 443 deletions(-)

commit 17c2e2c2576cc7fd116c930210a1baeb539df1b6
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Apr 12 15:36:08 2012 +0200

    wacom: Make "Calibrate" button insensitive if there is no screen match
    
    If no match is found for the screen tablet, calibration will fail anyway.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673892

 panels/wacom/cc-wacom-page.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 928e921d8d95887fe7ff29f9ad36e0413164020c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 18 10:34:20 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

commit c6c239c94f9667451be0e251f702286e22235498
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri May 18 10:58:01 2012 +0200

    Updated Spanish translation

 po/es.po | 362 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 177 insertions(+), 185 deletions(-)

commit c0aa0b2d433b066b2bbcfcb0f4abb3a60ef988b8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 17 18:30:32 2012 +0100

    wacom: Bump libwacom requirements
    
    For API change in 0.5.
    
    See https://bugzilla.gnome.org/show_bug.cgi?id=675872

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fb6051401c95d7bc9f8e67679f992d91b0c7eeb9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 17 18:30:14 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c | 9 ++++++++-
 panels/wacom/gsd-wacom-device.c | 2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 229390f1f5898c46119c51b8d5a4d31a0d733a12
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 8 20:08:33 2012 -0400

    universal-access: Redesign for consistency and smallness
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665588

 panels/universal-access/cc-ua-panel.c |  328 +--
 panels/universal-access/uap.ui        | 3977 +++++++++++++++------------------
 2 files changed, 1945 insertions(+), 2360 deletions(-)

commit 3d79e1174e7287f29ad630a4aea55cfa0a6d2b2a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 17 18:12:13 2012 +0100

    background: Only show the image types we support
    
    And add image/bmp to those types.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669960

 panels/background/bg-pictures-source.c  | 69 ++++++++++++++++++++-------------
 panels/background/bg-pictures-source.h  |  2 +
 panels/background/cc-background-panel.c |  6 ++-
 3 files changed, 50 insertions(+), 27 deletions(-)

commit 0ed1bef14fa8c7d43c989c7d1c093d8dd37f942e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu May 17 12:19:09 2012 +0200

    Updated Galician translations

 po/gl.po | 355 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 282 insertions(+), 73 deletions(-)

commit 835a09e1f84315ffc49552462f88282ebadd645a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 16 13:13:43 2012 +0100

    shell: Destroy the page instead of removing it
    
    Because we don't actually need the child simply removed.
    Works-around run-time warnings with clutter-gtk.

 shell/cc-notebook.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 75323fffb280eda7bd625436dbcf143f9c22de1d
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed May 16 12:32:06 2012 +0200

    Updated Spanish translation

 po/es.po | 380 +++++++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 299 insertions(+), 81 deletions(-)

commit 1f24b178ac7fdcbe442f5634c0bb04fcb9b979b6
Author: Thomas Bechtold <thomasbechtold@jpberlin.de>
Date:   Mon May 14 08:07:06 2012 +0200

    network: show device state reasons (Closes:bgo#676117)
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c |   1 +
 panels/network/panel-common.c     | 193 ++++++++++++++++++++++++++++++++++++++
 panels/network/panel-common.h     |  13 +--
 3 files changed, 201 insertions(+), 6 deletions(-)

commit dbfd9ecb5983e7101dbddf389a480f78e6febe21
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 11 12:21:37 2012 +0100

    shell: Fix another memleak in CcNotebook

 shell/cc-notebook.c | 3 +++
 1 file changed, 3 insertions(+)

commit 2ea396cee3b4ccb11290985fa4f18db5796206cd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 11 12:18:34 2012 +0100

    shell: Chain up CcNotebook's finalize function

 shell/cc-notebook.c | 2 ++
 1 file changed, 2 insertions(+)

commit b96c440da95450de78022cad8fdd525ca26e60b1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 11 11:57:01 2012 +0100

    shell: Remove left-over FIXME

 shell/cc-notebook.c | 2 --
 1 file changed, 2 deletions(-)

commit bec2efb36abf5b232a1b54a00f15fa91ee5dc7d4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 10 19:20:58 2012 +0100

    shell: Try to always use delayed removal

 shell/cc-notebook.c | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

commit 62d2bcf0b8e9187b77c7b79becb1b40f9793fd1e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 10 18:21:39 2012 +0100

    shell: Fix xrefs not working
    
    We were scrolling to parts of the stage where we wouldn't have
    a page anymore. Don't do that, and only remove pages when we're
    done with animations.

 shell/cc-notebook.c | 67 +++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 55 insertions(+), 12 deletions(-)

commit b389c604b6c9d82b3505e3935d7730d87856f7c7
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Thu May 10 15:16:23 2012 +0200

    Updated French translation

 po/fr.po | 544 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 287 insertions(+), 257 deletions(-)

commit 9225b11112b04f621163ce11602d8f141a8d4277
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 10 11:13:52 2012 +0100

    shell: Update animated notebook TODO

 shell/TODO | 3 +++
 1 file changed, 3 insertions(+)

commit c573a07b06989034751abe2df54315f37d260345
Author: Colin Walters <walters@verbum.org>
Date:   Wed May 9 13:14:32 2012 -0400

    git.mk: Update from upstream

 git.mk | 43 ++++++++++++++++++++++++++++++-------------
 1 file changed, 30 insertions(+), 13 deletions(-)

commit f8c0eceb80780a1e2d391a97e5f9ceca0c89b3ac
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 19:24:45 2012 +0100

    shell: Use CcNotebook instead of GtkNotebook

 shell/cinnamon-control-center.c | 97 +++++++++++++++++++++-----------------------
 shell/shell.ui               |  7 +---
 2 files changed, 48 insertions(+), 56 deletions(-)

commit 74aa98b7c81b5a59577f2180352efdbce7235bcd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 19:24:14 2012 +0100

    shell: Add animated notebook
    
    Powered by gtk-clutter.

 configure.ac          |   2 +-
 shell/Makefile.am     |   7 +
 shell/TODO            |   4 +
 shell/cc-notebook.c   | 466 ++++++++++++++++++++++++++++++++++++++++++++++++++
 shell/cc-notebook.h   |  69 ++++++++
 shell/test-notebook.c |  92 ++++++++++
 6 files changed, 639 insertions(+), 1 deletion(-)

commit 8a01c7caf1a93ae7b973b2063fbdc5ce3dd57280
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 18:04:33 2012 +0100

    shell: Remove another use of page numbers

 shell/cinnamon-control-center.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 43b53020cac5ca0c9ef2e1dfcf30ba9c6b49cdea
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 18:03:50 2012 +0100

    shell: Move helper functions

 shell/cinnamon-control-center.c | 60 ++++++++++++++++++++++----------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

commit e01e33e76e777142db01fa220c789779fd569256
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 17:07:36 2012 +0100

    shell: Remove prior panel at the last minute
    
    Once we've already switch to a new panel.

 shell/cinnamon-control-center.c | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

commit cdbd37fa47a7244e9aaba1cd03936677a7541bc7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 17:05:15 2012 +0100

    shell: Add return value to activate_panel()

 shell/cinnamon-control-center.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit d25563f5c475fcc86740539013640178faea8e3e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 17:00:33 2012 +0100

    shell: Flatten activate_panel()
    
    And exit as soon as we fail.

 shell/cinnamon-control-center.c | 88 ++++++++++++++++++++------------------------
 1 file changed, 40 insertions(+), 48 deletions(-)

commit ec7f8c9b51d6fd490af1cafb101890e745ad0373
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 16:29:07 2012 +0100

    shell: Use widgets rather than page numbers
    
    To differentiate children of a GtkNotebook.

 shell/cinnamon-control-center.c | 69 ++++++++++++++++++++++++++++++++------------
 1 file changed, 50 insertions(+), 19 deletions(-)

commit cd867b1158f5fca433e7920aa84eb4e6f7080d7b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 8 16:14:57 2012 -0400

    Adapt to gnome-desktop API change for display labels
    
    GdkColor -> GdkRGBA

 configure.ac                      |  2 +-
 panels/display/cc-display-panel.c | 21 ++++++++-------------
 2 files changed, 9 insertions(+), 14 deletions(-)

commit 22ed5a9fd565872eb3acd404b798739ac45455a8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 19:15:19 2012 +0100

    shell: Check for small screen before showing window
    
    Map the window before displaying it, so we can maximise it straight
    away and avoid visible resizing.

 shell/cinnamon-control-center.c | 4 ++++
 1 file changed, 4 insertions(+)

commit ecda0ad5c0d94236b6bf188fa31512309522e101
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 19:12:46 2012 +0100

    shell: Lower the small screen fixed height
    
    As this is the minimum size of the content view, not the whole window.

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3bd227a9055746238d24ce777ded471a569f0376
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 18:54:28 2012 +0100

    shell: Maximise window on monitor size change
    
    When the monitor changes size, and we have a small screen, reset
    small_screen_set so that we maximise the window.

 shell/cinnamon-control-center.c | 3 +++
 1 file changed, 3 insertions(+)

commit c3fa222461df600a863fa5411566a98a7db6cb3b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 18:53:04 2012 +0100

    Revert "shell: Reset "small_screen_set" when we use a big screen"
    
    This reverts commit 3e5f488160ff2ba72d6871a8b9848fb1206da3c8.

 shell/cinnamon-control-center.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 3bc75764c654d62a421fcb7c3f5734a01f077901
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 13:30:18 2012 -0400

    Use menubar style class for toolbar
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/shell.ui | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f264ebea0bea905113de1d1e35a3db8f11a49357
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 18:48:06 2012 +0100

    shell: Set the minimum content height
    
    Instead of using gtk_widget_size_request() on the parent scrolled
    window, to make sure that border are taken into account when sizing
    the icon views.

 shell/cinnamon-control-center.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 3e5f488160ff2ba72d6871a8b9848fb1206da3c8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 18:46:22 2012 +0100

    shell: Reset "small_screen_set" when we use a big screen
    
    Otherwise we wouldn't maximise the screen again.

 shell/cinnamon-control-center.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 9c2e8c28f53025e3aa5d9596b36f1581897d0301
Author: Jon McCann <jmccann@redhat.com>
Date:   Thu Apr 12 16:02:36 2012 -0400

    Hide window titlebar when maximized
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 1 +
 1 file changed, 1 insertion(+)

commit 796d4ebafad432e9d9723781e831f3cf3f25c838
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 18:04:38 2012 -0400

    Fit three columns of search results
    
    And center labels vertically that have no search matching text.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c  |  8 ++++++--
 shell/shell-search-renderer.c | 15 +++++++++++++--
 2 files changed, 19 insertions(+), 4 deletions(-)

commit 620e70113c30b0ae868577153dda60139f3c20b4
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 16:55:26 2012 -0400

    Add horizontal separators between sections
    
    Based on patch from Ubuntu
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 599f19a595331db6a79d964f71168a3249cb9493
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 16:42:09 2012 -0400

    Increase icon size to 48px
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cc-shell-model.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ad0e02f100966c244aef9f4b1710c561bf9cb899
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue May 8 16:56:20 2012 +0100

    shell: Be smarter about smaller screen sizes
    
    Make the minimum window size smaller, and the window resizable when
    using small screens.
    
    Based on patch from Ubuntu
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 106 +++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 102 insertions(+), 4 deletions(-)

commit d955d484da02871e146f7bd1d4d9ef32f0000c14
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue May 8 16:43:57 2012 +0100

    shell: Increase default window size
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b393ca6d022a1c4b71d1d6ed316cbcc4f4998a35
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 8 16:37:51 2012 +0100

    shell: Move all sizing hacks in one location
    
    And make sure that the overview has no scrollbars to start with.
    Add a FIXME to handle smaller sized screens later on.

 shell/cinnamon-control-center.c | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

commit 241e6186e0315ebbe02e2cf4bf8d89895314b21a
Author: Reinout van Schouwen <reinouts@gnome.org>
Date:   Thu May 3 01:15:52 2012 +0200

    Updated Dutch translation by Hannie Dumoleyn. Reviewed by Reinout van
    Schouwen

 po/nl.po | 6165 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3426 insertions(+), 2739 deletions(-)

commit d009a3fc352287306035230fa58d3e56a65ab80a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 14:55:43 2012 -0400

    Revert "Increase icon size to 48px"
    
    This reverts commit c8c8720d726b78a66ff2f2c6a8061c377ccd76e3.

 shell/cc-shell-model.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9d55273c147c2a2782168bcc8e0925cc4e9e27aa
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 14:55:42 2012 -0400

    Revert "Increase default window size"
    
    This reverts commit f36d42b9d109dc2636be7d4c8d104f608b3706fa.

 shell/cinnamon-control-center.c | 122 ++-----------------------------------------
 shell/shell.ui               |   2 +-
 2 files changed, 6 insertions(+), 118 deletions(-)

commit 523a85f70474d93b44e7a1ec7578547400dcc024
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 14:55:41 2012 -0400

    Revert "Add horizontal separators between sections"
    
    This reverts commit e924ea03fa6c3621bdcf17e629d6b1383156c3dd.

 shell/cinnamon-control-center.c | 10 ----------
 1 file changed, 10 deletions(-)

commit 29792b41e5e06a8267586daa75a790383a195cc9
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 14:55:40 2012 -0400

    Revert "Fit three columns of search results"
    
    This reverts commit 2d145a6fa4b21a5b558597ab9b6dde460a41a4f6.

 shell/shell-search-renderer.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit b796b4c3767e7dfb6f36a957b2a7c38fd7b8bd9a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 14:55:38 2012 -0400

    Revert "Hide window titlebar when maximized"
    
    This reverts commit 700ea6a1aa23c1738b0cb444a032a607df66ae82.

 shell/cinnamon-control-center.c | 1 -
 1 file changed, 1 deletion(-)

commit d8e10a566cd950cf96a0010381ce8cab351ee61b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 14:55:28 2012 -0400

    Revert "Use menubar style class for toolbar"
    
    This reverts commit b1431c00e04692d4be38fde769591c987516b2fc.

 shell/shell.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b1431c00e04692d4be38fde769591c987516b2fc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue May 1 13:30:18 2012 -0400

    Use menubar style class for toolbar

 shell/shell.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 700ea6a1aa23c1738b0cb444a032a607df66ae82
Author: Jon McCann <jmccann@redhat.com>
Date:   Thu Apr 12 16:02:36 2012 -0400

    Hide window titlebar when maximized
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 1 +
 1 file changed, 1 insertion(+)

commit 2d145a6fa4b21a5b558597ab9b6dde460a41a4f6
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 18:04:38 2012 -0400

    Fit three columns of search results
    
    And center labels vertically that have no search matching text.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/shell-search-renderer.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit e924ea03fa6c3621bdcf17e629d6b1383156c3dd
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 16:55:26 2012 -0400

    Add horizontal separators between sections
    
    Based on patch from Ubuntu
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit f36d42b9d109dc2636be7d4c8d104f608b3706fa
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 16:52:15 2012 -0400

    Increase default window size
    
    And be smarter about small screen sizes.
    
    Based on patch from Ubuntu
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cinnamon-control-center.c | 122 +++++++++++++++++++++++++++++++++++++++++--
 shell/shell.ui               |   2 +-
 2 files changed, 118 insertions(+), 6 deletions(-)

commit c8c8720d726b78a66ff2f2c6a8061c377ccd76e3
Author: Jon McCann <jmccann@redhat.com>
Date:   Tue Apr 10 16:42:09 2012 -0400

    Increase icon size to 48px
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673869

 shell/cc-shell-model.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8cc0b7207b811c6c7de879ff9592a38ec5473023
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 16:28:09 2012 +0100

    shell: Fix GtkBuilder file for complaining glade

 shell/shell.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f620c524259a63e25179273b3794e3d7718aa929
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Mon Apr 30 15:05:23 2012 +0200

    l10n: Updated Italian translation

 po/it.po | 2592 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1295 insertions(+), 1297 deletions(-)

commit f232788c6ccab0524f38a196f279dabbb3e35076
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 13:43:33 2012 +0100

    shell: Fix missing sedding

 shell/cc-strength-bar.c |  4 ++--
 shell/cc-strength-bar.h | 12 ++++++------
 2 files changed, 8 insertions(+), 8 deletions(-)

commit 656862e697523f40f712f9bcf887f39b4e72b0a7
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Mar 27 17:42:40 2012 -0400

    bluetooth: don't set a shadow type on the viewport
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672956

 panels/bluetooth/bluetooth.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 5edec8138b127d0e783918c6860aca35345e7d8e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Mar 27 17:42:25 2012 -0400

    shell: don't set a shadow type on the GtkViewport
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672956

 shell/shell.ui | 1 +
 1 file changed, 1 insertion(+)

commit 84084b28d4d34355fb141644c26333853d5b0be1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Apr 30 11:10:11 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 207 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 115 insertions(+), 92 deletions(-)

commit 0bb2e2142a801178c44c23ccebb975e3987221bd
Author: Jon McCann <jmccann@redhat.com>
Date:   Wed Mar 28 15:01:53 2012 -0400

    background: Sort Pictures folder by name
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672925

 panels/background/bg-pictures-source.c | 42 ++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

commit a3055b3202ca4446f15fa7941c25811a7b4e2f7c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 26 11:07:08 2012 +0100

    background: Ignore screenshots
    
    Don't list screenshots coming from gnome-screenshot in our
    Pictures source.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672925

 panels/background/bg-pictures-source.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit f102ca7363651cb2b815198018b3d389257e7610
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 25 20:01:14 2012 +0100

    mouse: Update from gnome-settings-daemon

 panels/mouse/gsd-input-helper.c | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit a760238a67d26b3e4ae8fab4662ac9f49fdd1bcf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 25 20:00:44 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c | 16 +++++++++-------
 panels/wacom/gsd-wacom-device.c | 16 ++++++++++++++--
 2 files changed, 23 insertions(+), 9 deletions(-)

commit bbdcabcaafc0b27ff8d06e77cf0e0307eb051a2d
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Apr 23 11:41:15 2012 +0200

    Updated Spanish translation

 po/es.po | 191 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 110 insertions(+), 81 deletions(-)

commit 87beb8b31aea8b399a8c94f4740476a8c13d37e9
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Apr 22 17:23:34 2012 +0300

    Updated Hebrew translation.

 po/he.po | 86 +++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 53 insertions(+), 33 deletions(-)

commit 9eeeeba8f8c99f6e95cc75888ccd4ff2f0100181
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Apr 22 15:52:13 2012 +0200

    Updated Galician translations

 po/gl.po | 87 ++++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 55 insertions(+), 32 deletions(-)

commit 42aa44c68eab4d9e91c4dc1e61132efab9077e91
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 26 17:01:33 2012 +0200

    power: Add context for the battery levels
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672738

 panels/power/cc-power-panel.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 0e49b5b88d3903f0caa90cc771aef211f68248c6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 26 17:00:35 2012 +0200

    mouse: Add context for Low/High
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672738

 panels/mouse/gnome-mouse-properties.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 816b3f4dd0ea7c15fef02857ce917c340bc8006d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Apr 22 11:09:52 2012 +0300

    Updated Hebrew translation.

 po/he.po | 2615 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1312 insertions(+), 1303 deletions(-)

commit 648ef0f5dab517d9b1da80a168d4285dcac3b0db
Author: YunQiang Su <yqsu@src.gnome.org>
Date:   Fri Apr 20 20:28:54 2012 +0800

    Fix zh_CN translation problem

 po/zh_CN.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 214146426e01a1a58421eecfa7a0a8f0c5f31c14
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Apr 19 19:46:59 2012 +0200

    Updated Galician translations

 po/gl.po | 611 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 310 insertions(+), 301 deletions(-)

commit 57078e0de914c17aef4fd5c3b689bf16cf08e918
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Mar 16 23:17:59 2012 +0100

    Little fix in Galician translations
    
    Signed-off-by: Fran Diéguez <fran.dieguez@mabishu.com>

 po/gl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3ae795ea6ec09c8a1d49533510904dec9425f617
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Sat Apr 14 23:10:37 2012 +0200

    online-accounts: goa_provider_show_account now expects GtkGrids, not GtkTable
    
    Fixes: https://bugzilla.gnome.org/669625

 panels/online-accounts/cc-online-accounts-panel.c | 30 ++++++++++++++++-------
 1 file changed, 21 insertions(+), 9 deletions(-)

commit d6092763436100b22dcba7dbd9d90b8f4680b405
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Mon Mar 12 20:28:11 2012 +0100

    online-accounts: Fix spacing and alignment when showing accounts
    
    Implemented design:
    http://ur1.ca/8m05c
    https://live.gnome.org/Design/SystemSettings/OnlineAccounts
    
    Fixes: https://bugzilla.gnome.org/671980

 panels/online-accounts/cc-online-accounts-panel.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 07866aa933408219016195ae4fda50b94b638dd8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 14:26:11 2012 +0100

    info: Ignore removable mounts
    
    That used to be in /media and are now in /run/media/$USERNAME/

 panels/info/cc-info-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit 3d063ebaf7c8b8c5123191425a03585a100a05cd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 14:25:55 2012 +0100

    info: Update from gnome-settings-daemon

 panels/info/gsd-disk-space-helper.c | 19 +++++++++++++++++++
 panels/info/gsd-disk-space-helper.h |  1 +
 2 files changed, 20 insertions(+)

commit 9c56a95358fd2fa2d7692a040ce6bca2db81007c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 12:00:04 2012 +0100

    info: Ignore NFS mounts when calculating disk size
    
    https://bugzilla.gnome.org/show_bug.cgi?id=674356

 panels/info/Makefile.am     | 4 +++-
 panels/info/cc-info-panel.c | 6 ++++--
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 18524ddb9db17a97b4a1c05b8ff2aef8fb7670b1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 11:59:41 2012 +0100

    info: Add code to update disk space helper

 panels/info/Makefile.am | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 27d917458d7b54580fd7417915ff23a9f5831dbf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 11:58:29 2012 +0100

    info: Update from gnome-settings-daemon

 panels/info/gsd-disk-space-helper.c | 105 ++++++++++++++++++++++++++++++++++++
 panels/info/gsd-disk-space-helper.h |  38 +++++++++++++
 2 files changed, 143 insertions(+)

commit 5a472dc515e784e645ae9bd4e82396d87c6817c3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 11:56:56 2012 +0100

    mouse: Use update-from-gsd.sh to update input helper

 panels/mouse/Makefile.am | 6 ++++++
 1 file changed, 6 insertions(+)

commit be45283bb43e3734de6cc6773bc589b51d120c0f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 11:56:21 2012 +0100

    mouse: Update from gnome-settings-daemon

 panels/mouse/gsd-input-helper.c | 343 ++++++++++++++++++++++++++++++++++++++--
 panels/mouse/gsd-input-helper.h |  48 +++++-
 2 files changed, 374 insertions(+), 17 deletions(-)

commit 69b5afd9fed2c8f6b24e9c9706307df836d7a009
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 19 11:50:58 2012 +0100

    wacom: Move update-from-gsd.sh to root

 panels/wacom/Makefile.am        |  4 ++--
 panels/wacom/update-from-gsd.sh | 26 --------------------------
 update-from-gsd.sh              | 26 ++++++++++++++++++++++++++
 3 files changed, 28 insertions(+), 28 deletions(-)

commit eeed45ff81e6ae9be0f4b0a51136da200afc3156
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Apr 18 20:29:42 2012 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 388 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 197 insertions(+), 191 deletions(-)

commit 6b49166b70846d501287653c2349bb7123884b32
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Mon Apr 16 22:31:06 2012 +0200

    Updated Slovenian translation

 po/sl.po | 509 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 259 insertions(+), 250 deletions(-)

commit 1798742050b3df00c7d68a10c66029f301172339
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Apr 16 16:31:55 2012 +0200

    Updated Spanish translation

 po/es.po | 577 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 293 insertions(+), 284 deletions(-)

commit c642ca41d011ac3ac9b3ddeb7bfa84f97ccf69cc
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Mon Apr 16 04:45:20 2012 -0500

    Updated Crimean Tatar (Crimean Turkish) translation

 po/crh.po | 10251 ++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 7294 insertions(+), 2957 deletions(-)

commit 8fe181c7ae6cdc25872d74284fcbaca40953d787
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Apr 16 01:19:29 2012 +0200

    Updated POTFILES.in

 po/POTFILES.in | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 8c123db9cab2042870a45575ed16ef9576c7aebe
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Apr 14 23:26:11 2012 +0200

    Updated Arabic translation

 po/ar.po | 174 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 87 insertions(+), 87 deletions(-)

commit 6000ef1d63a80172cf778701d77cdd948294fe1a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Apr 14 18:49:22 2012 +0200

    Updated Polish translation

 po/pl.po | 2665 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1332 insertions(+), 1333 deletions(-)

commit dc6dd8f9ecb7578233e0bcceea56c9b5d8f0e0f1
Author: Jiro Matsuzawa <jmatsuzawa@gnome.org>
Date:   Sat Apr 14 12:17:35 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 124 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 62 insertions(+), 62 deletions(-)

commit 82aa5d01306e8435aff4ccc2ab7832d9ca422915
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 30 11:34:47 2012 +0200

    printers: Fix small memory leak
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673151

 panels/printers/pp-new-printer-dialog.c | 2 ++
 1 file changed, 2 insertions(+)

commit f87e38441d080969dd3bd5b3e44efff8b2112488
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Apr 13 13:16:08 2012 +0200

    printers: A little correction of previous commit
    
    Correcting a little typo.

 panels/printers/pp-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5272bcc06d892c4066751afba8e17bc1df233220
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Apr 13 13:09:38 2012 +0200

    printers: Use PrinterAddOption method to set media size
    
    Use new cups-pk-helper's method PrinterAddOption for setting
    default media size for new printers. This fixes problem with
    setting default media size (#672694).

 panels/printers/pp-new-printer-dialog.c | 130 ++++++--------------------------
 panels/printers/pp-utils.c              |  67 ++++++++++++++++
 panels/printers/pp-utils.h              |   2 +
 3 files changed, 90 insertions(+), 109 deletions(-)

commit fa3c8585028ad61352a908f18b744a9991486de4
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Mar 26 15:40:52 2012 -0400

    wacom: fix "Map to Monitor..." button alignment
    
    It should use the same align of the button next to it, i.e. 'center', or
    it will look bigger.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672873

 panels/wacom/gnome-wacom-properties.ui | 1 +
 1 file changed, 1 insertion(+)

commit 89a5e737b092aa3c093b2ecb5866857b72660dd8
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Apr 12 18:02:53 2012 +0300

    Updated Hebrew translation.

 po/he.po | 146 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 73 insertions(+), 73 deletions(-)

commit ff31b771bbff300de4da4b4860d4ebdcd09acb6b
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Apr 12 15:29:36 2012 +0200

    wacom: update the UI if a new tool comes in
    
    The device_added_cb is called once for each tool added. The wacom driver
    hotplugs tools in the order stylus, eraser, cursor, pad.
    
    update_current_page will add a new page once a tablet has stylus and
    eraser, before cursor and pad exist. priv->pad is thus always NULL,
    causing, cc_wacom_page's update_tablet_ui to remove the "Map Buttons..."
    button for any device.
    
    Change the code to update the tool list for every new tool we get,
    merely triggering the visibility of the button instead of destroying it
    completely.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=672691

 panels/wacom/cc-wacom-page.c  | 83 +++++++++++++++++++++++++++++++------------
 panels/wacom/cc-wacom-page.h  |  5 +++
 panels/wacom/cc-wacom-panel.c | 11 +++---
 3 files changed, 71 insertions(+), 28 deletions(-)

commit 0463ba862220ceb14433dbf1ab90043357bfeac7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 12 11:05:26 2012 +0100

    wacom: Rename to "Wacom Tablet"
    
    The name of the panel is currently Wacom Graphics Tablet. This is really
    long and redundant. The name is also currently wrapped onto three lines.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673864

 panels/wacom/gnome-wacom-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5a2daec0a364cee4addab3a93228c9a8469060f7
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Tue Apr 10 19:31:44 2012 +0200

    wacom: Mark extra strings as translatable
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673854

 panels/wacom/cc-wacom-mapping-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8f7b92e89972c1fb80917384e26d05ffb3e7fc27
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Wed Apr 11 00:11:02 2012 +0200

    [l10n]Updated Catalan (Valencian) translation

 po/ca@valencia.po | 139 +++++++++++++++++++++++++++---------------------------
 1 file changed, 70 insertions(+), 69 deletions(-)

commit 867787678d3c12af333a0e9c76f168ba76794b6c
Author: Jordi Serratosa <jordis@softcatala.cat>
Date:   Wed Apr 11 00:10:30 2012 +0200

    [l10n] Fixes on Catalan translation

 po/ca.po | 103 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 52 insertions(+), 51 deletions(-)

commit 04eca6d9515ea1eb6827f334d6c57c26b0e58718
Author: Michael Terry <michael.terry@canonical.com>
Date:   Tue Apr 10 09:19:03 2012 -0400

    user-accounts: Make controls insensitive when a user is not selected
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671484l

 panels/user-accounts/data/user-accounts-dialog.ui | 1 +
 panels/user-accounts/um-user-panel.c              | 3 +++
 2 files changed, 4 insertions(+)

commit 80fdb0bee20af5c3f718bd09dccb2b34dad0aeba
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Apr 9 09:20:31 2012 +0300

    display: Translate the rotation drop-down again
    
    The rotation combo box items on the Displays panel do not appear
    translated.  This is because the items got translation context support
    in 5a5a037d09787da48f3c8b60ca5ce6dcb5ebcbf3, but to get the localized
    strings, one needs to use g_dpgettext2()[1], not gettext().
    
    https://bugzilla.gnome.org/show_bug.cgi?id=673766

 panels/display/cc-display-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a47bdcfdb478554598faf416790ed2ca708e25d2
Author: Milo Casagrande <milo@ubuntu.com>
Date:   Sat Apr 7 17:51:58 2012 +0200

    [l10n] Updated Italian translation

 po/it.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5605ba8336d19a0b30b8dd856811ff1d4c6ab275
Author: Milo Casagrande <milo@ubuntu.com>
Date:   Fri Apr 6 17:15:27 2012 +0200

    [l10n] Updated Italian translation

 po/it.po | 2884 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1448 insertions(+), 1436 deletions(-)

commit 463090e67c69f2464c8a9dedc875113dd0249b7b
Author: Neliton Pereira Jr <nelitonpjr@gmail.com>
Date:   Wed Apr 4 16:03:04 2012 -0300

    Fixed some strings in Brazilian Portuguese translation

 po/pt_BR.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9eb047baff69f78273e0be20c42c06cde7a2e27f
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 26 17:48:23 2012 +0100

    Always round up the CcStrengthBar rather than down
    
    It's a measure of completeness, not of progress.

 shell/cc-strength-bar.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 13b534adb86ad601e7f637d6543e636b3b76092b
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Tue Apr 3 20:40:37 2012 +0530

    Updated Odia Translation

 po/or.po | 1550 ++++++++++++++++++++------------------------------------------
 1 file changed, 504 insertions(+), 1046 deletions(-)

commit 4f090a1accca2a31b0f475ddc60eb9fcb9bb248b
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Mon Apr 2 21:47:26 2012 +0530

    Updated Odia Translation

 po/or.po | 747 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 313 insertions(+), 434 deletions(-)

commit 4ea22e9921de151614384a61159e20f6fd85049e
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Sun Apr 1 13:14:45 2012 +0200

    Updated French translation

 po/fr.po | 162 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 81 insertions(+), 81 deletions(-)

commit 3da4a4a5bf916fb134e4f59e2ccd9ce59cc32cd2
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Sun Apr 1 01:02:00 2012 +0430

    Updated Persian Translations

 po/fa.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 064d02216dcd36c67a5e83e5c47c51a3e2bf8633
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Mar 30 15:40:34 2012 +0200

    Updated Slovenian translation

 po/sl.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit f518abebe8e553ad1a44b67397fc2a4f73de7253
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Thu Mar 29 20:21:07 2012 +0200

    Updated Slovenian translation

 po/sl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ce7afa847139d5057599db5e82196501bc6d2b5b
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Wed Mar 28 15:16:46 2012 +0200

    Updated Slovenian translation

 po/sl.po | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit f1dfd2968df725a0b506cc6061f9b2110e3631b8
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Wed Mar 28 14:10:55 2012 +0530

    Updated Kannada Translation

 po/kn.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit dac1f38f0f19e56744ca0acb40f8c81ae1320729
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Mar 28 08:06:05 2012 +0200

    Updated Swedish translation

 po/sv.po | 297 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 150 insertions(+), 147 deletions(-)

commit 0008d8fd8dd45e2d50cb8fdd252e5b1b896672e0
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Tue Mar 27 19:15:02 2012 +0530

    Updated Kannada Translation

 po/kn.po | 1147 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 466 insertions(+), 681 deletions(-)

commit 2d0203bfad3d77d77a078c72f064cb07b582a2e5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 19 07:21:40 2012 -0400

    common: Make insertion of new languages quicker
    
    See https://bugzilla.gnome.org/show_bug.cgi?id=672293#c6

 panels/common/cc-common-language.c | 46 +++++++++++++++++++++++---------------
 1 file changed, 28 insertions(+), 18 deletions(-)

commit ee3f0720f2a22c9e829ba114713bfaf5b97cc8e2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 27 13:44:44 2012 +0200

    common: Fix crash when filtering language list
    
    And it's still being populated. If the list gets filtered
    while it's being populated, we would end up with a row with NULL
    data, causing us to crash.
    
    Make sure to hold the GDK threads lock when reading from the list,
    to avoid racing with the insert code.
    
    http://bugzilla.gnome.org/show_bug.cgi?id=672293

 panels/common/cc-language-chooser.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 49ec6af014326efd0001dd1531d5b09cf22d2121
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Tue Mar 27 10:51:20 2012 +0530

    Updated Kannada Translation

 po/kn.po | 7188 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4388 insertions(+), 2800 deletions(-)

commit a7aa5f0c77277b9317cd77fbb832152920a9403e
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 26 18:47:55 2012 +0100

    trivial: Post branch version bump

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bff2c80f0e3aa462f98d66df7be2da3d5738001e
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 26 18:03:29 2012 +0100

    3.4.0

 NEWS         | 27 +++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 28 insertions(+), 1 deletion(-)

commit 2806e68657fe453a1db4e3232bc75a83fd318c61
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 26 11:16:01 2012 +0100

    Fix a crash in the network panel by disconnecting idle sources
    
    If you open and close the network panel again and again at speed, you can trigger a crash.

 panels/network/cc-network-panel.c | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

commit cf01ab57dc812157aff83a5c91218c636a4dda16
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Mon Mar 26 13:21:29 2012 +0530

    Updated Odia Translation

 po/or.po | 235 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 104 insertions(+), 131 deletions(-)

commit 344a1c909bc64658ec9de990bf8e3055f36d4bff
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Mar 25 11:20:51 2012 +0200

    Updated Czech translation

 po/cs.po | 3805 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1911 insertions(+), 1894 deletions(-)

commit 9ae5305a303980d56f23f916451458799a8c1b1a
Author: Sasi Bhushan <sasi@swecha.net>
Date:   Sun Mar 25 13:30:13 2012 +0530

    Updated Telugu translation

 po/te.po | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 34f0b87d5af317e492698192467d5276a5bcce8b
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Sat Mar 24 20:14:45 2012 +0100

    [l10n] Updated German translation

 po/de.po | 34 ++++++++++++++++------------------
 1 file changed, 16 insertions(+), 18 deletions(-)

commit 2021bbc433e3b50488e01f1e0ed1b86ca7c633c3
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Sun Mar 25 02:48:03 2012 +0900

    Updated Japanese translation.

 po/ja.po | 403 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 167 insertions(+), 236 deletions(-)

commit 6298fe50dc2534cbef0e62bf99c5cab4bd7cdabd
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Mar 24 19:13:57 2012 +0200

    Updated Hebrew translation.

 po/he.po | 231 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 117 insertions(+), 114 deletions(-)

commit 16c0d49a3b3a07467f42b9e2766eb6e5aa68b972
Author: Sasi Bhushan Boddepalli <sasi@swecha.net>
Date:   Sat Mar 24 17:02:42 2012 +0530

    Updated Telugu Translation

 po/te.po | 143 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 72 insertions(+), 71 deletions(-)

commit 30a9c7c7a719650f5ee95966f4cdca8b5ec18c90
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Mar 23 14:30:24 2012 +0100

    printers: Fix crash in actualize_printers_list()
    
    This fixes a typo in handling of printers options in actualize_printers_list()
    which caused a crash when number of printers exceeded number of options (#672689).

 panels/printers/cc-printers-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4cb845983d112be99448d390c56a4b3660a5b285
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Mar 23 13:24:59 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 72 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 36 insertions(+), 36 deletions(-)

commit 79c8f3f3bbaa41ed018cb06399f55b719df0d1b4
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Fri Mar 23 15:05:48 2012 +0530

    Updated Telugu Translation

 po/te.po | 374 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 152 insertions(+), 222 deletions(-)

commit afbf8eef408b60a62fbffb75821546d6e689d55c
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Thu Mar 22 10:25:05 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 51 +++++++++++++++++++++++++--------------------------
 1 file changed, 25 insertions(+), 26 deletions(-)

commit 8b2c01c75b5826cbb63e2a0d717548e77d557011
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Thu Mar 22 10:03:39 2012 +0700

    po/vi: import from Damned Lies

 po/vi.po | 302 ++++++++++++++++++---------------------------------------------
 1 file changed, 83 insertions(+), 219 deletions(-)

commit bb5e8cafaeee9f4de25ab65de97497513ae67ccb
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Mar 21 23:55:49 2012 +0000

    Updated Portuguese translation

 po/pt.po | 6033 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3340 insertions(+), 2693 deletions(-)

commit 473cec42ebc87d9e28204c8b8458c8105e773956
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Thu Mar 22 00:01:07 2012 +0200

    Updated Lithuanian translation

 po/lt.po | 3359 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1864 insertions(+), 1495 deletions(-)

commit e6061221713a885f0096603d5cc0977d0be163a0
Author: Timo Jyrinki <timo@debian.org>
Date:   Wed Mar 21 18:14:12 2012 +0200

    Updated Finnish translation by Jiri Grönroos.

 po/fi.po | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

commit fb84f3dcd3ff7e5bedc6ba76844d33afed259e25
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Mar 21 17:12:30 2012 +0200

    Updated Arabic translation

 po/ar.po | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

commit de0f8fd5e7531ecded0d9976d5e84aa24524a3e3
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Mar 21 17:08:38 2012 +0200

    Typo

 po/ar.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cddee53cf292052c2ab2e502f9e807a008bf824d
Author: Automatic Mirroring <aronmalache@gmail.com>
Date:   Wed Mar 21 13:15:05 2012 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 466 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 244 insertions(+), 222 deletions(-)

commit a581b35e7f12a3ef45481f762a60350020ef779d
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Wed Mar 21 17:49:07 2012 +0530

    Assamese translation updated

 po/as.po | 1135 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 522 insertions(+), 613 deletions(-)

commit 5c999a17f14c0311eb766f4515fbf0a560b94365
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Wed Mar 21 13:23:29 2012 +0530

    Assamese translation updated

 po/as.po | 359 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 143 insertions(+), 216 deletions(-)

commit 9a11f006924d2d91bd7fa86e15769e04c35abdf8
Author: Timo Jyrinki <timo.jyrinki@iki.fi>
Date:   Tue Mar 20 18:55:22 2012 +0200

    Updated Finnish translation

 po/fi.po | 482 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 309 insertions(+), 173 deletions(-)

commit c5d8731fb4cff70d6df938227957abad99217fb8
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Tue Mar 20 20:59:02 2012 +0530

    Assamese translation updated

 po/as.po | 601 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 250 insertions(+), 351 deletions(-)

commit b5ced40020b1298666eb6c1cddd5c4060612ac18
Author: ManojKumar Giri <mgiri@redhat.com>
Date:   Tue Mar 20 13:56:02 2012 +0530

    Updated Odia Translation

 po/or.po | 9060 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 6159 insertions(+), 2901 deletions(-)

commit 14aba24c26e7c87dc8c910e542e96ab4170b81de
Author: Rajesh Ranjan <rranjan@redhat.com>
Date:   Tue Mar 20 13:23:00 2012 +0530

    hindi translation by Chandan Kumar

 po/hi.po | 6239 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 3949 insertions(+), 2290 deletions(-)

commit 38bc6a745337a6b3604b1cfe7e261078b418122b
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Mon Mar 19 20:58:50 2012 +0530

    Assamese translation updated

 po/as.po | 489 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 205 insertions(+), 284 deletions(-)

commit d1cdbd2fd3bb8d10dffda270493b5edb19d11dfe
Author: Nilamdyuti Goswami <nilamdyuti@gmail.com>
Date:   Mon Mar 19 18:23:14 2012 +0530

    Assamese translation updated

 po/as.po | 9309 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 6340 insertions(+), 2969 deletions(-)

commit 5f614d6361147916365e75cd8c44a2fdb7cb7c1b
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 19 09:49:32 2012 +0000

    3.3.92

 NEWS         | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 62 insertions(+), 1 deletion(-)

commit ed4f55db3c6b3af191bc65cc7a4bbcfd5d3a3dae
Author: Kenneth Nielsen <k.nielsen81@gmail.com>
Date:   Mon Mar 19 10:04:33 2012 +0100

    Updated Danish translation

 po/da.po | 321 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 166 insertions(+), 155 deletions(-)

commit ea3993c40ed906b832d02876e1f719d4b58d16b4
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Mon Mar 19 01:16:58 2012 +0100

    [l10n]Updated Catalan (Valencian) translation

 po/ca@valencia.po | 6057 +++++++++++++++++++++++++++++------------------------
 1 file changed, 3303 insertions(+), 2754 deletions(-)

commit 536faec936c04b1368e1afdbedb438ca183ab70e
Author: Joan Duran <jodufi@gmail.com>
Date:   Mon Mar 19 01:16:48 2012 +0100

    [l10n] Updated Catalan translation

 po/ca.po | 6209 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3450 insertions(+), 2759 deletions(-)

commit 967d9ae1b80d5f212461eb32dd65778127fbc81f
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Sun Mar 18 17:26:18 2012 +0200

    Uploaded Ukranian

 po/uk.po | 126 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 63 insertions(+), 63 deletions(-)

commit 3359d0e5abc782cdbd629fd74552f797687a9dce
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:   Sun Mar 18 02:14:30 2012 +0100

    [l10n] Updated German translation

 po/de.po | 3442 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1889 insertions(+), 1553 deletions(-)

commit 1cd12c0f3bb68a9f4957817ec16681092a9f819f
Author: Abderrahim Kitouni <a.kitouni@gmail.com>
Date:   Sat Mar 17 17:54:51 2012 +0100

    Fix a small error in Arabic translation

 po/ar.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 83c3cf20b70923d4c9dbd2fb43713cc860d8aa70
Author: Pin-hsien Li <pspeter9931@gmail.com>
Date:   Sat Mar 17 14:16:34 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 357 +++++++++++++++++++++++++++++++-----------------------------
 po/zh_TW.po | 357 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 368 insertions(+), 346 deletions(-)

commit c31f2eed794ed2be4c17ca7c1c85eb41eebe930d
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 16 12:45:13 2012 +0000

    color: Prevent a crash when hotplugging monitors when the color panel is open

 panels/color/cc-color-panel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 2b1fa69453859c36b9352aa49dd873f3742d535a
Author: Praveen Arimbrathodiyil <pravi.a@gmail.com>
Date:   Fri Mar 16 18:06:29 2012 +0530

    Malayalam translation updated by Sadiq and me

 po/ml.po | 8636 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 5848 insertions(+), 2788 deletions(-)

commit ac8ca99e6515b272a964109db210164c4a8d0f47
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Thu Mar 15 20:23:57 2012 +0330

    Updated Persian Translations

 po/fa.po | 6139 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3448 insertions(+), 2691 deletions(-)

commit 0727c1e9301e151c2ce368952c1e32757f4186a2
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Mar 15 18:10:27 2012 +0200

    Updated Arabic translation

 po/ar.po | 2483 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1235 insertions(+), 1248 deletions(-)

commit df164193bbdad03ab99839097b208b20f315bf7f
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 15 11:59:04 2012 +0000

    color: Don't allow the user to add existing profiles to devices
    
    The existing code prevents the user from adding the existing default device
    profile to the device again, but to prevent a warning message we need to prevent
    the user from selecting *any* of the profiles already assigned to the device.

 panels/color/cc-color-panel.c | 36 +++++++++++++++++++++++++++---------
 1 file changed, 27 insertions(+), 9 deletions(-)

commit eb42930f97271cb611fde7a73b47cf71ddfc9684
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Thu Mar 15 14:27:34 2012 +0400

    Fixed Russian translation

 po/ru.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 5d4510504331f1a22311c6979fd98f60f7d14891
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Thu Mar 15 13:05:10 2012 +0530

    Updated Gujarati Translations

 po/gu.po | 6384 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3553 insertions(+), 2831 deletions(-)

commit e07394eee15b645c1140b9694a02e6fed7aebd3f
Author: A S Alam <aalam@users.sf.net>
Date:   Thu Mar 15 06:48:20 2012 +0530

    update Punjabi Translation

 po/pa.po | 414 +++++++++++++++++++++------------------------------------------
 1 file changed, 139 insertions(+), 275 deletions(-)

commit b1741edc0876fbada7a1a961f476ed80f58856d2
Author: Enrico Nicoletto <liverig@gmail.com>
Date:   Wed Mar 14 17:45:31 2012 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 6336 ++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3457 insertions(+), 2879 deletions(-)

commit 4db95ec07f3f43e72c40358de04d0b5a8abe8eef
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Mar 14 02:22:27 2012 +0100

    Updated Hungarian translation

 po/hu.po | 5827 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3268 insertions(+), 2559 deletions(-)

commit f7d409964dcee95171c93c36dec5b2223cf06966
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   Tue Mar 13 23:20:31 2012 +0200

    Updated Latvian translation.

 po/lv.po | 6681 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3860 insertions(+), 2821 deletions(-)

commit 3964582635d229662a88ebf7c2aa6e31d6dc7534
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Tue Mar 13 19:08:38 2012 +0100

    mouse: Don't enable two-finger scrolling based on width
    
    Reverts part of 109b36919921d757b93b91e8082620078608967e
    
    Good idea in principle, albeit the hardware gets in our way. In
    synaptics 1.4 two-finger emulation was enabled by default on devices
    that reported finger width but had to since revert this. The hardware
    doesn't really separate width and pressure, so a hard tap off a finger
    gives a high width, a wide finger gives a high pressure on light
    touches. We got spurious right-click presses when two-finger
    emulation was enabled.
    
    Now we have the control-center providing a checkbox for two-finger
    emulation but it doesn't enable emulation, which to the users appears as if
    two-finger scrolling is broken
    (https://bugzilla.redhat.com/show_bug.cgi?id=738123).
    
    We now disable the checkbox again for hardware that doesn't do two-fingers.
    it's not reliable and we're likely to see further bugs when the spurious right
    clicks take effect
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661963

 panels/mouse/gnome-mouse-properties.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 75ea35d9393bef35575b56aa70785d5cc54310f3
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 12 18:50:00 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 265 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 137 insertions(+), 128 deletions(-)

commit bd41bd788be0f999e95ddb9a7b1ea8f507733646
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 12 16:37:53 2012 +0100

    datetime: Fix broken time setting on 32-bit machines
    
    time_t might be a 32-bit integer, which wouldn't be big enough
    to contain the number of microseconds since Epoch (since it can
    only fit the number of seconds from Epoch until 2038).
    
    https://bugzilla.redhat.com/show_bug.cgi?id=795792

 panels/datetime/cc-datetime-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a0d0da46b2e218848c154f3af99d9376c734ed80
Author: Timo Jyrinki <timo@debian.org>
Date:   Mon Mar 12 11:03:00 2012 +0200

    Finnish translation update from http://l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint

 po/fi.po | 3745 ++++++++++++++------------------------------------------------
 1 file changed, 824 insertions(+), 2921 deletions(-)

commit b0071c9a63eb5e066461ef10459d32a7e2a89a25
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sat Mar 10 23:05:07 2012 +0100

    Updated Serbian translation

 po/sr.po       | 231 +++++++++++++++++++++++++++++----------------------------
 po/sr@latin.po | 231 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 234 insertions(+), 228 deletions(-)

commit 769aef9a5d0f2c953eda5bc2733350d487e38764
Author: Ibrahim Saed <ibraheem5000@gmail.com>
Date:   Sat Mar 10 19:56:15 2012 +0100

    Updated Arabic translation

 po/ar.po | 5740 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3129 insertions(+), 2611 deletions(-)

commit 7c3943a093523151707200044ef6fd37e778ce03
Author: Seong-ho, Cho <darkcircle.0426@gmail.com>
Date:   Sat Mar 10 22:17:54 2012 +0900

    Updated Korean translation

 po/ko.po | 6554 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3619 insertions(+), 2935 deletions(-)

commit 5e78f3185c6bc701970ea7d5a951ec969ce27601
Author: Richard Hughes <richard@hughsie.com>
Date:   Sat Mar 10 09:03:26 2012 +0000

    color: Do not select the device in the treeview if it changes
    
    This prevents the treeview 'flickering' when going from selected
    device1->profile1 to device2->profile1.

 panels/color/cc-color-panel.c | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

commit 57fa4dcc186d6fcd718f9c1bb08e657133378646
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Fri Mar 9 22:49:20 2012 +0100

    Updated French translation

 po/fr.po | 5912 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 3063 insertions(+), 2849 deletions(-)

commit c8d4af99b72fb8537f2da50357ab58d7844c76d1
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Fri Mar 9 15:43:21 2012 +0200

    Uploaded Ukranian

 po/uk.po | 5972 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3448 insertions(+), 2524 deletions(-)

commit 2b19f30b42fb3f33a069f8fc1ba59a2d736d3a59
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Fri Mar 9 11:33:17 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit cbdcc60a8531c0a03e8ca19927b3a264cd48cd64
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Fri Mar 9 01:51:07 2012 +0530

    Updated Telugu Translation

 po/te.po | 6200 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3372 insertions(+), 2828 deletions(-)

commit 96b404c53772a00f9a2efc5a5c074a448599a513
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 8 17:13:50 2012 +0100

    user-accounts: Minimum of 200 width for the users list
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671480

 panels/user-accounts/um-user-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit 48389f283a61f0890f1f89f7f265417bb9bc89eb
Author: Colin Walters <walters@verbum.org>
Date:   Thu Mar 8 10:26:21 2012 -0500

    build: Add missing git.mk to panels/color/icons

 panels/color/icons/16x16/Makefile.am    | 2 ++
 panels/color/icons/22x22/Makefile.am    | 2 ++
 panels/color/icons/24x24/Makefile.am    | 2 ++
 panels/color/icons/256x256/Makefile.am  | 2 ++
 panels/color/icons/32x32/Makefile.am    | 2 ++
 panels/color/icons/48x48/Makefile.am    | 2 ++
 panels/color/icons/64x64/Makefile.am    | 2 ++
 panels/color/icons/Makefile.am          | 2 ++
 panels/color/icons/scalable/Makefile.am | 1 +
 9 files changed, 17 insertions(+)

commit c48536c10262c39f9a3cb710a64b09f793cd523d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 8 16:16:54 2012 +0100

    universal-access: Hide zoom options when not in shell
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671386

 panels/universal-access/cc-ua-panel.c | 35 +++++++++++++++++++++++++++++++++++
 panels/universal-access/uap.ui        |  2 +-
 2 files changed, 36 insertions(+), 1 deletion(-)

commit d378dbae4880cc9cc9f47fa94a6b4fcb90036d44
Author: Colin Walters <walters@verbum.org>
Date:   Thu Mar 8 10:07:56 2012 -0500

    build: Add missing include of git.mk in user-accounts/data/icons

 panels/user-accounts/data/icons/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 94555eadc83c0dc75aa2af6f3b2ad1055b8a71b7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 8 13:53:20 2012 +0100

    common: Look harder for some languages
    
    It's fairly common to have de rather than de_DE translations, ditto
    for French and Spanish that share most of the vocabulary.

 panels/common/cc-common-language.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 048a9bc85e594eeeac85dd6dc21815eae0c1be99
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 7 17:13:55 2012 +0100

    display: Sort resolutions by width first
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671465

 panels/display/cc-display-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 57bba2631110359b8eb5c7eb558da6f18599a84e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 7 18:27:25 2012 +0100

    region: Fix possible crasher with empty layout

 panels/region/gnome-region-panel-system.c | 3 +++
 1 file changed, 3 insertions(+)

commit 22ac9fa06bc6c4e797e80030dff4a93ff242d473
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 7 18:12:12 2012 +0100

    region: Don't make the dialogue overly wide
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670667

 panels/region/gnome-region-panel.ui | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit f75c06b9794daec6716ae7a83b5b91f52d098570
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 7 17:07:31 2012 +0100

    display: Use symbolic name

 panels/display/cc-display-panel.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 6b6e17788ea96604ae22ccb59eb9f2b5f02fe63f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 6 14:59:46 2012 +0100

    display: Simplify add_key() calls and function

 panels/display/cc-display-panel.c | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

commit dd7c5fe67ac3bd0343674d8fe55821aeaa3995a1
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Wed Mar 7 16:01:20 2012 +0000

    Updated British English translation

 po/en_GB.po | 5951 +++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3294 insertions(+), 2657 deletions(-)

commit 08cf361129d46f3cf881ee7c1594c781178a2a49
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Wed Mar 7 13:58:10 2012 +0400

    Updated Russian translation

 po/ru.po | 349 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 169 insertions(+), 180 deletions(-)

commit fb25a7857baa292f7610fe6c874a181d2b515dfa
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Wed Mar 7 06:47:21 2012 +0200

    Updated Bulgarian translation

 po/bg.po | 230 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 115 insertions(+), 115 deletions(-)

commit 09472ead247a691838621cc696a9a766f33bc47d
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Wed Mar 7 11:32:18 2012 +0700

    po/vi.po: fix Bluetooth "visibility" translations

 po/vi.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ecabd158711b2cac43a489855a0c471a7f7bd12c
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Wed Mar 7 10:47:22 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 3245 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1763 insertions(+), 1482 deletions(-)

commit 97451c84e9516489102fd55d2736fd78b8e19644
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Mar 6 15:39:31 2012 +0100

    Updated Slovenian translation

 po/sl.po | 3066 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1644 insertions(+), 1422 deletions(-)

commit daa86f15bce4277def58eb653b91496785b2d474
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 5 19:30:35 2012 +0000

    3.3.91

 NEWS         | 41 +++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 42 insertions(+), 1 deletion(-)

commit b328274e0eb56e2e5a056a5d8a7de81281178ce6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 5 19:05:08 2012 +0000

    build: Require newest gnome-settings-daemon

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 460d2574831a1fff186cc677c0417b794fb232e2
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 5 18:59:48 2012 +0000

    info: Fix the updates state machine
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=671393

 panels/info/cc-info-panel.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 13717dce8dd2ba4f546acd8d23348cbce2eeabc6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 5 18:32:52 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 38 ++++++++++++++++++++++----------------
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 23 insertions(+), 16 deletions(-)

commit bdb09755c8de06ed98050d57ee3ffc0aeca04d98
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 5 18:27:18 2012 +0000

    info: Remove unused icons
    
    In GNOME 3.2, the icons were hidden. Some changes in GTK+ mean
    that the icons are now visible. As we don't use them, remove them
    altogether.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671376

 panels/info/cc-info-panel.c | 21 +++++----------------
 1 file changed, 5 insertions(+), 16 deletions(-)

commit 0c464812bbc7f379ebd40af13b12c0701fadce7e
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Mon Mar 5 18:20:17 2012 +0200

    [l10n] Updated Estonian translation

 po/et.po | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 7e5c60a81822a448087cf3d61f50ae4ca2b63a80
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 5 14:15:16 2012 +0000

    info: Avoid empty entries in "Other types" dialogue
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671358

 panels/info/cc-info-panel.c | 5 +++++
 1 file changed, 5 insertions(+)

commit c5157bb545eb9e650b28bc3c1353c94970c6ffec
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 5 14:01:44 2012 +0000

    info: handle dialog closing consistently
    
    The 'Other media' dialog is just hidden when the close button is
    clicked (so that it can be shown again), but when closing it with
    the Escape key, it gets destroyed and an attempt to bring it up
    again just shows a sad empty little square.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659948

 panels/info/cc-info-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit d5afe63f898c54e13a5802038db62029d700c482
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 1 18:02:00 2012 +0000

    common: Add more debug to list-languages
    
    So we can print the name of the locales listed on the command-line.

 panels/common/list-languages.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit e3c3380feaf11e84b4a7f4629afbfec120ca1aa2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 1 17:54:13 2012 +0000

    common: Fix crashes for incomplete locales
    
    By ignoring locales without language codes, or territory.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658551

 panels/common/gdm-languages.c | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

commit 242bb936103b567210d7f67117e3f5003746e861
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sun Mar 4 22:42:14 2012 +0100

    Updated Polish translation

 po/pl.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit ccf5376ec0ed668b4daab394cfc2f5c523c07875
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Mar 4 20:15:58 2012 +0100

    Updated Galician translations

 po/gl.po | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 4a5cac0bfcfbd779e2d6503fff728b61cfa68083
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Mar 4 19:58:48 2012 +0100

    Updated Galician translations

 po/gl.po | 267 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 140 insertions(+), 127 deletions(-)

commit 9a830b30964c0b3fe06a2c12210b1f1ac2ab10d5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Mar 4 19:28:32 2012 +0100

    Updated Spanish translation

 po/es.po | 164 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 84 insertions(+), 80 deletions(-)

commit 6c3a11207af22f884f9ddbd608dc6d5ff7b43035
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Sun Mar 4 17:08:10 2012 +0100

    Updated Basque language

 po/eu.po | 6005 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 3735 insertions(+), 2270 deletions(-)

commit ce9bdda6510ca7ae995b11b9d7af7b234b11fb50
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sun Mar 4 14:33:36 2012 +0300

    Updated Belarusian translation.

 po/be.po | 152 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 76 insertions(+), 76 deletions(-)

commit 1091c88e8a4442f29de41e02728a8df3043f2a7f
Author: Javier Jardón <jjardon@gnome.org>
Date:   Thu Mar 1 14:34:10 2012 +0000

    power: reference to "Brightness and Lock" panel, not "Screen"
    
    The "Screen" panel has been renamed to "Brightness and Lock"
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670567
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/power/cc-power-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit cd9bae5967f4ff3e1e479e13440a91e8e7c1b73a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Mar 3 22:35:46 2012 +0100

    Updated Polish translation

 po/pl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f451ef818cb0860d14c11941116c46b259a7cc68
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Mar 3 22:25:44 2012 +0100

    Updated Polish translation

 po/pl.po | 6063 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3291 insertions(+), 2772 deletions(-)

commit af6c80ec15c52f1b01279c0e24365b86a2904c5c
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Mar 3 21:04:38 2012 +0700

    Updated Vietnamese translation

 po/vi.po | 530 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 208 insertions(+), 322 deletions(-)

commit 8c6a1f974d95514957133bf50ec8c19d80ced8f9
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Mar 3 11:19:07 2012 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 6393 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3637 insertions(+), 2756 deletions(-)

commit 74730321f936f0d05f814746008dd6ab5a9f9603
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Mar 2 14:08:37 2012 +0200

    Updated Hebrew translation.

 po/he.po | 254 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 134 insertions(+), 120 deletions(-)

commit 74450e3acdf65d728ecbba9f82085e406040f2d0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 1 17:11:14 2012 +0000

    user-accounts: Fix sizing problems in user list
    
    About half-way through the user list, vertically, the user's name
    would get cut off. Showing the treeview headers showed that the
    "automatic login" pixbuf was added in a separate column.
    
    To make sizing easier, and avoid the user's name being cut off
    half-way through, add the "automatic-login" icon in the first column.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659998

 panels/user-accounts/um-user-panel.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit 72e1e7aa49fb927b21a8f82c23d8f6f88d46593f
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Thu Mar 1 18:04:38 2012 +0200

    [l10n] Updated Estonian translation

 po/et.po | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

commit 49f9de6182ff19dbfc13187dcca2fa5252c81a9f
Author: Michael Terry <michael.terry@canonical.com>
Date:   Thu Mar 1 16:00:09 2012 +0000

    display: Fix crash when the screen setup changes
    
    after the Display panel has been closed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670570

 panels/display/cc-display-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 3844923a4bf42fe66bc5fed623152a5c4e4d3519
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 1 10:25:34 2012 +0000

    wacom: Fix crasher when XRandR isn't available
    
    Spotted by Olivier Fourdan <ofourdan@redhat.com>

 panels/wacom/cc-wacom-mapping-panel.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

commit b97782616ee418b220c61ef41b9b62c4eb39b9ce
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Feb 29 18:31:01 2012 -0500

    network: fix huge inline toolbar icons
    
    Apparently GtkBuilder doesn't like too much <style> sections interleaved
    among <property> tags.

 panels/network/network.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0246034c5c1cfef3264b878d61d22aedbe978686
Author: Shaun McCance <shaunm@gnome.org>
Date:   Wed Feb 29 17:54:34 2012 -0500

    Dropping build stuff we don't need since I dropped help

 Makefile.am | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 02ee450f03207e06fb15b05a8403b53e0ac065aa
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Feb 29 23:52:30 2012 +0100

    Updated Swedish translation

 po/sv.po | 112 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 56 insertions(+), 56 deletions(-)

commit 1aace205fcd28a5ce87949ae2b85b03eacae834e
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Thu Mar 1 09:33:20 2012 +1100

    printers: Check if device_info is NULL (I don't think it can be but was requested in bugzilla)

 panels/printers/pp-new-printer-dialog.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bda149fdd04ed0badc22847940e6b0a72d24aed6
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 29 09:57:12 2012 +1100

    printers: Convert unnecessary use of GDBusProxy to using GDBusConnection directly

 panels/printers/pp-new-printer-dialog.c | 286 ++++++++++++++------------------
 panels/printers/pp-utils.c              |  46 +++--
 2 files changed, 145 insertions(+), 187 deletions(-)

commit 7dd5ae6b94d1b294032d0f0fae18df12322eb1c2
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Sat Feb 25 14:29:51 2012 +1100

    printers: Port to GDBus

 configure.ac                            |   2 +-
 panels/printers/cc-printers-panel.c     |  96 +++--
 panels/printers/pp-new-printer-dialog.c | 285 +++++++-----
 panels/printers/pp-utils.c              | 744 ++++++++++++++++++--------------
 panels/printers/pp-utils.h              |   6 -
 5 files changed, 646 insertions(+), 487 deletions(-)

commit cdbd119e3d7b2e0a551f60b78d7b7b7cce9b83ce
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Wed Feb 29 19:32:03 2012 +0200

    [l10n] Updated Estonian translation

 po/et.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 121442daf299de2a267758e0d151f1fc64f41a94
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Wed Feb 29 17:41:17 2012 +0530

    updated Tamil translation

 po/ta.po | 53 +++++++++++++++++++++++++++++++----------------------
 1 file changed, 31 insertions(+), 22 deletions(-)

commit e9d25db80a2de435d5290cb7d16255c17768b61d
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Wed Feb 29 17:33:14 2012 +0530

    updated Tamil translation

 po/ta.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit e555924150c64da1bd6efbf1a35808513afe30e0
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Wed Feb 29 12:00:18 2012 +0100

    Updated Serbian translation

 po/sr.po       | 2 +-
 po/sr@latin.po | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit df404028582dc6ba50ac31b1f7692298ca56c5f8
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Wed Feb 29 11:48:57 2012 +0100

    Updated Serbian translation

 po/sr.po       | 73 +++++++++++++++++++++++++++++++++-------------------------
 po/sr@latin.po | 73 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 82 insertions(+), 64 deletions(-)

commit 75fcbf327477f88d92b88d098a6072aad69d4617
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Wed Feb 29 08:03:46 2012 +0200

    Updated Bulgarian translation

 po/bg.po | 2436 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1222 insertions(+), 1214 deletions(-)

commit 95bf10af0f1a4917cd197ab5d23d94bde0e1e00c
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Feb 28 21:20:24 2012 +0100

    Updated Swedish translation

 po/sv.po | 5956 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3125 insertions(+), 2831 deletions(-)

commit 4eb13caea1908114687dfe3cf77f05f493bb7dd5
Author: Kasia Bondarava <kasia.bondarava@gmail.com>
Date:   Tue Feb 28 21:27:34 2012 +0300

    Updated Belarusian translation.

 po/be.po | 88 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 50 insertions(+), 38 deletions(-)

commit 4c2574345d4c653f25f9f00711ccf5f716634180
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Feb 28 17:50:18 2012 +0100

    Updated Spanish translation

 po/es.po | 67 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 38 insertions(+), 29 deletions(-)

commit 865d322865465584a165384b4f36ee1924912a60
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 28 11:38:03 2012 +0000

    wacom: Add FIXME

 panels/wacom/cc-wacom-page.c | 2 ++
 1 file changed, 2 insertions(+)

commit c8a24f514eb3e874347f3cfd2338df9c4c8fe32f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 28 10:43:33 2012 +0000

    wacom: Add elevator buttons to the list

 panels/wacom/cc-wacom-page.c | 149 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 133 insertions(+), 16 deletions(-)

commit ee1fc0744d698ae3fdb5687a65c2742ae9de5779
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 28 10:35:19 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 18 ++++++++++++++++--
 panels/wacom/gsd-wacom-device.h |  1 -
 2 files changed, 16 insertions(+), 3 deletions(-)

commit 3a3eeeed667ca6d3c409ea44363bcb5fba9ba74e
Author: Shaun McCance <shaunm@gnome.org>
Date:   Mon Feb 27 19:43:42 2012 -0500

    help: Removing the obsolete and near-empty manual

 Makefile.am                              |   6 +-
 configure.ac                             |   4 -
 help/C/config-accessibility-keyboard.xml |   7 -
 help/C/config-background.xml             | 131 ----------------
 help/C/config-behavior.xml               |  54 -------
 help/C/config-cds.xml                    |  64 --------
 help/C/config-default-apps.xml           | 119 ---------------
 help/C/config-file-type.xml              |   3 -
 help/C/config-hints.xml                  |  64 --------
 help/C/config-html.xml                   | 198 ------------------------
 help/C/config-kbd.xml                    | 173 ---------------------
 help/C/config-keybindings.xml            |  37 -----
 help/C/config-mouse.xml                  | 240 -----------------------------
 help/C/config-screensaver.xml            | 255 -------------------------------
 help/C/config-themes.xml                 |  46 ------
 help/C/control-center.xml                |  84 ----------
 help/Makefile.am                         |  10 --
 help/ca/ca.po                            |  93 -----------
 help/ca@valencia/ca@valencia.po          |  93 -----------
 help/control-center.omf.in               |   9 --
 help/cs/cs.po                            |  97 ------------
 help/de/de.po                            | 144 -----------------
 help/el/el.po                            | 142 -----------------
 help/en_GB/en_GB.po                      |  94 ------------
 help/es/config-behavior.xml              |  54 -------
 help/es/config-cds.xml                   |  64 --------
 help/es/config-file-type.xml             |   3 -
 help/es/config-html.xml                  | 198 ------------------------
 help/es/config-screensaver.xml           | 254 ------------------------------
 help/es/control-center-es.omf            |  14 --
 help/es/es.po                            | 150 ------------------
 help/fa/fa.po                            | 106 -------------
 help/fr/fr.po                            | 149 ------------------
 help/gl/gl.po                            | 147 ------------------
 help/it/it.po                            |  96 ------------
 help/ja/ja.po                            | 135 ----------------
 help/ko/ko.po                            | 140 -----------------
 help/oc/oc.po                            | 126 ---------------
 help/pa/pa.po                            | 142 -----------------
 help/pl/pl.po                            | 152 ------------------
 help/pt/pt.po                            |  97 ------------
 help/pt_BR/pt_BR.po                      | 148 ------------------
 help/ru/ru.po                            | 149 ------------------
 help/sl/sl.po                            |  99 ------------
 help/sv/sv.po                            |  93 -----------
 help/te/te.po                            | 131 ----------------
 help/th/th.po                            | 142 -----------------
 help/uk/uk.po                            | 140 -----------------
 help/vi/vi.po                            |  97 ------------
 help/xmldocs.make                        |  86 -----------
 help/zh_CN/zh_CN.po                      | 135 ----------------
 help/zh_HK/zh_HK.po                      | 125 ---------------
 help/zh_TW/zh_TW.po                      | 142 -----------------
 53 files changed, 3 insertions(+), 5678 deletions(-)

commit dbef08e3607df05ef56c4a5a8b8c39f0fabd8f1c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 23 12:45:01 2012 +0100

    wacom: Remove right-hand margin from nav button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-nav-button.c  | 2 +-
 panels/wacom/cc-wacom-page.c        | 2 +-
 panels/wacom/cc-wacom-stylus-page.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 88f743cf45d9734373b6a3ca06f83300cb4231bc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 23 12:41:23 2012 +0100

    wacom: Reorder the widgets as per mockup
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-page.c           | 2 +-
 panels/wacom/gnome-wacom-properties.ui | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

commit de46b91e482f49698ba16be21c08a1db86d043a3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 23 12:41:06 2012 +0100

    wacom: Make display-link right aligned
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/gnome-wacom-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f6d645af82ccc57dc8a840d74575dc09b9c9e5b4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 23 12:22:10 2012 +0100

    wacom: Make tablet button box right aligned
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/gnome-wacom-properties.ui | 23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

commit 606fee32ff829028fe2354c0206a75f32d98c4bf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 23 12:12:31 2012 +0100

    wacom: Swap nav button and label for stylus
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-stylus-page.c | 2 +-
 panels/wacom/wacom-stylus-page.ui   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 338fd409ee2a06ae31166e7e25c38d970969278f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 23 12:10:54 2012 +0100

    wacom: Swap nav button and label for tablet
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-page.c           | 2 +-
 panels/wacom/gnome-wacom-properties.ui | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 485ea263c5ff104d93e0b70e1e93dc21aca36a1e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 27 16:48:26 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 144 ++++++++++++++++++++++++++++++----------
 panels/wacom/gsd-wacom-device.h |   5 +-
 2 files changed, 114 insertions(+), 35 deletions(-)

commit f1e3f0fea58aa2e30e8603ed328cc32dc57af3c2
Author: Olivier Fourdan <ofourdan@redhat.com>
Date:   Mon Feb 27 16:02:56 2012 +0100

    wacom: Pass -1 as monitor to reset the mapping to the entire screen

 panels/wacom/cc-wacom-mapping-panel.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

commit 24de41ec29c8e15a6d3043aeddc49015eb71fc12
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Mon Feb 27 12:17:31 2012 +0200

    [l10n] Updated Estonian translation

 po/et.po | 60 ++++++++++++++++++++++++------------------------------------
 1 file changed, 24 insertions(+), 36 deletions(-)

commit 4de1a22e1d9351d06f8d077c280dd057e8cd76a6
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sun Feb 26 14:15:50 2012 +0300

    Updated Belarusian translation.

 po/be.po | 158 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 85 insertions(+), 73 deletions(-)

commit 9250de46b048c21993f5a30b32e89ade3c2c6cba
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Feb 25 10:58:42 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 96 +++++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 96 +++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 104 insertions(+), 88 deletions(-)

commit 4fc6a732512512aabf6aa9241cb306229a84a464
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 23 18:51:03 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 92 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 47 insertions(+), 45 deletions(-)

commit 1aca04765f583b7ba46b5388abeb7e2281131f68
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Thu Feb 23 19:37:44 2012 +0400

    Updated Russian translation

 po/ru.po | 3562 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1808 insertions(+), 1754 deletions(-)

commit 7b8970b1c8d0ba7b0a73773188b1153f56321db0
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Thu Feb 23 14:16:52 2012 +0530

    updated Tamil translation

 po/ta.po | 1267 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 708 insertions(+), 559 deletions(-)

commit 3a45f1e1fd3128f3c7b1bb2d274c54d68a32012f
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Thu Feb 23 05:56:05 2012 +0530

    updated Tamil translation

 po/ta.po | 5888 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3148 insertions(+), 2740 deletions(-)

commit b55d07e47f1d15e86b0359f2fb02d0a6483fddd0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 22 19:09:50 2012 +0100

    region: Fix handling of variants in "Copy" button
    
    Instead of splitting the list of layouts into layouts and variants,
    we were expecting strings of the form:
    layout1 variant1, layout2 variant2
    to be handled automatically. We should instead create the lists
    of layouts and variants separately before passing them to localed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670607

 panels/region/gnome-region-panel-system.c | 32 ++++++++++++++++++++++++++-----
 1 file changed, 27 insertions(+), 5 deletions(-)

commit f3a8805d30a0373982856933268e16adb416a121
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 22 15:24:52 2012 +0100

    region: Remove useless assignments

 panels/region/gnome-region-panel-system.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit b0275d53e9d90906381b4533ec03d678c8b6c19b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 22 12:53:57 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c | 13 ++++++++++---
 panels/wacom/gsd-wacom-device.c |  2 +-
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 0bd22ad94e5ae43a1985c8f54bdd63df0fc833d2
Author: A S Alam <aalam@users.sf.net>
Date:   Wed Feb 22 06:53:26 2012 +0530

    update Punjabi Translation

 po/pa.po | 6233 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3488 insertions(+), 2745 deletions(-)

commit fadcfd23cbaa9e52841d35eb27cbed8a839152d0
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Tue Feb 21 22:29:54 2012 +0200

    Updated Bulgarian translation

 po/bg.po | 633 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 421 insertions(+), 212 deletions(-)

commit 2606d607b280666727811fb551ddbfee4edea3b5
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 21 19:23:26 2012 +0000

    color: Ensure the profile system-wide button is visible
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=670513

 panels/color/cc-color-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b35fac0b2a70bd87bd9dd9467236b967a4cb7f40
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 21 15:01:42 2012 +0000

    color: Allow the help text to wrap normally to avoid making the window bigger

 panels/color/color.ui | 2 ++
 1 file changed, 2 insertions(+)

commit b917014bdb056d92e8e9cffb44e262326b852207
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Feb 21 11:52:02 2012 +0100

    Updated Galician translations

 po/gl.po | 153 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 81 insertions(+), 72 deletions(-)

commit 92dfeff5afa8a71512c85d534506a8d014cd645d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 21 10:27:17 2012 +0100

    3.3.90

 NEWS         | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 47 insertions(+), 1 deletion(-)

commit 94d605d06010f646ed575dc1ec605d86e5d504cd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 21 10:15:27 2012 +0100

    build: Require the newly released gsd 3.3.90

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 48f0fbf9cd71dec9d74355a9aeb620ac5d423fbf
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Tue Feb 21 09:47:03 2012 +0100

    Updated Serbian translation

 po/sr.po       | 115 +++++++++++++++++++++++++++++----------------------------
 po/sr@latin.po | 115 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 116 insertions(+), 114 deletions(-)

commit b4a09664d91ddae78f35a08fd0df8ed0b0a40477
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Feb 21 09:44:38 2012 +0100

    Updated Spanish translation

 po/es.po | 115 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 59 insertions(+), 56 deletions(-)

commit ca7bc5f40045877cd2dff40ad12718bea35c0da5
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Mon Feb 20 22:31:56 2012 +0100

    Updated Danish translation

 po/da.po | 6198 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3345 insertions(+), 2853 deletions(-)

commit 3824ad8a50df3a10b1f77ed02f5c2c9bc7f7a8ca
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 20 18:47:44 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c | 30 ++++++++++++++++++++++--------
 panels/wacom/gsd-wacom-device.c | 10 +++++-----
 2 files changed, 27 insertions(+), 13 deletions(-)

commit 8a8492ea262431d5dc4988d5554d39b3bb2fbaa0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 20 16:50:44 2012 +0100

    wacom: Monitor the last used stylus
    
    And switch to its page on startup, or when drawn near the device

 panels/wacom/cc-wacom-page.c | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

commit 544af5214ad4902daa8879c3e0c092c806c6f51b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 20 17:09:53 2012 +0100

    wacom: Export stylus from CcWacomStylusPage

 panels/wacom/cc-wacom-stylus-page.c | 6 ++++++
 panels/wacom/cc-wacom-stylus-page.h | 2 ++
 2 files changed, 8 insertions(+)

commit 21ab18a70f3e8e31aede22e6dbc321c3e5df3e22
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 20 16:50:28 2012 +0100

    wacom: Change label for display mapping button

 panels/wacom/gnome-wacom-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 43d30f77dd4b9197f9058c4c15f7baa3ea9da820
Author: Sjoerd Simons <sjoerd@luon.net>
Date:   Sun Oct 30 11:16:22 2011 +0100

    Include cheese flags for build with webcam support

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 371fef61c0c40edc9295612cc8a8ad5acd80ac6d
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Feb 16 19:37:09 2012 +0100

    wacom: split the styli controls into a separate GtkGrid
    
    Like we did for the tablet page.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-stylus-page.c |  24 +--
 panels/wacom/wacom-stylus-page.ui   | 406 ++++++++++++++++++------------------
 2 files changed, 219 insertions(+), 211 deletions(-)

commit 790bbbdeb3cfa4c8ecd3ffa8c4f26209403bbeb9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Feb 16 19:35:39 2012 +0100

    wacom: realign the lines on the styli images to the controls
    
    We want them to line up with a 10px padding between the controls.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/wacom-stylus-airbrush.svg | 20 ++++++++++----------
 panels/wacom/wacom-stylus-art-pen.svg  | 22 +++++++++++-----------
 panels/wacom/wacom-stylus-classic.svg  | 24 ++++++++++++------------
 panels/wacom/wacom-stylus-inking.svg   | 20 ++++++++++----------
 panels/wacom/wacom-stylus.svg          | 26 +++++++++++++-------------
 5 files changed, 56 insertions(+), 56 deletions(-)

commit 4ba77224bd6b8a3d7274b834f0599ff44e6ad0c7
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Feb 16 08:48:10 2012 +0100

    wacom: redo spacings in the tablet UI page
    
    Use column and row spacing on the containing GtkGrid instead of setting
    margins on each widget.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/gnome-wacom-properties.ui | 27 +++++++++++----------------
 1 file changed, 11 insertions(+), 16 deletions(-)

commit d451559391003a2b4117ed9dd09dd38d16fc4eb9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Feb 16 08:46:20 2012 +0100

    wacom: align the navigation button box to the end of their row
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-page.c        | 2 ++
 panels/wacom/cc-wacom-stylus-page.c | 2 ++
 2 files changed, 4 insertions(+)

commit 41e55372a942e22e2d06aa318a95a91e0549eaf3
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Feb 16 00:36:17 2012 -0500

    wacom: split the main page controls in a separate GtkGrid
    
    The effect we want to achieve is to have the model name and button box
    padded 16px to the left of the tablet controls below.
    Pack all the tablet controls in a separate GtkGrid, so we can just set a
    margin on that and offset its contents from the model above.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-page.c           |   6 +-
 panels/wacom/gnome-wacom-properties.ui | 232 +++++++++++++++++----------------
 2 files changed, 127 insertions(+), 111 deletions(-)

commit 30c073ffee724526b563d0d7925dc5b668c432a3
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Feb 16 18:33:01 2012 +0100

    keyboard: Allocate required space for replacing a key shortcut
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670236

 panels/keyboard/cc-keyboard-item.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit bac76fa3876bfe5b073a64ebec7592abc9c99f61
Author: Javier Jardón <jjardon@gnome.org>
Date:   Fri Feb 17 13:42:36 2012 +0000

    power: register for "g-properties-changed" rather than "g-signal"
    
    This is due this change in gnome-settings-daemon:
    http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=07b1ed63016f1725be251fa6ce8c15e0498539b5
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670285

 panels/power/cc-power-panel.c | 34 +++++++++++++++-------------------
 1 file changed, 15 insertions(+), 19 deletions(-)

commit f7643a3e379b9fdde3e374d2f2edf39960480884
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Mon Feb 20 10:54:36 2012 +0100

    Updated Serbian translation

 po/sr.po       | 108 ++++++++++++++++++++++++++++-----------------------------
 po/sr@latin.po | 108 ++++++++++++++++++++++++++++-----------------------------
 2 files changed, 108 insertions(+), 108 deletions(-)

commit a9d42502e8608aa46c5fa5ff056a459f1ef2c969
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 19 19:55:39 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 609 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 407 insertions(+), 202 deletions(-)

commit be88bc1fd3bcf95f65bba69d2350fdb1dd7060a5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 19 16:12:30 2012 +0100

    keyboard: Shift+unmodified key isn't good enough
    
    And it stops upper-case unmodified (or lightly modified) keys from
    being captured and unusable for other purposes.

 panels/keyboard/keyboard-shortcuts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a13a85b7bbc2478dfc0d917f3e4a7bef3881adab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 19 16:05:27 2012 +0100

    wacom: Coding style fixes

 panels/wacom/cc-wacom-page.c | 32 ++++++++++++++++++++------------
 1 file changed, 20 insertions(+), 12 deletions(-)

commit 3d3f949f376af1596f73338e60d125683df66523
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 19 16:03:31 2012 +0100

    keyboard: Remove unused "block_accels" work-around

 panels/keyboard/keyboard-shortcuts.c | 62 ++++++++----------------------------
 1 file changed, 13 insertions(+), 49 deletions(-)

commit 71e4ed4312b9f9cb80ba504200d3012c055228df
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Sun Feb 19 12:22:14 2012 +0200

    [l10n] Updated Estonian translation

 po/et.po | 174 +++++++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 143 insertions(+), 31 deletions(-)

commit f8bac98f82ef5627a1e9cda3e9e856c01707d4f9
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Sun Feb 19 07:01:05 2012 +0900

    [l10n] Update Japanese translation

 po/ja.po | 589 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 294 insertions(+), 295 deletions(-)

commit 82ac9b1bb3e39f20a7020959a6ea7f49b5867f75
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 18 19:37:45 2012 +0100

    Updated Spanish translation

 po/es.po | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

commit e0a55d2216a7a07d79242d5d1d89f1456285bdd4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 18 16:26:53 2012 +0100

    wacom: Make edition match that in the keyboard panel

 panels/wacom/cc-wacom-page.c | 39 ++++++---------------------------------
 1 file changed, 6 insertions(+), 33 deletions(-)

commit 0965294afd43da8c299eb92b44a4567b2ddeb537
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 18 16:21:28 2012 +0100

    keyboard: Make clicking on description edit the shortcut
    
    As it used it, and broke when we moved to GNOME 3.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661527

 panels/keyboard/keyboard-shortcuts.c | 41 ++++++------------------------------
 1 file changed, 7 insertions(+), 34 deletions(-)

commit a3a96fa0f040330c5b77a5ca09dab04e4d4b5ea7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 18 14:43:04 2012 +0100

    wacom: Fix label for hard-coded and disabled buttons

 panels/wacom/cc-wacom-page.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 46aaf85c19bdd29ffe4b159e9cc4d041d7ac3f82
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Feb 18 11:06:04 2012 +0200

    Updated Hebrew translation.

 po/he.po | 789 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 503 insertions(+), 286 deletions(-)

commit 98b1e463dc650002a62b7bee5e9940b002564133
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:   Sat Feb 18 08:45:36 2012 +0100

    Updated Esperanto translation

 po/eo.po | 602 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 306 insertions(+), 296 deletions(-)

commit 21f3cc9545d94084b3233650ba727112790ac658
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:   Sat Feb 18 07:29:22 2012 +0100

    Updated Esperanto translation

 po/eo.po | 6234 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3570 insertions(+), 2664 deletions(-)

commit 4f4b17de5da23b90c15bbe3988352bca7d3c1aaf
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Feb 18 08:43:05 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 763 +++++++++++++++++++++++++++++++++++++++---------------------
 po/zh_TW.po | 763 +++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 986 insertions(+), 540 deletions(-)

commit dafd76378a4d8cf3b85a9e6da9c1ff062029ba15
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 17 17:07:59 2012 +0100

    build: Bump dependency for gnome-settings-daemon
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670158

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 177708bcc8b80dbfa334668cdfde911f7a6e2682
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Feb 17 15:07:48 2012 +0100

    l10n: Updated Italian translation

 po/it.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 74f29490225a59ce5a0b0f94b2c27ada5cdf1cc3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 17 12:46:45 2012 +0100

    shell: Fix cheese related crashers
    
    By initialising threading in X11. It's like Totem 10 years ago
    (except that libXi doesn't deadlock).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669834

 configure.ac           | 2 +-
 shell/control-center.c | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 24af6576da5c76375e1a22dc7037e10eaf927791
Author: Allan Day <allanpday@gmail.com>
Date:   Fri Feb 17 11:01:21 2012 +0100

    power - fix text flow
    
    The labels on the left should be more prominent so they lead
    users into the dialog. Make them dark and the upper labels smaller.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670269

 panels/power/cc-power-panel.c |  2 +-
 panels/power/power.ui         | 12 ++++++------
 2 files changed, 7 insertions(+), 7 deletions(-)

commit 12745222ee0bd026e01701c619fcb589640aa567
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Feb 17 10:32:04 2012 +0100

    Updated Spanish translation

 po/es.po | 46 +++++++++++++++++++++++++++-------------------
 1 file changed, 27 insertions(+), 19 deletions(-)

commit 889ede3d0955755b8417717d428a79679d3d19cf
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu Feb 16 23:30:11 2012 +0100

    l10n: Updated Italian translation

 po/it.po | 6589 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3629 insertions(+), 2960 deletions(-)

commit 4738872e04614fabba75a71528a1ecb1a7cbe84b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 19:31:37 2012 +0100

    wacom: Style fixes for signal handlers

 panels/wacom/cc-wacom-mapping-panel.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 05ba7514badfb201a2f126c21f72acd407469fde
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 19:28:08 2012 +0100

    wacom: Invert the meaning of the checkbox
    
    So that we can disable the combobox if the checkbutton is disabled,
    rather than having inverted meaning, which can be very confusing.
    
    Also make sure that the combobox has the correct state if we
    have an unconfigured tablet.

 panels/wacom/cc-wacom-mapping-panel.c | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

commit 6c5276b0613ea00f6b71e6353d5cbb05ae1c2ba8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 19:07:17 2012 +0100

    wacom: Put the whole desktop checkbox first

 panels/wacom/cc-wacom-mapping-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 784b1faf7ef2c232a932488c01a49ad8688719db
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 19:06:10 2012 +0100

    wacom: Make the label sensitive (or not) too
    
    When making the combo box unsensitive, disable the label too.
    Also make sure that both widgets are correctly made
    sensitive again when we have monitors in the drop-down.

 panels/wacom/cc-wacom-mapping-panel.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

commit 15384a1ab834b352036536d2d05aa0a16c0add82
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 18:55:28 2012 +0100

    wacom: Avoid warnings with default settings
    
    By default, the tablets are mapped to the first monitor (unless
    they're screen tablets). I think. Maybe. Let me know if I'm wrong.

 panels/wacom/cc-wacom-mapping-panel.c | 40 +++++++++++++++++++++--------------
 1 file changed, 24 insertions(+), 16 deletions(-)

commit f167307efe1831fdb1faab2dacb4df668f6084e6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 18:54:01 2012 +0100

    wacom: Fix memleak
    
    The list store was leaked as the combobox is supposed
    to be the only one holding a reference.

 panels/wacom/cc-wacom-mapping-panel.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit fda8864aa66a58b4003a6c458f5bd6e6652adb42
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 18:51:26 2012 +0100

    wacom: Fix declaration of functions with no args

 panels/wacom/cc-wacom-mapping-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 69584d5b1766e9cd457453fc9a6b3ceb4f84cf53
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 18:48:02 2012 +0100

    wacom: Use symbolic names for columns

 panels/wacom/cc-wacom-mapping-panel.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit 5743f2098c9eb9b7bae8cca6b10b0e8c983c683b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 17:24:55 2012 +0100

    wacom: Implement basic display mapping dialogue

 panels/wacom/cc-wacom-page.c | 50 +++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 49 insertions(+), 1 deletion(-)

commit 2d0bf044e5a4cd32984a28e8f3c42953c1d717e7
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Fri Jan 20 15:08:27 2012 -0800

    wacom: Barebones mapping panel implementation
    
    Provides a barebones implementation of a panel for selecting the
    display to map a tablet to. This implementation uses a combo box
    instead of the Display-panel-like UI specified by the mockup since
    my Cairo and GTK-fu are weak.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668546

 panels/wacom/Makefile.am              |   4 +
 panels/wacom/cc-wacom-mapping-panel.c | 283 ++++++++++++++++++++++++++++++++++
 panels/wacom/cc-wacom-mapping-panel.h |  77 +++++++++
 3 files changed, 364 insertions(+)

commit 2bb25a7cd9e8cc5eb93c173af7fcdea7f075b3a0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 16:38:21 2012 +0100

    wacom: Add "Display Mapping" button
    
    Non-operational

 panels/wacom/cc-wacom-page.c           |  1 +
 panels/wacom/gnome-wacom-properties.ui | 13 ++++++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit d7bf7f8ed9cf5bb28fa5fd64310f672fbb19a132
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 17:24:43 2012 +0100

    wacom: Remove extraneous linefeed

 panels/wacom/cc-wacom-page.c | 1 -
 1 file changed, 1 deletion(-)

commit 030513fbe14dbbd589f0efa87a23717299fc55dc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 16 17:28:33 2012 +0100

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 36 +++++++++++++++++++++---------------
 1 file changed, 21 insertions(+), 15 deletions(-)

commit ff43d2e1ed1e624a102d8601693b1d1be2bfcb4c
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Feb 16 15:12:57 2012 +0100

    Updated Galician translations

 po/gl.po | 45 ++++++++++++++++++++++-----------------------
 1 file changed, 22 insertions(+), 23 deletions(-)

commit c1922ea6fb167d6c3f17be18491a6d7c4a19f325
Author: Automatic Mirroring <aronmalache@gmail.com>
Date:   Thu Feb 16 10:29:08 2012 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 3277 ++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1790 insertions(+), 1487 deletions(-)

commit 2a155959d9b218f6bd6299b45d68e0b151891166
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Wed Feb 15 22:04:45 2012 +0300

    Updated Belarusian translation.

 po/be.po | 272 +++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 194 insertions(+), 78 deletions(-)

commit 603341a984a82c0548f2d2509c0860dac78c3cfe
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 15 16:58:53 2012 +0000

    power: Re-fix the right hand side combobox alignment

 panels/power/power.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 9ee9ad0b31ef9423a19ba0a6b4d4ea5b9e6b1005
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 15 16:56:00 2012 +0000

    power: Unbold the link to 'Screen Settings'

 panels/power/cc-power-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4a3e827d56564ad51bf097be2655bfafa9408641
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Feb 15 18:10:23 2012 +0100

    Updated Spanish translation

 po/es.po | 47 +++++++++++++++--------------------------------
 1 file changed, 15 insertions(+), 32 deletions(-)

commit 240faca3e0ad7c26b3bb5edb68e0dc55a2e6bd0d
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Feb 14 18:05:34 2012 -0500

    power: hide "When power is critical" elements when there's no batteries
    
    As for the mockups
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670107

 panels/power/cc-power-panel.c | 2 ++
 panels/power/power.ui         | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 02e5cb7f7043376365b25dea1dcb698c63d94eb9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Feb 14 17:58:24 2012 -0500

    power: port main box to GtkGrid
    
    Instead of a box of boxes; this way we can easily align labels without
    an additional GtkSizeGroup using halign.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670107

 panels/power/cc-power-panel.c |  10 +-
 panels/power/power.ui         | 233 +++++++++++++++---------------------------
 2 files changed, 83 insertions(+), 160 deletions(-)

commit 4093f9eae49ae909afdff84fde43f3f0b0617833
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Feb 14 17:39:19 2012 -0500

    power: set dim-label style classes on left labels
    
    To be consistent with other panels.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670107

 panels/power/power.ui | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 8fdc455b2171e08d0a16a54e0ae5a039f0311dc7
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Feb 15 16:30:26 2012 +0100

    printers: Check length of markers-related arrays
    
    Prevent g-c-c from crashing because of different lengths of
    arrays in which are informations about markers names, levels,
    types and colors (rhbz#790430).

 panels/printers/cc-printers-panel.c | 105 +++++++++++++++++++-----------------
 1 file changed, 55 insertions(+), 50 deletions(-)

commit 325af6a468ec89e7237c0d175095d866bf5b2dea
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Wed Feb 15 14:05:19 2012 +0200

    [l10n]Updated Turkish translation

 po/tr.po | 3325 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1850 insertions(+), 1475 deletions(-)

commit 9f4e2ef49cbc15757da68a373a5c851b4b421feb
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Feb 15 13:00:48 2012 +0100

    Updated Spanish translation

 po/es.po | 308 ++++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 225 insertions(+), 83 deletions(-)

commit ae6e4040acf96ca30b5494da0d978c3e8be9849f
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 15 10:07:45 2012 +0000

    shell: Use the '@borders' CSS style for the CcStrengthBar outline

 shell/cc-strength-bar.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit a0e29353761f73de17bb3f899c4bbb387d7002ac
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 15 09:58:07 2012 +0000

    power: Fix up the header labels to be aligned with the comboboxes
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=670121

 panels/power/power.ui | 2 ++
 1 file changed, 2 insertions(+)

commit eb7c08409fccc9f663afa3a7a0685ee41b566faa
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Wed Feb 15 10:50:53 2012 +0100

    Updated Serbian translation

 po/sr.po       | 419 +++++++++++++++++++++++++++++++--------------------------
 po/sr@latin.po | 419 +++++++++++++++++++++++++++++++--------------------------
 2 files changed, 450 insertions(+), 388 deletions(-)

commit c58e5e802aad3c6def2251abe672953a04eee020
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Feb 14 21:47:09 2012 +0100

    Updated Galician translations

 po/gl.po | 549 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 347 insertions(+), 202 deletions(-)

commit 55c1a44dae039fdbc2d4b4e89766e22464bc933a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:37:28 2012 +0000

    wacom: Implement closing the mapping dialogue

 panels/wacom/cc-wacom-page.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 048af8504d06ca64ad4f3c52e84220eedaa53dd4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:34:10 2012 +0000

    po: Add new Wacom file

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 3983a44d2962711b98f5f5e027c1e491090c9a7a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:33:23 2012 +0000

    wacom: Make button mapping window bigger

 panels/wacom/button-mapping.ui | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 27ea364ea7baea9361564bda4b10c991b5705852
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:21:59 2012 +0000

    wacom: Hide elevator buttons until we can handle them

 panels/wacom/cc-wacom-page.c | 5 +++++
 1 file changed, 5 insertions(+)

commit f100c984885a4c4650b61e39b4d493e679436893
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:19:16 2012 +0000

    wacom: Implement saving keyboard shortcuts

 panels/wacom/cc-wacom-page.c | 315 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 309 insertions(+), 6 deletions(-)

commit 472317bc10803f746c8aed15a5354c8788228598
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 18:31:12 2012 +0000

    wacom: Update test-wacom for API change

 panels/wacom/test-wacom.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 9df8c7cf62caa1b59672a9f3025016769bb099df
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 18:30:34 2012 +0000

    wacom: Add "pad" argument to cc_wacom_page_new()

 panels/wacom/cc-wacom-page.c  | 11 +++++++++--
 panels/wacom/cc-wacom-page.h  |  3 ++-
 panels/wacom/cc-wacom-panel.c |  6 +++++-
 3 files changed, 16 insertions(+), 4 deletions(-)

commit c85f53a80104ce2ba7582803495e66ff2e26d756
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 18:46:29 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 156 ++++++++++++++++++++++++++++++++++++++--
 panels/wacom/gsd-wacom-device.h |   7 ++
 2 files changed, 158 insertions(+), 5 deletions(-)

commit cad6f350cae692890b765720dcdef528d20c4c9c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:18:40 2012 +0000

    keyboard: Don't set the "text" property
    
    It won't be used, we're using a function to set the text a line below.

 panels/keyboard/keyboard-shortcuts.c | 1 -
 1 file changed, 1 deletion(-)

commit df372b56fea31e3f6fb9a96963f375fd09c387f7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 19:18:18 2012 +0000

    keyboard: We don't have a tree for the shortcuts

 panels/keyboard/keyboard-shortcuts.c | 10 ----------
 1 file changed, 10 deletions(-)

commit 31c9d27b51f82222311d2a9242b572ad749db1f7
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 14 16:38:45 2012 +0000

    power: Expand out the combo-boxes to align to the progress bar
    
    This makes the UI match the latest mockup.

 panels/power/power.ui | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

commit cef4e593bbc4f9b9d3e3f3efc33d4d9bbd079312
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 14 12:48:10 2012 +0000

    power: Use CcStrengthBar for battery level to get closer to the new design

 panels/power/Makefile.am      |  1 +
 panels/power/cc-power-panel.c | 32 ++++++++++++++++++++++----------
 panels/power/power.ui         |  1 -
 3 files changed, 23 insertions(+), 11 deletions(-)

commit 0ea3d7dd3cd9fdbb6cb29130059d5cd2172bd596
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 14 12:47:26 2012 +0000

    power: Fix up the power glade file to minimize merge conflicts

 panels/power/power.ui | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

commit ee36b0df91323dc8e9e99ec798ccc09e1df4f00a
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Oct 19 16:26:23 2011 +0100

    power: Make the panel match the new mockups

 panels/power/cc-power-panel.c | 626 ++++++++++++++++++++++++++++++++++++------
 panels/power/power.ui         | 165 ++++++++---
 2 files changed, 666 insertions(+), 125 deletions(-)

commit ccf5d0028c558134ee9dd53c7238fa4789f46271
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 14 16:56:23 2012 +0000

    user-accounts: Switch from UmStrengthBar to CcStrengthBar

 panels/user-accounts/Makefile.am             |   3 +-
 panels/user-accounts/data/password-dialog.ui |   2 +-
 panels/user-accounts/um-password-dialog.c    |   4 +-
 panels/user-accounts/um-strength-bar.c       | 264 ---------------------------
 panels/user-accounts/um-strength-bar.h       |  62 -------
 panels/user-accounts/um-user-panel.c         |   4 +-
 6 files changed, 6 insertions(+), 333 deletions(-)

commit 5d1b2d60a4c4bb9768ad2134ac4063d3b689ecc9
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 14 16:47:59 2012 +0000

    Add CcStrengthBar to display a smaller and neater progress bar
    
    This will be used in the power and user-accounts panels.

 shell/Makefile.am       |   2 +
 shell/cc-strength-bar.c | 388 ++++++++++++++++++++++++++++++++++++++++++++++++
 shell/cc-strength-bar.h |  69 +++++++++
 3 files changed, 459 insertions(+)

commit 16b872c8dd5812eb11c5f15ac7d1bbf2713bd334
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 15:51:54 2012 +0000

    wacom: Add stub button mapping dialogue

 panels/wacom/Makefile.am               |   2 +-
 panels/wacom/button-mapping.ui         | 148 +++++++++++++++++++++++++++++++++
 panels/wacom/cc-wacom-page.c           |  31 +++++++
 panels/wacom/gnome-wacom-properties.ui |   4 +-
 po/POTFILES.in                         |   1 +
 5 files changed, 183 insertions(+), 3 deletions(-)

commit 824b3e70bcff5fedab2211d49fac4c0151fbe273
Author: Alexandre Rostovtsev <tetromino@gentoo.org>
Date:   Tue Feb 14 05:07:58 2012 -0500

    datetime: respect LINGUAS for timezone translations
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670051

 panels/datetime/po-timezones/Makefile.am | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit d70bd4b82a58a8976c7fa7d341329c09942f53c2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 14 10:20:55 2012 +0000

    datetime: Fix crashers when systemd is unavailable
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670016

 panels/datetime/cc-datetime-panel.c | 29 +++++++++++++++++++----------
 1 file changed, 19 insertions(+), 10 deletions(-)

commit 9dbc5627775ef37d853eb07f24f6a0bae6d08ecc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Feb 13 23:19:27 2012 -0500

    Printers: Fix more floating variant madness
    
    Floating references were _such_ a good idea...

 panels/printers/pp-new-printer-dialog.c | 79 +++++++++------------------------
 1 file changed, 22 insertions(+), 57 deletions(-)

commit 639d85e345846e2529694c2fd48bf3e5b8e665e6
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Mon Feb 13 11:43:01 2012 +0100

    Updated Serbian translation

 po/sr.po       | 6040 +++++++++++++++++++++++++++++++-------------------------
 po/sr@latin.po | 6040 +++++++++++++++++++++++++++++++-------------------------
 2 files changed, 6690 insertions(+), 5390 deletions(-)

commit 63887835b320f718f1da356cb6a5b5694254bf29
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Sun Feb 12 19:45:40 2012 +0100

    [l10n] Updated Kazakh translation

 po/kk.po | 6125 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 3706 insertions(+), 2419 deletions(-)

commit 82907bbe699afe904282ef351e3881ce345a1617
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Feb 12 13:21:38 2012 +0100

    Updated Spanish translation

 po/es.po | 53 ++++++++++++++++++++++++++---------------------------
 1 file changed, 26 insertions(+), 27 deletions(-)

commit b43b96dc9e7b76d85fd606c5a5ebf460f2ef987b
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sat Feb 11 22:45:23 2012 +0300

    Updated Belarusian translation.

 po/be.po | 350 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 214 insertions(+), 136 deletions(-)

commit 010a2e60c0852fc7447560e8b3783e91581aad19
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Thu Feb 9 14:19:16 2012 +0200

    [l10n] Updated Estonian translation

 po/et.po | 4079 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 2313 insertions(+), 1766 deletions(-)

commit 795f623a0255384a5da750b7df576b02573fe537
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Feb 9 12:33:44 2012 +0100

    Updated Spanish translation

 po/es.po | 279 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 147 insertions(+), 132 deletions(-)

commit 0025f2db6332297fc04c3c414be0a3469ae6e9e7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 8 17:04:38 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 49 +++++++++++++++++++++++++++--------------
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 34 insertions(+), 16 deletions(-)

commit 19f6de2ec40447545ce4b984ddcf993803b7b8ec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 8 16:16:15 2012 +0000

    shell: Force a pixel size for the "All Settings" button
    
    Because it looks bad when scaled "slightly".

 shell/shell.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c162258d2316ad731bde5f9ac7801b1ee4c15ff7
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 14:21:48 2012 +0000

    network: Make the bottom button alignments match the mockups

 panels/network/network.ui | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit cd48bba55549e5cb412e3428b1b24fa48b96c13a
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 14:20:18 2012 +0000

    network: Remove the unused unlock button
    
    It's wrecking the bottom padding alignment and is in the header in the mockups...

 panels/network/cc-network-panel.c | 10 ----------
 panels/network/network.ui         | 26 --------------------------
 2 files changed, 36 deletions(-)

commit 552d994300a454cbee59647c2a143736c55a48fd
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 14:10:56 2012 +0000

    network: rework the UI file to be more acceptable to glade

 panels/network/network.ui | 84 ++++++++++++++++++++---------------------------
 1 file changed, 36 insertions(+), 48 deletions(-)

commit 7a1472e8b5a8f611fadb5a7501face5392b03749
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 13:46:57 2012 +0000

    network: use some new property names in the UI file
    
    I want to reduce the diffstat noise with new versions of glade.

 panels/network/network.ui | 148 ++++++++++++++++++++++++++++++----------------
 1 file changed, 97 insertions(+), 51 deletions(-)

commit a34184910a28cf58aa995c8aaf5a053928061e77
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 13:43:02 2012 +0000

    network: Add the 'Forget Network' button in the wireless page

 panels/network/cc-network-panel.c | 102 ++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         |  23 +++++++--
 2 files changed, 121 insertions(+), 4 deletions(-)

commit 32013533b174e7da842b85a0cd57f448599815e7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 8 13:12:13 2012 +0000

    user-accounts: Fixes for the fingerprint GDBus port

 panels/user-accounts/um-fingerprint-dialog.c | 28 +++++++++++++++++-----------
 1 file changed, 17 insertions(+), 11 deletions(-)

commit 98ebfcb1af7bd30a2bef79078524347cd92612d9
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 10:51:23 2012 +1100

    user-accounts: Port fingerprint code to GDBus
    
    https://bugzilla.gnome.org/show_bug.cgi?id=622875

 configure.ac                                 |   2 +-
 panels/user-accounts/Makefile.am             |  12 --
 panels/user-accounts/fprintd-marshal.list    |   1 -
 panels/user-accounts/um-fingerprint-dialog.c | 255 ++++++++++++++++++++-------
 4 files changed, 193 insertions(+), 77 deletions(-)

commit bbef7329135d3ad51bc62b4990b66570efa115bb
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 10:50:09 2012 +1100

    user-accounts: Port to GDBus (excluding fingerprint code)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=622875

 panels/user-accounts/um-user-manager.c | 194 +++++++++--------
 panels/user-accounts/um-user-manager.h |   3 +-
 panels/user-accounts/um-user-panel.c   |   6 -
 panels/user-accounts/um-user.c         | 384 +++++++++++++++------------------
 4 files changed, 288 insertions(+), 299 deletions(-)

commit 01f7545df220be5e1b349a1f2b5c58e3b9057fa2
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 12:21:35 2012 +1100

    sound: Stop using deprecated gtk_hscale_new
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669622

 panels/sound/gvc-balance-bar.c | 2 +-
 panels/sound/gvc-channel-bar.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 2f6adb1519e6852053040cecbf5df585d27e873b
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 12:16:27 2012 +1100

    shell: Stop using deprecated gtk_vbox_new
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669621

 shell/cc-shell-category-view.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a1b60db059278b86bbe3633f85a78d95ce009a2f
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 12:15:56 2012 +1100

    region: Stop using deprecated gtk_vbox_new
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669620

 panels/region/gnome-region-panel-xkbot.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit fb88ac92ba81a996903b195fc3fd078837ab1338
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 12:11:32 2012 +1100

    sound: Stop using deprecated gtk_hbox_new/gtk_vbox_new
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669619

 panels/sound/gvc-balance-bar.c        |  6 +++---
 panels/sound/gvc-channel-bar.c        | 12 ++++++------
 panels/sound/gvc-combo-box.c          |  6 +++---
 panels/sound/gvc-mixer-dialog.c       | 24 ++++++++++++------------
 panels/sound/gvc-speaker-test.c       |  4 ++--
 panels/sound/gvc-stream-status-icon.c |  2 +-
 6 files changed, 27 insertions(+), 27 deletions(-)

commit 64bbbd69995a3685137bc1f6c28340f471815166
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 13:51:30 2012 +1100

    shell: Fix compile warnings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669627

 shell/cc-shell.c       | 3 +--
 shell/control-center.c | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

commit 9ad6edadf5a8931143e16cd24e754ea57893dc26
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Feb 8 13:41:23 2012 +1100

    online-accounts: Replace deprecated GtkTable with GtkGrid (GOA code must continue to use GtkTable until GOA is updated)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669626

 panels/online-accounts/cc-online-accounts-panel.c | 21 ++++++++-------------
 1 file changed, 8 insertions(+), 13 deletions(-)

commit 8c3b0bb995daebbc93eee6e0c2cd3367944b2faf
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 11:52:59 2012 +0000

    color: Do not set the profile default using a syncronous call
    
    Doing this async means the UI doesn't block waiting for it to complete.

 panels/color/cc-color-panel.c | 56 ++++++++++++++++++++++++++-----------------
 1 file changed, 34 insertions(+), 22 deletions(-)

commit 545d700142e0693db4317f20673715983d8722ab
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Feb 8 11:51:30 2012 +0000

    color: Do not print '(null)' for virtual profiles
    
    Virtual profiles (e.g. from the PPD for printers) don't have filenames, and so
    fall back to the ID for debugging.
    
    NOTE: this warning uncovered a bug in libcolord, which is fixed by commit
    876d961665d01f8c37094fe85b0130850a008051 in the colord project.

 panels/color/cc-color-panel.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

commit e10fabd9928dc9ffccdffb982e7b30871c224845
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Feb 7 20:19:50 2012 +0100

    Updated Galician translations

 po/gl.po | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 77 insertions(+), 12 deletions(-)

commit 072460595702a0bd48c95b5d96ee3d55b04d7312
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 7 18:29:35 2012 +0000

    3.3.5

 NEWS         | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 50 insertions(+), 1 deletion(-)

commit 86378a777292c0e12080c56d252139ae0ec4925b
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Feb 7 18:26:59 2012 +0100

    Updated Spanish translation

 po/es.po | 2419 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1243 insertions(+), 1176 deletions(-)

commit 558c658c97523caf5ea0a445d45c3b56525e2a1a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 7 15:16:39 2012 +0000

    wacom: Update libwacom dependency

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9b2d709dec1c1e9d4c1f8c32af29601da8b7ee56
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 7 15:16:23 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c |   6 +-
 panels/wacom/gsd-wacom-device.c | 269 +++++++++++++++++++++++++++++++++++++++-
 panels/wacom/gsd-wacom-device.h |  28 ++++-
 3 files changed, 290 insertions(+), 13 deletions(-)

commit 3e94d2c0065207ba011748a024b6d9403d3b1fd9
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Feb 5 23:37:27 2012 +0100

    Updated Galician translations

 po/gl.po | 340 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 184 insertions(+), 156 deletions(-)

commit f6067a7cdd04eab22d2ee5927c2a97a571345036
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Feb 5 12:38:40 2012 +0100

    Updated Spanish translation

 po/es.po | 141 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 71 insertions(+), 70 deletions(-)

commit f7dbbdc8924fd076a215c224d54fbd31adb90d2f
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Feb 2 20:53:23 2012 +0100

    Updated Slovenian translation

 po/sl.po | 136 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 70 insertions(+), 66 deletions(-)

commit 8778ff8f242ba01a32347a403d02e9908605ebce
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 2 18:30:20 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 136 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 70 insertions(+), 66 deletions(-)

commit d5cda7651c4ad193ce989e0221956793cecf9c09
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 31 17:34:56 2012 +0000

    wacom: Remove italics
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669070

 panels/wacom/wacom-stylus-page.ui | 4 ----
 1 file changed, 4 deletions(-)

commit aeb1e4741121ad53a61b95eae0ec61cd0273eb97
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 31 17:34:14 2012 +0000

    mouse: Remove italics
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669070

 panels/mouse/gnome-mouse-properties.ui | 5 -----
 1 file changed, 5 deletions(-)

commit 2d3fabeeb3a5ad309c580a226bf106b77ac6aae0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 31 17:30:39 2012 +0000

    keyboard: Remove italics
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669070

 panels/keyboard/gnome-keyboard-panel.ui | 6 ------
 1 file changed, 6 deletions(-)

commit ca1e72c9a32667bceca44dd2d1e855a9672ed930
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 31 14:20:07 2012 +0000

    wacom: Ignore puck devices

 panels/wacom/cc-wacom-page.c | 4 ++++
 1 file changed, 4 insertions(+)

commit ef0d463c4e2cece778611460ffa7989c8efc4f90
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 31 14:10:48 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 10 ++++++----
 panels/wacom/gsd-wacom-device.h |  3 ++-
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 155456d2963ca5403b77f4fc590cf7914195d84b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 31 14:12:06 2012 +0000

    wacom: Fix updating common files from gsd

 panels/wacom/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7d8bd5f525eff3d083dd56f7a5bb33542c442d46
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Tue Jan 31 14:29:09 2012 +0200

    Updated Bulgarian translation

 po/bg.po | 328 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 178 insertions(+), 150 deletions(-)

commit 5ea85b9d61879fee8c555f17f396c631520493d0
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jan 30 18:28:59 2012 +0100

    Updated Spanish translation

 po/es.po | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 90ef825d60c8ddb0e928b516ab15966f1742e496
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 17:00:00 2012 +0000

    wacom: Add more padding between sections

 panels/wacom/cc-wacom-stylus-page.c | 2 ++
 1 file changed, 2 insertions(+)

commit 81ad77908417ffdcdba0cd735c0a198f7119403a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:50:03 2012 +0000

    wacom: Fix tablet layout problems for "screen" type

 panels/wacom/cc-wacom-page.c           | 85 ++++++++++++++++++++++++++++------
 panels/wacom/gnome-wacom-properties.ui |  5 +-
 2 files changed, 75 insertions(+), 15 deletions(-)

commit fd54ab6e5d4257f6ec509003143f21af709d0470
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:37:13 2012 +0000

    wacom: Expand the button box horizontally

 panels/wacom/gnome-wacom-properties.ui | 1 +
 1 file changed, 1 insertion(+)

commit 9cb225c466359b6cba769059de8d727244fb3883
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:37:50 2012 +0000

    wacom: Only 3 columns for the tablet section

 panels/wacom/gnome-wacom-properties.ui | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit f3bd46f7a5d04a6f95c1bc834c4da758cfa2d8bd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:28:25 2012 +0000

    wacom: Stylus section only has 3 columns

 panels/wacom/wacom-stylus-page.ui | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit decc5cf668067c2898cb90e65919442e78a3fbe5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:27:49 2012 +0000

    wacom: Make .ui files load the images properly
    
    So it's easier to see what it looks like in glade.

 panels/wacom/Makefile.am               | 3 +--
 panels/wacom/cc-wacom-page.c           | 2 +-
 panels/wacom/cc-wacom-stylus-page.c    | 2 +-
 panels/wacom/gnome-wacom-properties.ui | 2 +-
 panels/wacom/wacom-stylus-page.ui      | 2 +-
 5 files changed, 5 insertions(+), 6 deletions(-)

commit bac6352549daf488bce17b29cbd958f5c8fc337f
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Mon Jan 30 19:38:43 2012 +0300

    Updated Belarusian translation.

 po/be.po | 2745 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1395 insertions(+), 1350 deletions(-)

commit eb82ee2205d6550215eb1254348f8d4f993e1e73
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:11:10 2012 +0000

    wacom: Make images have a width of 1
    
    So they're the same width as the navigation buttons

 panels/wacom/gnome-wacom-properties.ui | 2 +-
 panels/wacom/wacom-stylus-page.ui      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 485dc70e282c5e71c7dfeec421fdfa545526f7e9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:08:44 2012 +0000

    wacom: Have a label even when we have 1 page
    
    To make the layout work even when hidden.

 panels/wacom/cc-wacom-nav-button.c | 35 +++++++++++++++++------------------
 1 file changed, 17 insertions(+), 18 deletions(-)

commit 32f0b08c5cb0a1e0bc276037e185a2c8cbfb1c71
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:05:41 2012 +0000

    wacom: Widen the tablet images
    
    So that they are the same width as the styli, and we avoid
    layout problems this way.

 panels/wacom/wacom-tablet-cintiq.svg | 2 +-
 panels/wacom/wacom-tablet-pc.svg     | 2 +-
 panels/wacom/wacom-tablet.svg        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 7cb5d85595453ec5fed7158244a7d914fd90dc6c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 16:02:50 2012 +0000

    wacom: Install the new stylus artwork

 panels/wacom/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 20308f1c58cdcae8b81aea3b1f40ad305afd8321
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 15:59:46 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)

commit 87005e3f75211a1a20c0b8214676c23a766b2bdc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 15:23:28 2012 +0000

    wacom: Fix excessive top padding
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668881

 panels/wacom/cc-wacom-nav-button.c | 5 -----
 panels/wacom/cc-wacom-panel.c      | 8 +++++++-
 2 files changed, 7 insertions(+), 6 deletions(-)

commit 2c57a2896cfa41282c7823f966be9c8881cc5338
Author: Antoine Jacoutot <ajacoutot@gnome.org>
Date:   Mon Jan 30 14:26:04 2012 +0100

    sound: fix a couple of implicit declarations
    
    Include math.h to prevent implicit/incompatible declarations on round(3).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=669025

 panels/sound/gvc-mixer-dialog.c       | 1 +
 panels/sound/gvc-stream-status-icon.c | 1 +
 2 files changed, 2 insertions(+)

commit dc7abc26c06329d07cba7da4cdcce9c7d251dd81
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 30 11:16:54 2012 +0000

    info: Remove unnecessary and non-portable include
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668946

 panels/info/cc-info-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit be3c71065054b7bc7c2e2325d7ebc03274075497
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 30 11:34:30 2012 +0100

    shell: Add some keywords to shell's desktop file
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668823

 shell/cinnamon-control-center.desktop.in.in | 1 +
 1 file changed, 1 insertion(+)

commit f7303978d1b601273d1a891795593c6bc989c3f0
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sun Jan 29 23:24:28 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 734 ++++++++++++++++++++++--------------------------------------
 po/zh_TW.po | 726 ++++++++++++++++++++++-------------------------------------
 2 files changed, 535 insertions(+), 925 deletions(-)

commit a9cfd34ad7245573e410974c135a2dde2ff708f6
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Jan 28 20:25:17 2012 +0100

    Updated Slovenian translation

 po/sl.po | 212 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 118 insertions(+), 94 deletions(-)

commit e1ecaffe39daddc92cd840ccd937267a3412f3b4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jan 28 15:51:43 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 48 ++++++++++++++++++++++++++++++++++++------------
 1 file changed, 36 insertions(+), 12 deletions(-)

commit c5e5f8c91bc1b79d1a3961e8e558501403c977be
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jan 28 12:43:35 2012 +0200

    Updated Hebrew translation.

 po/he.po | 500 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 281 insertions(+), 219 deletions(-)

commit 26901fda58a7de4a937a392da683cccaf8651a1d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 27 11:08:17 2012 +0000

    wacom: Fix 1-button stylus' button mapping
    
    Oopsie. We weren't setting the default value for the only
    button if you only had that button.

 panels/wacom/cc-wacom-stylus-page.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 35bc7d4e5814aa03b0b47838915ceccdf632bb65
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jan 27 11:10:06 2012 +0100

    Updated Spanish translation

 po/es.po | 44 ++++++++++++++++++++++++--------------------
 1 file changed, 24 insertions(+), 20 deletions(-)

commit 289d1e90c51b0ab6c4568833cfd61cd572c6f3ac
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 26 17:49:56 2012 +0000

    wacom: Implement switching to Display settings

 panels/wacom/cc-wacom-page.c  | 17 ++++++++++++++++-
 panels/wacom/cc-wacom-page.h  |  4 +++-
 panels/wacom/cc-wacom-panel.c | 15 +++++++++++----
 panels/wacom/cc-wacom-panel.h |  3 +++
 panels/wacom/test-wacom.c     |  8 +++++++-
 5 files changed, 40 insertions(+), 7 deletions(-)

commit e3565989e0bd01c0b5963fb4ba860c231371d1e9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 26 17:39:11 2012 +0000

    bluetooth: Fix wrong panel name in warning

 panels/bluetooth/cc-bluetooth-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 304c10d9019e0af4192efc6152f094946ff4c888
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 26 17:33:40 2012 +0000

    wacom: Add link to Display settings

 panels/wacom/gnome-wacom-properties.ui | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

commit 61314e26f72cdaa5ee3d7d62f8585f03cdbb01a0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 26 17:23:32 2012 +0000

    wacom: Add "Map Buttons..." button

 panels/wacom/gnome-wacom-properties.ui | 71 ++++++++++++++++++++++++----------
 1 file changed, 51 insertions(+), 20 deletions(-)

commit 740cd38fa59cfdc57c84d20d029d41cd5d40626f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 26 16:09:35 2012 +0000

    wacom: Hide tracking mode for screen tablets

 panels/wacom/cc-wacom-page.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 67d2e6d4a088e81c871fac3bebc1b85e93b7af54
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jan 26 17:13:42 2012 +0100

    Updated Spanish translation

 po/es.po | 204 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 108 insertions(+), 96 deletions(-)

commit 139289c767d504e171fdf79ace0dd1cffabf3704
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 26 15:42:51 2012 +0000

    wacom: Fix layout problems for some styli
    
    When we just hide items inside a GtkGrid, they still take space
    in the layout. So we need to remove those widgets, and change
    the location in the grid of those widgets.
    
    Finally, as some widgets are removed. the layout doesn't expand as
    it used to, so make the rows homogeneous to line up with the drawings.

 panels/wacom/cc-wacom-stylus-page.c | 111 ++++++++++++++++++++++++++++++------
 panels/wacom/wacom-stylus-page.ui   |   3 +-
 2 files changed, 97 insertions(+), 17 deletions(-)

commit fde93bbd1326da6adf04f7e6de64e1fd854e43e8
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Jan 25 23:30:11 2012 -0500

    keyboard: add support for new screenshot shortcuts
    
    Add support for new screenshot area and clipboard actions.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668712

 panels/keyboard/01-screenshot.xml.in | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit e091f68b701578b4cc4799928ae536ce5c311970
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 25 19:12:13 2012 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-wacom-device.c | 95 +++++++++++++++++++++++++++--------------
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 65 insertions(+), 31 deletions(-)

commit abbc0210e608356080d900afed23cde6620ed985
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 25 19:11:52 2012 +0000

    wacom: Add "update-from-gsd" target
    
    To update common files from gnome-settings-daemon

 panels/wacom/Makefile.am        |  9 +++++++++
 panels/wacom/update-from-gsd.sh | 26 ++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

commit 1c9a29f5c0fe27a907aae2b37341d3dd3f156544
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 25 19:01:46 2012 +0000

    wacom: Make it easier to copy/paste gsd files

 panels/wacom/Makefile.am | 6 ++++--
 panels/wacom/gsd-enums.h | 7 +++++++
 2 files changed, 11 insertions(+), 2 deletions(-)

commit befe9f1190c7df5de3de005aa08aa709c3fe0873
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 25 12:22:42 2012 +0000

    wacom: Scroll Up/Down actions are mapped inverted
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668619

 panels/wacom/wacom-stylus-page.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 31bf4623a105bcbdf8fd7601d5085dc0f2f6eb91
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 25 13:04:14 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 162 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 81 insertions(+), 81 deletions(-)

commit f1775d373d81d9d4868d8e4a039b98bb7949d772
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 24 20:22:46 2012 +0000

    wacom: Hide cursor when calibrating
    
    Otherwise the cursor might get in the way.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668609

 panels/wacom/calibrator/gui_gtk.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit d1a5af0818e3bff3180875ef6f0aebb70d7f891d
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jan 24 15:49:06 2012 +0000

    network: Only show the flight mode toggle when there are wireless devices

 panels/network/cc-network-panel.c | 55 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 54 insertions(+), 1 deletion(-)

commit 94d3d5d68639009b6c687d0d636a95d4a7056fc3
Author: Frédéric Péters <fpeters@0d.be>
Date:   Tue Jan 24 15:21:19 2012 +0100

    build: bump dependency on cheese
    
    There is no release with cheese-gtk.h yet, but it has been introduced
    after 3.3.4 was released.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668580

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7aae99aea94b8c9318210be8a02337e496d9ef39
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Jan 24 13:34:24 2012 +0100

    Printers: Remove some warnings
    
    Properly initialize a GValue with G_VALUE_INIT.
    Remove unused code.

 panels/printers/cc-printers-panel.c     | 2 +-
 panels/printers/pp-new-printer-dialog.c | 8 --------
 2 files changed, 1 insertion(+), 9 deletions(-)

commit b0288811dd66018d15c95d6498e5abe0428c042a
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Jan 24 13:15:32 2012 +0100

    Printers: Show correct icon in information tab
    
    Set correct icon in main tab of Printers panel (remote vs. local).

 panels/printers/cc-printers-panel.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit b1228913ba26d4bea4b4ad81b21a099a61c27232
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Jan 24 12:31:54 2012 +0100

    Printers: Actualize list of jobs at better place
    
    Actualize list of print jobs after connection of "changed" signal
    to GtkTreeSelection and after reset of sensitivity state of
    job-handling buttons.

 panels/printers/cc-printers-panel.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 2ae35d3f7ffd91c17d7b11cf72783f240cc39a0f
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Tue Jan 24 08:31:33 2012 +0200

    Updated Bulgarian translation

 po/bg.po | 5794 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 2972 insertions(+), 2822 deletions(-)

commit ca0f4b204bc84119f93ff84b329fe32ed23b20e5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 23 21:12:19 2012 +0000

    sound: Scrolling on balance only works for right
    
    We used to use 0.0 as the lower bound value but the lower bound
    value is -1.0, which means "all the way to the left" for right-left
    balance.
    
    Spotted by Jo-Erlend Schinstad
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668315

 panels/sound/gvc-balance-bar.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 71f5b9666701812e82c1169e39f043f2ef085dab
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 12:30:52 2012 -0500

    wacom: fix again packing for the main panel grid
    
    Last fix was wrong; make packing equal to the stylus GtkGrid, which gets
    this right.

 panels/wacom/gnome-wacom-properties.ui | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit c6ccecf52640f890d81f622274c051310eef0032
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 12:30:22 2012 -0500

    wacom: set a right margin to the tablet/stylus GtkImage
    
    We want some more padding between the image and the descriptions.

 panels/wacom/gnome-wacom-properties.ui | 1 +
 panels/wacom/wacom-stylus-page.ui      | 1 +
 2 files changed, 2 insertions(+)

commit a21e302f3c6ed7b9d42d314f03a315354fabdde9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 12:29:30 2012 -0500

    wacom: add back margin-top/bottom for title/stylus labels
    
    Since we don't know whether the navigation button will be shown or not,
    set a margin on these labels as well.

 panels/wacom/gnome-wacom-properties.ui | 2 ++
 panels/wacom/wacom-stylus-page.ui      | 2 ++
 2 files changed, 4 insertions(+)

commit 257c5c0a145b207c400ff4daacd2f860b0b86058
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 11:48:38 2012 -0500

    wacom: remove useless xpad

 panels/wacom/gnome-wacom-properties.ui | 1 -
 1 file changed, 1 deletion(-)

commit e524bc2ad5dddb928fc723f25bd0fca374248325
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 11:47:51 2012 -0500

    wacom: fix packing for widgets in the panel main grid
    
    Main grid has 3 columns, not four. Also, make sure to expand the main
    combobox.

 panels/wacom/gnome-wacom-properties.ui | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit 101957934b07b5c6182a2e3937cde43e609fda43
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 11:41:39 2012 -0500

    wacom: add dim-label style classes for stylus page labels

 panels/wacom/wacom-stylus-page.ui | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 5dec19e907dd5e380e4a73d01a78b834411b4302
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 11:37:01 2012 -0500

    wacom: set margin directly on the navigation button label
    
    Instead of setting it in the main label for each UI file. This ensures
    the navigation button is automatically made bigger inside the grid.

 panels/wacom/cc-wacom-nav-button.c     | 9 +++++++--
 panels/wacom/gnome-wacom-properties.ui | 1 -
 panels/wacom/wacom-stylus-page.ui      | 2 --
 3 files changed, 7 insertions(+), 5 deletions(-)

commit e84325a8d3e4c71b7f826267163f7e91e961b1c7
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jan 23 11:27:12 2012 -0500

    wacom: change the packing of the back/forward buttons
    
    Back/Forward buttons need to live in a box on their own if we want the
    linked effect to work correctly.

 panels/wacom/cc-wacom-nav-button.c | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit 479817c808f2fd9d6d11cc27f007fbe5ab1759ca
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 23 16:10:22 2012 +0000

    bluetooth: XFCE doesn't want to see our desktop files

 panels/bluetooth/bluetooth-properties.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5e4e429cd04f5b46619a4363d620ad649b6fc740
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jan 23 16:40:36 2012 +0100

    Printers: Use g_error_free() instead of g_clear_error ()
    
    Replace g_clear_error() with more appropriate g_error_free()
    where suitable. (#658581)

 panels/printers/cc-printers-panel.c     |  63 +--
 panels/printers/pp-new-printer-dialog.c | 841 +++++++++++++++++---------------
 panels/printers/pp-utils.c              | 830 +++++++++++++++----------------
 3 files changed, 907 insertions(+), 827 deletions(-)

commit d3a282b9c3d4c716f76518f2fa7511c60a7c9918
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 23 15:28:02 2012 +0000

    shell: Unblur the all-settings button icon
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668219

 shell/shell.ui | 1 +
 1 file changed, 1 insertion(+)

commit a5d897dae01b1158c3c8d75a1c4d35463d1da530
Author: Marco Trevisan <mail@3v1n0.net>
Date:   Mon Jan 23 15:09:46 2012 +0000

    shell: Make the WM to be aware of the g-c-c panel content
    
    Window managers such as unity need to know what panel
    cinnamon-control-center is currently showing. Changing the window
    role with the current panel ID is the best way to set a
    locale-independent value.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668504

 shell/cinnamon-control-center.c | 2 ++
 1 file changed, 2 insertions(+)

commit 10707624784ee0239257f975d1418e8e368bd814
Author: Javier Jardón <jjardon@gnome.org>
Date:   Mon Jan 23 14:00:17 2012 +0000

    configure.ac: Do not use GNOME_MAINTAINER_MODE_DEFINES
    
    We have compilation warnings now for deprecated api

 configure.ac                     | 1 -
 panels/display/Makefile.am       | 3 +--
 panels/user-accounts/Makefile.am | 3 +--
 3 files changed, 2 insertions(+), 5 deletions(-)

commit 232aa050c2c7656899461c6a1944b1f1e653fe73
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 23 14:21:20 2012 +0000

    user-accounts: Call cheese init function
    
    Instead of clutter-gst's

 configure.ac                          | 1 -
 panels/user-accounts/um-user-module.c | 8 ++++++--
 2 files changed, 6 insertions(+), 3 deletions(-)

commit dc92ae2fe86636f7ecf608f8c72f1de7f216a13f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 23 13:51:18 2012 +0000

    datetime: Don't run gdbus command twice

 panels/datetime/Makefile.am | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit a812bb83a6e8d4caa068fdf2b18414b4fd1cba42
Author: Javier Jardón <jjardon@gnome.org>
Date:   Mon Jan 23 13:05:41 2012 +0000

    configure.ac: Bump automake version to 1.11
    
    It's required for dist-xz option

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 87bbd900f90557cdd550f0f96a27ad91d217384d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 23 13:34:46 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 293 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 148 insertions(+), 145 deletions(-)

commit d67dc3caec9d06c2352872e6ad931606d7cb5fb6
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jan 23 05:09:27 2012 +0100

    Updated Galician translations

 po/gl.po | 388 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 193 insertions(+), 195 deletions(-)

commit 900d9f0470d76898fe1f0eadfbfe0412a6d78165
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jan 22 23:59:52 2012 +0100

    Updated Galician translations

 po/gl.po | 325 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 182 insertions(+), 143 deletions(-)

commit 0613666c1002857daa2b4e6a5af6a87678ebc10a
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Jan 22 20:58:14 2012 +0100

    Updated Spanish translation

 po/es.po | 176 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 102 insertions(+), 74 deletions(-)

commit 7bfada8202b3be43db5fc07804948f5244cefe01
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Jan 22 18:27:13 2012 +0700

    vi.po: correct "plugging" translations

 po/vi.po | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

commit 33c2dcb72b8697e89fbda52553955e37159db12e
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Jan 21 21:22:52 2012 +0100

    Updated Slovenian translation

 po/sl.po | 316 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 177 insertions(+), 139 deletions(-)

commit c37333571722c30ac5911babf25958dcdfcda803
Author: Colin Walters <walters@verbum.org>
Date:   Sat Jan 21 11:08:00 2012 -0500

    datetime: Fix srcdir != builddir

 panels/datetime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f60e2fa4aefb0ea4ab8fc53cfd42cd2422a98aaf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Jan 21 14:25:45 2012 +0000

    universal-access: Parent zoom options to panel

 panels/universal-access/cc-ua-panel.c   |  7 ++++---
 panels/universal-access/zoom-options.c  | 22 ++++++++++++++--------
 panels/universal-access/zoom-options.h  |  4 +++-
 panels/universal-access/zoom-options.ui |  2 --
 4 files changed, 21 insertions(+), 14 deletions(-)

commit 77abe0ecedad33e44247184b537f025955873d20
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Jan 21 14:25:16 2012 +0000

    universal-access: Remove invalid props for GtkGrid

 panels/universal-access/zoom-options.ui | 2 --
 1 file changed, 2 deletions(-)

commit daa95932d5282badfa57a45b79e2f3300cf75018
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Jan 21 14:24:47 2012 +0000

    universal-access: Fix deprecated use of GdkColor

 panels/universal-access/zoom-options.c | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

commit 9d5e654bec5697b115806201f1c9cf48e467244b
Author: Joseph Scheuhammer <clown@alum.mit.edu>
Date:   Fri Dec 16 16:55:39 2011 -0500

    Universal access: add dialog for zoom options
    
    Modified zoom options dialog to implement hbons wireframe.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643086

 panels/universal-access/uap.ui          |   6 +-
 panels/universal-access/zoom-options.c  | 295 ++++++++--
 panels/universal-access/zoom-options.ui | 917 ++++++++++++++------------------
 3 files changed, 631 insertions(+), 587 deletions(-)

commit 3ff082633ab893ad860d7aa491d1d0752ae63d2a
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Jan 21 13:06:57 2012 +0100

    Updated Spanish translation

 po/es.po | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit 7fc856406fa2628a4bef3f88fbd6a94ed41b72b6
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Jan 21 11:55:29 2012 +0100

    Updated Spanish translation

 po/es.po | 49 +++++++++++++++++++++++++++++++------------------
 1 file changed, 31 insertions(+), 18 deletions(-)

commit e56b92191dbacb0886a39cca4c7c6127ece3ea97
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Fri Jan 20 14:44:33 2012 +0100

    wacom: inking has no eraser, 2 new stylii images.

 panels/wacom/wacom-stylus-art-pen.svg | 127 ++++++++++++++++++++++++++++++++++
 panels/wacom/wacom-stylus-classic.svg | 103 +++++++++++++++++++++++++++
 panels/wacom/wacom-stylus-inking.svg  |  22 +++---
 3 files changed, 238 insertions(+), 14 deletions(-)

commit a2a9db029fa5c6641b50a0d79e79f6e37c186883
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 20 13:19:48 2012 +0000

    screen: Rename icon to "Brightness and Lock"
    
    So as to avoid name clashes with the "Display" panel.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653015

 panels/screen/gnome-screen-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f2e9b90eaac52cf4607024a7ed7051f4df70234d
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Wed Jan 18 16:53:17 2012 -0800

    wacom: Fix nav label's maximum page number
    
    The label "X of Y" pages is incorrect when multiple tablets are plugged
    in, with Y being one too small. The "num_pages" variable is already
    decremented if necessary on line 70, making the ternary excessive.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=668231

 panels/wacom/cc-wacom-nav-button.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fa1d9b48d2ccb373d86decc92dd50dfe36cd4463
Author: Javier Jardón <jjardon@gnome.org>
Date:   Fri Jan 20 01:22:32 2012 +0100

    configure: datetime panel do not depend on dbus-glib anymore

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 90f78394f60882b95793976c2d113b5f275acad5
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Jan 19 14:15:01 2012 +0100

    datetime: Port to systemd's timedated service
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658352

 configure.ac                                       |    2 +-
 panels/datetime/Makefile.am                        |   47 +-
 panels/datetime/cc-datetime-panel.c                |  245 +-
 panels/datetime/dtm.c                              | 3066 --------------------
 panels/datetime/dtm.h                              |  475 ---
 .../org.gnome.controlcenter.datetime.policy.in     |   21 +
 panels/datetime/set-timezone.c                     |  479 ---
 panels/datetime/set-timezone.h                     |   57 -
 panels/datetime/timedated1-interface.xml           |   27 +
 po/POTFILES.in                                     |    1 +
 10 files changed, 238 insertions(+), 4182 deletions(-)

commit 886dd007ef76268fd53a5d008b1dc611546c7c2e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 19 17:53:44 2012 +0000

    build: Print compile options at end of configure
    
    This is useful at the office, or even at home. We even get to
    tidy up the bottom of the configure.ac, with those mouldy old
    build comments about intltool bugs without references, dated from 2002.

 configure.ac | 36 +++++++++++++++++++++++++++++++++---
 1 file changed, 33 insertions(+), 3 deletions(-)

commit ad949df62e2b7e9a12e5a7f2c6da16e73ab73f3f
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Thu Jan 19 16:45:17 2012 +0100

    wacom: skip the pressure wheel for now. expose buttons only.

 panels/wacom/wacom-stylus-airbrush.svg | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)

commit af2c94ced56f89b778746411daad8698d69b653e
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Fri Jan 13 13:30:03 2012 -0800

    wacom: Specify monitor to use when calling run_calibration
    
    Changes the signature of run_calibration to require the monitor
    that calibration should take place on.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657423

 panels/wacom/cc-wacom-page.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 611a91b91f617c7e563751b6870b5a2c80aa5080
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Thu Jan 12 13:02:22 2012 -0800

    wacom: Get monitor tablet has ben mapped to before calibrating
    
    More precisely, this patch checks if the tablet *could* be mapped.
    gsd_wacom_device_get_display_monitor has a side-effect of
    automatically mapping the tablet if it is necessary and possible
    to ensure that it *is* mapped.
    
    If the tablet isn't and can't be mapped, calibration is pointless.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657423

 panels/wacom/cc-wacom-page.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 4eae26e96783d7d2fab448f8e4d0e5098f02cc60
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Tue Jan 17 15:25:25 2012 -0800

    wacom: Bring over files from g-s-d
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657423

 configure.ac                    |   3 +-
 panels/wacom/gsd-input-helper.c |   6 +-
 panels/wacom/gsd-input-helper.h |   1 +
 panels/wacom/gsd-wacom-device.c | 236 ++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h |   6 +
 5 files changed, 248 insertions(+), 4 deletions(-)

commit 93a80dd83232dfb8962eb948ff5b5d547350a381
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 18 17:02:07 2012 +0000

    3.3.4.1

 NEWS         | 7 +++++++
 configure.ac | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 0f79fbc78501e879a984d7debdfaf9c053c048ec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 18 17:00:25 2012 +0000

    bluetooth: Update for changed BluetoothChooser API

 configure.ac                          | 2 +-
 panels/bluetooth/cc-bluetooth-panel.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 53c0acacb9192787286099e4a34d2d4885b81c35
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 17 15:33:04 2012 +0000

    3.3.4

 NEWS         | 34 ++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 35 insertions(+), 1 deletion(-)

commit ebde7222be7194e8276009eeacdaea87163f9924
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 17 16:08:35 2012 +0000

    user-accounts: Add missing include
    
    CheeseCameraDevice was never defined.

 panels/user-accounts/um-photo-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit aa42623e9e775fbd55d687410739c6e90a703f65
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 17 15:34:23 2012 +0000

    wacom: Up the libwacom requirements

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 244321c1ebd6c0bdb1aeb7c295dd3a8abf1a4e38
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 17 15:34:12 2012 +0000

    build: Update required g-s-d version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f3d98d1986f7755aa5ef4bb3947fa95dd3640bba
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Jan 17 12:52:40 2012 +0100

    Updated Spanish translation

 po/es.po | 129 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 68 insertions(+), 61 deletions(-)

commit d243d60101cb13ac79cb221bc67ba56ce6751ac0
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jan 16 23:48:27 2012 +0100

    Updated Galician translations

 help/gl/gl.po | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

commit b618607a0eedfab59d4ccc967fa74b06dc227cbf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 16 17:49:37 2012 +0000

    Update POTFILES.in

 po/POTFILES.in | 3 +++
 1 file changed, 3 insertions(+)

commit f79284b0f69c849e524633640e1cff1b032c590d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 16 17:47:35 2012 +0000

    wacom: Add label to nav button
    
    As per mockups

 panels/wacom/cc-wacom-nav-button.c | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

commit 5a51341ae09a941984524a9a398486d742d0ab24
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 16 17:46:43 2012 +0000

    wacom: Fix Stylus section layout

 panels/wacom/wacom-stylus-page.ui | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit b732da14d8fb0070b1b8dfa83ae82e24a81460c1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 16 17:18:32 2012 +0000

    wacom: Split off the stylus page creation
    
    Show configuration for multiple styli in the configuration UI.

 panels/wacom/Makefile.am               |   6 +-
 panels/wacom/cc-wacom-page.c           | 244 +++----------------
 panels/wacom/cc-wacom-stylus-page.c    | 421 +++++++++++++++++++++++++++++++++
 panels/wacom/cc-wacom-stylus-page.h    |  79 +++++++
 panels/wacom/gnome-wacom-properties.ui | 334 +-------------------------
 panels/wacom/wacom-stylus-page.ui      | 333 ++++++++++++++++++++++++++
 6 files changed, 885 insertions(+), 532 deletions(-)

commit 5d680981de00664133f7cadb6ef1bf2d64649107
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 16 16:07:08 2012 +0000

    wacom: Update files from g-s-d
    
    More stylus metadata exported.

 panels/wacom/gsd-wacom-device.c | 67 +++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h | 25 ++++++++++++---
 2 files changed, 87 insertions(+), 5 deletions(-)

commit a771f350d6b788af7495e8f801ceff6276b92b69
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 16 15:15:08 2012 +0000

    wacom: Remove unused definitions

 panels/wacom/cc-wacom-page.c | 4 ----
 1 file changed, 4 deletions(-)

commit 256438de60d891fc70dd5e665d97f89fe3386b90
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 16 17:27:41 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 2537 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1273 insertions(+), 1264 deletions(-)

commit 4e19f0149f4cfdb763b3bb375dcdb2f37594124b
Author: Hideki Yamane <henrich@debian.org>
Date:   Tue Jan 17 00:57:10 2012 +0900

    Updated Japanese translation

 po/ja.po | 5919 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 3086 insertions(+), 2833 deletions(-)

commit bb38492e52bdd1060eb30b1c297e069449230480
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Thu Jan 12 15:12:01 2012 -0800

    wacom: Have calibrator take into account window geometry
    
    Current calculations assume the window is anchored at 0,0. This
    obviously poses a problem in a multi-monitor setup.

 panels/wacom/calibrator/calibrator.c | 14 ++++++--------
 panels/wacom/calibrator/calibrator.h |  5 +++--
 panels/wacom/calibrator/gui_gtk.c    |  7 ++++++-
 3 files changed, 15 insertions(+), 11 deletions(-)

commit 73d53ef09624f9fd1367fefc8195a2ac56315fa5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Jan 15 19:28:27 2012 +0100

    Updated Spanish translation

 po/es.po | 27 +++++++++++++++------------
 1 file changed, 15 insertions(+), 12 deletions(-)

commit 4e492c0d197c652ed3d3914d20b2209984cae55c
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sun Jan 15 13:45:52 2012 +0100

    Updated Slovenian translation

 po/sl.po | 5349 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2705 insertions(+), 2644 deletions(-)

commit 7ece33861f4926e98fef054c1bb34bf1aa1ba3a8
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jan 15 00:53:02 2012 +0100

    Updated Galician translations

 po/gl.po | 5486 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2744 insertions(+), 2742 deletions(-)

commit 8cb4ac16bca61d6fe6a3b5a75db87b02f4d04195
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sat Jan 14 20:31:35 2012 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 438 +++++++++++++++++++++++++++++-------------------------------
 po/zh_TW.po | 438 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 424 insertions(+), 452 deletions(-)

commit b294b10324a5444fa110f6d66ed35353eba9b954
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 13 13:16:41 2012 -0500

    Add optional systemd support
    
    When configured with --enable-systemd, this patch makes
    the user panel use systemd for session tracking instead
    of ConsoleKit.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=666573

 configure.ac                   | 14 +++++++++++++-
 panels/user-accounts/um-user.c | 17 +++++++++++++++++
 2 files changed, 30 insertions(+), 1 deletion(-)

commit f3592ce32ac6e56fe6993c8e24751e058866141e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 13 13:06:42 2012 -0500

    Adapt to libcheese API changes

 panels/user-accounts/um-photo-dialog.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 0833ea6de6b0bc9de56e72eb064e7b81f91609d3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 13 13:05:25 2012 -0500

    Initialize clutter-gst for the user panel
    
    Otherwise, we get an error out of libcheese, complaining about
    gstreamer not being initialized.

 configure.ac                          | 1 +
 panels/user-accounts/um-user-module.c | 3 +++
 2 files changed, 4 insertions(+)

commit f9c0cd13f87a649c5ee4cb65a8e5872f4e1b27f9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 13 13:03:12 2012 -0500

    Add a missing ; to Keywords in desktop files

 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e722c5066d2f03b1b43c00542eb2911cadc920f5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 13 17:47:35 2012 +0000

    wacom: Fix white space for some tablets

 panels/wacom/gnome-wacom-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a9db665dc1ad5ad641e3a428c54e9c47b5de61ab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 13 17:47:22 2012 +0000

    wacom: Add Intuos4 to test app

 panels/wacom/test-wacom.c | 3 +++
 1 file changed, 3 insertions(+)

commit 44865d10824602be7515d3eb3df9800ffde0ee3b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 13 17:46:57 2012 +0000

    wacom: Don't use "show_all" in test

 panels/wacom/test-wacom.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ac86cd36cda1544627c8e2d4c94737e325f9d9e1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 13 17:45:21 2012 +0000

    wacom: Add Intuos4 test device

 panels/wacom/gsd-wacom-device.c | 29 +++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 30 insertions(+)

commit 425b5040eae2f0c5243004cc58d56b173377dbe8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 13 11:51:27 2012 +0000

    wacom: Use symbolic name for click threshold

 panels/wacom/cc-wacom-page.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 6f546870fe4e4fa90682c742694e4af9240eed40
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jan 13 16:05:04 2012 +0100

    Updated Spanish translation

 po/es.po | 62 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 32 insertions(+), 30 deletions(-)

commit 4519b54c2bd81f4a468d615f3924522c8ffa761d
Author: A S Alam <aalam@users.sf.net>
Date:   Fri Jan 13 15:25:24 2012 +0530

    Updated Punjabi Translation

 help/pa/pa.po | 36 ++++++++++++++++++++++--------------
 1 file changed, 22 insertions(+), 14 deletions(-)

commit d20a59ae6f2cf4392a44252afe9e45574a1a3866
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Jan 13 09:31:42 2012 +0200

    Updated Hebrew translation.

 po/he.po | 301 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 157 insertions(+), 144 deletions(-)

commit 5ee2c07f57e6556e8d52c6374dc2d7304a5fe305
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Thu Jan 12 16:05:23 2012 -0500

    Show wacom and bluetooth panels in Unity too

 panels/bluetooth/bluetooth-properties.desktop.in.in | 2 +-
 panels/wacom/gnome-wacom-panel.desktop.in.in        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit fdac29e0341256663ac8a99506ba7e3cf0673e7a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 19:41:05 2012 +0000

    wacom: Add i18n to wacom test app

 panels/wacom/test-wacom.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit f0668b4050e4620a252dd76967269f900be4fd66
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Thu Jan 12 14:03:47 2012 -0500

    [PATCH] Fix broken tags in pt_BR.po

 help/pt_BR/pt_BR.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0905cb347ade46e6d593c2db7151b4e0bfb6abcd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 19:00:08 2012 +0000

    wacom: Add FIXME for monitor placement

 panels/wacom/cc-wacom-page.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9ba2c986e7b815d6ac32edd3f70a2156ba544fb6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 18:57:55 2012 +0000

    wacom: Update for new calibrator API

 panels/wacom/cc-wacom-page.c | 74 +++++++++++++++++++++++++++-----------------
 1 file changed, 46 insertions(+), 28 deletions(-)

commit 54ec95051e03aff13022a6059500b7403ddc21ea
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 18:57:45 2012 +0000

    wacom: Update for new calibrator API

 panels/wacom/calibrator/main.c | 48 ++++++++++++++++++++++++++++++------------
 1 file changed, 34 insertions(+), 14 deletions(-)

commit 705287d5c7908be5eb411cf8b9b23e3eadc6b6e1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 18:57:20 2012 +0000

    wacom: Fix insane Calibrator API
    
    So that we don't have to run gtk_main() in it.

 panels/wacom/calibrator/calibrator.h |  10 +-
 panels/wacom/calibrator/gui_gtk.c    | 262 ++++++++++++++++++++---------------
 panels/wacom/calibrator/gui_gtk.h    |  28 +++-
 3 files changed, 176 insertions(+), 124 deletions(-)

commit a227cd7ca92c1b178648e0a75d2f255b5f016101
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 17:38:05 2012 +0000

    wacom: Add more padding around the clock

 panels/wacom/calibrator/gui_gtk.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 89bbb0a73abab6935016c1999dedac4cee56caa3
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Wed Jan 11 12:55:17 2012 +0100

    display: Use GDBus instead of dbus-glib
    
    https://bugzilla.gnome.org/show_bug.cgi?id=667685

 configure.ac                      |  2 +-
 panels/display/Makefile.am        |  2 +-
 panels/display/cc-display-panel.c | 90 ++++++++++++++++-----------------------
 3 files changed, 38 insertions(+), 56 deletions(-)

commit 6c304370eb9c76f0887d2e128e59837f0c646e8b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 15:26:16 2012 +0000

    wacom: Remove unnecessary duplication

 panels/wacom/cc-wacom-page.c | 27 ++++++++-------------------
 1 file changed, 8 insertions(+), 19 deletions(-)

commit f256fe00964103c8428f7c795a95930799cd7057
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 15:23:53 2012 +0000

    wacom: Identation fixes

 panels/wacom/cc-wacom-page.c | 73 ++++++++++++++++++++++----------------------
 1 file changed, 36 insertions(+), 37 deletions(-)

commit 13af3b18a290994333619539aecb907c12f932d3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 15:22:04 2012 +0000

    wacom: Small coding style fixes

 panels/wacom/cc-wacom-page.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit aec70398587f798109d9289bb8d71d1837eea6cf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 15:04:05 2012 +0000

    wacom: Remove rectangle around main text

 panels/wacom/calibrator/gui_gtk.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

commit 16383198023f2a15fc83f44ee94bd14285f27366
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 13:53:09 2012 +0000

    wacom: Fix wrong gsize print format

 panels/wacom/cc-wacom-page.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d099ded276b8d5cefa41e5b5149a6bbc3f7f3fd9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 12 13:52:50 2012 +0000

    wacom: Update for calibration API change

 panels/wacom/cc-wacom-page.c | 1 -
 1 file changed, 1 deletion(-)

commit af12e12373b7e5af75702f1e3ff48c5e2a5c349f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jan 12 10:29:53 2012 +0100

    Updated Spanish translation

 po/es.po | 23 ++++++++++++++++++++---
 1 file changed, 20 insertions(+), 3 deletions(-)

commit eba67d17d46dd10f7502aac549ef876e7e92b721
Author: Timo Jyrinki <timo.jyrinki@iki.fi>
Date:   Thu Jan 12 08:44:17 2012 +0100

    Updated Finnish translation by Jiri Grönroos

 po/fi.po | 2444 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1227 insertions(+), 1217 deletions(-)

commit 956590dd8bd693c2d3c74536d4f55088e815d6f3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 20:09:40 2012 +0000

    wacom: Remove unused geometry struct member

 panels/wacom/calibrator/calibrator.h |  3 ---
 panels/wacom/calibrator/gui_gtk.c    | 25 ++-----------------------
 2 files changed, 2 insertions(+), 26 deletions(-)

commit 6c215019db2845735101535d5d3498136832fc5b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 20:09:20 2012 +0000

    wacom: Remove geometry option from test app

 panels/wacom/calibrator/main.c | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

commit 6ff3fc49db0da04328b569315c02d510dc32be0c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:55:10 2012 +0000

    wacom: Fix frame around error message

 panels/wacom/calibrator/gui_gtk.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 1d6ce52ad7c53cf46fd3b2c5b3750b51a641ef59
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:54:42 2012 +0000

    wacom: Text is white

 panels/wacom/calibrator/gui_gtk.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 80f78151f82a4732d1d8a59deb786803587dea49
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:46:25 2012 +0000

    wacom: Translate error message

 panels/wacom/calibrator/gui_gtk.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit da3080d9109082f82b105f354e4205aca62c5362
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:26:58 2012 +0000

    wacom: Avoid confusing debug message
    
    Don't print bogus values if the calibration didn't finish

 panels/wacom/calibrator/gui_gtk.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit ea0410764ace205124718fa466d35da4455be107
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:23:06 2012 +0000

    wacom: Move window creation to _new()

 panels/wacom/calibrator/gui_gtk.c | 57 +++++++++++++++++++--------------------
 1 file changed, 27 insertions(+), 30 deletions(-)

commit 9845e4d58292d81a8809bea62a7a8d4bb7fcafb4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:17:14 2012 +0000

    wacom: Hide the CalibArea structure
    
    And typedef it

 panels/wacom/calibrator/gui_gtk.c | 39 +++++++++++++++++++++++++++------------
 panels/wacom/calibrator/gui_gtk.h | 16 +---------------
 2 files changed, 28 insertions(+), 27 deletions(-)

commit 6e179b433e7cb2643e1ff52a456d846388f024cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:11:55 2012 +0000

    wacom: Make the window a tiny bit transparent

 panels/wacom/calibrator/gui_gtk.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 5feefb444d3fa66dc39c0dd60c9c09cc0a61c74e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 19:02:37 2012 +0000

    wacom: Remove the use of a drawing area
    
    We don't need one, we can draw on the window directly.

 panels/wacom/calibrator/gui_gtk.c | 87 +++++++++++++++++++--------------------
 panels/wacom/calibrator/gui_gtk.h |  4 +-
 2 files changed, 44 insertions(+), 47 deletions(-)

commit f6fa0ee689f5e0a0dece132bcce8ad1b230d885a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:56:09 2012 +0000

    wacom: Fix memory leak

 panels/wacom/calibrator/gui_gtk.c | 2 ++
 1 file changed, 2 insertions(+)

commit 8843ad8fb256f48c3e3293972a0967379bf7eabe
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:39:09 2012 +0000

    wacom: Make escape key exit
    
    And nothing else

 panels/wacom/calibrator/gui_gtk.c | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

commit 90c7881b5fd2fb1be2552829b326634849e5a8d7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:38:49 2012 +0000

    wacom: More space between clock and help text

 panels/wacom/calibrator/gui_gtk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 420a068209b0457a07580db1a0b114157441297a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:38:30 2012 +0000

    wacom: Match help text with mockups

 panels/wacom/calibrator/gui_gtk.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 30536b4ec06ffa88b4686dfa906ac6f2d068c04b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:21:51 2012 +0000

    wacom: Defuzz lines and circles
    
    By lining them up with the pixels.

 panels/wacom/calibrator/gui_gtk.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit f958f8c7134979d4aeec726345e7802512f6b711
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:21:21 2012 +0000

    wacom: Remove unneeded cairo_save()/restore()

 panels/wacom/calibrator/gui_gtk.c | 8 --------
 1 file changed, 8 deletions(-)

commit 4d7bb6141116fac0a559b333699f22f3ab9bc57b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:20:27 2012 +0000

    wacom: Set the text frame colour to be white

 panels/wacom/calibrator/gui_gtk.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit ce61526b415d8ba2b574f6108302a30c4967abd0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:19:49 2012 +0000

    wacom: Black background by default

 panels/wacom/calibrator/gui_gtk.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit c79b324d5ef4ef0001e606d75b24d6c2d16be56e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 18:16:36 2012 +0000

    wacom: Tweak the size of circles

 panels/wacom/calibrator/gui_gtk.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 65485f44eeee3ee493de2ad186beda2295f946ab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 17:27:00 2012 +0000

    wacom: Only the current calibration target is visible

 panels/wacom/calibrator/gui_gtk.c | 34 ++++++++++++++--------------------
 1 file changed, 14 insertions(+), 20 deletions(-)

commit 0e6e52f822a353edf200fc2bb24e82cec3bb24c1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 17:19:18 2012 +0000

    wacom: Add second larger outer circle

 panels/wacom/calibrator/gui_gtk.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 2669ec6eadd74ec21855bcf1203d4510fd821d20
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 17:18:36 2012 +0000

    wacom: Make inner circle bigger

 panels/wacom/calibrator/gui_gtk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5a69e99103e7cbde40edf78fa1fcb8016dab5e6e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 16:31:18 2012 +0000

    wacom: Make calibration targets bigger

 panels/wacom/calibrator/gui_gtk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5d6fda8f5201b3137867835c2b5a4ce249b5e394
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 16:23:07 2012 +0000

    wacom: Mark calibrator as to be translated

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 1087c92a0a7ccf68a306b46f1c1f2966a88ff7ee
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 16:22:44 2012 +0000

    wacom: Debug output by default in test prog

 panels/wacom/calibrator/main.c | 2 ++
 1 file changed, 2 insertions(+)

commit 0cd211cfdae483990dc24cd76c2083fc96905b85
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 16:22:24 2012 +0000

    wacom: Add i18n support to calibrator test prog

 panels/wacom/calibrator/main.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit f547c902b6a903c6d5abc3d9f2630247db92ce22
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 16:21:44 2012 +0000

    wacom: Add i18n support to the calibrator

 panels/wacom/calibrator/gui_gtk.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit 03a18c7dc4f93857c1a5a281d188be7c6208dcd8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 16:13:13 2012 +0000

    wacom: Use Pango and GTK+ to render text
    
    Rather than cairo directly, with all that it entails.

 panels/wacom/calibrator/gui_gtk.c | 134 +++++++++++++++++++-------------------
 1 file changed, 67 insertions(+), 67 deletions(-)

commit d00e7ee0bd36a9b2b888b6411899dc31dd1cfdb7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 11:59:14 2012 +0000

    wacom: Remove private function from header

 panels/wacom/calibrator/calibrator.c | 22 +++++++++++-----------
 panels/wacom/calibrator/calibrator.h |  4 ----
 2 files changed, 11 insertions(+), 15 deletions(-)

commit 469e6a610d54f6108056c163b620919d1d034b42
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 11 11:57:16 2012 +0000

    wacom: Add COPYING file for calibrator code
    
    From https://github.com/tias/xinput_calibrator

 panels/wacom/calibrator/COPYING | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit a5f7b091068f5ebd388703701ed22db9849089e7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 20:34:38 2012 +0000

    wacom: Fix warning with unfinished timer
    
    We need to remove the timeout once we're done, otherwise it
    will keep on running.

 panels/wacom/calibrator/gui_gtk.c | 4 +++-
 panels/wacom/calibrator/gui_gtk.h | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 815635a3c26387beb24aec7e6b2b53ff876c53ff
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 20:16:33 2012 +0000

    wacom: Simplify run_calibration()

 panels/wacom/cc-wacom-page.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

commit 7567d678f95a14ab78f74bbcbffc5c27f64b4411
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 20:14:50 2012 +0000

    wacom: Simplify object creation

 panels/wacom/calibrator/gui_gtk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f52a0c81046a8d166a881f0c6e596bc63d0486a8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 20:13:20 2012 +0000

    wacom: Remove printf() calls

 panels/wacom/calibrator/gui_gtk.c | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

commit ccdb17172318b5b537ec57fba51574fa9f0bbd34
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 20:00:34 2012 +0000

    wacom: Remove dead expose-event code
    
    It's unused, and wasn't called.

 panels/wacom/calibrator/gui_gtk.c | 21 ---------------------
 1 file changed, 21 deletions(-)

commit b7cf2edd906892ba80c0e2c645772824c8263f34
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:55:21 2012 +0000

    wacom: Fix indentation

 panels/wacom/gsd-wacom-device.c | 52 ++++++++++++++++++++---------------------
 1 file changed, 26 insertions(+), 26 deletions(-)

commit e70502cc3b6d20e3718bb0a03ad7c3fd64671a0a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:55:01 2012 +0000

    wacom: Use updated _get_area() API

 panels/wacom/cc-wacom-page.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 82d6b9e809a097fd65e2669c71ce8ca8ca32b128
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:54:23 2012 +0000

    wacom: _get_area() helper stylistic changes
    
    Including fixing a leak XDevice.

 panels/wacom/gsd-wacom-device.c | 24 ++++++++++++++----------
 panels/wacom/gsd-wacom-device.h |  5 ++---
 2 files changed, 16 insertions(+), 13 deletions(-)

commit 41d73eb43c9fbf1ad97e9c60296b0172dcccd0f0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:45:02 2012 +0000

    wacom: Fix gsize warnings

 panels/wacom/cc-wacom-page.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 256d57f6ef5c9abb6226e97b9c188558fddc61d9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:44:43 2012 +0000

    wacom: Remove unused variable

 panels/wacom/cc-wacom-page.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 7533c6876bfe62b1a02eb79904d04109af4868d0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:43:08 2012 +0000

    wacom: Fix out-of-scope usage
    
    The output of g_variant_get_fixed_array() is only valid as long
    as the GVariant is valid. Outside the function, anything goes.

 panels/wacom/cc-wacom-page.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 0b0cc5bbfd9ede669d31b198e77b64a6b19d021d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:21:30 2012 +0000

    wacom: Remove unused main.h

 panels/wacom/calibrator/Makefile.am |  1 -
 panels/wacom/calibrator/main.c      | 67 ++++++++++++++++++-------------------
 panels/wacom/calibrator/main.h      | 45 -------------------------
 3 files changed, 33 insertions(+), 80 deletions(-)

commit 7b82472645f7f9aa46b66f034413f39deb391c99
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:19:24 2012 +0000

    wacom: s/axys/axis/

 panels/wacom/calibrator/calibrator.c | 36 ++++++++--------
 panels/wacom/calibrator/calibrator.h |  6 +--
 panels/wacom/calibrator/gui_gtk.c    | 20 ++++-----
 panels/wacom/calibrator/gui_gtk.h    |  2 +-
 panels/wacom/calibrator/main.c       | 80 ++++++++++++++++++------------------
 panels/wacom/calibrator/main.h       |  6 +--
 panels/wacom/cc-wacom-page.c         | 20 ++++-----
 7 files changed, 85 insertions(+), 85 deletions(-)

commit 4618d62a4873fc15a251dabe0cd6420c4714f2a3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 19:18:33 2012 +0000

    wacom: Those functions don't need to be public
    
    So don't export them in the .h file

 panels/wacom/calibrator/gui_gtk.c | 210 +++++++++++++++++++-------------------
 panels/wacom/calibrator/gui_gtk.h |  21 ----
 2 files changed, 105 insertions(+), 126 deletions(-)

commit e44a3327f8ebb103f7dba4bb2713c7a13ab775f1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 18:35:44 2012 +0000

    wacom: Remove custom MAX() macro

 panels/wacom/calibrator/gui_gtk.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 0d98523b7b71ebab61806207a274312219d92077
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 18:34:30 2012 +0000

    wacom: Remove M_PI redefinition

 panels/wacom/calibrator/gui_gtk.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 8516b6a1f9bff4ac673ce91af6578fdf6373fea2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 18:33:26 2012 +0000

    wacom: Remove custom boolean type

 panels/wacom/calibrator/calibrator.c | 28 ++++++++++++++--------------
 panels/wacom/calibrator/calibrator.h | 16 ++++++----------
 panels/wacom/calibrator/gui_gtk.c    | 34 +++++++++++++++++-----------------
 panels/wacom/calibrator/gui_gtk.h    | 12 ++++++------
 panels/wacom/calibrator/main.c       | 34 +++++++++++++++++-----------------
 panels/wacom/calibrator/main.h       |  8 ++++----
 panels/wacom/cc-wacom-page.c         |  2 +-
 7 files changed, 65 insertions(+), 69 deletions(-)

commit ff3fd9631020f22386959e4f36783eafe49093b6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 18:32:54 2012 +0000

    wacom: Remove custom strdup function

 panels/wacom/calibrator/main.c |  2 +-
 panels/wacom/calibrator/main.h | 12 ------------
 2 files changed, 1 insertion(+), 13 deletions(-)

commit 39b2b3e469491fe8eddf6b24255724c5abc65497
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Thu Dec 8 13:25:32 2011 -0800

    wacom: Show calibration button for display tablets
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657423

 panels/wacom/cc-wacom-page.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 4fecb4c01d4da7eef317ec4dd4c1e1160ceba993
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Mon Jan 9 16:01:14 2012 -0800

    wacom: Implement g-c-c calibration functionality
    
    Adds and handles callback from the "Calibrate" button.
    When clicked, we get the current calibration and feed
    it in to the calibration utility. After it completes
    we get back a modified calibration and an indication
    of success. If it was successful we apply the changes,
    if not, we ignore the modifed calibration.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657423

 panels/wacom/calibrator/gui_gtk.c |   1 -
 panels/wacom/cc-wacom-page.c      | 112 ++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.c   |  36 ++++++++++++
 panels/wacom/gsd-wacom-device.h   |   2 +
 4 files changed, 150 insertions(+), 1 deletion(-)

commit e50dbea1953b24e2f3b5de137b339d31784f0dc7
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Tue Jan 3 12:39:06 2012 -0800

    wacom: Bring over files from xinput-calibrator and build utility
    
    Copies over files from a trimmed version of xinput-calibrator and
    modifies the Makefile.am to build the program as a seperate utility.
    This is just to verify the functionality of the code when built with
    cinnamon-control-center.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657423

 configure.ac                         |   1 +
 panels/wacom/Makefile.am             |   7 +-
 panels/wacom/calibrator/Makefile.am  |  38 ++++
 panels/wacom/calibrator/calibrator.c | 177 +++++++++++++++
 panels/wacom/calibrator/calibrator.h | 119 ++++++++++
 panels/wacom/calibrator/gui_gtk.c    | 411 +++++++++++++++++++++++++++++++++++
 panels/wacom/calibrator/gui_gtk.h    |  68 ++++++
 panels/wacom/calibrator/main.c       | 398 +++++++++++++++++++++++++++++++++
 panels/wacom/calibrator/main.h       |  57 +++++
 9 files changed, 1274 insertions(+), 2 deletions(-)

commit a54c382377dc80f44eddaf0b3bdda95ae156b35f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 14:32:51 2012 +0000

    wacom: Make test app fixed width

 panels/wacom/test-wacom.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 9caefabf2d59c499344fd730590fc3ba1538ddc3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 14:27:43 2012 +0000

    wacom: Make closing the test app work

 panels/wacom/test-wacom.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 5b277e77285211b71773a0d28ea6341ebbdbfba8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 11:07:16 2012 +0000

    wacom: Avoid resizing when changing tablet
    
    Or stylus. Otherwise the width of the panel is dependent on the
    width of the tablet model label.

 panels/wacom/gnome-wacom-properties.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ce05ad72810fb466d7136188187f5004679db8ab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 11:04:14 2012 +0000

    wacom: Fix nav buttons not appearing correctly
    
    Need to show the innards as well

 panels/wacom/cc-wacom-nav-button.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 145079dc1e0dc1f5206a87881fc4f01b05489246
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 10:48:34 2012 +0000

    wacom: Update from g-s-d
    
    Re-adds the fake devices to the test application.

 panels/wacom/gsd-wacom-device.c | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

commit 1ecd6575e988a6adb9ff4b8c261c594d1780467f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 10 10:28:03 2012 +0000

    wacom: Fix startup warnings
    
    g_variant_new_array() creates a floating reference and
    g_settings_set_value() consumes it, so don't unref the GVariant
    ourselves.

 panels/wacom/cc-wacom-page.c | 3 ---
 1 file changed, 3 deletions(-)

commit fbe03baa43aa354e9a3eba69dbc91bfe617da862
Author: Jason Gerecke <killertofu@gmail.com>
Date:   Mon Jan 9 14:09:08 2012 -0800

    wacom: Add trailing slash to schema path
    
    Path names must end in a trailing slash. Without it, the varous
    g_settings_* functions get confused about where to seperate the
    key and value.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=667609

 panels/wacom/gsd-wacom-device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0974b9f34a87557a3389a89f9e50639caa1f8fe2
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Tue Jan 10 10:43:27 2012 +0100

    universal-access: Fix incorrect include path
    
    We were using a prefixed path even though gsettings-desktop-schemas
    already prefixes the include path.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=667616

 panels/universal-access/cc-ua-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8bbd3cba915641366fa1a342beb94d26db37388b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jan 10 10:31:40 2012 +0100

    build: Link language-related code to fontconfig

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 72b36d6aa92e4651886c9a0d31011f3e44f330b5
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Tue Jan 10 01:02:39 2012 +0300

    Updated Belarusian translation.

 po/be.po | 231 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 114 insertions(+), 117 deletions(-)

commit e6d3375ba11fafe22d2678d46b6548fe327ac01c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jan 9 18:05:08 2012 +0100

    Updated Spanish translation

 po/es.po | 247 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 119 insertions(+), 128 deletions(-)

commit 1b74ddb8c52c0d3002aaf1c1bb1af292ec2f3d94
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jan 9 15:22:04 2012 +0000

    network: Move the 'Airplane Mode' switch up into the shell header
    
    This closer matches the mockups done by Lapo.

 panels/network/cc-network-panel.c | 43 +++++++++++++++++++++++++++++++--------
 panels/network/network.ui         | 40 ------------------------------------
 2 files changed, 34 insertions(+), 49 deletions(-)

commit dcb88a861dff1337d1a73249254c0145287b2ec8
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jan 9 15:19:13 2012 +0000

    shell: Allow panels to register custom widgets in the shell header
    
    This allows us to add the kill switch in the various different panels to match
    the mockups, and also allows us to connect up any custom functionality the
    designers want.
    
    For example, in the bluetooth panel we might want to allow the GtkLabel to be
    edited to change the bluetooth device name.

 shell/cc-shell.c             | 21 ++++++++++++++++++++
 shell/cc-shell.h             |  5 +++++
 shell/cinnamon-control-center.c | 46 ++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+)

commit f4bcd50240b93ed1de84ecf96e7399168d8d0d0a
Author: Vincent Untz <vuntz@gnome.org>
Date:   Mon Jan 9 11:15:23 2012 +0100

    shell: Stop calling deprecated g_thread_init()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=667527

 configure.ac           | 2 +-
 shell/control-center.c | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

commit 7c08e54d03fe18c2e3d56d5c89ad130dc7b2530a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 9 11:16:43 2012 +0000

    bluetooth: Remove omnipresent scrollbar
    
    Which we should need most of the time.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=664344

 panels/bluetooth/bluetooth.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d0db3c96e267377815302a79b9ce149395d1d216
Author: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Date:   Thu Dec 15 12:16:37 2011 +0100

    gvc-level-bar: fix shadow global declaration warnings
    
    Those variables are already defined in some headers (like bits/math-finite.h)
    making gcc unhappy.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=666240

 panels/sound/gvc-level-bar.c | 62 ++++++++++++++++++++++----------------------
 1 file changed, 31 insertions(+), 31 deletions(-)

commit 5568917080f9c1fc8a805c6888f3b0f9673b5e6b
Author: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Date:   Thu Dec 15 12:15:25 2011 +0100

    gvc-level-bar: define priv->scale as a GvcLevelScale
    
    That's cleaner and fix a sign-compare warning in gcc.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=666240

 panels/sound/gvc-level-bar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7923b995b7faec47149f6034888f93ec7d130cc5
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jan 9 10:16:52 2012 +0000

    network: Move the device speed up to the device header
    
    This makes the panel closer match the new mockup provided by the design team.

 panels/network/cc-network-panel.c | 72 ++++++++++------------------
 panels/network/network.ui         | 99 ---------------------------------------
 2 files changed, 24 insertions(+), 147 deletions(-)

commit c3011fff77c4c73419225d44643388dbfe40c6be
Author: Rico Tzschichholz <ricotz@t-online.de>
Date:   Sat Jan 7 18:58:27 2012 +0100

    Bump version to 3.3.3 according to the released version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f4cfa529a697606e731c840f9e567b7f4ca5579
Author: Timo Jyrinki <timo@debian.org>
Date:   Sat Jan 7 12:42:48 2012 +0200

    Updated Finnish translation by Jiri Grönroos.

 po/fi.po | 5823 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3123 insertions(+), 2700 deletions(-)

commit 07c7ffaf0c6ae405cdacfd1abdc1ffb53ab2f726
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 6 13:08:25 2012 +0100

    Printers: Show correct hostnames for printers
    
    Show correct hostname for each remote printer. G-c-c gets
    it from printer-uri-supported or from device-uri CUPS options now.
    It also set 'printer-network' icon for remote printers to have them
    easily recognizable from local printers.

 panels/printers/cc-printers-panel.c | 62 ++++++++++-------------
 panels/printers/pp-utils.c          | 99 +++++++++++++++++++++++++++++++++++++
 panels/printers/pp-utils.h          |  7 +++
 3 files changed, 133 insertions(+), 35 deletions(-)

commit c812b9ac16dd13fb90b590845000d0e637a3bd42
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Thu Dec 22 16:14:26 2011 +0000

    Revert "shell: ensure the background and foreground colours are consistent"
    
    This actually breaks unfocused windows theming and doesn't seem to be needed
    otherwise.
    
    This reverts commit aac24399f847df62708d77cb5a0cff025a7ff30d.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=666723

 shell/cc-shell-category-view.c | 51 ------------------------------------------
 shell/cinnamon-control-center.c   | 25 ---------------------
 2 files changed, 76 deletions(-)

commit 0cc4e93269a8d445e33a273a664c00735425c1da
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Tue Jan 3 17:02:08 2012 +0100

    Updated Czech translation

 po/cs.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 050a24873b2aecafb0bee0f720f96c7c4bc9e9c8
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Sat Dec 31 17:31:22 2011 +0200

    [l10n]Updated Turkish translation

 po/tr.po | 1912 +++-----------------------------------------------------------
 1 file changed, 66 insertions(+), 1846 deletions(-)

commit 865a6837c8d1e581cfd087c109ab67f43f72a682
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Wed Dec 28 23:37:05 2011 +0300

    Updated Belarusian translation.

 po/be.po | 5043 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2525 insertions(+), 2518 deletions(-)

commit 4130f7de22124e93015846815e9901ab92026afa
Author: Akom Chotiphantawanon <knight2000@gmail.com>
Date:   Wed Dec 28 14:41:27 2011 +0700

    Updated Thai translation

 po/th.po | 204 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 85 insertions(+), 119 deletions(-)

commit 28d74fc8dac7e46fe36dcbc8878787e8101fcfa1
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Dec 25 11:38:28 2011 +0100

    Updated Czech translation

 po/cs.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit ca2186e7a7260f27b677bdf02e5b8717801e4c1c
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sun Dec 25 03:00:02 2011 +0000

    region: Fix rendering of the layout list in the "add layout" popup
    
    When enabled, "extra" layouts are rendered as italic.
    It was broken, the markup was visible literally - now it is real italic text
    
    Signed-off-by: Sergey V. Udaltsov <svu@gnome.org>

 panels/region/gnome-region-panel-xkbltadd.c | 60 +++++++++++++++++++----------
 1 file changed, 39 insertions(+), 21 deletions(-)

commit a4660a89c3dee251fdc22eb4d9608a9c3f456359
Author: Algimantas Margevičius <margevicius.algimantas@gmail.com>
Date:   Wed Dec 21 22:57:16 2011 +0200

    Updated Lithuanian translation

 po/lt.po | 5513 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 2710 insertions(+), 2803 deletions(-)

commit 8570e384246c762083a7c7115fa13cdd93fdb6f2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Dec 21 13:25:22 2011 -0500

    3.3.3

 NEWS | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

commit 4cd7b6c6dc6c625d46dc8e93cb723544983e41fe
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Mon Dec 19 14:55:53 2011 +0100

    .desktop: Drop prefix from X-GNOME-Keywords
    
    The field has now been included in the spec, so use the standardized
    name.

 panels/background/gnome-background-panel.desktop.in.in             | 2 +-
 panels/color/gnome-color-panel.desktop.in.in                       | 2 +-
 panels/datetime/gnome-datetime-panel.desktop.in.in                 | 2 +-
 panels/display/gnome-display-panel.desktop.in.in                   | 2 +-
 panels/info/gnome-info-panel.desktop.in.in                         | 2 +-
 panels/keyboard/gnome-keyboard-panel.desktop.in.in                 | 2 +-
 panels/mouse/gnome-mouse-panel.desktop.in.in                       | 2 +-
 panels/network/gnome-network-panel.desktop.in.in                   | 2 +-
 panels/online-accounts/gnome-online-accounts-panel.desktop.in.in   | 2 +-
 panels/power/gnome-power-panel.desktop.in.in                       | 2 +-
 panels/printers/gnome-printers-panel.desktop.in.in                 | 2 +-
 panels/region/gnome-region-panel.desktop.in.in                     | 2 +-
 panels/screen/gnome-screen-panel.desktop.in.in                     | 2 +-
 panels/sound/data/gnome-sound-panel.desktop.in.in                  | 2 +-
 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 2 +-
 panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in  | 2 +-
 panels/wacom/gnome-wacom-panel.desktop.in.in                       | 2 +-
 shell/cc-shell-model.c                                             | 2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)

commit 1ffb3ffdc1d598d408eee68c252c3b5dc282212f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 14 18:55:43 2011 +0000

    wacom: Update from gnome-settings-daemon

 panels/wacom/gsd-input-helper.c |  63 +++++++++++++++++++
 panels/wacom/gsd-input-helper.h |   7 ++-
 panels/wacom/gsd-wacom-device.c | 135 ++++++++++++++++++++++++++++++++++++++--
 panels/wacom/gsd-wacom-device.h |   2 +
 4 files changed, 199 insertions(+), 8 deletions(-)

commit eab81355a0c5421123bff0b59c7a53fd189195d3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 12 18:18:39 2011 +0000

    wacom: Update gsd-wacom-device.[ch] from g-s-d
    
    Bringing us per-tablet and per-styli settings and support for multiple
    styli.

 panels/wacom/gsd-wacom-device.c | 304 +++++++++++++++++++++++++---------------
 panels/wacom/gsd-wacom-device.h |   6 +-
 2 files changed, 189 insertions(+), 121 deletions(-)

commit 6296a0f522c2a594b9074346355f7d8de7572b67
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 12 18:18:20 2011 +0000

    wacom: Add gsd-input-helper.[ch] from g-s-d

 panels/wacom/Makefile.am        |   6 +-
 panels/wacom/gsd-input-helper.c | 421 ++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-input-helper.h |  77 ++++++++
 3 files changed, 503 insertions(+), 1 deletion(-)

commit 9b9df97802296d0aa82e23937d88c31fef29329c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 12 18:18:00 2011 +0000

    wacom: Add dependency on libwacom

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d5623b731ef6b2b486e0ccecbf852ef434e7841e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 12 18:17:24 2011 +0000

    wacom: Don't crash if created devices don't exist

 panels/wacom/test-wacom.c | 3 +++
 1 file changed, 3 insertions(+)

commit 5421c92eb624f664c98ff08a1f3a179928e36b52
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Dec 12 12:56:00 2011 +0100

    Printers: Don't crash because of external panel switch
    
    Don't crash when exiting from new printer dialog due to external change
    of panel (e.g. clicking "Network Settings" during run of the new printer
    dialog). (rhbz #760587)

 panels/printers/cc-printers-panel.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit b0596b907a4c7feb458d7bcf2ade9788b155fe5f
Author: Jovan Naumovski <jovan3.14@gmail.com>
Date:   Sat Dec 10 21:09:10 2011 +0100

    Added Macedonian translation.

 po/mk.po | 8663 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 5616 insertions(+), 3047 deletions(-)

commit 46663c8c159ca9daaecbaf3b1e40dee6c9cc1d6d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Dec 10 10:54:24 2011 +0200

    Updated Hebrew translation.

 po/he.po | 5310 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2683 insertions(+), 2627 deletions(-)

commit 96f140542a24f81a329f2706547918dc460aaf10
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Dec 2 18:25:55 2011 +0100

    Updated Spanish translation

 po/es.po | 141 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 75 insertions(+), 66 deletions(-)

commit fc412aef0bd8d411cc4d3825ccc344e4053b086a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 1 19:10:13 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 5497 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 2691 insertions(+), 2806 deletions(-)

commit d708660eb04a1dde641d6bbb7d0a7704d06692dd
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 29 10:04:37 2011 +0100

    Rename 'System info' panel to Details
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661696

 panels/info/gnome-info-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b39356f69c8562468f06cf412612eafa124291a8
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 15:06:05 2011 -0500

    wacom: add some spacing between the panel sections
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665079

 panels/wacom/cc-wacom-nav-button.c     | 2 ++
 panels/wacom/gnome-wacom-properties.ui | 4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 87297edb39b3d96a86f48a6ca14f5315c7dfb965
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 15:03:51 2011 -0500

    wacom: fix packing for the left handed switch section
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665079

 panels/wacom/gnome-wacom-properties.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 62e670963e53d2498ba7e0ea8109723a1e1ae8a8
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 14:57:31 2011 -0500

    wacom: make sure description labels are right-aligned and dim
    
    As in the mockups.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665079

 panels/wacom/gnome-wacom-properties.ui | 25 ++++++++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

commit 5b86a93dfd709b0eb762acd07f0dd347b1fd6a0e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 14:52:24 2011 -0500

    wacom: add the LINKED style class to the navigation widget
    
    GTK+ defines a LINKED style class for linked containers now; set it on
    the navigation widget so that the theme can render the buttons
    connected.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665079

 panels/wacom/cc-wacom-nav-button.c | 3 +++
 1 file changed, 3 insertions(+)

commit 16d6558c6614c346239e6b858858f0ac28f29d07
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 14:47:23 2011 -0500

    build: require GTK+ master
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665079

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ce8186dba11df9847534ccfb2ad352f5831e77fc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 28 18:23:28 2011 +0000

    wacom: Add navigation button to navigate between styli
    
    Looks a bit rough, but functionality is present.

 panels/wacom/cc-wacom-page.c           | 21 +++++++++++++++++++++
 panels/wacom/cc-wacom-page.h           |  4 ++++
 panels/wacom/cc-wacom-panel.c          |  1 +
 panels/wacom/gnome-wacom-properties.ui |  4 ++--
 panels/wacom/test-wacom.c              |  3 ++-
 5 files changed, 30 insertions(+), 3 deletions(-)

commit 46a3b9697bcd004241d311edfe98774544b8d3ba
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 28 18:23:05 2011 +0000

    wacom: Add navigation button

 panels/wacom/Makefile.am           |   6 +-
 panels/wacom/cc-wacom-nav-button.c | 233 +++++++++++++++++++++++++++++++++++++
 panels/wacom/cc-wacom-nav-button.h |  73 ++++++++++++
 3 files changed, 311 insertions(+), 1 deletion(-)

commit 6255fccc8ceee8ad25024eaa12cba75a3b52ffd4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 28 16:37:55 2011 +0000

    wacom: Remove unused finalize function

 panels/wacom/cc-wacom-page.c | 7 -------
 1 file changed, 7 deletions(-)

commit 78e502e3577144602095081e3cd36e01d7573adc
Author: Xandru Armesto <xandru@softastur.org>
Date:   Mon Nov 28 18:42:22 2011 +0100

    Updated asturian translation

 po/ast.po | 4894 ++++++++++++++++++++++++++-----------------------------------
 1 file changed, 2101 insertions(+), 2793 deletions(-)

commit 1dd7d8fef88cd3feb2efa3ce18617862e239e4ce
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 10:13:10 2011 -0500

    info: use dim-label style and right align for description labels
    
    cinnamon-control-center (inconsistently) uses right-aligned dim-label
    widgets for description labels (for example, in the System Info,
    User Accounts and Printer panels)
    Use them in the whole System Info panel here as well.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665059

 panels/info/info.ui | 53 +++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 43 insertions(+), 10 deletions(-)

commit 33747351a85df5bfa8ab112b57810b45dd796f1c
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 28 10:10:57 2011 -0500

    display: use dim-label style and right align for description labels
    
    cinnamon-control-center (inconsistently) uses right-aligned dim-label
    widgets for description labels (for example, in the System Info, User
    Accounts and Printer panels)
    Use them in the Display panel here as well.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=665057

 panels/display/display-capplet.ui | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 8fdbaea0e79b4751c2efc3b23c38123fcbfcbbdf
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Nov 28 15:41:11 2011 +0100

    Printers: Store DBus subscription id for unsubscription
    
    Store subscription id returned by g_dbus_connection_signal_subscribe()
    and unsubscribe the signal with it when not needed any more. This should
    fix rhbz #752168.

 panels/printers/cc-printers-panel.c | 29 +++++++++++++++++++----------
 1 file changed, 19 insertions(+), 10 deletions(-)

commit 77bbcfad02e972826aedc2d79eb4d7972130c22c
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Sun Nov 27 11:41:01 2011 +0530

    Added Telugu Translation

 help/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 68c38a1ba02feb18f61e1886f2cd65d1c6a13150
Author: Praveen Illa <mail2ipn@gmail.com>
Date:   Sun Nov 27 11:40:27 2011 +0530

    Updated Telugu Translation

 help/te/te.po | 131 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 131 insertions(+)

commit 653c213c84547f7296d04b2a34592c862cc2112e
Author: Seong-ho, Cho <darkcircle.0426@gmail.com>
Date:   Sat Nov 26 17:21:04 2011 +0900

    Updated Korean help translation

 help/ko/ko.po | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

commit da26a8e1cf1c478c57bd0bc38135e09ab3852736
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 17:03:19 2011 +0000

    wacom: Add test program for the pages
    
    No need to carry hardware around, cheers!

 panels/wacom/Makefile.am  | 12 ++++++++++
 panels/wacom/test-wacom.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

commit b73a0a7c6ab381b2927198255072d2f83d95df91
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 16:52:08 2011 +0000

    wacom: Add required libs to the requirements
    
    They were only dragged in through GTK+ with XI2 support.

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 54849a9e97d58ec7536647ab5b5472d85e9f9d41
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 16:43:55 2011 +0000

    wacom: Only the stylus and eraser tools need to exist
    
    And then again, not even sure about the eraser. But there
    are devices we support that don't need the pad tool, such as the
    Thinkpad X201 tablet.

 panels/wacom/cc-wacom-page.c  | 17 ++++++-----------
 panels/wacom/cc-wacom-page.h  |  3 +--
 panels/wacom/cc-wacom-panel.c |  9 ++-------
 3 files changed, 9 insertions(+), 20 deletions(-)

commit d17cc86ce9cc9c0a3ed0620b94366f585dc5a541
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 16:35:31 2011 +0000

    wacom: Add Thinkpad X201 fake device

 panels/wacom/gsd-wacom-device.c | 29 ++++++++++++++++++++++++++++-
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 29 insertions(+), 1 deletion(-)

commit b583f5c07f5ddb82e37c0951350b61b7ae7ceaf1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 16:30:30 2011 +0000

    wacom: Add Wacom BT fake device

 panels/wacom/gsd-wacom-device.c | 45 +++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 46 insertions(+)

commit 4b137420aefdcc621ed9d8cd8c2fa97a3a467493
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 16:30:11 2011 +0000

    wacom: Add FIXME

 panels/wacom/gsd-wacom-device.c | 1 +
 1 file changed, 1 insertion(+)

commit 05546dd3ffa130e1c7961b8671c9150f129d3d34
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 16:09:13 2011 +0000

    wacom: Add functions to create fake devices

 panels/wacom/gsd-wacom-device.c | 77 +++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h | 11 ++++++
 2 files changed, 88 insertions(+)

commit 2e989dbe96a32481a5a4a98ec1fc1191a0c62746
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 15:05:34 2011 +0000

    wacom: Use icon-name from tablet and stylus

 panels/wacom/cc-wacom-page.c | 58 +++++++++++++++++++++++++++++++++++---------
 1 file changed, 47 insertions(+), 11 deletions(-)

commit 627f17226c15383e3ac5b8c247e2fbe2379e7970
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 14:55:40 2011 +0000

    wacom: Install new assets

 panels/wacom/Makefile.am | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit e88ec649421de87cd5d746c7b0076c0122dc4856
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 14:51:41 2011 +0000

    wacom: Fix creation of eraser

 panels/wacom/gsd-wacom-device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f47d5debc160e4572cb553889d5a19692ffce47f
Author: Yinghua Wang <wantinghard@gmail.com>
Date:   Fri Nov 25 14:21:03 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 6122 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3261 insertions(+), 2861 deletions(-)

commit 19228ed0721f240c2582a078414b5a40cc8716f6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 14:06:34 2011 +0000

    wacom: Add icon-name property to tablets

 panels/wacom/gsd-wacom-device.c | 13 +++++++++++++
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 14 insertions(+)

commit e999a08a4e422518832e7fd5d68e8d6f1f69f49c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 14:06:07 2011 +0000

    wacom: Add icon-name property to styli

 panels/wacom/gsd-wacom-device.c | 25 ++++++++++++++++++++-----
 panels/wacom/gsd-wacom-device.h |  1 +
 2 files changed, 21 insertions(+), 5 deletions(-)

commit 527b4a10a90957a93a4261c32c848d09c33e936a
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Fri Nov 25 14:46:34 2011 +0100

    wacom: inking pen, +tweaks to color/grid snapping.

 panels/wacom/wacom-stylus-airbrush.svg | 19 +++----
 panels/wacom/wacom-stylus-inking.svg   | 93 ++++++++++++++++++++++++++++++++++
 panels/wacom/wacom-stylus.svg          | 18 +++----
 panels/wacom/wacom-tablet-cintiq.svg   | 14 ++---
 panels/wacom/wacom-tablet-pc.svg       | 12 ++---
 5 files changed, 125 insertions(+), 31 deletions(-)

commit dac37d92c12dad342ee04ae44ef66147c5b891b6
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Fri Nov 25 14:00:20 2011 +0100

    wacom: add more generic device gfx
    
    - wacom-tablet is a regular type (intuos family), wacom-tablet-cintiq is the screen tablet family, wacom-tablet-pc is the tablet pcs (laptops)
    - added airbrush stylus (more to come)
    - tweaked pixel snapping on stylus

 panels/wacom/wacom-stylus-airbrush.svg | 99 ++++++++++++++++++++++++++++++++++
 panels/wacom/wacom-stylus.svg          | 22 +++++---
 panels/wacom/wacom-tablet-cintiq.svg   | 83 ++++++++++++++++++++++++++++
 panels/wacom/wacom-tablet-pc.svg       | 77 ++++++++++++++++++++++++++
 panels/wacom/wacom-tablet.svg          | 21 ++++----
 5 files changed, 284 insertions(+), 18 deletions(-)

commit 7ca6df2452ef9a50ccd7837ec1a427155eba9692
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 25 11:58:43 2011 +0000

    keyboard: Fix shortcut always showing up empty
    
    When starting afresh. The binding was never read from
    GSettings on startup otherwise.
    
    Spotted by Yanko Kaneti <yaneti@declera.com>

 panels/keyboard/cc-keyboard-item.c | 2 ++
 1 file changed, 2 insertions(+)

commit fd15de05444e7c93c715107c462ba9e129cfbbc5
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Fri Nov 25 00:25:28 2011 +0400

    Updated Russian translation

 po/ru.po | 5946 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3156 insertions(+), 2790 deletions(-)

commit d67e0c3ab317531ed8e66bebffcb805af2b3f02d
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Nov 24 20:39:02 2011 +0100

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 6ab73fd36a7b7bb49e654f2ec55a77b96f7a934c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 19:12:39 2011 +0000

    wacom: Reversible by default
    
    As that was the default in 3.2

 panels/wacom/gsd-wacom-device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2baac2b28e09fb2dbf32153b6b662affbfe98419
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 19:12:14 2011 +0000

    wacom: Follow the GsdWacomDevice reversible property

 panels/wacom/cc-wacom-page.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 12f0e30dcb476b845b40b154df504e9d761404ad
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 19:07:41 2011 +0000

    wacom: Get the tablet name from the device

 panels/wacom/cc-wacom-page.c | 2 ++
 1 file changed, 2 insertions(+)

commit 87fc4c9a60e85beece8f04856a6f74f4ed28fb1c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 19:00:44 2011 +0000

    wacom: Update for CcWacomPage changes
    
    Pages are now created dynamically, and the UI supports multiple
    different types of tablets (even though GsdWacomDevice doesn't, and
    we don't have any UI to switch devices).

 panels/wacom/cc-wacom-panel.c | 213 ++++++++++++++++++++++++++++++++++--------
 1 file changed, 172 insertions(+), 41 deletions(-)

commit 8f6fc0e3170947d8a6d98a6d0e39fa9cab33e587
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 18:58:29 2011 +0000

    wacom: Create CcWacomPage from GsdWacomDevices
    
    Instead of hard-coding the location of settings.

 panels/wacom/cc-wacom-page.c | 63 ++++++++++++++++++++++++++------------------
 panels/wacom/cc-wacom-page.h |  5 +++-
 2 files changed, 41 insertions(+), 27 deletions(-)

commit 7976938fc61f36d1d754117d4039eed664771520
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 18:15:27 2011 +0000

    wacom: Remove unused finalize function

 panels/wacom/cc-wacom-panel.c | 7 -------
 1 file changed, 7 deletions(-)

commit d44d5939b4b2ad19c96dcf78f77799946a944cfb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 15:49:49 2011 +0000

    wacom: Add copy/paste GsdWacomDevice from g-s-d

 panels/wacom/Makefile.am        |   4 +-
 panels/wacom/gsd-wacom-device.c | 483 ++++++++++++++++++++++++++++++++++++++++
 panels/wacom/gsd-wacom-device.h |  99 ++++++++
 3 files changed, 585 insertions(+), 1 deletion(-)

commit 46bfcd1bc3cd848453b2845b145c3105bbc4cb35
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 24 15:34:52 2011 +0000

    wacom: Split out the tablet page
    
    So we can reuse it for separate tablet configurations.

 panels/wacom/Makefile.am               |   4 +-
 panels/wacom/cc-wacom-page.c           | 466 +++++++++++++++++++++++++++++++++
 panels/wacom/cc-wacom-page.h           |  74 ++++++
 panels/wacom/cc-wacom-panel.c          | 346 ++----------------------
 panels/wacom/cc-wacom-panel.h          |   5 +-
 panels/wacom/gnome-wacom-properties.ui |   2 +-
 6 files changed, 567 insertions(+), 330 deletions(-)

commit 49bf7a18cedcf8ba199e67c102ada0b1ad653718
Author: Akom Chotiphantawanon <knight2000@gmail.com>
Date:   Thu Nov 24 17:13:03 2011 +0700

    Updated Thai translation.

 po/th.po | 5708 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3069 insertions(+), 2639 deletions(-)

commit 9e57c9419df7230d070c07f222a7518bc3d3d6e7
Author: Thura Hlaing <trhura@gmail.com>
Date:   Thu Nov 24 08:33:03 2011 +0100

    [l10n]Added Brumese translation

 po/LINGUAS |    1 +
 po/my.po   | 3520 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3521 insertions(+)

commit 9d96073023ebda9480ea42f733f51f1cb0e3ff17
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 22 18:16:02 2011 +0000

    wacom: Minimum port to latest g-s-d code
    
    Just so that we don't crash on startup.

 panels/wacom/cc-wacom-panel.c | 31 +++++++------------------------
 1 file changed, 7 insertions(+), 24 deletions(-)

commit 4c806ba60ae03eb5d94ef87679f1a11c1afa1437
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 21 17:13:54 2011 -0500

    language-chooser: make the filter entry grab focus on creation
    
    The filter entry should have initial keyboard focus, so typing in the
    dialog right away will filter it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=664505

 panels/common/cc-language-chooser.c | 1 +
 1 file changed, 1 insertion(+)

commit c72a3abfe5bf0ca20ec2c453af22ca822b1c16dd
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 21 17:12:13 2011 -0500

    language-chooser: disable built-in typeahead search entry
    
    Since we already have a filter entry inline, the one provided by
    GtkTreeView is just redundant and confusing.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=664503

 panels/common/language-chooser.ui | 1 +
 1 file changed, 1 insertion(+)

commit ee925d473128220520d6479edd6d387831835126
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 22 11:21:30 2011 +0100

    Release 3.3.2

 NEWS         | 139 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |   2 +-
 2 files changed, 140 insertions(+), 1 deletion(-)

commit a43db9ed769bbef39dd3fb89ab4b3cff84f65011
Author: YunQiang Su <yqsu@src.gnome.org>
Date:   Mon Nov 21 19:39:51 2011 +0800

    fix zh_CN translation

 po/zh_CN.po | 320 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 160 insertions(+), 160 deletions(-)

commit 58eec2a1d4e4f506fa9ecbe15a5566afd5b5110d
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Sat Nov 19 22:20:41 2011 +0200

    Updated Greek translation

 po/el.po | 6265 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3481 insertions(+), 2784 deletions(-)

commit 0908a7148030a397ab6225262a6531d58ed88826
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Fri Nov 18 15:04:46 2011 +0100

    [l10n] Updated German translation

 po/de.po | 5264 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 2584 insertions(+), 2680 deletions(-)

commit 36f36a50336803f5ce532fc83f171ed101acbc11
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Thu Nov 17 18:17:29 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 4783 ++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 4791 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 5096 insertions(+), 4478 deletions(-)

commit 79b57a96580e5c9c41576523c747fa54144142af
Author: Benjamín Valero Espinosa <benjavalero@gmail.com>
Date:   Wed Nov 16 14:23:20 2011 +0100

    Updated Spanish translation

 po/es.po | 5888 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2930 insertions(+), 2958 deletions(-)

commit 47d6410830673074bb73a5b818e1d304c37a4681
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Wed Nov 16 09:36:35 2011 +0200

    [l10n]Updated Turkish translation

 po/tr.po | 5958 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 2906 insertions(+), 3052 deletions(-)

commit 3e82d5386033e8fbf3f5bf9f6a7fced4f089a74f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 18:08:24 2011 +0000

    build: Remove obsolete GConf dependency
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625899

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 478add1ada2b8c59cb3d56150f1743d1d0eb08ec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 18:08:11 2011 +0000

    keyboard: Remove obsolete GConf dependency

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9f107a4760ac1c178edfcfb774b9e629271ff16b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 18:07:30 2011 +0000

    keyboard: Remove support code for GConf keybindings

 panels/keyboard/cc-keyboard-item.c | 108 +------------------------------------
 panels/keyboard/cc-keyboard-item.h |  13 -----
 2 files changed, 1 insertion(+), 120 deletions(-)

commit 3207fe97ec516c11f2f781269f9342f36fa8161b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 18:07:09 2011 +0000

    keyboard: Remove support for loading GConf keybindings

 panels/keyboard/keyboard-shortcuts.c | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

commit 656d0ee4b0584badb9a5a954a5a54cb3935e8844
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Nov 11 00:34:57 2011 +0100

    keyboard: Port custom shortcuts to GSettings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625899

 panels/keyboard/cc-keyboard-item.c   | 133 +++++-------------
 panels/keyboard/cc-keyboard-item.h   |  17 +--
 panels/keyboard/keyboard-shortcuts.c | 266 ++++++++++++-----------------------
 3 files changed, 128 insertions(+), 288 deletions(-)

commit b6e65f051203b76389f2f30b7f057b33f8d74083
Author: Petr Kovar <pkovar@redhat.com>
Date:   Mon Nov 14 18:36:45 2011 +0100

    Fix Czech translation

 po/cs.po | 5760 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3164 insertions(+), 2596 deletions(-)

commit 1588b9cba4c0fb039ed3434019d9b0549e96d518
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Nov 14 18:25:30 2011 +0100

    Updated Polish translation

 help/pl/pl.po | 104 ++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 80 insertions(+), 24 deletions(-)

commit 96d6adc4f800048d37ef2858db73ba5bfb415346
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Mon Nov 14 18:59:50 2011 +0200

    [l10n]Updated Turkish translation

 po/tr.po | 428 +++++++++++++++++++++------------------------------------------
 1 file changed, 139 insertions(+), 289 deletions(-)

commit 39b83afbdc855abda0b387eb90b854edcf48b5d9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Nov 14 17:50:14 2011 +0100

    Updated POTFILES.in

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit c02846a67aaa36394c6ef48bc13477b63e4539c5
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Nov 14 17:44:01 2011 +0100

    Updated POTFILES.in

 po/POTFILES.in   | 70 +++++++++++++++++++++++++++-----------------------------
 po/POTFILES.skip | 33 +++++++-------------------
 2 files changed, 42 insertions(+), 61 deletions(-)

commit bc6d4b3cf15beeb580757786b71f4333afe6bb42
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 14:29:31 2011 +0000

    universal-access: Remove unused GConf helper

 configure.ac                                    |    2 +-
 panels/universal-access/Makefile.am             |    2 -
 panels/universal-access/gconf-property-editor.c | 1869 -----------------------
 panels/universal-access/gconf-property-editor.h |  164 --
 4 files changed, 1 insertion(+), 2036 deletions(-)

commit 957374dfa90c6626bdd0df945fd680d31cafbe21
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 14:27:40 2011 +0000

    universal-access: Update for metacity GSettings port
    
    Use GSettings to set the visual-bell preferences, rather than GConf.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625899

 configure.ac                          |   5 +-
 panels/universal-access/cc-ua-panel.c | 128 +++++++---------------------------
 2 files changed, 28 insertions(+), 105 deletions(-)

commit a8e2bbfdc6d2638c81bcaa788cb4fa4de8c64a06
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 14 10:50:13 2011 +0000

    sound: Port audible-bell to GSettings
    
    Now that metacity and mutter have been ported to GSettings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625899

 panels/sound/gvc-sound-theme-chooser.c | 47 +++++++++-------------------------
 1 file changed, 12 insertions(+), 35 deletions(-)

commit 246a44ce6c87bb0a51ddbc368c2b504f971e54cb
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Nov 9 03:53:35 2011 +0100

    keyboard: Stop monitoring num-workspaces
    
    Metacity/Mutter no longer have conditional shortcuts depending on
    the number of workspaces, so there is no need to monitor the
    num-workspaces settings (and reload all keybindings).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663431

 panels/keyboard/keyboard-shortcuts.c | 23 -----------------------
 1 file changed, 23 deletions(-)

commit a344a40fbcc3a3356fb336ffea9bd0e7cbaa5b31
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Nov 13 10:44:13 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 717 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 420 insertions(+), 297 deletions(-)

commit be4e40bf99c0c89a40fa54ab9c73176d3f432a1a
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Nov 4 21:06:49 2011 +0100

    keyboard: Remove support for conditional shortcuts
    
    Keyboard shortcut definitions could specify a condition to determine
    whether it should be shown in the UI or not. This was only used by
    Metacity/Mutter, to make the visibility of some shortcuts depend on
    the number of workspaces. However, as workspaces are now managed
    dynamically in GNOME 3, the frequent changes to the list of shortcuts
    have become rather confusing, so a fixed list of shortcuts is used now.
    
    With the only consumer of conditional shortcuts gone, there's no reason
    to keep the feature around.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663431

 panels/keyboard/keyboard-shortcuts.c | 90 +-----------------------------------
 1 file changed, 1 insertion(+), 89 deletions(-)

commit 1ce466f80bf83e733339362f2cd9bde68943bf2d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 11 13:17:26 2011 +0000

    universal-access: Avoid crashing when GConf is broken
    
    Or when metacity is badly installed. gconf_value_get_string()
    _can_ return NULL.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=751007

 panels/universal-access/cc-ua-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ab33ef40dc947f97b98345bd9db02e802d06406a
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Fri Nov 11 11:29:59 2011 +0200

    [l10n]Updated Turkish translation

 po/tr.po | 2899 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1842 insertions(+), 1057 deletions(-)

commit e3a0a37e2525a87f2ec9e662fedaa8525a37070c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Nov 9 20:27:25 2011 +0100

    Updated Spanish translation

 po/es.po | 139 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 82 insertions(+), 57 deletions(-)

commit 7ef660b71357e74d32548da83fb2071b41315945
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Wed Nov 9 13:59:01 2011 +0100

    Updated Galician translations

 po/gl.po | 116 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 70 insertions(+), 46 deletions(-)

commit 314224ab3a7184c3da3437058ad84c3c23903194
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 9 00:03:15 2011 +0000

    keyboard: Rename a11y keyboard shortcuts
    
    To match the design documents in:
    https://live.gnome.org/Design/SystemSettings/Keyboard
    and the feature names in the UA panel

 panels/keyboard/50-accessibility.xml.in | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 4c9026249ea5076c90954ed27a5f6833ff9ebaee
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Nov 8 23:24:53 2011 +0100

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 96e37d6ec7a607e3277ba5847c58b53b3b7997a8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 8 20:41:58 2011 +0000

    build: Build .tar.xz tarballs by default

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7d060a2508ce96152139672a8f67b8ff1a7a4157
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Tue Nov 8 15:04:57 2011 +0100

    keyboard: Adjust shortcut files
    
    Some keybindings have been moved from metacity/mutter to g-s-d;
    update the shortcut files to reflect that change.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663626

 panels/keyboard/01-screenshot.xml.in | 11 +++++++++++
 panels/keyboard/Makefile.am          |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit e5747afe418b39cc4efc02ea3a2e3ef928faaa88
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Nov 8 13:07:03 2011 +0100

    Printers: Don't allow "/" in printer name
    
    Remove "/" from allowed characters so that models which contain
    this character can be added successfully (#661774).

 panels/printers/pp-new-printer-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6665b60422b58f94f6a19e99e2ab587a08e2fda4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 7 17:50:40 2011 +0000

    panels: Update for Shell API changes

 panels/background/cc-background-panel.h           | 2 +-
 panels/bluetooth/cc-bluetooth-panel.c             | 2 +-
 panels/bluetooth/cc-bluetooth-panel.h             | 2 +-
 panels/color/cc-color-panel.h                     | 2 +-
 panels/datetime/cc-datetime-panel.h               | 2 +-
 panels/display/cc-display-panel.h                 | 2 +-
 panels/info/Makefile.am                           | 1 -
 panels/info/cc-info-panel.h                       | 2 +-
 panels/keyboard/cc-keyboard-panel.h               | 2 +-
 panels/keyboard/gnome-keyboard-panel.h            | 2 +-
 panels/keyboard/keyboard-general.h                | 2 +-
 panels/keyboard/keyboard-shortcuts.h              | 2 +-
 panels/mouse/cc-mouse-panel.h                     | 2 +-
 panels/network/cc-network-panel.h                 | 2 +-
 panels/network/network-dialogs.c                  | 2 +-
 panels/online-accounts/cc-online-accounts-panel.h | 2 +-
 panels/power/cc-power-panel.h                     | 2 +-
 panels/printers/Makefile.am                       | 2 +-
 panels/printers/cc-printers-panel.h               | 2 +-
 panels/region/cc-region-panel.h                   | 2 +-
 panels/screen/cc-screen-panel.h                   | 2 +-
 panels/sound/cc-sound-panel.h                     | 2 +-
 panels/universal-access/cc-ua-panel.h             | 2 +-
 panels/user-accounts/Makefile.am                  | 1 -
 panels/user-accounts/um-user-panel.c              | 3 ++-
 panels/user-accounts/um-user-panel.h              | 2 +-
 panels/wacom/cc-wacom-panel.h                     | 2 +-
 27 files changed, 26 insertions(+), 27 deletions(-)

commit 27c45abda3294239c7881a2ad878d9d1443f099a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 7 17:51:54 2011 +0000

    shell: Merge libcinnamon-control-center into main binary
    
    This fixes problems with the CcEditableEntry type not being
    registered and causing the printers and user-accounts panels not to
    work. As we do not need to work on Windows, we do not need to split
    out the library.

 Makefile.am                                 |   4 +-
 configure.ac                                |   1 -
 libcinnamon-control-center/Makefile.am         |  31 --
 libcinnamon-control-center/cc-editable-entry.c | 546 ----------------------------
 libcinnamon-control-center/cc-editable-entry.h |  75 ----
 libcinnamon-control-center/cc-panel.c          | 248 -------------
 libcinnamon-control-center/cc-panel.h          |  81 -----
 libcinnamon-control-center/cc-shell.c          | 238 ------------
 libcinnamon-control-center/cc-shell.h          | 107 ------
 shell/Makefile.am                           |   8 +-
 shell/cc-editable-entry.c                   | 546 ++++++++++++++++++++++++++++
 shell/cc-editable-entry.h                   |  75 ++++
 shell/cc-panel.c                            | 248 +++++++++++++
 shell/cc-panel.h                            |  81 +++++
 shell/cc-shell.c                            | 238 ++++++++++++
 shell/cc-shell.h                            | 107 ++++++
 shell/cinnamon-control-center.h                |   2 +-
 17 files changed, 1304 insertions(+), 1332 deletions(-)

commit acd1d3c6df9fee02d4e9961bd522a4def300242b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 7 17:24:03 2011 +0000

    po: Remove non-existant file from list

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit 6677b328fc3e078913bf37e4546619cab5116b86
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sun Nov 6 20:40:57 2011 +0100

    Updated Slovenian translation

 po/sl.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 231407ca94127f83f8df687d2c81e41f068b64a0
Author: Algimantas Margevičius <gymka@mail.ru>
Date:   Sun Nov 6 00:49:18 2011 +0200

    Updated Lithuanian translation

 po/lt.po | 612 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 363 insertions(+), 249 deletions(-)

commit 18c4c3d81bffaa20face4ed2600093e388b4140a
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sat Nov 5 20:30:06 2011 +0100

    [l10n] Updated German translation

 po/de.po | 594 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 364 insertions(+), 230 deletions(-)

commit 7ae7da4c31282f99d845526f7727d2f1b0d7004c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 3 17:29:41 2011 +0000

    common: Remove copy-paste egg code
    
    Now in GTK+ itself.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663341

 panels/common/Makefile.am       |  11 +-
 panels/common/eggaccelerators.c | 655 ----------------------------------------
 panels/common/eggaccelerators.h |  95 ------
 3 files changed, 1 insertion(+), 760 deletions(-)

commit 1465f98af9641b19236afb266a571a0d71b74e7a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 3 17:29:15 2011 +0000

    universal-access: Use GTK+ instead of custom code
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663341

 panels/universal-access/Makefile.am   |  2 +-
 panels/universal-access/cc-ua-panel.c | 11 ++++++-----
 2 files changed, 7 insertions(+), 6 deletions(-)

commit df493ef93cd8adb65e666652ad90943b5f65c9cd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 3 17:25:29 2011 +0000

    keyboard: Use GTK+ to parse keys
    
    Instead of some custom code
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663341

 configure.ac                         | 2 +-
 panels/keyboard/Makefile.am          | 2 +-
 panels/keyboard/cc-keyboard-item.c   | 8 ++++++--
 panels/keyboard/cc-keyboard-item.h   | 1 -
 panels/keyboard/keyboard-shortcuts.c | 4 ++--
 5 files changed, 10 insertions(+), 7 deletions(-)

commit a795220be7d3af93e331e6f3a8733513c2bf2caf
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Nov 4 13:42:01 2011 +0100

    Updated Spanish translation

 po/es.po | 123 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 79 insertions(+), 44 deletions(-)

commit 3ced150a82243131e9a44ea04610b1158dd4f8fc
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Nov 4 13:00:01 2011 +0100

    Updated Galician translations

 po/gl.po | 304 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 167 insertions(+), 137 deletions(-)

commit 57a1099b24443f641266b47d04b4524e9a40995c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Nov 3 14:05:49 2011 -0400

    network: Make tabbing through the proxy page work

 panels/network/network.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b5acac3bf5474f0f5e533a6f5cd0d3f9596fc268
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Nov 3 14:04:43 2011 -0400

    power: Add some labelled-by relations for a11y

 panels/power/power.ui | 8 ++++++++
 1 file changed, 8 insertions(+)

commit e835213cb829835dc8e6aaaa4c5a5be7f10d6c7c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 3 17:45:12 2011 +0000

    network: Add proxy to the keywords
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663340

 panels/network/gnome-network-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b202b0a9b3f60482805110a0a4981e949fe1ceb2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 28 16:54:49 2011 +0100

    sound: Export sysfs path in stream properties
    
    Which makes it easier to locate devices in the UDev tree.

 panels/sound/gvc-mixer-control.c |  1 +
 panels/sound/gvc-mixer-stream.c  | 38 ++++++++++++++++++++++++++++++++++++++
 panels/sound/gvc-mixer-stream.h  |  3 +++
 3 files changed, 42 insertions(+)

commit 9088ef2870c5de04f8e1d016062f8a6425d8d2fe
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Nov 3 13:21:07 2011 -0400

    User-accounts: Add a few accessibility labels

 panels/user-accounts/data/user-accounts-dialog.ui | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit 4181028c724e8216d270ce1356c852a0e4e901c2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Nov 3 11:00:11 2011 -0400

    Network: accessibility improvements
    
    Add missing relations and labels to make orca speak a bit more
    understandably.

 panels/network/network.ui | 63 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)

commit 1f2604aa16bea6fd2fd552cc5968274442ea8722
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Nov 3 15:54:56 2011 +0100

    Updated Spanish translation

 po/es.po | 230 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 100 insertions(+), 130 deletions(-)

commit aa2bd98aea1104f0bbbe87d6bab29b92c0dcec8a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Nov 3 09:15:36 2011 -0400

    Background: Add accessible labels
    
    Image-only controls work much better with ATs if they have
    labels that can e.g. be read in orca.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=663320

 panels/background/background.ui | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit d1f38fed35c2734c4eca50108a9adb3ead0257f6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Nov 3 08:48:41 2011 -0400

    info: Add labelling relations
    
    This lets ATs such as orca know what label belongs to what
    data field, and makes the text read by orca much more useful.

 panels/info/info.ui | 6 ++++++
 1 file changed, 6 insertions(+)

commit af40a98f80d96d4ce15bfa1e849aa6910d018bd3
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Nov 1 13:51:18 2011 +0100

    Printers: Detect disconnection of printer
    
    Connect to CUPS' "printer-stopped" event so the panel can change state
    of the printer when unplugged (rhbz #743884).

 panels/printers/cc-printers-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 85feb058e0370c9c5899c0dae9ae8edd4351336e
Author: Ali Akbar Najafian <ali_njfn@yahoo.com>
Date:   Sun Oct 30 17:12:16 2011 +0330

    Updated Persian documentation

 help/Makefile.am |   2 +-
 help/fa/fa.po    | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+), 1 deletion(-)

commit 8d3183d6f5709c81bd057073609e9680e0d84079
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Oct 28 13:57:01 2011 +0200

    Updated Hebrew translation.

 po/he.po | 568 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 318 insertions(+), 250 deletions(-)

commit 1ae2d8a033670fe2ad2e711c84ab738b33f8f471
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Oct 27 21:56:05 2011 +0200

    Updated POTFILES.in

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit 6e99f7663a45b886b55093ddd10ad1f5c7bfc402
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 27 16:25:35 2011 +0100

    keyboard: Use GtkCellRendererAccel
    
    Instead of custom code. This means loads of code we don't need
    to maintain, whoo!

 panels/keyboard/Makefile.am           |   4 +-
 panels/keyboard/cc-keyboard-item.c    |   4 +-
 panels/keyboard/cc-keyboard-item.h    |   2 +-
 panels/keyboard/eggcellrendererkeys.c | 737 ----------------------------------
 panels/keyboard/eggcellrendererkeys.h |  89 ----
 panels/keyboard/keyboard-shortcuts.c  |  38 +-
 6 files changed, 24 insertions(+), 850 deletions(-)

commit b70c5d64fe5ddecfe2a9089e5a9d08073f0fee83
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 16 18:36:53 2011 +0000

    keyboard: Try to parse keycodes better
    
    gdk_keyval_from_name() doesn't seem to work as it used to.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642489

 panels/common/eggaccelerators.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 256550ab038b86098177e1014c04494745dd727b
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Wed Oct 26 17:07:51 2011 +0200

    Updated Galician translations

 po/gl.po | 815 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 490 insertions(+), 325 deletions(-)

commit e6d9935531d5068571947a1d33d849886d91045f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Oct 26 16:41:56 2011 +0200

    Updated Spanish translation

 po/es.po | 450 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 276 insertions(+), 174 deletions(-)

commit 6029100642815906f5025aff8b308515ca0cc231
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Oct 26 14:17:22 2011 +0200

    Printers: Set requesting-user-name when getting job info
    
    CUPS has changed its policy for giving informations about jobs.
    This fixes problem with actualization of list of print jobs.

 panels/printers/cc-printers-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 332bcb8d6ce64af36bf78be84759c788c9ce361e
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Oct 26 11:53:11 2011 +0200

    Updated Swedish translation

 po/sv.po | 1820 +++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 1315 insertions(+), 505 deletions(-)

commit c0e1166f89a82cc1f0637fb9e9c5f8ccf042b860
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Oct 25 20:59:31 2011 +0200

    Updated Slovenian translation

 po/sl.po | 390 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 237 insertions(+), 153 deletions(-)

commit 314df488b762f1eeec6c29545f93eab23b8e62a8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Oct 25 17:56:44 2011 +0100

    user-accounts: Improve tooltips
    
    Don't speak about 'deleting users'. Instead, use the term
    'user account' consistently.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661765

 panels/user-accounts/um-user-panel.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit bae25a142f8e01601c9aefec361916073239b95e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Oct 25 17:56:03 2011 +0100

    user-accounts: Make unlock icon in tooltip match reality

 panels/user-accounts/um-user-panel.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 660f957566614f19bb99a0df644a3ee9dfdd85b4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:48:52 2011 +0100

    user-accounts: Add label to toolbar buttons

 panels/user-accounts/data/user-accounts-dialog.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 5afe1be01ae74371d76c1b202600b21d261b5e86
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:47:17 2011 +0100

    region: Add label to toolbar buttons

 panels/region/gnome-region-panel.ui | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 152398ff1f9e2f3c7f96cec47943a9a5ed825249
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:43:48 2011 +0100

    printers: Add label to toolbar buttons

 panels/printers/printers.ui | 7 +++++++
 1 file changed, 7 insertions(+)

commit ce58a78d26946a74e49941349fbde375aec587d9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:38:55 2011 +0100

    online-accounts: Add label to toolbar items

 panels/online-accounts/online-accounts.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 65f850e0c581e0d695d366ea04924fefcbba63e4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:37:47 2011 +0100

    network: Add label to toolbar buttons

 panels/network/network.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 8f78728dbc049b0a65b65e3e8b36b139c0e563c8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:36:22 2011 +0100

    keyboard: Add label to toolbar buttons

 panels/keyboard/gnome-keyboard-panel.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 3a31fb91a204bba14f594df3a892bc890dc83c92
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 17:32:37 2011 +0100

    bluetooth: Add labels to toolbar widgets

 panels/bluetooth/bluetooth.ui | 2 ++
 1 file changed, 2 insertions(+)

commit ea7430d03e0bcdd405af013d0a9c4aad743ae88a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 16:33:14 2011 +0100

    background: Force a toolbar style

 panels/background/background.ui | 1 +
 1 file changed, 1 insertion(+)

commit c72062ba65f9a4f587485852287881f8e4275dd5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 16:30:26 2011 +0100

    shell: Add a11y label for the All Settings button

 shell/shell.ui | 5 +++++
 1 file changed, 5 insertions(+)

commit 97c8a63341cfc6a35cdab123d17e394a9db7680a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 25 15:16:22 2011 +0100

    color: Make toolbar buttons focusable
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662430

 panels/color/color.ui | 7 -------
 1 file changed, 7 deletions(-)

commit 7f5733b454e26c882d4e707b57cd03b104f57dd2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 24 19:06:27 2011 +0100

    common: Fix handling of <Primary>
    
    As used in the new GTK+ 3.2.1.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=748444

 panels/common/eggaccelerators.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit eacbe935d30a88c0603fac1b1ac938313da00263
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 24 17:25:14 2011 +0100

    keyboard: Remove unused variable

 panels/keyboard/keyboard-shortcuts.c | 1 -
 1 file changed, 1 deletion(-)

commit 9770f2a332801342c8dca0e1ec8ef6d19cf0295a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 20 16:52:40 2011 +0100

    info: Avoid re-using a non-NULL error

 panels/info/cc-info-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit d453a9841d21314f826aa8b1be2efdb9e389669b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 24 14:41:44 2011 +0100

    sound: Add a minimum height for the output list
    
    Combined with the changes to the output list to only
    use a single line instead of multi-line status, this should
    make it easier to see multiple devices listed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660582

 panels/sound/gvc-mixer-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit 44cf9684c9ca55788f46c829a7c73faa34670141
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Mon Oct 24 02:09:46 2011 +0330

    Updated Persian Translation

 po/fa.po | 173 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 91 insertions(+), 82 deletions(-)

commit f96d25138d40a45a399c1a19b73cb41ecddef895
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Mon Oct 24 01:19:32 2011 +0300

    Updated Belarusian translation.

 po/be.po | 947 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 610 insertions(+), 337 deletions(-)

commit 4dd09d29d8e9d9e23dcefe1f250467eef1b5440b
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sun Oct 23 20:08:20 2011 +0200

    Updated Slovenian translation

 po/sl.po | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

commit 0abb7870aff0ba1459f243fb8a26cf5a59c4d834
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Oct 23 14:51:58 2011 +0200

    Updated Spanish translation

 po/es.po | 161 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 62 insertions(+), 99 deletions(-)

commit 4312ed5ca49cbef8a1c4cac3687acc59d384a839
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Oct 23 12:25:40 2011 +0200

    [l10n] Updated German translation

 po/de.po | 961 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 589 insertions(+), 372 deletions(-)

commit 88caa2b4b01a42189f8b8cc97aa28fdadd218d51
Author: YunQiang Su <yqsu@src.gnome.org>
Date:   Sun Oct 23 18:25:49 2011 +0800

    zh_CN translation: 使用电池电源 -> 使用电池

 po/zh_CN.po | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 9d37e3cd9bc6821a20cf23c8d0fc9268f61b8fe4
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Sat Oct 22 23:23:05 2011 +0300

    Updated Lithuanian translation

 po/lt.po | 3944 +++++++++++++++-----------------------------------------------
 1 file changed, 953 insertions(+), 2991 deletions(-)

commit 3ba5a0d92432caa57cfd5ee207eb87137db38da1
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Oct 22 13:06:37 2011 +0200

    Updated Hebrew translation.

 po/he.po | 995 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 550 insertions(+), 445 deletions(-)

commit 5886629004bcb87cf8192b22f017f4f1d4b8f994
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Sat Oct 22 01:28:41 2011 +0200

    Updated German translation

 po/de.po | 343 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 130 insertions(+), 213 deletions(-)

commit 34c6ab2a9e36917b2a5355eb632403086db1bd66
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Fri Oct 21 21:27:38 2011 +0200

    Updated French translation

 po/fr.po | 3057 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 2014 insertions(+), 1043 deletions(-)

commit 21dc28a257c6e755f62ddbceb60e7ef6c8b198a5
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Oct 21 21:24:33 2011 +0200

    Updated Slovenian translation

 po/sl.po | 1588 ++++++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 1230 insertions(+), 358 deletions(-)

commit a85e7afd87ee1a9a3e8e904531b9e409cc18e0cf
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Oct 21 19:41:38 2011 +0200

    Updated Polish translation

 po/pl.po | 248 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 124 insertions(+), 124 deletions(-)

commit 6862e5b93b2e159531c171c80dbc9b52acf7c6cf
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Oct 22 00:45:29 2011 +0900

    Revert "Updated Korean translation"
    
    This reverts commit c08c3e6681ea86193abbf4cd95fcb8dfb7bef0f5.

 po/ko.po | 5734 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 3766 insertions(+), 1968 deletions(-)

commit c08c3e6681ea86193abbf4cd95fcb8dfb7bef0f5
Author: Seong-ho, Cho <darkcircle.0426@gmail.com>
Date:   Sat Oct 22 00:43:39 2011 +0900

    Updated Korean translation

 po/ko.po | 5734 +++++++++++++++++++++-----------------------------------------
 1 file changed, 1968 insertions(+), 3766 deletions(-)

commit 8283232b4491384366bdc0b494bd09d06b9b8b24
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Oct 21 16:01:37 2011 +0100

    color: Fix a critical warning in the new GtkTreeIter code

 panels/color/cc-color-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f625fbbb59c549cf8dcb550d0c350af07d5132a2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 16:10:06 2011 +0100

    sound: Fix possible infinite loop in combo box

 panels/sound/gvc-combo-box.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bafe9c40200ab33e43b255c76ff6ec34ef30dade
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 16:08:53 2011 +0100

    sound: volume is unsigned so cannot be <= 0

 panels/sound/gvc-stream-status-icon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d3cfa7304a71205aa08aec6e9d1592787e5accb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:53:25 2011 +0100

    keyboard: Check for NULL value first
    
    Then try to access item->type

 panels/keyboard/keyboard-shortcuts.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 34dadb5ac3581dca86c25ddcce8a08898734261e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:50:00 2011 +0100

    printers: Avoid dereferencing NULL variable
    
    If line is NULL, then buffer is NULL, and buffer[0] points
    to nowhere.

 panels/printers/pp-new-printer-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ff59277c91c0344cb6014073483d5d28f553ba3c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:46:32 2011 +0100

    color: Don't return pointer to local variables
    
    We were returning the address of a variable allocated on the stack
    inside the function to outside.

 panels/color/cc-color-panel.c | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

commit 7f8b2153c830a3782f038144f1d3434f78463b70
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:39:05 2011 +0100

    color: Remove useless NULL check
    
    It cannot be NULL when we get to that point.

 panels/color/cc-color-panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit e9f95249a9a247cbff758a0a705b7309c1d8628f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:36:04 2011 +0100

    printers: Fix crasher if a or b are NULL in cmp
    
    If a or b are NULL then (c && d) fails, and both a_normalized
    and b_normalized are left uninitialised, possibly causing a crash
    when we try to free them later.

 panels/printers/pp-utils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 474abc5272e75b101745b267fc80a787d8c8c883
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:30:14 2011 +0100

    color: Use a switch statement
    
    A little bit cleaner.

 panels/color/cc-color-panel.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 0bc99bdda3c0825dd6f048ffc2c529df52007fe9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 15:26:51 2011 +0100

    color: Fix warning about uninitialised variable

 panels/color/cc-color-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit cb5924adb10bdfaaa7ce77565020124050099c24
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 10:33:51 2011 +0100

    keyboard: Remove broken allowed_keys checks
    
    The only thing it was doing was disabling the add button,
    which was promptly re-enabled when you selected the custom
    shortcuts section.

 panels/keyboard/keyboard-shortcuts.c | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

commit 62cb5236b265986695783506b09c4f98412eceb1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 20 10:27:25 2011 +0100

    keyboard: Make the '+' button work all the time
    
    We shouldn't need to select the "Custom Shortcuts" section
    of the keyboard shortcuts before the add button is made sensitive.
    
    Make it sensitive all the time, and switch to the section as needed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662253

 panels/keyboard/keyboard-shortcuts.c | 34 ++++++++++++++++++++++++++++++++--
 1 file changed, 32 insertions(+), 2 deletions(-)

commit f9da94dbae551af2eae79fbf5efc5f6fd468b343
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 19 16:07:34 2011 +0100

    shell: Use icon for "All Settings" button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657043

 shell/shell.ui | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 85b0c9c92c7547a438a8b20b1477fa092315c340
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Oct 19 18:57:18 2011 -0400

    Drop duplicate code
    
    Static analyzers complain about this kind of thing.

 panels/color/cc-color-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit fd81ff244d034eac1aa346bf911ec6b8ac102ced
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Oct 19 22:37:41 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 270 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 185 insertions(+), 85 deletions(-)

commit baa2d3fa1ba078a4c71df36dd31894349612d8f8
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Oct 19 16:32:24 2011 +0200

    Updated Spanish translation

 po/es.po | 697 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 425 insertions(+), 272 deletions(-)

commit 7575e385999b56023f88b5fb835ff0a5af2f26b7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 19 14:43:41 2011 +0100

    keyboard: Fix ATK description
    
    As mentioned in:
    https://bugzilla.gnome.org/show_bug.cgi?id=574073

 panels/keyboard/gnome-keyboard-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b3f942318aaa7cb3b2b1b90c552c5fb3132d613
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 19 14:43:30 2011 +0100

    mouse: Fix ATK descriptions

 panels/mouse/gnome-mouse-properties.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 89a9a66554fd90f32162f43a6528da48f1c69b41
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 19 14:43:16 2011 +0100

    universal-access: Fix ATK descriptions

 panels/universal-access/uap.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 8cca2cab60e0b4811c3c7fee1fff0beb84283492
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 18 19:07:32 2011 +0100

    lib: Do not install private libcinnamon-control-center
    
    https://bugzilla.gnome.org/show_bug.cgi?id=655287

 configure.ac                        | 10 +---------
 libcinnamon-control-center/Makefile.am |  5 +----
 2 files changed, 2 insertions(+), 13 deletions(-)

commit 49e81242ca3cae081e8cda53dd095ae5b1e14068
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 18 19:06:38 2011 +0100

    common: Update linkage rules for static libs
    
    No point in limiting the exports symbols for a static library

 panels/common/Makefile.am | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 844dd9e3211e121ad1791aa2435c7412488a3b26
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 18 18:44:29 2011 +0100

    bluetooth: Move Bluetooth panel from gnome-bluetooth

 configure.ac                                       |   7 +
 panels/Makefile.am                                 |   4 +
 panels/bluetooth/Makefile.am                       |  33 +
 .../bluetooth/bluetooth-properties.desktop.in.in   |  15 +
 panels/bluetooth/bluetooth.ui                      | 673 ++++++++++++++++
 panels/bluetooth/cc-bluetooth-panel.c              | 844 +++++++++++++++++++++
 panels/bluetooth/cc-bluetooth-panel.h              |  59 ++
 po/POTFILES.in                                     |   3 +
 8 files changed, 1638 insertions(+)

commit 6d382165737fb4ad46400b2fddaf236f1ac3fe26
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 18 18:44:17 2011 +0100

    region: Small style fix

 panels/region/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit fef542887c9de0312b63bd60b8d0faa0f5e8d27d
Author: Erdal Ronahi <erdal.ronahi@gmail.com>
Date:   Tue Oct 18 16:05:43 2011 +0200

    updated Kurdish translations

 po/ku.po | 8707 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 5631 insertions(+), 3076 deletions(-)

commit e1dbaef587a7f6e09670a7d8173ecfb43405a7ab
Author: Christian Persch <chpe@gnome.org>
Date:   Thu Sep 29 21:25:44 2011 +0200

    shell: Don't crash when loading the icon fails
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660513

 shell/cc-shell-model.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b1c1f4b2a5beb106d1bf4ddf6162b58daf32345e
Author: krishnababu k <kkrothap@redhat.ocm>
Date:   Mon Oct 17 15:03:52 2011 +0530

    Updated Telugu translations

 po/te.po | 714 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 402 insertions(+), 312 deletions(-)

commit 93f9893df886b58b92c7e669f486f276abf54262
Author: Andika Triwidada <andika@gmail.com>
Date:   Mon Oct 17 13:33:50 2011 +0700

    Updated Indonesian translation

 po/id.po | 1737 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1060 insertions(+), 677 deletions(-)

commit 48c7c0df7bb1d2aab99c7d5a2689aa1c07528de4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Oct 17 07:57:20 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1299 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 736 insertions(+), 563 deletions(-)

commit 483b6f40fafb0bfc5b880d5486d9f55d687a9313
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Sun Oct 16 14:49:57 2011 +0100

    Updated British English translation

 po/en_GB.po | 286 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 149 insertions(+), 137 deletions(-)

commit aa136ecf1f86abe112b63e06bdd827df03ae5107
Author: Fran Dieguez <fran@openhost.es>
Date:   Sat Oct 15 15:52:07 2011 +0200

    Updaged Galician translations

 po/gl.po | 837 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 507 insertions(+), 330 deletions(-)

commit 86532624eb2a09d58ece41032811f756ad1047ca
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Oct 14 19:23:50 2011 +0200

    Printers: Make +/- buttons insensitive when can not connect to CUPS
    
    Check whether sad computer is displayed and set sensitivity accordingly.
    The check doesn't try to connect to CUPS because of performance reasons.

 panels/printers/cc-printers-panel.c | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

commit 619364ff1a4cc2915cdbf2a1abaea98bbb9484b1
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Oct 14 14:47:39 2011 +0200

    Printers: Don't add redundant prefix
    
    Don't add prefix "-default" to options set by
    PrinterAddOptionDefault method, it is added automatically.

 panels/printers/pp-new-printer-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 00fb703054dba5ed0cae6cdc19ef1e5c9ed14ccf
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 17:03:51 2011 +0100

    color: After removing a profile select the device so the UI is correct
    
    Resolves https://bugzilla.gnome.org/show_bug.cgi?id=661658

 panels/color/cc-color-panel.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit 5f6b8f0da94e0ddc09224a0a3c32d0eb7bf52ff2
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 16:40:29 2011 +0100

    color: Show 'Uncalibrated' when a device has a test profile assigned

 panels/color/cc-color-panel.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit d25fe273d2d60e0129940dbc82706527dcfc30db
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 16:28:19 2011 +0100

    color: Don't show profile ages for EDID, test and colorspace profiles
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=661669

 panels/color/cc-color-panel.c | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit 9e1fa3c900ef6eb34a88e8da54ed58bf1d621354
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 16:08:20 2011 +0100

    color: Prefix all the test profiles in the 'Add profile' UI

 panels/color/cc-color-panel.c | 34 ++++++++++++++++++++++++++++++----
 1 file changed, 30 insertions(+), 4 deletions(-)

commit c9647e530d630e5ca10d2c8c4bb5d4552a5db0cf
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 15:57:55 2011 +0100

    color: Do not show standard colorspaces in the 'Add profile' UI
    
    NOTE: You need colord >= 0.1.4 and shared-color-profiles >= 0.1.5 for this
    to work.

 panels/color/cc-color-panel.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit f4ac4f1a0fec0d0fe17fa65140971abf5d45fa28
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 14:04:48 2011 +0100

    color: Improve the 'Add profile' modal dialog
    
    Remove the 'Only profiles that are compatible with...' lightbulb helper and
    instead just set the dialog title to include the device class, e.g.
    'Available Profiles for Printers'.
    
    Resolves https://bugzilla.gnome.org/show_bug.cgi?id=661657

 panels/color/cc-color-panel.c |  34 +++++++++++++-
 panels/color/color.ui         | 102 ++++++++++++++++++++++--------------------
 2 files changed, 86 insertions(+), 50 deletions(-)

commit 886b4463a7d0f19d651676517f6f716ae91a907f
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 13:34:30 2011 +0100

    color: Fix the button placement in the 'Add profile' dialog

 panels/color/color.ui | 2 --
 1 file changed, 2 deletions(-)

commit bc974422384046e800a10db4a0817d6247f601f5
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Oct 13 13:31:18 2011 +0100

    color: Do not allow the 'Add profile' modal dialog to be resizable

 panels/color/color.ui | 1 +
 1 file changed, 1 insertion(+)

commit 7f7f33c8537bf591d7b83d9c3e9eba087ef9b89c
Author: Anders G. Jørgensen <spirit55555@gmail.com>
Date:   Thu Oct 13 13:10:42 2011 +0200

    Give focus to the search entry when showing the overview page.
    
    https://bugs.launchpad.net/ubuntu/+source/cinnamon-control-center/+bug/833710

 shell/cinnamon-control-center.c | 1 +
 1 file changed, 1 insertion(+)

commit ec739861f0f7b82bb0a70da74d79c3daf356f71a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 13 10:55:24 2011 +0100

    shell: Make Ctrl+W close panels
    
    Ctrl+W will close the current panel, and go back to the
    overview.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660814

 shell/cinnamon-control-center.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 484c08ca816bf7aeb58b13a17f82f22b559ec1cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 13 10:53:08 2011 +0100

    shell: Make Ctrl+Q work outside the overview
    
    Because we were checking for the presence of the search entry
    before acting on key presses, Ctrl+Q failed to work outside
    the overview.

 shell/cinnamon-control-center.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 0df2ab0da771131c8684f92732f120ce90ab34ae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 13 10:33:37 2011 +0100

    online-accounts: Add title for "Add Account" dialogue
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661573

 panels/online-accounts/cc-online-accounts-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit ada3a05386d19423e292b0ef1a17f2d40653e68e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 13 10:19:43 2011 +0100

    power: Use "Power off" instead of "Shutdown"
    
    (1) The correct verb is "Shut down". (2) It doesn't matter
    because the preferred term is "Power off", verified with the
    design team.
    
    Spotted by Shaun McCance <shaunm@gnome.org>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661559

 panels/power/power.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c703944fc5d5eaecabff16d3835f0fa42a0a0ee1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 13 10:18:55 2011 +0100

    power: Remove unused ListStore definitions

 panels/power/power.ui | 59 ---------------------------------------------------
 1 file changed, 59 deletions(-)

commit 50093b49ff41e24a912ba4d680769e77b5d8710b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 12 16:14:14 2011 +0100

    keyboard: Don't load duplicate keybindings
    
    When building out of the main tree, it's useful not to have
    duplicate keybindings showing up in the UI.

 panels/keyboard/keyboard-shortcuts.c | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

commit 80bd53ce108a508271d2e025bb5713dbcfb81215
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Oct 11 22:51:42 2011 +0200

    shell: Avoid crash when searching if a .desktop has no comment
    
    The code doing the search assumes the description column is set, which
    might not be the case.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661494

 shell/shell-search-renderer.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 45a9b2cb1f1966bf793d51f6d93b5cdba5e0a292
Author: Gary Ching-Pang Lin <chingpang@gmail.com>
Date:   Wed Oct 12 16:33:53 2011 +0800

    network: show wireless dialog even if there is no active AP
    
    The network panel ignored the request of showing the wireless
    dialog if there is no active AP, and the user was not able to
    set up the advanced wireless settings, such as WPA-EAP settings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661526

 panels/network/cc-network-panel.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit f7eb52a68bab6caeb628f89284b0b95883b83065
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 12 15:34:14 2011 +0100

    network: Remove unneeded initialisations
    
    Don't set those variables to NULL, they should be correctly
    initialised later in the code, and it might hide uninitialised ones.

 panels/network/network-dialogs.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 73b0fe159d3fb735c9be219b27059aed84ddb2b6
Author: Gary Ching-Pang Lin <chingpang@gmail.com>
Date:   Thu Oct 6 12:16:59 2011 +0800

    network: allocate nm-connection for nma-wireless-dialog
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648174

 panels/network/network-dialogs.c | 2 ++
 1 file changed, 2 insertions(+)

commit 9579986439f56cc2bcb10579290914c8f97ef907
Author: Abderrahim Kitouni <a.kitouni@gmail.com>
Date:   Wed Oct 12 11:58:12 2011 +0100

    Updated Arabic translation

 po/ar.po | 3215 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2083 insertions(+), 1132 deletions(-)

commit 86c3b5f9702a6918c783b0605f2dda3cd7e2fbd6
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Wed Oct 12 11:34:13 2011 +0900

    Updated Japanese translation

 po/ja.po | 161 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 80 insertions(+), 81 deletions(-)

commit 4665e84df4fc8a47a8c79e8a7d567019d7014b77
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Oct 11 16:29:18 2011 +0200

    Printers: Don't hide address entry
    
    Don't hide address entry when there is not firewalld available.
    It is still possible that firewall is set up correctly and user
    should be able to enter address of his network printer and
    install it (rhbz #743694).

 panels/printers/new-printer-dialog.ui   | 108 ++++++++++++++++++++++++++++----
 panels/printers/pp-new-printer-dialog.c |  72 ++++++++++++++++-----
 2 files changed, 152 insertions(+), 28 deletions(-)

commit 95d9cffaaa94acdab81ac9498202117e907e7a21
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Oct 11 16:18:09 2011 +0200

    region: Always add English to the list, as it should always be available

 panels/common/cc-common-language.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 1a2845dfa4a4f9a8afc5b505c5dcf2aba2b5da78
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 7 15:19:38 2011 +0100

    common: Always collect locales from the directory
    
    Even if those locales do not exist in the locale-archive file,
    their definition could be in the locale directories. The glibc
    will look in directories as well when the locale-archive doesn't
    contain it, so both behaviours match.
    
    See also:
    http://repo.or.cz/w/glibc.git/blob/HEAD:/locale/findlocale.c#l62
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660725

 panels/common/gdm-languages.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 3c34c0f02958aa63792466ac3e5fc501a6069dbf
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Oct 11 13:24:25 2011 +0200

    region: Only show locales for languages that have translations

 panels/common/cc-common-language.c | 21 ++++++++++++++-------
 panels/common/gdm-languages.c      | 10 +++++-----
 panels/common/gdm-languages.h      |  1 +
 3 files changed, 20 insertions(+), 12 deletions(-)

commit dff859e4b7efb4e0b5e723a98bf65f9884a6ea95
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Oct 10 18:43:45 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 1016 +++++++++++++++++++++++++++++++++-----------------------
 po/zh_TW.po | 1064 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1228 insertions(+), 852 deletions(-)

commit 17fb331bc369091dc402ab75451359bb9ff69ed6
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sat Oct 8 20:53:26 2011 +0200

    [l10n] Updated German translation

 po/de.po | 823 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 463 insertions(+), 360 deletions(-)

commit 41dcde228e6de6ae0ae66d2efda354cdc3e1545d
Author: Wouter Bolsterlee <wbolster@gnome.org>
Date:   Sat Oct 8 00:52:12 2011 +0200

    Updated Dutch translation by Wouter Bolsterlee

 po/nl.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit c1d8e3f47e7bcf5a344f5cf3ba2be3d37d53c6c4
Author: Rachid <rachidbm@ubuntu.com>
Date:   Sat Oct 8 00:46:10 2011 +0200

    Updated Dutch translation by Rachid

 po/nl.po | 669 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 355 insertions(+), 314 deletions(-)

commit befa8cc74875d6a74ce2f1b010e1c69728f6c71d
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Fri Oct 7 17:51:20 2011 +0200

    datetime: Fix showing actual clock format on panel open
    
    A small regression after recent switch to radio buttons.

 panels/datetime/cc-datetime-panel.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit f5b06acede04ab8fee9be9fc2e29ac7a9804dd04
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Oct 7 10:50:02 2011 +0200

    Updated Spanish translation

 po/es.po | 367 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 251 insertions(+), 116 deletions(-)

commit 3a23c7bf96df559e883cb7859f8bc06361d24146
Author: Fran Dieguez <fran@openhost.es>
Date:   Fri Oct 7 01:54:40 2011 +0200

    Updated Galician translations

 po/gl.po | 47 +++++++++++++++++++++++++----------------------
 1 file changed, 25 insertions(+), 22 deletions(-)

commit 051a2d188eac1cc3aebff55cca0c7f72b3b94a71
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 6 12:15:57 2011 +0200

    screen: Don't set gnome-session's idle-delay to 1 never

 panels/screen/cc-screen-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cdfe63a3b252763a1ee6ddc29f9793cfbd03d379
Author: Ming Han Teh <teh_minghan@hotmail.com>
Date:   Mon Oct 3 15:48:23 2011 -0400

    background: Added D'n'D support for adding wallpapers.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=655375

 panels/background/cc-background-panel.c | 34 +++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

commit 3630015d942245be8c094c159379eb9288f2a977
Author: Alberto Ruiz <aruiz@gnome.org>
Date:   Wed Oct 5 16:45:13 2011 +0100

    Update icon cache only on MAINTAINER_MODE

 panels/color/icons/Makefile.am           | 3 +++
 panels/display/Makefile.am               | 2 ++
 panels/online-accounts/icons/Makefile.am | 5 +++++
 panels/power/icons/Makefile.am           | 4 ++++
 panels/sound/data/Makefile.am            | 5 +++++
 5 files changed, 19 insertions(+)

commit 1e4cca7b10378a0c2ba1b37675c908cb6c27d375
Author: Alberto Ruiz <aruiz@gnome.org>
Date:   Wed Oct 5 12:28:04 2011 +0100

    Set version to 3.3.0

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 281136faee6aee494865917bb10a22f4532e384c
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Oct 3 15:44:11 2011 -0400

    info: really use x-content/unix-software for the Software combobox
    
    The content-type property is actually set in the UI file, not in the C
    source.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660803

 panels/info/info.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4a02849325ebf0515276c3a2b1fd8870f4ee0b47
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Oct 3 12:11:44 2011 -0400

    info: use x-content/unix-software as mime for the Software combobox
    
    Instead of x-content/software, as the nautilus autorun handler only
    claims the x-content/unix-software mimetype now.

 panels/info/cc-info-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8a0c2e1b27171968974c51ee449b5d6119eb271a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 3 14:32:23 2011 +0100

    region: Align the example dates
    
    By removing leading spaces.

 panels/region/gnome-region-panel-formats.c | 1 +
 1 file changed, 1 insertion(+)

commit 7b8b773cf33c638af3ccd3ec365c5f84487afa88
Author: Antoine Jacoutot <ajacoutot@openbsd.org>
Date:   Mon Oct 3 15:15:15 2011 +0200

    region: Fix build on systems without LC_MEASUREMENT
    
    LC_MEASUREMENT is not posix and may not be defined on all systems.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660787

 panels/region/gnome-region-panel-formats.c | 2 ++
 1 file changed, 2 insertions(+)

commit 0e119e480af5f80989211ccb2f32b8b8eeb9b189
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 3 12:26:08 2011 +0100

    printers: Fix build on systems without LC_PAPER
    
    By using gtk_paper_size_get_default() directly to do all
    the hard work for us.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660692

 panels/printers/pp-new-printer-dialog.c | 103 ++++++++++++++------------------
 1 file changed, 45 insertions(+), 58 deletions(-)

commit 6a9881d75f057b245b91ef72ad97cf4a59d39cec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 29 16:51:40 2011 +0100

    region: Implement copying layouts
    
    Using systemd's SetX11Keyboard() method in localed. Disable
    the functionality altogether if systemd is not found.
    
    This version supports multiple keyboard layouts by passing comma
    separated layouts, as supported by X11.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659300

 panels/region/gnome-region-panel-system.c | 147 +++++++++++++++++++++++++-----
 1 file changed, 125 insertions(+), 22 deletions(-)

commit d414c86321eb0eeb63d629d5ba518e1f5a07356f
Author: Funda Wang <fundawang@gmail.com>
Date:   Mon Oct 3 01:34:51 2011 +0200

    Updated zh_CN translation.

 po/zh_CN.po | 99 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 50 insertions(+), 49 deletions(-)

commit 8631df8c2b412e62411fa060244afd1c9f390dc8
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sun Oct 2 20:58:21 2011 +0200

    Updated Slovenian translation

 po/sl.po | 615 +--------------------------------------------------------------
 1 file changed, 4 insertions(+), 611 deletions(-)

commit 7a729fd22dc79b7a602dd867bef7edb96d100c45
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Thu Sep 29 12:05:54 2011 -0600

    Updated Irish translation

 po/ga.po | 122 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 48 insertions(+), 74 deletions(-)

commit 5fb0ae939177b55fc51dbf5ee0170693929871fe
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 29 15:17:59 2011 +0100

    region: Simplify getting the current Locale

 panels/region/gnome-region-panel-system.c | 27 +++------------------------
 1 file changed, 3 insertions(+), 24 deletions(-)

commit e26c19da415bd0c5746fa14c06170e199af722fe
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 29 14:46:39 2011 +0100

    region: Hide system tab if no localed
    
    As localed will be required to set the system-wide layouts.

 panels/region/gnome-region-panel-system.c | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

commit 2749876e1f79283b8bde3ace8406e495f4661496
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 29 14:41:11 2011 +0100

    region: Use WID() macro

 panels/region/gnome-region-panel-system.c | 109 +++++++++++++++---------------
 1 file changed, 54 insertions(+), 55 deletions(-)

commit 01895fc9335b25bc2f63232ba5797b4cedf700d5
Author: Shaun McCance <shaunm@gnome.org>
Date:   Thu Sep 29 10:47:11 2011 -0400

    Change "Audio CD disk" to "Audio CD disc"
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660480

 po/en.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e20a577a469414914b0361e47648514d161eb38
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Sep 29 14:58:19 2011 +0100

    power: Don't set the sleep-inactive-x GSettings keys that have been removed

 panels/power/cc-power-panel.c | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

commit 710a8d5c1f18a4c288defb54654313071d5d18db
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Sep 29 14:53:18 2011 +0200

    Printers: check state of CUPS after start
    
    Check whether CUPS is running and add regular check for the case
    when it doesn't. Actualize printers list after CUPS' start (#659721).

 panels/printers/cc-printers-panel.c | 113 +++++++++++++++++++++++++-----------
 1 file changed, 79 insertions(+), 34 deletions(-)

commit 1865c9ba3de867aac60d1ae504df6cf84b4f4955
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Sep 28 13:33:06 2011 +0200

    shell: Make sure we gtk_widget_show the search view

 shell/cinnamon-control-center.c | 2 ++
 1 file changed, 2 insertions(+)

commit 1276f8b8effb36366483385a351049e5c592c8c4
Author: Aron Xu <aronxu@gnome.org>
Date:   Tue Sep 27 16:47:07 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 659 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 337 insertions(+), 322 deletions(-)

commit 147dfcbb452d722c1367b5c867f24b47a9720d53
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Sep 27 16:08:37 2011 +0200

    power: Use the correct item in the combo boxes when sleep-when-inactive is disabled

 panels/power/cc-power-panel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 5b780c24663cc17b9423397f080fb6b8cd30fd8a
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Tue Sep 27 02:39:21 2011 +0200

    Updated Serbian translation

 po/sr.po       | 80 +++++++++++++++++++++++++++++++++-------------------------
 po/sr@latin.po | 80 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 92 insertions(+), 68 deletions(-)

commit 3d9b4bada77e21e546c967fa662f5417e7d39c12
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Tue Sep 27 05:36:57 2011 +0530

    updated Tamil translation

 po/ta.po | 518 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 327 insertions(+), 191 deletions(-)

commit 998a1481b1ed97f7dbf580f8dda8854b8e855f66
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Sep 26 18:25:27 2011 +0200

    Update NEWS from 3-2 branch

 NEWS | 190 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 190 insertions(+)

commit e336bc830ae3ed5d7826dd1d081486ec1e2abe0b
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Sep 26 22:55:16 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 948 +++++++++++++++++++++++----------------------------------
 po/zh_TW.po | 996 ++++++++++++++++++++++++------------------------------------
 2 files changed, 766 insertions(+), 1178 deletions(-)

commit 70773918dc694f1e29152dc2579f0ee5d630abb4
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Mon Sep 26 14:37:01 2011 +0200

    [l10n]Updated Catalan (Valencian) translation

 po/ca@valencia.po | 2498 +++++++++++++++++++++++++++++++----------------------
 1 file changed, 1445 insertions(+), 1053 deletions(-)

commit 0d7e4e60e954d58ca50749bd661ce77d6c2481a6
Author: Friedel Wolff <friedel@translate.org.za>
Date:   Mon Sep 26 09:41:06 2011 +0200

    Updated translation for Afrikaans (af)

 po/af.po | 2852 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1778 insertions(+), 1074 deletions(-)

commit 59ec8190bcc71e6d4f7639561c459a375b430789
Author: ipraveen <mail2ipn@gmail.com>
Date:   Mon Sep 26 10:50:34 2011 +0530

    Updated Telugu Translation

 po/te.po | 6254 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 2865 insertions(+), 3389 deletions(-)

commit 552fcec4cf39e3215285d989284228f00c8d1de6
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Sep 26 10:26:31 2011 +0700

    Updated Thai translation.

 po/th.po | 484 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 255 insertions(+), 229 deletions(-)

commit 0a2ff8b2e02ecd2b329b033404c6955d6f04a58f
Author: Pavol Šimo <palo.simo@gmail.com>
Date:   Sun Sep 25 22:55:00 2011 +0200

    Updated Slovak translation

 po/sk.po | 3114 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2023 insertions(+), 1091 deletions(-)

commit 196946b6ac31afc4496a88e1a19f89ed2f6eed52
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Sun Sep 25 13:41:42 2011 -0600

    Updated Irish translation

 po/ga.po | 2117 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1303 insertions(+), 814 deletions(-)

commit f28f358fb942c1deff0bae28fb7f9d5dfeb707a9
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Sun Sep 25 10:52:19 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 487 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 314 insertions(+), 173 deletions(-)

commit 1e5af032fa595b19818fa1ed752d9ac680040b8e
Author: Cheng-Chia Tseng <pswo10680@gmail.com>
Date:   Sun Sep 25 14:45:41 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 1248 +++++++++++++++++++++++++++++++++++------------------------
 po/zh_TW.po | 1247 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1464 insertions(+), 1031 deletions(-)

commit aa7b470563cd36392a459b83263f132ef85d2468
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sat Sep 24 20:52:42 2011 +0200

    [l10n] Updated German translation

 po/de.po | 47 ++++++-----------------------------------------
 1 file changed, 6 insertions(+), 41 deletions(-)

commit 63d964f352ae19c152866c7d1d32cea4493507a1
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Sun Sep 25 00:23:20 2011 +0900

    Updated Japanese translation

 po/ja.po | 2690 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1727 insertions(+), 963 deletions(-)

commit 77c17dab214822df6a0dbb786c43e26ee10b2a6d
Author: Flemming Christensen <fc@stromata.dk>
Date:   Sat Sep 24 12:24:45 2011 +0200

    Updated Danish translation

 po/da.po | 3122 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1965 insertions(+), 1157 deletions(-)

commit d0d07c50bde1c8436286b0b394751f7077730187
Author: Joan Duran <jodufi@gmail.com>
Date:   Fri Sep 23 18:07:32 2011 +0200

    [l10n]Updated Catalan translation

 po/ca.po | 1957 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1104 insertions(+), 853 deletions(-)

commit 92b64f1cab691be74ed64b057a037771e18b6583
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Sep 23 16:06:23 2011 +0200

    Printers: Hide spinner after search
    
    Don't show spinner after search for new printers (#659753).

 panels/printers/new-printer-dialog.ui   | 4 +++-
 panels/printers/pp-new-printer-dialog.c | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0d86715c01007ac7221978622b6f3807e439d687
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Sep 23 14:53:04 2011 +0200

    Printers: Show that no printer was found
    
    Notify user that no local/network printer was found after search (#659725).

 panels/printers/pp-new-printer-dialog.c | 46 +++++++++++++++++++++++++++++++--
 1 file changed, 44 insertions(+), 2 deletions(-)

commit 2b0453f4844088c85c58391e9f4850f888a027a2
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Sep 23 09:19:25 2011 +0300

    Updated Hebrew translation.

 po/he.po | 1592 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 972 insertions(+), 620 deletions(-)

commit dc25a98af011389c4b2be1f53f68cdc0e8b49fbc
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Fri Sep 23 05:31:12 2011 +0900

    Updated Korean translation

 po/ko.po | 353 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 203 insertions(+), 150 deletions(-)

commit efec0c127a4e7485115c75aff66de4837d2b98e7
Author: Og B. Maciel <ogmaciel@gnome.org>
Date:   Thu Sep 22 09:17:59 2011 -0400

    Merged Brazilian Portuguese translations from 3.2 branch.

 po/pt_BR.po | 706 ++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 425 insertions(+), 281 deletions(-)

commit 04558e75bd374529d879aeb3c386bd44e297d9f9
Author: Og B. Maciel <ogmaciel@gnome.org>
Date:   Thu Sep 22 09:15:40 2011 -0400

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 693 ++++++++++++++++++++++++------------------------------------
 1 file changed, 277 insertions(+), 416 deletions(-)

commit 9329351221415df6aaa9ab0b26c7d3d4baf6b55f
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Sep 22 08:46:45 2011 +0200

    [l10n] Updated German translation

 po/de.po | 86 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 49 insertions(+), 37 deletions(-)

commit f96010cf813eaa2d7dde63fb89c80dd10747d39f
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Sep 22 02:14:27 2011 +0200

    Updated Polish translation

 po/pl.po | 62 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 31 insertions(+), 31 deletions(-)

commit 404c5e963a5a33d73a56fd9f129d88fedf99f96c
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Sep 22 00:21:23 2011 +0200

    Updated Hungarian translation

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 36f5a64d106616a401ad1d1c100fb76668a079a9
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Sep 21 20:36:32 2011 +0200

    l10n: Updated Italian translation

 po/it.po | 212 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 110 insertions(+), 102 deletions(-)

commit c01531a27c67a9e7067d7e517b061e3b926c797b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 19:19:53 2011 +0100

    universal-access: Remove colons from frame headings

 panels/universal-access/zoom-options.ui | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 8e6378ef9f6159b2aaf37cbf83d4bb1314f1cecf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 19:19:06 2011 +0100

    universal-access: Disable zoom options for now
    
    The UI really isn't quite finished.

 panels/universal-access/uap.ui | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit ff394b08a1d800844bf291575e3193b1ae74beb2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 19:09:14 2011 +0100

    universal-access: Simplify colour reading code
    
    Using GdkRGBA directly, and making our own #rrggbb colour.

 panels/universal-access/zoom-options.c | 19 ++++++++-----------
 1 file changed, 8 insertions(+), 11 deletions(-)

commit 6bc75e2ec1fc6b6a043065a55e7e34fc555a85d5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 19:04:08 2011 +0100

    universal-access: Fix 4-char tabs
    
    Either you use spaces, or 8-char tabs, never 4-char tabs.

 panels/universal-access/zoom-options.c | 38 +++++++++++++++++-----------------
 1 file changed, 19 insertions(+), 19 deletions(-)

commit 5b47678f460f84b14c1fd5540733c5a2d4b8578b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 18:55:02 2011 +0100

    universal-access: Simplify WID() macro

 panels/universal-access/zoom-options.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit 16690064d25468c43e64333be124805a618c5987
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 18:54:42 2011 +0100

    universal-access: Fix style of comments

 panels/universal-access/zoom-options.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 810f3a97d0da41ce6bcf965ff588a86a2c86243c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 21 18:54:08 2011 +0100

    universal-access: Fix compile-time warning

 panels/universal-access/zoom-options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f7fa758b2bb86698bff2c768a89339b1fc3f317d
Author: Joseph Scheuhammer <clown@alum.mit.edu>
Date:   Wed May 18 16:09:47 2011 -0400

    Universal access: add dialog for zoom options
    
    Added UI and code to spawn a zoom options preferences dialog to
    modify various magnifier settings.  Modified the 'Seeing'
    section of the universal access panel to enable the 'Options...'
    button.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643086

 panels/universal-access/Makefile.am     |   6 +-
 panels/universal-access/cc-ua-panel.c   |  31 +-
 panels/universal-access/uap.ui          |   4 +-
 panels/universal-access/zoom-options.c  | 330 +++++++++++++
 panels/universal-access/zoom-options.h  |  73 +++
 panels/universal-access/zoom-options.ui | 845 ++++++++++++++++++++++++++++++++
 po/POTFILES.in                          |   2 +
 7 files changed, 1284 insertions(+), 7 deletions(-)

commit 5a81baca8a59b297f94a36d8b499ee9646ec3688
Author: Marek Černocký <marek@manet.cz>
Date:   Wed Sep 21 19:45:24 2011 +0200

    Updated Czech translation

 po/cs.po | 1548 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 896 insertions(+), 652 deletions(-)

commit 20fa92109006a6e16e5a996b4d4c3bfdf47e1d1f
Author: Ryan Lortie <desrt@desrt.ca>
Date:   Tue Sep 20 10:49:03 2011 -0400

    info: continue on filesystem query info
    
    When calculating the total size of all filesystems, failure to query a
    single filesystem results in the iteration being cancelled and a
    "Calculating..." message being left on the UI.  Instead, just ignore the
    filesystem that failed and move on to the next.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=654563

 panels/info/cc-info-panel.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 82a9cdb2edf4e2afa0d3d1ae81db539400221c24
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Sep 21 16:49:44 2011 +0200

    Disable remove button if no printer is selected
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659724

 panels/printers/cc-printers-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a576a065e9906e568d2514c48134a41f70a39bc3
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Sep 21 03:07:12 2011 +0200

    Updated Hungarian translation

 po/hu.po | 120 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 58 insertions(+), 62 deletions(-)

commit f708c36fc32db4b54aa2509ea7334a721fd3478a
Author: Colin Walters <walters@verbum.org>
Date:   Thu Sep 1 16:34:52 2011 -0400

    datetime: Use GnomeWallClock instead of periodic timeout
    
    We don't actually use the ::clock property string here - this
    is just making it so we don't need to wake up once a second.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658011

 configure.ac                        |  2 ++
 panels/datetime/cc-datetime-panel.c | 50 +++++++++++++------------------------
 2 files changed, 20 insertions(+), 32 deletions(-)

commit 8b96ec6d5065300fc27507e0909bad7bb2398c56
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Sep 20 15:44:20 2011 +0200

    shell: Show the label for the category sections, which was being shown because of the gtk_widget_show_all replaced in previous commit

 shell/cc-shell-category-view.c | 1 +
 1 file changed, 1 insertion(+)

commit d9c37713a78673ebcd3bcec35cce251ccf195d08
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Sep 20 15:35:01 2011 +0200

    Updated Polish translation

 po/pl.po | 183 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 98 insertions(+), 85 deletions(-)

commit 90e25402f3f4302635a462e1d8426197bb396481
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Sep 20 13:29:56 2011 +0200

    shell: Use gtk_widget_show instead of _show_all in cinnamon_control_center_show
    
    Using gtk_widget_show_all will make all invisible widgets show up when a
    second instance of the shell is run from the command line.
    
    https://bugs.launchpad.net/cinnamon-control-center/+bug/854544

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 358c19e11390082f824a7e11dc941c057baa7531
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Sep 20 13:08:14 2011 +0200

    Updated Slovenian translation

 po/sl.po | 646 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 312 insertions(+), 334 deletions(-)

commit ecac43bda7e5fa9ec2ffe9125a2dd953de417400
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Sep 20 11:04:56 2011 +0200

    Updated Spanish translation

 po/es.po | 464 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 227 insertions(+), 237 deletions(-)

commit 4ef431c34f8c5b6e3d3219382cb2ef298052b336
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 19 17:06:53 2011 +0100

    wacom: Show "stand-by" page when Wacom not available
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657424

 panels/wacom/cc-wacom-panel.c          | 107 ++++-
 panels/wacom/gnome-wacom-properties.ui | 712 ++++++++++++++++++---------------
 2 files changed, 486 insertions(+), 333 deletions(-)

commit 429b0b47be4f61cee528a6d516d4f431fa710759
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 20 01:35:08 2011 +0100

    info: Don't warn if PackageKit isn't around
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659367

 panels/info/cc-info-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 32106ffbe67f96f6eea332dcf2459b26e9f92d59
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 20 00:14:27 2011 +0100

    info: Don't crash when systemd isn't used
    
    It's possible to have systemd installed, including hostnamed,
    but have it not be the init system, in which case it will fail
    to auto-start. Handle that case instead of crashing.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659367

 panels/info/cc-info-panel.c | 28 +++++++++++++++++++++-------
 1 file changed, 21 insertions(+), 7 deletions(-)

commit dc7ded297bbd14e18e6b323abeb8fdb50677ff11
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Mon Sep 19 20:37:15 2011 +0200

    [l10n] Updated German translation

 po/de.po | 562 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 300 insertions(+), 262 deletions(-)

commit 4d231f64a12787ed909a9ec42dfac7aa521bb913
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Mon Sep 19 16:15:09 2011 +0200

    Updated Slovenian translation

 po/sl.po | 55 ++++++++++++++++++++-----------------------------------
 1 file changed, 20 insertions(+), 35 deletions(-)

commit c008829c5e1f7550997d9faa25dbe48359857865
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Sep 19 16:04:06 2011 +0200

    network: Bind HTTP host entry to the 'host' setting in GSettings

 panels/network/cc-network-panel.c | 32 +++++++-------------------------
 1 file changed, 7 insertions(+), 25 deletions(-)

commit 01729d61205377a4e49be63e09e25b5ad264d3be
Author: Aron Xu <aronxu@gnome.org>
Date:   Mon Sep 19 13:19:07 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 1481 +++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 872 insertions(+), 609 deletions(-)

commit 9cdb8d92ea8b2ae5cae1a25df8e4c06d36adf091
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Mon Sep 19 13:16:38 2011 +0100

    Updated British English translation

 po/en_GB.po | 382 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 197 insertions(+), 185 deletions(-)

commit ffff7a7deb2da21106d64fa81ee8dd67f47ba3b5
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Sep 19 14:00:10 2011 +0200

    Printers: Match lower-case properly
    
    The lower-cased string needs to be checked against a lower-case
    string, or it's never going to match (found by Bastien Nocera in
    gnome-settings-daemon).

 panels/printers/pp-new-printer-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 064f4c20499abc1e0772921bb43829ecbaf2309f
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Mon Sep 19 03:24:14 2011 +0200

    Updated Serbian translation

 po/sr.po       | 25 ++++++++++++-------------
 po/sr@latin.po | 25 ++++++++++++-------------
 2 files changed, 24 insertions(+), 26 deletions(-)

commit 5e5f2684217791def077c9a4c657603bc0f6dbc8
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Sep 19 02:47:09 2011 +0200

    Some terminology and accelerator fix for Hungarian translation

 po/hu.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 326aeccf4cb6d7118bd0998a638fe5eaaaee58f9
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Sep 19 01:44:43 2011 +0200

    Updated Hungarian translation

 po/hu.po | 2415 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1543 insertions(+), 872 deletions(-)

commit 2f8f8b38563d1cb12788391833782e10e0963d7b
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Mon Sep 19 00:19:35 2011 +0430

    Updated Persian translation

 po/fa.po | 1407 ++++++++++++--------------------------------------------------
 1 file changed, 273 insertions(+), 1134 deletions(-)

commit ff7f4013a8a217c469dc0ff84b34014c8fd19b14
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Mon Sep 19 00:18:19 2011 +0430

    Updated Persian translation

 po/fa.po | 2905 +++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 2021 insertions(+), 884 deletions(-)

commit 8da7df8d6b48f00264b85e56836fe766bd55725e
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sun Sep 18 18:29:25 2011 +0300

    Updated Belarusian translation (some fixes after manual testing).

 po/be.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit bf88be1929a9dbde469fdcca564d16b7dd13108b
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Sun Sep 18 17:29:43 2011 +0300

    Updated Belarusian translation (some fixes after manual testing).

 po/be.po | 895 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 443 insertions(+), 452 deletions(-)

commit 2442c44015a598921e46540b11c70b4472159aa9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 18 14:13:53 2011 +0100

    info: Add some debug output
    
    Before setting the hostname properties.

 panels/info/cc-info-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 1ce23f44d5d15ba870a723c5b53b0df384deea6d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 18 13:49:07 2011 +0100

    info: Split the hostname setting
    
    Into a separate function.

 panels/info/cc-info-panel.c | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

commit 97af2049fd49e8ea04a7f006e07cc26685e024c1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 18 13:17:58 2011 +0100

    info: Do fallback correctly when reading hostnames
    
    We need to read the hostname when the pretty hostname is
    undefined, as it would be on default installations.

 panels/info/cc-info-panel.c | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

commit 5377825ade677a7d75ffbfe23b236695c682e00d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 18 13:17:36 2011 +0100

    info: Don't warn when the hostname is empty

 panels/info/cc-info-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 1915d0f3373f9b1d880e2928da5dea0de9b9a5ca
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Sep 18 16:10:17 2011 +1000

    Updated Vietnamese translation

 po/vi.po | 152 +++++++++++++++++++++++----------------------------------------
 1 file changed, 56 insertions(+), 96 deletions(-)

commit 2cd37dd9aedf5f789dde2e01796a0ef59ef14954
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Sep 18 16:00:26 2011 +1000

    po/vi: import from Damned Lies

 po/vi.po | 1170 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 747 insertions(+), 423 deletions(-)

commit 102289eecece5aecd56019eb60bc325072fffb1d
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Sep 17 17:50:33 2011 +0200

    Updated Slovenian translation

 po/sl.po | 1260 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 765 insertions(+), 495 deletions(-)

commit ea5ed009295c0423b1b64d4330b974a969edbc7b
Author: Djavan Fagundes <djavanf@gnome.org>
Date:   Sat Sep 17 11:56:43 2011 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 2585 ++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 1675 insertions(+), 910 deletions(-)

commit 88a272115917fb768193b538e60a2e3f7153508f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Sep 16 22:58:13 2011 -0400

    region: Only offer to copy settings if they are different
    
    We should not offer to copy the settings if they are identical
    to the system-wide settings anyway.

 panels/region/gnome-region-panel-system.c | 41 +++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

commit 43dfc5418cdee858ae873da9a76911a71fbdcfbd
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Sep 16 22:35:04 2011 -0400

    Region: fix display of layouts on the system tab
    
    G_N_ELEMENTS only works on explicitly declared arrays.

 panels/region/gnome-region-panel-system.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b762f51e13b563767b3eb2d9a129b052079e337e
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sat Sep 17 00:14:35 2011 +0200

    Updated Serbian translation

 po/sr.po       | 1281 ++++++++++++++++++++++++++++++--------------------------
 po/sr@latin.po | 1281 ++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1378 insertions(+), 1184 deletions(-)

commit 08cf1f6f947e80bdb7745ac2e0b34c1db55f568e
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Sep 16 13:43:04 2011 -0400

    color: pack the left and right button groups into two GtkBox containers
    
    So that we can link each of the two button groups separately, and apply
    rounded corners properly to both.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659273

 panels/color/color.ui | 211 +++++++++++++++++++++++---------------------------
 1 file changed, 96 insertions(+), 115 deletions(-)

commit 16454c97a6154df1688c32fcf504d560f2558a81
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 16 14:36:34 2011 +0100

    universal-access: Use links to settings
    
    Rather than buttons.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659248

 panels/universal-access/cc-ua-panel.c | 36 ++++++++++++++++++++---------------
 panels/universal-access/uap.ui        | 31 ++++++++++++++++++------------
 2 files changed, 40 insertions(+), 27 deletions(-)

commit 855bb77981a841a00790ca056c57451e2419ea28
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Sep 14 17:36:05 2011 -0400

    shell: set the follow-state property to TRUE for pixbuf renderers
    
    So that the icon is correctly highlighted when hovered. In order to do
    this, we have to stop using gtk_icon_view_set_pixbuf_column() and pack a
    cell renderer manually instead.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658910

 shell/cc-shell-category-view.c | 11 ++++++++++-
 shell/cinnamon-control-center.c   | 11 ++++++++++-
 2 files changed, 20 insertions(+), 2 deletions(-)

commit bf5239d240b2373782ebbcac7ffc3a803733e625
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Sep 15 19:32:49 2011 -0400

    Region: Add a translator comment
    
    'Display language' is not necessarily obvious, so explain
    that it relates to displaying translated messages.

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 78a7044c718ef0a5dedb48af4350b806f1f7de4e
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Fri Sep 16 00:34:36 2011 +0100

    Updated Portuguese translation

 po/pt.po | 3019 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1852 insertions(+), 1167 deletions(-)

commit 104aadaca9194cd99f217f10b3e9d735a3cc9cda
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Sep 15 09:30:14 2011 +0100

    color: Escape profile titles that have markup in the titles
    
    This ensures we can show profiles with '<', '>' and '&' in the title.
    
    Resolves https://bugzilla.gnome.org/show_bug.cgi?id=659127

 panels/color/cc-color-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 46b460eb7b0fa3bcdbd8d483046ba20a31fff209
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Thu Sep 15 12:32:54 2011 +0700

    Updated Thai translation.

 po/th.po | 2440 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1558 insertions(+), 882 deletions(-)

commit c6ab28be466e1ef2efc1d54eff142a83452f7406
Author: Fran Dieguez <fran@openhost.es>
Date:   Wed Sep 14 23:11:26 2011 +0200

    Updated Galician translations

 po/gl.po | 728 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 371 insertions(+), 357 deletions(-)

commit 4a9026bd0c49415818fb0bf8e3d0d1952d116788
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Sep 14 23:02:25 2011 +0200

    l10n: Updated Italian translation

 po/it.po | 134 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 76 insertions(+), 58 deletions(-)

commit 2621a965c5ba0feab801a46623a62714a5cfe70d
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Sep 14 12:05:56 2011 -0400

    online-accounts: don't use a GtkTable to arrange widgets
    
    Use simple GtkBox widgets instead.
    GtkTable does not support nth-child() constructs for CSS, so the theme
    is not able to match the inline toolbar with selectors like
    
    .inline-toolabr.toolbar:nth-child(last) {
    }
    
    which are used to change the rounded corners/top border width.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658964

 panels/online-accounts/online-accounts.ui | 151 +++++++++++++++---------------
 1 file changed, 77 insertions(+), 74 deletions(-)

commit e09892b9051b62973c7d835ff0e250926efc7908
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Sep 14 14:01:10 2011 +0200

    color: Disable 'View details' button if gcm-viewer is not installed

 panels/color/cc-color-panel.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 240a13f11013d206ef73ac1db7a260753fb87efb
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Sep 14 11:11:27 2011 +0100

    color: Do not allow the user to set default a profile they cannot access

 panels/color/cc-color-panel.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit c49b22027ce16308f09965fddf8b611562694b26
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Sep 14 11:10:37 2011 +0100

    color: Do not allow the user to choose profiles owned by other users
    
    If there are multiple users in a system, don't show profiles we can't access.

 panels/color/cc-color-panel.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit ba0d27aa2b5ea183a12ca704cca7d55f60b60798
Author: Michael Terry <michael.terry@canonical.com>
Date:   Tue Sep 13 21:17:19 2011 -0400

    universal-access: Set contrast combo on startup
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658990

 panels/universal-access/cc-ua-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit 9c23989a1154defcf5bd9221b97b6b2b0163b080
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Wed Sep 14 07:27:27 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6506fdd08afae77bafb001f8fc6002a877b9af66
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Sep 13 23:55:16 2011 -0400

    color: Fix spawning of gcm-viewer
    
    argv arrays passed to g_spawn need to be NULL-terminated.

 panels/color/cc-color-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit d60f6812803a35f0cda10dcf546d8a105d660e3f
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Wed Sep 14 06:54:32 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 1287 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 727 insertions(+), 560 deletions(-)

commit 174dc8adb8f426d379c7fa886009777626771c23
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Sep 14 00:49:35 2011 +0200

    Updated Polish translation

 po/pl.po | 179 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 90 insertions(+), 89 deletions(-)

commit d0601dd4174ffc014b21ec5c31680b56c6d6c0c9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 13 16:58:41 2011 +0100

    online-accounts: Remove code duplicated from .ui

 panels/online-accounts/cc-online-accounts-panel.c | 3 ---
 1 file changed, 3 deletions(-)

commit 8166408d365923053a66d0f7fc3aec527732bda5
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Sep 13 23:13:08 2011 +0200

    l10n: Updated Italian translation

 po/it.po | 2695 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1724 insertions(+), 971 deletions(-)

commit 11c1f60564db3908d957167b6c70e2cc8299c3aa
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Tue Sep 13 20:44:20 2011 +0300

    Updated Lithuanian translation

 po/lt.po | 634 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 477 insertions(+), 157 deletions(-)

commit 0090adcc860dfc3e7c23b5c829dac28669aef4e2
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Tue Sep 13 14:54:18 2011 +0530

    updated Tamil translation

 po/ta.po | 760 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 386 insertions(+), 374 deletions(-)

commit 23c34b7f9d08fbe265a14d10d8c0a7e9c9d6d1ec
Author: Seong-ho, Cho <darkcircle.0426@gmail.com>
Date:   Tue Sep 13 12:11:58 2011 +0900

    Added Korean help translation

 help/Makefile.am |   2 +-
 help/ko/ko.po    | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 142 insertions(+), 1 deletion(-)

commit 59fc42f122ba3d17ecd9fdd5b7cddb603750aa76
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Tue Sep 13 10:25:22 2011 +0900

    Updated Korean translation

 po/ko.po | 4249 ++++++++++++++++++++++----------------------------------------
 1 file changed, 1509 insertions(+), 2740 deletions(-)

commit a5bbebcf8e0518a1857a48be5f202ac54041ecc9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 12 23:15:40 2011 +0100

    build: Bump GTK+ deps

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c93bf71405de688dcec9c81556956d2c2c2c0544
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 12 23:01:57 2011 +0100

    info: Use new GtkAppChooserButton API
    
    gtk_app_chooser_button_set_show_default_item() was
    added so that we could show the default application
    for the content-type at the top, and selected, without
    hacks.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658693

 panels/info/cc-info-panel.c | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

commit 54dc667ff9c1245c61d1d3c09d65a230a475cee9
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Mon Sep 12 21:54:31 2011 +0300

    Updated Lithuanian translation

 po/lt.po | 1060 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 587 insertions(+), 473 deletions(-)

commit 2ed79ae5a5c0856e1c0f288e8ee61d5a732ecb9b
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Sep 12 19:35:15 2011 +0200

    Updated Swedish translation

 po/sv.po | 871 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 443 insertions(+), 428 deletions(-)

commit cb224b9cd84fc376433d793de0ca9aac5f818f02
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Sep 11 22:06:08 2011 +0100

    universal-access: Add context for text sizes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645729

 panels/universal-access/uap.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 5a5a037d09787da48f3c8b60ca5ce6dcb5ebcbf3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 12 12:03:19 2011 +0100

    display: Add context for the rotation labels

 panels/display/cc-display-panel.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 71d01174d5bd3bb82470e203a8b7fa989bfa448b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 12 11:56:35 2011 +0100

    display: Remove duplicate/unused translations
    
    "Normal" was translated 3 times when it only needed one,
    and the translation in the .ui file weren't used at all.

 panels/display/cc-display-panel.c |  4 ++--
 panels/display/display-capplet.ui | 20 --------------------
 2 files changed, 2 insertions(+), 22 deletions(-)

commit 21c11833b53dee7ded1fe891b682cc84b9b3a0d1
Author: Richard Hughes <richard@hughsie.com>
Date:   Sun Sep 11 15:10:00 2011 +0100

    color: Don't assert if the user double clicks the delete profile button

 panels/color/cc-color-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b4a96d0f7c86870ffaf0c018396c07fc3988519e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Sep 11 11:01:37 2011 +0200

    Updated Spanish translation

 po/es.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit fc1292de3fbe745a3d54976140e2ee7391d9020b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Sep 11 04:41:24 2011 +0200

    Updated Spanish translation, fixes bug #658719

 po/es.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4c145e42c0a28752be2c5e49ce9a542a236e892d
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Sep 10 10:59:24 2011 +0200

    Updated Spanish translation

 po/es.po | 745 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 382 insertions(+), 363 deletions(-)

commit 961fe7b4967f4ef2b9d0171d1ce7a516c983b589
Author: Alban Browaeys <prahal@yahoo.com>
Date:   Fri Sep 9 19:51:27 2011 +0200

    network: a segfault was introduced when assigning to args.
    
    Instead of assign a potential null to args it was assigned to **args
    (which is uninitialized at this point).
    
    Fix commit 72b9db71c84698f9ba0be0ba2a36b60074fa9a35
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658670

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ee323d823efbb1301bba7db6666cabb465ca09f0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 15:48:00 2011 +0100

    media: Remove some left-overs
    
    Since the code was moved to info

 configure.ac | 2 --
 1 file changed, 2 deletions(-)

commit 1bd60f5835985790db3af7a696ce4942f18385a2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 15:10:19 2011 +0100

    user-accounts: Hide old message when enrolling
    
    When you've enrolled your fingerprints and we show "Done!", hide
    the label that asked us to swipe/press our finger on the fingerprint
    reader, it's too late.

 panels/user-accounts/um-fingerprint-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit 9b817795bbb30d82188ac8d1ff937683a1088600
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 10:33:10 2011 +0100

    info: Merge media panel into info panel
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657859

 panels/Makefile.am                           |   1 -
 panels/info/cc-info-panel.c                  | 508 +++++++++++++++++++++++
 panels/info/gnome-info-panel.desktop.in.in   |   2 +-
 panels/info/info.ui                          | 496 +++++++++++++++++++++-
 panels/media/Makefile.am                     |  37 --
 panels/media/cc-media-panel.c                | 598 ---------------------------
 panels/media/cc-media-panel.h                |  73 ----
 panels/media/gnome-media-panel.desktop.in.in |  17 -
 panels/media/gnome-media-properties.ui       | 461 ---------------------
 panels/media/media-module.c                  |  41 --
 po/POTFILES.in                               |   3 -
 po/POTFILES.skip                             |   1 -
 12 files changed, 1003 insertions(+), 1235 deletions(-)

commit 0a6c431978c16390dc3bc0df50afed9db2c0dd38
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 10:08:11 2011 +0100

    screen: Update "turn screen off" label
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657921

 panels/screen/screen.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c051fbf76f2bcf17b8fe83128733d1a3ad9a1a97
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 10:07:39 2011 +0100

    power: Removed unused variable

 panels/power/cc-power-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit 1ed6f51d8ef4081c7c463661357f4d5c8a9b10b3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 09:57:35 2011 +0100

    user-accounts: Correct initial focus in password dialogue
    
    The password dialogue needs to have the "Current password" field
    focused by default if we're changing the password.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658521

 panels/user-accounts/um-password-dialog.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 34bf1d60760c060c1863a798583f7a39a23d2ebf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 00:09:56 2011 +0100

    universal-access: Error when metacity not installed

 panels/universal-access/cc-ua-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit ebd4414ac9d5a32d67bbcd209589934141da385c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 9 00:07:10 2011 +0100

    universal-access: Fix sensitivity of keyboard a11y
    
    Whether or not we have things like Sticky Keys, or Slow Keys
    enabled, we still need to be able to turn them on/off from
    the keyboard.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=649452

 panels/universal-access/cc-ua-panel.c | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

commit 20f8b037bba232a770393ed737fc0aa05cfc35e6
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Sep 8 21:48:10 2011 +0200

    Updated Polish translation

 po/pl.po | 2325 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1490 insertions(+), 835 deletions(-)

commit 220180752486e4dae68cd897474a6c0b0a4bdd00
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 17:23:22 2011 +0100

    keyboard: Link directly to the layouts page
    
    In the region panel, now that it supports switching pages.

 panels/keyboard/keyboard-general.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit d8b9fc9c5d66c88129200694684eff568f4ada0a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 17:23:10 2011 +0100

    region: Add ability to switch pages

 panels/region/cc-region-panel.c | 77 +++++++++++++++++++++++++++++------------
 1 file changed, 54 insertions(+), 23 deletions(-)

commit 34594d0dc06011cd8e2ff3fbf4148df67eb7f836
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 17:00:15 2011 +0100

    screen: Remove indent on "Turn off..." label
    
    When we remove the brightness slider and heading.

 panels/screen/cc-screen-panel.c | 1 +
 panels/screen/screen.ui         | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 181b313ba8c9ec3f1226e6c62fd1bb5697e09058
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 16:55:21 2011 +0100

    screen: Fix resulting top-padding
    
    When hiding the brightness bar, don't leave unsightly bits of
    frame lying around.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657606

 panels/screen/cc-screen-panel.c |   4 +-
 panels/screen/screen.ui         | 122 ++++++++++++++++++++++++++--------------
 2 files changed, 80 insertions(+), 46 deletions(-)

commit 68982a76dd602f36800960d1824feec58ca25860
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 16:44:16 2011 +0100

    screen: Don't fill up the space
    
    When the brightness slider is hidden, we're smaller than the
    minimum panel size, so don't fill that up.

 panels/screen/cc-screen-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit a7fc3352c67ef907f9a3c853a01e0221a9c0e723
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 16:37:14 2011 +0100

    shell: Replace window sizing code
    
    We want a sensible minimum height and a maximum height, as
    mentioned in the design pages.
    
    This simplifies the code greatly, and will hopefully make
    the window positioning work better as well.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=658068

 shell/cinnamon-control-center.c | 71 +++++++-------------------------------------
 1 file changed, 11 insertions(+), 60 deletions(-)

commit d592244514a8d385ea0cd2a74602e5553ac5be2c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 15:44:42 2011 +0100

    sound: Allow switching tabs from the command-line

 panels/sound/cc-sound-panel.c | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

commit 72b9db71c84698f9ba0be0ba2a36b60074fa9a35
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 15:43:23 2011 +0100

    network: Fix memleak when argv changes

 panels/network/cc-network-panel.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit eeffc8e385ef725e2fdcae47d7bc2acb69355a1c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 8 15:36:15 2011 +0100

    sound: Remove unused variable

 panels/sound/gvc-mixer-dialog.c | 2 --
 1 file changed, 2 deletions(-)

commit 747ce358af2bb4a0e89d12832a7294ed622e34d7
Author: Xandru Armesto <xandru@softastur.org>
Date:   Thu Sep 8 16:21:05 2011 +0200

    Updated asturian translation

 po/ast.po | 8732 ++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 5694 insertions(+), 3038 deletions(-)

commit 5591e91f1fdd08841261ef102375bc16fa05c012
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Thu Sep 8 12:48:47 2011 +0530

    Updated Gujarati Translations

 po/gu.po | 2816 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1790 insertions(+), 1026 deletions(-)

commit 932aed9fa9511a7a7d041b3d92f867129e23a442
Author: Fran Dieguez <fran@openhost.es>
Date:   Thu Sep 8 00:13:51 2011 +0200

    Updated galician translations

 po/gl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 144d7e3e9f71dff68a2204ac55df429ece40ed9a
Author: Fran Dieguez <fran@openhost.es>
Date:   Thu Sep 8 00:11:16 2011 +0200

    Updated galician translations

 po/gl.po | 88 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 43 insertions(+), 45 deletions(-)

commit 48b2a58add9c36de0ed134ea1867907f9e184ce7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 7 18:16:15 2011 +0100

    sound: Put the level bar at 0 when muting
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644537

 panels/sound/gvc-channel-bar.c | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)

commit 53f86cca2c4c5bec5852d196ff09ee7d2cbcae3d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 7 18:05:29 2011 +0100

    sound: Don't use multiple lines in the output selection
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642033

 panels/sound/gvc-mixer-dialog.c | 37 +++----------------------------------
 1 file changed, 3 insertions(+), 34 deletions(-)

commit 1792220c20f2f47802d70a40b6ccf9fdfca192ca
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 7 17:48:51 2011 +0100

    sound: Reorder the panel pages
    
    So that the oft used page is the first one in the list.

 panels/sound/gvc-mixer-dialog.c | 118 ++++++++++++++++++++--------------------
 1 file changed, 58 insertions(+), 60 deletions(-)

commit a58bb45cba0322853878cabdef59e09f4575c5fb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 7 17:28:49 2011 +0100

    sound: Show a mute switch instead of a checkbox
    
    The switch use here matches exactly the usage guidelines.

 panels/sound/gvc-channel-bar.c | 39 ++++++++++++++++++++-------------------
 1 file changed, 20 insertions(+), 19 deletions(-)

commit 64ffedd618e36b5fee9ecfc6a0e9081bf603e6f3
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Wed Sep 7 14:19:53 2011 +0100

    Updated British English translation

 po/en_GB.po | 2524 +++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1594 insertions(+), 930 deletions(-)

commit 79cda76f89e277d3250226a2a1f298ba082f8428
Author: Fran Dieguez <fran@openhost.es>
Date:   Wed Sep 7 02:52:11 2011 +0200

    Updated galician translations

 po/gl.po | 105 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 53 insertions(+), 52 deletions(-)

commit 8afbc4ddc6698d0a413ec4afc47839457c19b797
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Tue Sep 6 09:28:58 2011 -0400

    Fix help links for gnome-help 3.1*
    
    gnome-help 3.1.1 and higher uses the help: protocol with a slash
    instead of the ghelp: protocol with a question mark

 panels/color/color.ui                     | 2 +-
 panels/user-accounts/um-password-dialog.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit d26fb9694dbb9443bdc8216cc4e836ceaf92fddd
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Mon Aug 22 18:12:00 2011 +0200

    network: show wireless dialogs when asked
    
    When invoked with certain arguments, show the wireless and 3g
    dialogs from libnm-gtk. Previously they were provided by nm-applet,
    but now gnome-shell conflicts with it and it makes sense anyway
    to have one place for network configuration. Also added a "show-device"
    command, that just selects a device in the tree view.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657093

 configure.ac                      |   3 +-
 panels/network/Makefile.am        |   2 +
 panels/network/cc-network-panel.c | 191 ++++++++++-----
 panels/network/network-dialogs.c  | 497 ++++++++++++++++++++++++++++++++++++++
 panels/network/network-dialogs.h  |  43 ++++
 5 files changed, 680 insertions(+), 56 deletions(-)

commit 1f9ae38c2f558ae160e859754b9d44e3f76fc47b
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Mon Aug 22 14:22:37 2011 +0200

    Add a way for panels to receive additional arguments.
    
    This patch introduces the "argv" property to CcPanel. Panels that
    wish to handle extra arguments shall override it and act
    appropriately in the constructor.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657093

 libcinnamon-control-center/cc-panel.c    | 15 +++++++++++++++
 libcinnamon-control-center/cc-shell.c    |  3 ++-
 libcinnamon-control-center/cc-shell.h    |  2 ++
 panels/keyboard/keyboard-general.c    |  2 +-
 panels/universal-access/cc-ua-panel.c |  6 +++---
 shell/control-center.c                |  7 ++++++-
 shell/cinnamon-control-center.c          | 10 ++++++----
 7 files changed, 35 insertions(+), 10 deletions(-)

commit 67a28bb6297daf91f7e5e5dc3c015664399a66ec
Author: Fran Dieguez <fran@openhost.es>
Date:   Mon Sep 5 15:20:55 2011 +0200

    Updated galician translations

 po/gl.po | 80 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 40 insertions(+), 40 deletions(-)

commit f605aeac01968be7cb845c6877fd538784917025
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Sep 5 10:29:01 2011 +0100

    color: Do not use a GtkSeparatorToolItem in the GtkToolbar
    
    Adwaita now themes these, and a single random row of centered pixels just looks wrong.
    Use an empty GtkLabel to introduce padding without the random pixels.

 panels/color/color.ui | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 7dd043fa2599dcc3c92b0543e9d6657c6316972a
Author: Richard Hughes <richard@hughsie.com>
Date:   Sun Sep 4 22:07:03 2011 +0100

    color: If cancelling profile import don't show the empty assign dialog
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=658180

 panels/color/cc-color-panel.c | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

commit 0f848c10fbf2fdaac364365f050b702dc9877bab
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Date:   Mon Sep 5 00:22:54 2011 +0300

    Updated Belarusian translation.

 po/be.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit a53ebeb6f0a7ff6581be88ad239bdcd214e2558e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Sep 4 16:47:03 2011 -0400

    Online accounts: avoid an extraneous unref
    
    When bailing out early, the cleanup path is unreffing the provider
    because the variable was used in the loop. We need to set it back
    to NULL there.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657819

 panels/online-accounts/cc-online-accounts-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit fc8213694f8bd39257bd6a2286e9bb21f9887e28
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Sun Sep 4 20:11:21 2011 +0900

    Fixed Bug 658167. Provided the Import-button for an ICC profile with a mnemonic character.
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/color/cc-color-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 274aca556dc86e7abf2113d3f08d2a8eb9c1031f
Author: Fran Dieguez <fran@openhost.es>
Date:   Sun Sep 4 19:35:25 2011 +0200

    Updated galician translations

 po/gl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b531f5fbb2afa1f5c6612f28909ba2422631cf14
Author: Fran Dieguez <fran@openhost.es>
Date:   Sun Sep 4 19:04:36 2011 +0200

    Updated galician translations

 po/gl.po | 212 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 112 insertions(+), 100 deletions(-)

commit 6611fb731fb4f1480eca6382101b1e5b1f3eb169
Author: Yuri Matsuk <yuri@matsuk.net>
Date:   Sun Sep 4 17:48:44 2011 +0300

    Updated Belarusian translation.

 po/be.po | 6917 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3510 insertions(+), 3407 deletions(-)

commit 084dbcd6b210d7f1de731af2a9e16d5b933b9adb
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Sep 4 16:40:34 2011 +0530

    update translation for Punjabi

 po/pa.po | 1090 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 663 insertions(+), 427 deletions(-)

commit e0bb6e612b805b76c33302944b2b2981eab4a9bd
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Sun Sep 4 11:56:06 2011 +0530

    updated Tamil translation

 po/ta.po | 900 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 529 insertions(+), 371 deletions(-)

commit 7181ebc772cacd0f34765d5dff6c646181c9dba1
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sat Sep 3 16:56:10 2011 +0400

    Updated Russian translation

 po/ru.po | 1901 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1076 insertions(+), 825 deletions(-)

commit c45c75f3af5b7a4113bcfdbd095287f575f10d03
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   Sat Sep 3 12:47:53 2011 +0900

    Updated Japanese translation

 po/ja.po | 230 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 116 insertions(+), 114 deletions(-)

commit a735193250728913948db117eebe346d14e97a23
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Sep 2 16:35:08 2011 +0100

    power: Update the UI to reflect the new mockup

 panels/power/cc-power-panel.c |  77 ++-------
 panels/power/power.ui         | 354 +++++++++++++++++-------------------------
 2 files changed, 150 insertions(+), 281 deletions(-)

commit cf49cbc9901bf56894616870f662fe9c654f4bf8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 2 16:59:08 2011 +0100

    wacom: Make string as translatable

 panels/wacom/gnome-wacom-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a4c96614bf5d438cbadbe932086f4f94fe57afc1
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Sep 1 12:00:17 2011 +1000

    wacom: add a left-handed switch
    
    Add a switch for left-handed orientation (read: no/180 degree
    rotation). g-s-d and  the driver allow for 4 orientations, so this only
    activates the switch as "on" if the rotation is "half".
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657810

 panels/wacom/cc-wacom-panel.c          | 28 +++++++++++++++++++
 panels/wacom/gnome-wacom-properties.ui | 50 +++++++++++++++++++++++++++-------
 2 files changed, 68 insertions(+), 10 deletions(-)

commit e3dbbef4807f70ae511f3be402c378f0411f19ca
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Thu Sep 1 15:08:12 2011 +0200

    wacom: Improve alignment of lines and widgets
    
    Use SVG image instead of PNG so that it will scale with the font size.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657425

 panels/wacom/Makefile.am      |   4 +-
 panels/wacom/cc-wacom-panel.c |   4 +-
 panels/wacom/wacom-stylus.png | Bin 3165 -> 0 bytes
 panels/wacom/wacom-stylus.svg | 118 ++++++++++++++++++++++++++++++++++++++++++
 panels/wacom/wacom-tablet.png | Bin 2301 -> 0 bytes
 panels/wacom/wacom-tablet.svg |  80 ++++++++++++++++++++++++++++
 6 files changed, 202 insertions(+), 4 deletions(-)

commit 823c3ec14b59ea85e4024bdecb802e0354855ce2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 2 14:36:58 2011 +0100

    shell: Use symbolic name for minimum height

 shell/cinnamon-control-center.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 6ba681b2a7440dd0bfb64420730dbc89ab5c4f10
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Sep 2 15:07:09 2011 +0100

    color: Ensure the calibrate program gets run correctly
    
    We were not NULL-terminating the argv we were about to spawn, which caused it to
    fail with 'bad address' for some people.

 panels/color/cc-color-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit fed883bbec403dfc27526e3ca624db8c5e71f6a2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 2 14:24:25 2011 +0100

    shell: Limit reading from our own apps directory
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657867

 shell/Makefile.am     |   7 +++-
 shell/gnomecc.menu    | 104 --------------------------------------------------
 shell/gnomecc.menu.in | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 109 insertions(+), 106 deletions(-)

commit 22759b211610aeb627a055daac3d019c2fe2d5a2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 2 14:28:14 2011 +0100

    Revert "shell: Only load desktop files from our dirs"
    
    This reverts commit dde732b9a9f565969c2a3a1d51f17f072d19f0a1.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657867

 shell/Makefile.am            |  1 -
 shell/cinnamon-control-center.c | 35 +++--------------------------------
 2 files changed, 3 insertions(+), 33 deletions(-)

commit f209ca371776a2523c823e01adb32f092d42acda
Author: Jakub Steiner <jimmac@gmail.com>
Date:   Wed Aug 31 16:38:56 2011 +0200

    power: Use a proper icon for the panel
    
    Rather than repurposing a status icon. We have too
    much blue in System Settings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645536

 configure.ac                                       |   7 +++++++
 panels/power/Makefile.am                           |   2 ++
 panels/power/gnome-power-panel.desktop.in.in       |   2 +-
 panels/power/icons/16x16/Makefile.am               |  14 ++++++++++++++
 panels/power/icons/16x16/gnome-power-manager.png   | Bin 0 -> 721 bytes
 panels/power/icons/22x22/Makefile.am               |  14 ++++++++++++++
 panels/power/icons/22x22/gnome-power-manager.png   | Bin 0 -> 985 bytes
 panels/power/icons/24x24/Makefile.am               |  14 ++++++++++++++
 panels/power/icons/24x24/gnome-power-manager.png   | Bin 0 -> 941 bytes
 panels/power/icons/256x256/Makefile.am             |  14 ++++++++++++++
 panels/power/icons/256x256/gnome-power-manager.png | Bin 0 -> 32499 bytes
 panels/power/icons/32x32/Makefile.am               |  14 ++++++++++++++
 panels/power/icons/32x32/gnome-power-manager.png   | Bin 0 -> 1989 bytes
 panels/power/icons/48x48/Makefile.am               |  14 ++++++++++++++
 panels/power/icons/48x48/gnome-power-manager.png   | Bin 0 -> 3383 bytes
 panels/power/icons/Makefile.am                     |  18 ++++++++++++++++++
 16 files changed, 112 insertions(+), 1 deletion(-)

commit d62e0da9db27fae814528bc92f982af5c2e8b9d5
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Sep 1 14:29:46 2011 +0100

    network: Explicitly unset 'use-same-proxy' as there's no UI for that
    
    This fixes proxy selection for people that have upgraded from GNOME 2.
    
    Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=657235

 panels/network/cc-network-panel.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 8055e736422dbce2ddc926cefdf8ffb41d8de65d
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Sep 1 14:23:51 2011 +0100

    network: Set the org.gnome.system.proxy.http 'enabled' key if the user sets a HTTP proxy

 panels/network/cc-network-panel.c | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

commit d9222bd5b52ed80cb6fb02fe729cae30604b3bc1
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Sep 1 14:11:55 2011 +0100

    power: Don't print a message to .xsession-errors if it's not an error

 panels/power/cc-power-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f33080ac1bfaec8e27c7d5315a2148af2ccca5ae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 1 13:53:45 2011 +0100

    display: Clean up signal handling when finalized
    
    Otherwise we might crash if the display panel was opened
    and the window focus changes.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657919

 panels/display/cc-display-panel.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit 007a60b72042b1e182ef162a2abdd0d1efd6b92c
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Sep 1 12:59:45 2011 +0200

    Updated Swedish translation

 po/sv.po | 601 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 364 insertions(+), 237 deletions(-)

commit 6b35985c47fb56f4943a7049d752fd72e3109beb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 1 10:46:15 2011 +0100

    media: Use new media-removable icon
    
    From Lapo Calamandrei <calamandrei@gmail.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657801

 panels/media/gnome-media-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 98550289a341ff59c11bb3410cf9603ec2546f27
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Sep 1 11:18:32 2011 +1000

    wacom: dim the labels (grey, not black)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657812

 panels/wacom/gnome-wacom-properties.ui | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 726bed8746e7d7a75353cdc66a0292e1859f026d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 31 21:34:25 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 4876a8fb356d83ad6bbfecc3e422cea798fc251d
Author: Timo Jyrinki <timo@debian.org>
Date:   Wed Aug 31 16:48:51 2011 +0300

    Updated Finnish translation.

 po/fi.po | 8272 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 5291 insertions(+), 2981 deletions(-)

commit 3295036afb738ac04ec8e720cab7248d31ea1797
Author: Dan Winship <danw@gnome.org>
Date:   Wed Aug 31 09:40:29 2011 +0100

    sound: Add some (element-type) annotations to appease g-i master
    
    See gnome-shell commit 14e8cba2b184b16d0dbd9beb929860a1e1155709

 panels/sound/gvc-mixer-card.c   | 9 +++++++++
 panels/sound/gvc-mixer-stream.c | 9 +++++++++
 2 files changed, 18 insertions(+)

commit 9410bea42f4cae138ab813c383e5eca326e80ea9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Aug 29 12:51:25 2011 +0100

    screen: Hide brightness heading when unused
    
    Trying to just hide the widget will cause some severely bizarre
    display problems, so just set the heading to be empty instead
    for now.
    
    We should probably look at another way of handling this case.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657606

 panels/screen/cc-screen-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit 824c26c925a905b7cb9b2b7494589d7d3ff54462
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 30 12:11:15 2011 +0200

    Release 3.1.90

 NEWS         | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |   2 +-
 2 files changed, 121 insertions(+), 1 deletion(-)

commit bfce91433f6d549685a71c20cb0d3788daf92e2b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 30 12:10:49 2011 +0200

    Fix distribution of language chooser glade file

 panels/common/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aa850977a570b3ad19419663655bac438fcc2585
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 30 10:31:23 2011 +0200

    background: Allow SVG image files as background
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648764

 panels/background/bg-pictures-source.c  | 3 ++-
 panels/background/cc-background-panel.c | 3 +--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit a29bc7090bf7e29139c8ac33f93d2d64a383b64d
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Aug 29 19:13:42 2011 +0200

    Updated Spanish translation

 po/es.po | 25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)

commit ea562b93d55d609c132e43322f0af051ede9dccf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Aug 29 12:18:42 2011 +0100

    wacom: Rename the Wacom panel
    
    to "Wacom Graphics Tablet", as proposed by Richard Hughes.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657443

 panels/wacom/gnome-wacom-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1cb6b90e2e2a36ac38b35ef64da13251ce65a3a6
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Aug 29 19:21:04 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 917 +++++++++++++++++++++++++++++++++++++----------------------
 po/zh_TW.po | 922 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 1152 insertions(+), 687 deletions(-)

commit c5763a8d99c1f2f1fe3a0b9da0dc6c3e5d4d7077
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Aug 28 19:26:19 2011 +0100

    network: Use icon without a spanner
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657556

 panels/network/gnome-network-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d6145b2d5750edc4d95a25a9e52907cc5b2ca5b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Aug 28 19:26:03 2011 +0100

    keyboard: Use icon without a spanner
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657556

 panels/keyboard/gnome-keyboard-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e33a1a5ebb67d74b90b38ee51be226796503bbc8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Aug 28 19:19:35 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 426 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 223 insertions(+), 203 deletions(-)

commit 236d4bf0cba9313229bcdac252b00f22285efa42
Author: Abduxukur Abdurixit <abdurixit@gmail.com>
Date:   Sun Aug 28 16:30:40 2011 +0200

    Added UG translation

 po/ug.po | 7831 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 4317 insertions(+), 3514 deletions(-)

commit cab724be33c8cd2caff154438968951e5ba0ae03
Author: Fran Dieguez <fran@openhost.es>
Date:   Sun Aug 28 15:55:35 2011 +0200

    Updated galician translations

 po/gl.po | 811 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 477 insertions(+), 334 deletions(-)

commit bd183260bd3a91984e3f4b8b167d3c016140cb07
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Aug 28 12:11:40 2011 +0200

    [l10n] Updated German translation

 po/de.po | 936 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 579 insertions(+), 357 deletions(-)

commit 47ba0ce654714fb00eb7ebbeaa385b8c702da34a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Aug 28 10:08:26 2011 +0200

    Updated Spanish translation

 po/es.po | 695 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 409 insertions(+), 286 deletions(-)

commit b7bb4f31206ad29b709b55fd44e6b535fbb724aa
Author: Reinout van Schouwen <reinouts@gnome.org>
Date:   Sat Aug 27 15:59:25 2011 +0200

    2011-08-27: Updated Dutch translation by Reinout van Schouwen
    - fixed two typos

 po/nl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2d1ae671e1fe1a5b62a3a02b49dba1f25c6cef2e
Author: Reinout van Schouwen <reinouts@gnome.org>
Date:   Sat Aug 27 15:54:04 2011 +0200

    2011-08-27: Updated Dutch translation by Rachid BM <rachidbm@ubuntu.com>

 po/nl.po | 2876 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1728 insertions(+), 1148 deletions(-)

commit 4a7190004a7fa02aa8d1461141a136ab2062686f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 27 13:06:19 2011 +0100

    power: Don't shrink the panel on desktops
    
    During a split second we see some garbage on the screen on
    desktop systems that don't have UPSes. Better to grow than to
    shrink (though we shouldn't do either), so start with the battery
    information hidden.

 panels/power/cc-power-panel.c | 10 +++++++---
 panels/power/power.ui         |  2 +-
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 6ed654694dae3aae729838ebb986883355b0595c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 27 12:53:54 2011 +0100

    power: Remove power and suspend buttons config
    
    As mentioned in the discussion in:
    https://bugzilla.gnome.org/show_bug.cgi?id=652183
    https://bugzilla.gnome.org/show_bug.cgi?id=657068
    
    And implemented in the future for the power panel:
    https://live.gnome.org/Design/SystemSettings/Power/

 panels/power/cc-power-panel.c |  20 --------
 panels/power/power.ui         | 103 ------------------------------------------
 2 files changed, 123 deletions(-)

commit 05ffef73479fd4a87b4693872631bc5faa9f70b8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 27 12:27:02 2011 +0100

    wacom: Fix strange bottom padding
    
    Spotted by Matthias Clasen <mclasen@redhat.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657426

 panels/wacom/cc-wacom-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9c530a43e29aca317ef31e3361796194a1279795
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 23:12:31 2011 +0100

    sound: Fix sizing of sliders

 panels/sound/gvc-mixer-dialog.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit dde5d760452408b50f6a9849b28d2499205437db
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 23:03:59 2011 +0100

    sound: Don't warn without a sizegroup
    
    Makes it easier to disable the sizegroup to debug layout problems

 panels/sound/gvc-mixer-dialog.c | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

commit d403011d0e434d739b1771da9eef6af76cdefb71
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 22:45:35 2011 +0100

    common: Tweak default user list

 panels/common/cc-common-language.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 147713ef844221d0f47da3f81dab8e8982ba5b4f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 21:27:06 2011 +0100

    network: Fallback to GNOME as a hotspot name
    
    If the hostname of the machine is empty for some reason.

 panels/network/cc-network-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit dceae5f79a720a32269dfd430d940ec461fafabc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 21:11:35 2011 +0100

    display: Prefer higher frequency modes
    
    And prefer the preferred mode to other modes with the
    same resolution (even if they have a lower resolution).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=655041

 panels/display/cc-display-panel.c | 90 +++++++++++++++++++++++++++++++--------
 1 file changed, 73 insertions(+), 17 deletions(-)

commit 2baf442366ab43d76dec7aa19521fc4ab4fec855
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 20:34:46 2011 +0100

    display: Remove use of idle_free()
    
    It's just bizarre, and error-prone.

 panels/display/cc-display-panel.c | 36 +++++++++++++++---------------------
 1 file changed, 15 insertions(+), 21 deletions(-)

commit 886801c97c8f0ea5afa1abc87f557938929a022d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 19:58:57 2011 +0100

    display: Use symbolic names for columns
    
    Eeek...

 panels/display/cc-display-panel.c | 37 +++++++++++++++++++++++--------------
 1 file changed, 23 insertions(+), 14 deletions(-)

commit 39099a698b0bc3a26daea6a6b9ce8773a10c22dc
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Aug 26 21:19:02 2011 +0200

    Updated Spanish translation

 po/es.po | 212 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 111 insertions(+), 101 deletions(-)

commit b8b3df03fcaf1f8e438d6c94f081f40b165d1e72
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 19:20:52 2011 +0100

    universal-access: Don't crash when metacity isn't installed

 panels/universal-access/cc-ua-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit dcd6fe129a18284e223edcb02983e2b7f6b4d2f6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 19:20:05 2011 +0100

    universal-access: Keep "text size" items a constant size
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657188

 panels/universal-access/cc-ua-panel.c | 21 +++++++++++++++++++++
 panels/universal-access/uap.ui        |  8 +++++++-
 2 files changed, 28 insertions(+), 1 deletion(-)

commit 99de2e35488b095b776a793441a67735e3c92dec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 18:44:37 2011 +0100

    network: Rename "Options..." to "Configure..."
    
    As "Options..." isn't an action, and is thus not a good button
    label.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657002

 panels/network/network.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 456cd5583927ef0a0c337420f4bc96462d6edf3d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 18:31:52 2011 +0100

    keyboard: Simplify GtkBuilder calls

 panels/keyboard/keyboard-general.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 0f4b481c912add0429808b7c68688aa2b120d4e6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 18:29:24 2011 +0100

    keyboard: Add link to the Region panel
    
    So that the layouts are easier to find.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643101

 panels/keyboard/gnome-keyboard-panel.ui | 44 +++++++++++++++++++++++++++++++++
 panels/keyboard/keyboard-general.c      | 21 ++++++++++++++++
 2 files changed, 65 insertions(+)

commit 76783e8e27f73dc025bb74032aaf378ce3ffa1b7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 17:01:23 2011 +0100

    datetime: Use radio buttons for 24h time
    
    Instead of a switch. For most locales "24h time" doesn't
    really have an opposite (as those don't use AM/PM).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640059

 panels/datetime/cc-datetime-panel.c | 14 +++----
 panels/datetime/datetime.ui         | 83 +++++++++++++++++++++----------------
 2 files changed, 55 insertions(+), 42 deletions(-)

commit 2d975bd678761aaa8b8eda49856945c058e5d024
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 16:17:59 2011 +0100

    info: Make "updates" button labels clearer
    
    "System Up-To-Date" when there's nothing to update,
    "Install Updates" when there is something to install,
    "Checking for Updates" when, well, doing that.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657007

 panels/info/cc-info-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit faf5f630ea5a6088e07295162ea691d65cae8774
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 16:15:26 2011 +0100

    info: Always show the "Updates" button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645274

 panels/info/cc-info-panel.c | 47 +++++++++++++++++++++++++++++++++++++--------
 panels/info/info.ui         |  3 ++-
 2 files changed, 41 insertions(+), 9 deletions(-)

commit 054f798b16c7d6ca040466df60cfa857a00a353d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 15:43:57 2011 +0100

    shell: Add Ctrl+Q as a way to exit the shell
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653443

 shell/cinnamon-control-center.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 93d7d6b6ea93f3b2bcf80d09f065b26083d3c92b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 13:59:23 2011 +0100

    shell: Don't repeat the item title when searching
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657020

 shell/cc-shell-model.c       |  9 +--------
 shell/cc-shell-model.h       |  2 +-
 shell/cinnamon-control-center.c | 25 +++++++++++++++++--------
 3 files changed, 19 insertions(+), 17 deletions(-)

commit 760522d02c41f451a0eb7e26c0b0165e0e1be8db
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 13:30:28 2011 +0100

    network: Clarify the VPN service type setting
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657303#c8

 panels/network/net-vpn.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit 382509986aab8ebc701bb37f2ab861f4f54f4448
Author: Jiří Klimeš <jklimes@redhat.com>
Date:   Fri Jul 22 13:52:44 2011 +0200

    network: Show VPN type and info in panel
    
    For all the VPN types
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657303

 panels/network/cc-network-panel.c | 14 +++++--
 panels/network/net-vpn.c          | 86 +++++++++++++++++++++++++++++++++++++--
 panels/network/net-vpn.h          |  1 +
 panels/network/network.ui         | 48 ++++++++++++++++++----
 4 files changed, 133 insertions(+), 16 deletions(-)

commit e04d0bb7875cbb7bf472e59e709235e50fed8f46
Author: Jiří Klimeš <jklimes@redhat.com>
Date:   Fri Jul 22 12:12:31 2011 +0200

    network: Fix updating VPN info when edited
    
    - Updating VPN info
    - Removing 'setting' private member from NetVpn object, because settings are
      replaced when connection is updated (libnm-glib/nm-remote-connection.c).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657303
    https://bugzilla.redhat.com/show_bug.cgi?id=723489

 panels/network/cc-network-panel.c | 43 +++++++++++++++++++++++++++++++++++++--
 panels/network/net-vpn.c          | 15 ++++----------
 2 files changed, 45 insertions(+), 13 deletions(-)

commit 8adec15322eb11b279c9fe9c4682fba7850e30f7
Author: Jiří Klimeš <jklimes@redhat.com>
Date:   Wed May 4 09:59:28 2011 +0200

    network: Fix display of IP info for some configs
    
    for static and PPP configurations
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657303

 panels/network/cc-network-panel.c | 93 ++++++++++++++++++++++++++++++---------
 1 file changed, 73 insertions(+), 20 deletions(-)

commit 91db9ddb4153e63ff2076a57e8b239889514a5e8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 13:20:25 2011 +0100

    network: Fix possible double-free
    
    operator_name_safe is attached to an object, and freed
    when the object goes away, so don't free it here.

 panels/network/cc-network-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit 31f975996ecece93f8921f360e12f97dd29a4b40
Author: Jiří Klimeš <jklimes@redhat.com>
Date:   Wed May 4 09:45:35 2011 +0200

    network: Mobile broadband bug fixes
    
    Fix On/off switch, options buttons and info display
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657303

 panels/network/cc-network-panel.c | 45 +++++++++++++++++-
 panels/network/network.ui         | 97 ++++++++++++++++++++++++++++++++++++++-
 2 files changed, 139 insertions(+), 3 deletions(-)

commit 18365c1c5602633abeba8231898fbe5a70ceb3df
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Aug 26 12:14:31 2011 +0100

    color: When setting the default profile for a display, use the correct device
    
    Using current_device breaks when you have more than one monitor that is color
    managed, and you select device #1 and then click on a different profile for
    device #2.
    
    In this case we want to change the default profile on device #2, not device #1.

 panels/color/cc-color-panel.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 0d5e938ddfb757a4bd113018841dab15e8627a40
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jun 23 20:39:09 2011 +0100

    panel: Disable buttons when D-Bus service not available
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652572

 panels/online-accounts/cc-online-accounts-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ddc7d4df3c2f6d2601d6a7940470a10865988c2d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Aug 26 12:44:31 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 107 insertions(+), 2 deletions(-)

commit 08910f2869b12307be3026e9382bb5b9a164fe4b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Aug 26 12:39:42 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 367 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 193 insertions(+), 174 deletions(-)

commit 44dddf75794010be7602bb607304b7585c0dc766
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 11:21:02 2011 +0100

    wacom: Hide the calibrate button
    
    As it doesn't do anything yet.

 panels/wacom/gnome-wacom-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 67475075aaddea91d543cb80371c2c51b16eadac
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 11:19:31 2011 +0100

    wacom: Remove deprecated properties

 panels/wacom/gnome-wacom-properties.ui | 2 --
 1 file changed, 2 deletions(-)

commit 4ce3d9f9abc9b1994f04c168614ee510cf42aa8c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 11:18:52 2011 +0100

    wacom: Add padding around the widgets

 panels/wacom/cc-wacom-panel.c          | 23 ++++++++++++++++-------
 panels/wacom/gnome-wacom-properties.ui |  2 --
 2 files changed, 16 insertions(+), 9 deletions(-)

commit dcd5ecac6932f34faedb581a233c94c55f5c2065
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:48:50 2011 +0100

    wacom: Clean up settings on destruction

 panels/wacom/cc-wacom-panel.c | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

commit 4808eb5ab3d56592246e6d3e0ccaf3bf3f863879
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:46:45 2011 +0100

    wacom: Clean up panel instantiation

 panels/wacom/cc-wacom-panel.c | 75 ++++++++++++++++++++-----------------------
 1 file changed, 34 insertions(+), 41 deletions(-)

commit dc5c93787b2aac8c67c2c0a66063ad14a2826d3e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:44:47 2011 +0100

    wacom: Clean up GSettings instantiation

 panels/wacom/cc-wacom-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit e88053c2442780ab37146e80e5d5c8a1791ecda2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:43:08 2011 +0100

    wacom: Simplify widgets getting

 panels/wacom/cc-wacom-panel.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit ae35bd1e0863b384f34c1ec8c0fe34096a835e5b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:42:09 2011 +0100

    wacom: Fix memory leak

 panels/wacom/cc-wacom-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit 1c019ec610bf19b7e588a7f3e3e4e00e836293e1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:33:05 2011 +0100

    wacom: Add files to be translated

 po/POTFILES.in   | 2 ++
 po/POTFILES.skip | 1 +
 2 files changed, 3 insertions(+)

commit 57e87e359192d9ae9ddc6fdbc8e99b21e0488d84
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:30:39 2011 +0100

    color: Remove unneeded category

 panels/color/gnome-color-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dde732b9a9f565969c2a3a1d51f17f072d19f0a1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 26 10:28:58 2011 +0100

    shell: Only load desktop files from our dirs
    
    As we don't know how to load the extension points in the
    other directories anyway. Stops system-wide desktop files
    appearing in a prefixed build.

 shell/Makefile.am            |  1 +
 shell/cinnamon-control-center.c | 35 ++++++++++++++++++++++++++++++++---
 2 files changed, 33 insertions(+), 3 deletions(-)

commit 7b213472f199333d08ba3840cd2e2b6475d62961
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Fri Jan 7 21:04:07 2011 +1000

    wacom: add a wacom control panel.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640981

 configure.ac                                 |   4 +
 panels/Makefile.am                           |   3 +-
 panels/wacom/Makefile.am                     |  42 +++
 panels/wacom/cc-wacom-panel.c                | 434 ++++++++++++++++++++++
 panels/wacom/cc-wacom-panel.h                |  73 ++++
 panels/wacom/gnome-wacom-panel.desktop.in.in |  17 +
 panels/wacom/gnome-wacom-properties.ui       | 531 +++++++++++++++++++++++++++
 panels/wacom/wacom-module.c                  |  41 +++
 panels/wacom/wacom-stylus.png                | Bin 0 -> 3165 bytes
 panels/wacom/wacom-tablet.png                | Bin 0 -> 2301 bytes
 10 files changed, 1144 insertions(+), 1 deletion(-)

commit a999160bf7db5aa6a4ac05628c8003abec31c8c1
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Aug 26 11:15:15 2011 +0100

    color: If we have only a few devices and profiles expand the treeview at startup

 panels/color/cc-color-panel.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

commit 5a2402ab755016d0467d62dfacff60e2d3abd65a
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Aug 26 10:50:27 2011 +0100

    color: Add a tooltip to the 'Learn more...' button
    
    This avoids showing a nasty ghelp:// URL that's meaningless to most people.

 panels/color/color.ui | 1 +
 1 file changed, 1 insertion(+)

commit c32fd755be8e124aa635208841b5a655cb7e28c7
Author: Daniel Nylander <po@danielnylander.se>
Date:   Fri Aug 26 08:20:16 2011 +0200

    Updated Swedish translation

 po/sv.po | 329 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 171 insertions(+), 158 deletions(-)

commit f56f4a503da86b15809aa2b98f2fd7ee0a9605d5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Aug 25 23:43:48 2011 -0400

    users: Fix life-cycle issues
    
    We were leaking various references, leading to failures to populate
    the list upon reloading, or to segfaults. With this commit, all
    created user objects, as well as the user-manager object are
    finalized when the panel is unloaded.

 panels/user-accounts/um-user-manager.c | 43 +++++++++++++++++++++++-----------
 panels/user-accounts/um-user-manager.h |  1 -
 panels/user-accounts/um-user-panel.c   | 32 ++++++++++++++++++-------
 panels/user-accounts/um-user.c         |  2 ++
 4 files changed, 55 insertions(+), 23 deletions(-)

commit 1488246ff22ce12a84f945fa43e4f30549d1d7c1
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Thu Aug 18 15:01:01 2011 +0200

    Update volume-control applet for GVC API changes.
    
    "ready" and "connecting" signals were replaced by a single
    "state-changed".
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645708

 panels/sound/gvc-applet.c | 28 +++++++++++-----------------
 1 file changed, 11 insertions(+), 17 deletions(-)

commit a57f32a4e29ab114f2286fc10d4bbb0afe03265e
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Sat Mar 26 17:59:22 2011 +0100

    GnomeVolumeControl: track PulseAudio connection state and expose it
    
    Adds get_state() and ::state-changed signals, that replace connecting
    and ready, as well as providing indication of when the object was closed
    or the connection to PulseAudio failed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645708

 panels/sound/gvc-mixer-control.c | 43 ++++++++++++++++++++--------------------
 panels/sound/gvc-mixer-control.h | 15 +++++++++++---
 2 files changed, 34 insertions(+), 24 deletions(-)

commit df667265160deb83d2562b045a815e4f73dc4ab2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Aug 25 22:29:34 2011 +0200

    Updated POTFILES.in

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ecc7b5c83ecda79f536d79e47f63c8b7340c7591
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 19:39:48 2011 +0100

    display: Fix the labeller not disappearing
    
    The "panel" container isn't a top-level container, so we can't
    rely on it being focused/unfocused.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625476

 panels/display/cc-display-panel.c | 60 +++++++++++++++++++++++----------------
 1 file changed, 35 insertions(+), 25 deletions(-)

commit 558325f6a43e80682d1025ecb91a00b28fa1f414
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 18:32:15 2011 +0100

    display: Simplify panel code
    
    By merging the "capplet" code back into the main panel code.

 panels/display/Makefile.am        |    2 -
 panels/display/cc-display-panel.c | 2525 +++++++++++++++++++++++++++++++++++-
 panels/display/xrandr-capplet.c   | 2567 -------------------------------------
 panels/display/xrandr-capplet.h   |    3 -
 4 files changed, 2515 insertions(+), 2582 deletions(-)

commit 662f7b1bf4b0001b98fa68d389cfe6ba273b3f4f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 18:13:25 2011 +0100

    display: Remove FIXME
    
    It was fixed!

 panels/display/xrandr-capplet.c | 1 -
 1 file changed, 1 deletion(-)

commit e763a4dded3c6af45d66899999437a8045d2708a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 18:12:56 2011 +0100

    display: Clean up ifdef's

 panels/display/xrandr-capplet.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 64419bf3c9ce5d293d2dfb807193f9fd90bd0871
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Aug 25 12:41:18 2011 -0400

    users: prevent autologin for disabled users
    
    gdm can't handle this currently, so prevent this situation
    from happening. Forcibly turning off the autologin when an
    account is disabled is a slightly odd side-effect, but
    good enough in practice.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=649816

 panels/user-accounts/um-user-panel.c | 2 ++
 panels/user-accounts/um-user.c       | 9 +++++++++
 2 files changed, 11 insertions(+)

commit 222bd72be8643e9ea769418e08a52238eb4ee429
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 17:34:58 2011 +0100

    user-accounts: Add translator comments for split line
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657168

 panels/user-accounts/um-user-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit d5d6cdcae03a79c1a21a7964a980849f906f5530
Author: Friedel Wolff <friedel@translate.org.za>
Date:   Thu Aug 25 17:33:06 2011 +0100

    universal-access: Add translator comments
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657167

 panels/universal-access/uap.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit bbe58b586b5805c4b1d756929f7a25e1d0a0321b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 17:31:16 2011 +0100

    user-accounts: Remove trailing space in string
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657169

 panels/user-accounts/data/account-fingerprint.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3406d2bd479f37b2420bf26197cf60a69d706b31
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Aug 25 17:30:08 2011 +0100

    sound: Remove trailing spaces in strings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=657169

 panels/sound/gvc-mixer-dialog.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 00fdb2501c5999d2012f1e76a8948d83475c2f1c
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Aug 25 11:52:17 2011 +0100

    color: Add a new 'Learn more' button to the color panel
    
    You need to build gnome-user-docs to get the new content.

 panels/color/color.ui | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

commit ad1a17200781dcbafabb8357173880f270b6f0f1
Author: Fran Dieguez <fran@openhost.es>
Date:   Wed Aug 24 21:12:58 2011 +0200

    Updated Galician translations

 po/gl.po | 215 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 149 insertions(+), 66 deletions(-)

commit 2781c8ebf49bd7a3dbfd5651fb30e4a7b1803ef5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Aug 24 20:02:13 2011 +0200

    Updated Spanish translation

 po/es.po | 79 ++++++++++++++++++++++++++--------------------------------------
 1 file changed, 32 insertions(+), 47 deletions(-)

commit 37628b3acaa6d3d3b349cdcba2cf4591426a77f3
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Aug 24 20:00:51 2011 +0200

    Updated Spanish translation

 po/es.po | 276 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 180 insertions(+), 96 deletions(-)

commit 13d84a2945e0d170efd9e3aecc5f3db7b7c915b6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 24 19:02:16 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 197 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 133 insertions(+), 64 deletions(-)

commit 159b81dd679682027a2f641a0ede71715b343b14
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Aug 24 17:02:22 2011 +0200

    keyboard: Fix some alignment

 panels/keyboard/keyboard-shortcuts.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 68fcfd6493995d0f75623d87372e884374330c0c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Aug 24 17:01:42 2011 +0200

    region: Don't show region panel in Unity, it uses its own language selector

 panels/region/gnome-region-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 118aa6d1f04819c5748e55a6fc82383bc413a468
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Aug 24 13:09:11 2011 +0100

    color: Add a small italic indication when there are no color managed devices
    
    This happens on most virtual machines as we can't actually correct a virtual
    screen an there's not going to be many interesting USB devices plugged in.
    
    Thanks again to the guys in #gnome-design for all the help.

 panels/color/cc-color-panel.c | 60 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 59 insertions(+), 1 deletion(-)

commit df30d9ea067770c29169d026185be92797ce2fb5
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Aug 24 12:35:43 2011 +0100

    color: If there are no profiles or devices then hide the toolbar

 panels/color/cc-color-panel.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 76a21bdb54591f9f683685b2527929fdda040487
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Aug 24 12:33:11 2011 +0100

    color: Do not attempt to delete the device if it's already added
    
    This was always a workaround for a bug in colord, and we dep on a high enough
    version now.

 panels/color/cc-color-panel.c | 3 ---
 1 file changed, 3 deletions(-)

commit 37eef8abac89c86be4930919bb4efb6f84bae021
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Aug 24 12:30:44 2011 +0100

    color: Remove color managed devices if they are deleted by another process
    
    We need to store the device 'Path' not the device 'Id' in the model as we can't
    connect to a device that's already been removed which we need to do when using
    the ID.

 panels/color/cc-color-panel.c | 32 +++++++++++---------------------
 1 file changed, 11 insertions(+), 21 deletions(-)

commit aa6ac8d211de35ca83785e0d91ef0ce000ef7db4
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Aug 24 09:01:28 2011 +0200

    Updated Swedish translation

 po/sv.po | 647 ++++++++++++++-------------------------------------------------
 1 file changed, 145 insertions(+), 502 deletions(-)

commit b937a72c161e350a4dd0b843f42558ae81ab6ed3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Aug 23 21:53:06 2011 -0400

    universal access: Add more keywords to the desktop file
    
    Some of these were proposed by Federico Mena Quintero
    in bug 657189, the others just make sense.

 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 108f190028e4f0e609e87e43bc8eac044c6cd88f
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Wed Aug 24 05:55:33 2011 +0530

    Updated Tamil translation

 po/ta.po | 864 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 411 insertions(+), 453 deletions(-)

commit 6627ffa4e3ec36e3388c34c0ec137cd1e32f44b2
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Tue Aug 23 10:21:14 2011 +0530

    Updated Tamil translation

 po/ta.po | 2410 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1501 insertions(+), 909 deletions(-)

commit 6c8af917c063837c82b2bb5c8a19a7a0b2b18bce
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Tue Aug 23 23:21:50 2011 +0300

    Updated Lithuanian translation

 po/lt.po | 920 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 453 insertions(+), 467 deletions(-)

commit 2846c231f265929a29c30c6251ea4e9ff146d9d0
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Tue Aug 23 19:51:40 2011 +0200

    Updated Serbian translation

 po/sr.po       | 2798 +++++++++++++++++++++++++++++++------------------------
 po/sr@latin.po | 2803 ++++++++++++++++++++++++++++++++------------------------
 2 files changed, 3199 insertions(+), 2402 deletions(-)

commit 97c852a4ab9a641b4e3ab5910b7459cccd05537f
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Aug 23 15:06:49 2011 +0200

    Updated POTFILES.in

 po/POTFILES.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit a0f6f9c603d5dee061f8294d68da93f994d44f6d
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 23 13:01:06 2011 +0200

    region: Avoid crash when systemd is not available

 panels/region/gnome-region-panel-system.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit a1e1376a7aa907dd42b1129f192bb2f9d37f6e00
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Tue Aug 23 07:04:52 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 2191 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1312 insertions(+), 879 deletions(-)

commit 08c71b017fb0f4e1df327c568baa4ff584d5b1c7
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Aug 22 23:03:32 2011 +0100

    color: Only allow the user to import custom profiles with colord >= 0.1.12
    
    When I was adding the color panel, we ripped out the import code as it was all
    pretty hacky and hardcoded, with the intention of doing it the right way in
    colord rather than in each client.
    
    At the moment if the user selects 'Import' then the panel does nothing as the
    code that would actually make it work was missing.
    
    I've now added the required client code in colord 0.1.12 which makes it possible
    to actually import files not listed in the dropdown.
    
    This makes it possible to install a display profile that's been downloaded into
    the 'Downloads' directory by firefox.

 panels/color/cc-color-panel.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit e06ccd9c9eec6bb0a61fb3ba9146e2c8130077b3
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Aug 22 21:07:10 2011 +0100

    color: Fix a crash where out internal state gets screwed up
    
    I'm just looking for the real bug now.

 panels/color/cc-color-panel.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 749148cda67fb81ba147c726d84fc2a9481378f5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Aug 22 12:35:35 2011 -0400

    region: Initial implementation of 'copy to system'
    
    This implementation is using the systemd-localed mechanism.
    It currently does not support keyboard layouts, unfortunately.

 configure.ac                              |   1 +
 panels/region/gnome-region-panel-system.c | 211 ++++++++++++++++++++++++++++++
 panels/region/gnome-region-panel.ui       |   2 +-
 3 files changed, 213 insertions(+), 1 deletion(-)

commit 796cede3869a1ed21e89d29d410308ef9bea9878
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Aug 21 13:53:11 2011 -0400

    region: Add some spacing to the system tab

 panels/region/gnome-region-panel.ui | 378 ++++++++++++++++++------------------
 1 file changed, 184 insertions(+), 194 deletions(-)

commit 1538ab4c7964016a400ceafae2019c35ffa81d2f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Aug 22 14:06:17 2011 -0400

    region: Ensure the system tab is updated
    
    When the region setting is unset, we need to update the
    region on the system tab also when the language changes.

 panels/region/gnome-region-panel-lang.c   |  5 +-
 panels/region/gnome-region-panel-system.c | 86 ++++++++++++++++---------------
 panels/region/gnome-region-panel-system.h |  4 +-
 3 files changed, 50 insertions(+), 45 deletions(-)

commit 68c7654dfb37e39e9bfc7997777bebfefb9b711b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Aug 22 13:51:27 2011 -0400

    region: show fewer regions
    
    Rework the region list to only show regions 'matching' the current
    language, and add a region chooser dialog that offers the full set.

 panels/region/gnome-region-panel-formats.c | 184 ++++++++++++++++++++++++-----
 panels/region/gnome-region-panel-formats.h |   2 +
 panels/region/gnome-region-panel-lang.c    |   9 +-
 panels/region/gnome-region-panel-system.c  |  25 ++--
 panels/region/gnome-region-panel.ui        |   2 +-
 5 files changed, 178 insertions(+), 44 deletions(-)

commit d22307b699433b91634a544e1eda23dc19df00e6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 22:21:28 2011 -0400

    region: Use region names on the region tab
    
    Use the just introduced api to show region names in the list.

 panels/region/gnome-region-panel-formats.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e027939829d7dbb5598df26fd4abad8f7cb5448
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Aug 22 13:50:46 2011 -0400

    common: Add a region mode to the language chooser
    
    In this mode, locales are primarily represented by their
    region component, instead of their language component.

 panels/common/cc-common-language.c      | 48 ++++++++++++++++++++++++++++++++-
 panels/common/cc-common-language.h      |  2 ++
 panels/common/cc-language-chooser.c     | 16 +++++++++--
 panels/common/cc-language-chooser.h     |  3 ++-
 panels/region/gnome-region-panel-lang.c |  2 +-
 panels/user-accounts/um-user-panel.c    |  2 +-
 6 files changed, 67 insertions(+), 6 deletions(-)

commit 3f122250e1cdcdec709a66e0749eacea6f602934
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 22:20:28 2011 -0400

    common: Add api for region names
    
    Similar to how we format language names, add a variant that
    emphasizes the region part of a locale. We show the language
    in parentheses as discriminator only where needed.

 panels/common/cc-common-language.c |  32 +++++++++--
 panels/common/cc-common-language.h |   3 +
 panels/common/gdm-languages.c      | 114 ++++++++++++++++++++++++++++++++++++-
 panels/common/gdm-languages.h      |   2 +
 4 files changed, 144 insertions(+), 7 deletions(-)

commit 7720b989ea8d98a8feaa5bd55f028510668d3d3a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 21:59:42 2011 -0400

    region: Redo the formats tab
    
    The big combo box is not very usable, so as a first improvement,
    move things around so that we can use a list on the left, and
    put the examples on the right.
    
    Also add a 'need logout' hint in the same style as on the
    language tab.

 panels/region/gnome-region-panel-formats.c | 168 +++++++++++++++++------
 panels/region/gnome-region-panel.ui        | 211 ++++++++++++++++++-----------
 2 files changed, 258 insertions(+), 121 deletions(-)

commit be235bd9ae125f94cd8bf22994fdf81c33a3d0c8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 16:50:53 2011 -0400

    region: Redo the language tab
    
    Prepopulate the list with a small set of 'common' languages,
    as we already did in the user panel, and use a language chooser
    to add to that list.

 panels/common/cc-common-language.c      | 139 +++++++++++++++++++--
 panels/common/cc-common-language.h      |   2 +
 panels/common/cc-language-chooser.c     | 130 +++----------------
 panels/region/gnome-region-panel-lang.c | 214 +++++++++++---------------------
 panels/region/gnome-region-panel.ui     |  48 ++++++-
 5 files changed, 265 insertions(+), 268 deletions(-)

commit 60c8f11a122d88d215a1d479f3cf9923096ccad9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 02:17:06 2011 -0400

    user: Move the language chooser to common
    
    It will soon be used in the region panel as well.

 panels/common/Makefile.am                     |  11 +-
 panels/common/cc-language-chooser.c           | 418 ++++++++++++++++++++++++++
 panels/common/cc-language-chooser.h           |  37 +++
 panels/common/language-chooser.ui             | 113 +++++++
 panels/user-accounts/Makefile.am              |   2 -
 panels/user-accounts/data/Makefile.am         |   1 -
 panels/user-accounts/data/language-chooser.ui | 113 -------
 panels/user-accounts/um-language-dialog.c     | 370 -----------------------
 panels/user-accounts/um-language-dialog.h     |  38 ---
 panels/user-accounts/um-user-panel.c          |  13 +-
 10 files changed, 583 insertions(+), 533 deletions(-)

commit daf2dae1ff1ab9a39d650f04de089edd53a70fc2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 01:43:10 2011 -0400

    user: Prepopulate the language combo
    
    Add a small set of major languages to the combobox. This covers
    the 80% case and makes the list look less empty.

 panels/user-accounts/um-language-dialog.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit eaec9ce36274d99ad4c6bf4244e1b38a734c29a1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 01:34:28 2011 -0400

    user: Add a filter entry to the language dialog
    
    This makes the dialog more similar to the layout add dialog
    in the region panel, where we want to use it eventually as
    well.

 panels/user-accounts/data/language-chooser.ui | 57 ++++++++++------
 panels/user-accounts/um-language-dialog.c     | 95 ++++++++++++++++++++++++++-
 panels/user-accounts/um-language-dialog.h     |  1 +
 panels/user-accounts/um-user-panel.c          |  1 +
 4 files changed, 134 insertions(+), 20 deletions(-)

commit ce0ab7e2f4716f2e008170135c35d25e9886335b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 00:30:06 2011 -0400

    common: Simplify language display
    
    When there is only one locale for this language, omit the territory
    and codeset from the descriptive name. This makes the parenthesized
    part appear a bit more like a discriminator instead of a wierd
    formatting convention.

 panels/common/gdm-languages.c | 44 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

commit 97d759271d90e999f726f8bdac6b191a3c128f43
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 01:46:52 2011 -0400

    user: Remove some dead code
    
    There were some unused declarations leftover in the language dialog.

 panels/user-accounts/um-language-dialog.c | 17 -----------------
 panels/user-accounts/um-language-dialog.h |  5 +----
 2 files changed, 1 insertion(+), 21 deletions(-)

commit 2b64b963be7fc776a361f991bb2dddc261683cb7
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Aug 20 17:18:48 2011 -0400

    region: Fix locale-changing code
    
    setlocale() returns a string representing the _new_ locale, so
    we have to get the current locale with setlocale (..., NULL) first,
    and we have to copy it since it returns a static string that will
    otherwise get overwritten.

 panels/region/gnome-region-panel-formats.c | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

commit 959ea421603301a2c225c7e83ce9e83baa61ec81
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Aug 22 13:21:55 2011 +0200

    Remove old and obsolete Norwegian bokmål translation.

 panels/datetime/po-timezones/no.po | 3345 ------------------------------------
 1 file changed, 3345 deletions(-)

commit 87165a487a800cbcccff9c78bcbf26823476e2e0
Author: Aron Xu <aronxu@gnome.org>
Date:   Sun Aug 21 14:45:27 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 96 ++++++++++++++++++++++---------------------------------------
 1 file changed, 34 insertions(+), 62 deletions(-)

commit 732ba22aec8f5843ce5d30472ea0b26ae7cf308f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Aug 19 21:28:17 2011 -0400

    region: avoid a crash in the absence of configured layouts
    
    This code was creating a GString conditionally, but using
    it unconditionally afterwards. Instead of special-casing
    the str == NULL case, just always create it.

 panels/region/gnome-region-panel-system.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit c79ca529c67e58b69d42ea0b8ea9e66e914a194d
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Aug 18 10:50:32 2011 +0200

    Release 3.1.5

 NEWS         | 43 +++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 44 insertions(+), 1 deletion(-)

commit 573c37a9c0082d9de63cf7c27c3d86cb138d0d03
Author: Andika Triwidada <andika@gmail.com>
Date:   Thu Aug 18 14:04:32 2011 +0700

    Updated Indonesian translation

 po/id.po | 159 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 75 insertions(+), 84 deletions(-)

commit ab6a813d488ce0b798ff64074b92775c0c2d5148
Author: A S Alam <aalam@users.sf.net>
Date:   Thu Aug 18 06:56:13 2011 +0530

    update translation for Punjabi

 po/pa.po | 607 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 262 insertions(+), 345 deletions(-)

commit c95e8b22f6983dd8c98e520c1558d00fe747d52c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 16 18:06:48 2011 +0100

    common: Add list-languages test application
    
    Would just list the supported languages, and makes it easier
    to debug the absence of a language.
    
    See https://bugzilla.gnome.org/show_bug.cgi?id=656338

 panels/common/Makefile.am      |  5 +++++
 panels/common/list-languages.c | 25 +++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

commit ea686a23552f91919e9a0892015f20edc2262113
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Aug 16 18:06:30 2011 +0100

    common: Add some more debug when listing languages

 panels/common/gdm-languages.c | 1 +
 1 file changed, 1 insertion(+)

commit 981992214f1167a83050f1e57284efb8c323eae8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 16 17:15:54 2011 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 164 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 76 insertions(+), 88 deletions(-)

commit 3986c2cdb466ddd2f79869ef9cf0daebe1269afa
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Aug 13 16:02:44 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 46 +++++++++++++++++++++++-----------------------
 po/zh_TW.po | 46 +++++++++++++++++++++++-----------------------
 2 files changed, 46 insertions(+), 46 deletions(-)

commit c2e3c514d1063f4658ff67844cf2e85954214ed0
Author: Andika Triwidada <andika@gmail.com>
Date:   Fri Aug 12 11:43:07 2011 +0700

    Updated Indonesian translation

 po/id.po | 1193 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 566 insertions(+), 627 deletions(-)

commit 837117c19e8b63b53eb5b86bd34b84311391fb58
Author: Andika Triwidada <andika@gmail.com>
Date:   Thu Aug 11 15:08:46 2011 +0700

    Updated Indonesian translation

 po/id.po | 510 ++++++++++++++++++++-------------------------------------------
 1 file changed, 158 insertions(+), 352 deletions(-)

commit b0e96418f2acdf1f626bb11a67dec99ffcd039fa
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 9 13:24:11 2011 +0200

    region: Display user's input source in System tab

 panels/region/gnome-region-panel-system.c | 53 +++++++++++++++++++++++++++----
 panels/region/gnome-region-panel-xkb.c    |  2 +-
 2 files changed, 48 insertions(+), 7 deletions(-)

commit d62267186a7cea27b9033bef9342a3d0df70e102
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 9 12:46:15 2011 +0200

    region: Sort locales for format selection

 panels/region/gnome-region-panel-formats.c | 30 ++++++++++++++++++++++++++++--
 1 file changed, 28 insertions(+), 2 deletions(-)

commit 9c6613700f45d9927b109d845efdb71476bc48a5
Author: Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
Date:   Mon Aug 8 18:19:23 2011 +0200

    Default to g_get_host_name if pretty hostname call failed

 panels/network/cc-network-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit 2c8837e7d40f57aa81cc194608d8f667281dd8f9
Author: Fran Dieguez <fran@openhost.es>
Date:   Sun Aug 7 15:30:13 2011 +0200

    Updated Galician translations

 po/gl.po | 420 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 218 insertions(+), 202 deletions(-)

commit 646ac615f9c2a240353af5d3925b24c97cc7cc79
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Sun Aug 7 12:43:37 2011 +0300

    Uploaded Ukranian

 po/uk.po | 202 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 81 insertions(+), 121 deletions(-)

commit 03376d4fb05482e896b7e5fc18e971746b3e8299
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Aug 6 15:04:49 2011 +0300

    Updated Hebrew translation.

 po/he.po | 174 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 93 insertions(+), 81 deletions(-)

commit 9c4821bf87cf5003770e175ee0b212797ab06d68
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Aug 6 03:19:27 2011 +0100

    region: keep selection when moving layout up/down
    
    https://bugzilla.gnome.org/show_bug.cgi?id=654880

 panels/region/gnome-region-panel-xkblt.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

commit c2d4ac09a5356c8df693911767bd16a0959e4801
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Fri Aug 5 22:30:19 2011 +0200

    [l10n] Updated German translation

 po/de.po | 905 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 513 insertions(+), 392 deletions(-)

commit 981117d1509b5ea35d38ed02b17e26461ae2b6f4
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Thu Aug 4 23:42:06 2011 +0300

    Uploaded Ukranian

 po/uk.po | 2112 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1329 insertions(+), 783 deletions(-)

commit c1ee0690ec97cba274865e4a6101d8de547ba836
Author: Ngô Chin <ndtrung4419@gmail.com>
Date:   Wed Aug 3 23:50:35 2011 +0700

    Updated Vietnamese translation

 po/vi.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit ac135c6b63767ef1c0d87fa255571497c2472480
Author: Ngô Chin <ndtrung4419@gmail.com>
Date:   Wed Aug 3 21:26:31 2011 +0700

    Updated Vietnamese translation

 po/vi.po | 816 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 288 insertions(+), 528 deletions(-)

commit b394ef6d3bd93f9fa555164bd74639394461ad9c
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Wed Aug 3 09:03:12 2011 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 2422 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1561 insertions(+), 861 deletions(-)

commit df913a7cf7d45f6439562571f9e12957195ebbef
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Aug 3 16:27:11 2011 +0200

    Printers: Use system-config-printer's MissingExecutables method
    
    If available, use DBus method MissingExecutables which finds executables
    needed by new printer. This method is available in system-config-printer
    since version 1.3.5 (#654742). User is offered installation of packages
    containing those missing executables then.

 panels/printers/pp-new-printer-dialog.c | 225 ++++++++++++++++++++++++++++++--
 1 file changed, 215 insertions(+), 10 deletions(-)

commit eb1869261389d874935d7b6a78129b39effc99fc
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Aug 2 17:11:25 2011 +0200

    Printers: Use system-config-printer's GroupPhysicalDevices method
    
    If available, use DBus method GroupPhysicalDevices which removes duplicates
    from list of found devices. This method is available in system-config-printer
    since version 1.3.5 (#654742).

 panels/printers/pp-new-printer-dialog.c | 114 +++++++++++++++++++++++++++++---
 1 file changed, 106 insertions(+), 8 deletions(-)

commit 8951bc41a719b7496a65c03a2a3fafcbb1eb5ccb
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Aug 2 14:20:29 2011 +0200

    Printers: Use system-config-printer's GetBestDrivers method
    
    If available, use DBus method GetBestDriver which determines the best PPD file
    for the given printer. This method is available in system-config-printer
    since version 1.3.5 (#654742).

 panels/printers/pp-new-printer-dialog.c |  16 +-
 panels/printers/pp-utils.c              | 580 +++++++++++++++++++-------------
 panels/printers/pp-utils.h              |   7 +-
 3 files changed, 345 insertions(+), 258 deletions(-)

commit 48dec984dbfe5e69c6717c16f69a6f52e08cd1f2
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Jul 28 12:41:38 2011 +0200

    shell: Do not add a trailing dash in search target when comment is empty
    
    When the comment is empty, we do not want to add a dash to the search
    target, as it will be a trailing one.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=655487

 shell/cc-shell-model.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit c635d8e875713c697ba9a9b13f5d7a4cc6ced432
Author: Vincent Untz <vuntz@gnome.org>
Date:   Fri Jul 22 13:05:01 2011 +0200

    shell: Port to new gnome-menus API
    
    https://bugzilla.gnome.org/show_bug.cgi?id=655110

 configure.ac                 |  2 +-
 shell/cc-shell-model.c       | 57 ++++++++++++--------------
 shell/cc-shell-model.h       |  2 +-
 shell/cinnamon-control-center.c | 98 ++++++++++++++++++++++++++++++--------------
 4 files changed, 95 insertions(+), 64 deletions(-)

commit 8c0a2279c1d1e5ebb4d1bae0e6dbcf9879cad81e
Author: David Henningsson <david.henningsson@canonical.com>
Date:   Mon Aug 1 16:21:27 2011 +0100

    sound: Update the sound theme for speaker testing
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647254

 panels/sound/gvc-speaker-test.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit f5fca2154450415bbdab9bb5602b12dbf6615be5
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jul 29 20:00:39 2011 +0200

    Updated Spanish translation

 po/es.po | 148 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 77 insertions(+), 71 deletions(-)

commit 770d706b957beddef096c0943d35b61afc85c800
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Jul 29 18:34:21 2011 +0200

    i18n: Remove bad newline
    
    When translating .desktop entries, embedded newlines result in
    malformed .desktop files, preventing the panel from showing up.
    
    Please don't do that.

 po/zh_CN.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e56a36dd4e368f8f3a597e91fd806691abcea914
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Fri Jul 29 16:18:05 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 4821 +++++++++++++++-------------------------------------------
 po/zh_TW.po | 4888 +++++++++++++++--------------------------------------------
 2 files changed, 2487 insertions(+), 7222 deletions(-)

commit 3dcb0fb49825b5b00c9ff121090f04a54d23f908
Author: Daniel Nylander <po@danielnylander.se>
Date:   Fri Jul 29 10:14:25 2011 +0200

    Updated Swedish translation

 po/sv.po | 165 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 87 insertions(+), 78 deletions(-)

commit 681cd5b9f411225024147787994a4c3cb7f34dbf
Author: Yinghua Wang <wantinghard@gmail.com>
Date:   Wed Jul 27 16:48:20 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 2069 +++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1296 insertions(+), 773 deletions(-)

commit 7962a25ecfa01b93087dd95c6e128381aeb8f2db
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Jul 27 13:33:48 2011 +0200

    Printers: Open firewall for required connections when searching for printers
    
    This commit enables services mdns, ipp, ipp-client and samba-client on
    firewall for 5 minutes for detection of network printers (#648784).
    It enables required services permanently for printers selected by user
    for addition then. It shows a notification for the permanent enable.
    It uses firewalld, so if it is not installed or running it shows a warning
    message to the user in the place where discovered printers will be shown
    (both local and network). The warning disappears after the finish of
    printers discovery (but not from network part if no printer was found).

 configure.ac                            |   4 +-
 panels/printers/new-printer-dialog.ui   |  17 +-
 panels/printers/pp-new-printer-dialog.c | 316 +++++++++++++++++++++++++++++++-
 shell/control-center.c                  |   3 +
 4 files changed, 334 insertions(+), 6 deletions(-)

commit a2ddd10073188089563144e0f6d6c7a2c7d5b7ac
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 25 21:21:20 2011 +0200

    Release 3.1.4

 NEWS         | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 65 insertions(+), 1 deletion(-)

commit 36cdc969b3d605336402b2b18e2a461438c3cefc
Author: Javier Jardón <jjardon@gnome.org>
Date:   Mon Jul 25 15:19:36 2011 +0200

    power: Make insensitive any sleep actions the hardware cannot do (and 2)

 panels/power/cc-power-panel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 48b111bd5ef3d64c8734051d71654e25c692e3e2
Author: Javier Jardón <jjardon@gnome.org>
Date:   Thu Jul 21 17:41:12 2011 +0200

    cc-info-panel: Use the new g_format_size() glib function
    
    To format the memory and disks sizes

 configure.ac                |  2 +-
 panels/info/cc-info-panel.c | 53 ++-------------------------------------------
 2 files changed, 3 insertions(+), 52 deletions(-)

commit a4301be8e3b68e872d0ed754232babf10f11d2ce
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Jul 20 22:35:56 2011 +0200

    Updated Spanish translation

 po/es.po | 85 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 40 insertions(+), 45 deletions(-)

commit 0bb6024b39a241c33ffd0c5d35be922b10923114
Author: Marek Černocký <marek@manet.cz>
Date:   Wed Jul 20 20:21:33 2011 +0200

    Updated Czech translation

 po/cs.po | 193 ++++++++++++---------------------------------------------------
 1 file changed, 37 insertions(+), 156 deletions(-)

commit 88b47dc25b6fd395f2268fc7a3db32a8dc55fac3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Jul 20 07:41:36 2011 -0400

    Add translation context in some places
    
    "Local" and "Network" are not sufficiently unique, otherwise.
    See bug 654725

 panels/printers/pp-new-printer-dialog.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9549693b8f67618a0e7a29585829162a0a7da8da
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Jul 19 22:27:27 2011 +0200

    Updated Slovenian translation

 po/sl.po | 462 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 246 insertions(+), 216 deletions(-)

commit 4f08a32570490f837e7c6909b095d2b44f4c05ee
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jul 19 14:31:23 2011 +0100

    power: Make insensitive any sleep actions the hardware cannot do

 configure.ac                  |  3 ++-
 panels/power/cc-power-panel.c | 57 +++++++++++++++++++++++++++++++++++++++++++
 panels/power/power.ui         | 23 ++++++++++++++---
 3 files changed, 78 insertions(+), 5 deletions(-)

commit 90ec42cdefa5395ae21d6812cbf35a05faba078b
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Jul 18 22:51:42 2011 +0200

    Updated Swedish translation

 po/sv.po | 2520 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 1688 insertions(+), 832 deletions(-)

commit 8a4a94bc04d703324d84f85061bbca4ea724cb4e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jul 18 13:41:07 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 65 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 38 insertions(+), 27 deletions(-)

commit 1fd90c5fff9995b518365894509b9b95c5821282
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Jul 17 09:06:31 2011 +0200

    Updated Czech translation

 po/cs.po | 2160 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1338 insertions(+), 822 deletions(-)

commit 337d7535b3c6bcade1d219463352e37887d06b0d
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jul 15 16:08:31 2011 +0200

    Printers: Make model label and ip address label selectable
    
    This patch add selectable property into CcEditableEntry
    and uses it in Printers panel (#651545).

 libcinnamon-control-center/cc-editable-entry.c | 38 +++++++++++++++++++++++++++++
 libcinnamon-control-center/cc-editable-entry.h | 31 ++++++++++++-----------
 panels/printers/cc-printers-panel.c         | 10 ++++++++
 3 files changed, 65 insertions(+), 14 deletions(-)

commit 606b6fd88d52268b4e7720e18035fe947df030cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jul 15 10:44:43 2011 +0100

    lib: Disallow external panels from existing
    
    Seeing as people were putting all kind of junk in it,
    instead of being sensible, let's close the doors on
    external panels.
    
    If you work-around this in any way, you better have a
    very good reason to, such as wanting to deny yourself
    any support from the upstream cinnamon-control-center developers,
    or wanting ridicule for your poor judgement in UI and code design.

 configure.ac                                          |  1 -
 libcinnamon-control-center/Makefile.am                   | 14 --------------
 libcinnamon-control-center/libcinnamon-control-center.pc.in | 12 ------------
 3 files changed, 27 deletions(-)

commit 548ba93861c71795a62cac198284e4ad5315e30f
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Jul 15 10:51:12 2011 +0300

    Updated Hebrew translation.

 po/he.po | 433 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 240 insertions(+), 193 deletions(-)

commit ec0c15e7e1a9b5fbe67b2ded74cf69580096eeb9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 14 23:28:17 2011 +0100

    sound: Make hadware page tree a little taller
    
    By default.

 panels/sound/gvc-mixer-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit dd1b9d8336badb9dca10c40133cff580c88c7185
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 14 16:38:22 2011 +0100

    background: Add "swap" button for gradients
    
    https://bugzilla.gnome.org/show_bug.cgi?id=34498

 panels/background/background.ui         | 25 ++++++++++++++++++--
 panels/background/cc-background-panel.c | 41 +++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+), 2 deletions(-)

commit 2066d456ab1cd3f927ede970fd1ed72167194053
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 14 15:24:03 2011 +0100

    shell: Shrink vertically
    
    So that it has more chances of fitting on a netbook screen. This is
    done by removing the 6 pixel margin, and the 12 pixel bottom padding.
    
    This gives us the whole panel with a height of around 550 pixels with
    the default text size, which should be enough to display on a 600 pixels
    high screen.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645808

 shell/cc-shell-category-view.c | 8 ++------
 shell/cc-shell-item-view.c     | 1 +
 2 files changed, 3 insertions(+), 6 deletions(-)

commit 11d94b271b85b6146166ac1839ead7de6e5956d9
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Fri Jun 24 03:41:32 2011 +0100

    datetime: Restore TZ envvar as it was
    
    tz_info_from_location() was changing the value of TZ, but not
    restoring it when it was done checking data for it, and setting
    the GMT timezone instead.
    
    This meant that UTC time was displayed when the minute changed on
    the wall clock.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=649568

 panels/datetime/tz.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit e9403022a195d377450ab720211089938f34b2fd
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   Tue Jul 12 17:32:22 2011 +0300

    Updated Latvian translation.

 po/lv.po | 2314 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1457 insertions(+), 857 deletions(-)

commit dff99f8a29e88da35aad2e8104971a83539f4dc1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jul 12 14:54:35 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 317 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 218 insertions(+), 99 deletions(-)

commit 75587210b4e418a153c99ba8c9ef3f0b199612bf
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jul 11 19:36:57 2011 +0200

    Updated Spanish translation

 po/es.po | 198 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 103 insertions(+), 95 deletions(-)

commit 5b4d433f772b5538abd19928dc6d62fddc6a2a7a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 11 13:59:29 2011 +0100

    universal-access: Remove unused column in model
    
    And the markup in the contents as well.

 panels/universal-access/cc-ua-panel.c |  2 +-
 panels/universal-access/uap.ui        | 14 ++++----------
 2 files changed, 5 insertions(+), 11 deletions(-)

commit 0f5e7554fff9f6e9ff2d179f6216c5e835c7da2e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 11 13:40:31 2011 +0100

    region: Don't use markup in bold labels

 panels/region/gnome-region-panel.ui | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

commit a24c6a7f6609e5bbb15abf43d9ad62862c84ba2b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 11 13:37:47 2011 +0100

    user-accounts: Remove unneeded markup in label

 panels/user-accounts/data/password-dialog.ui | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 2714908bf71f34c971e7a7587e0509473f2e93a6
Author: Robert Roth <robert.roth.off@gmail.com>
Date:   Fri Jul 8 12:11:44 2011 +0000

    Improved new username format message (bug #647851)
    
    Added 'only' to the new username sentence ("The username must consist of")
    to have "The username must only consist of", based on the suggestion in
    bug #647851 (https://bugzilla.gnome.org/show_bug.cgi?id=647851).

 panels/user-accounts/um-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d37702b65f8410228e8f5acddf31093c4d83804
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Sun Jul 10 18:58:34 2011 +0300

    [l10n]Updated Turkish translation

 po/tr.po | 2121 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1375 insertions(+), 746 deletions(-)

commit 1bd12164c8ee7dd974ff2f48e7a56af9628e5d06
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Jul 10 15:40:14 2011 +0200

    Updated Spanish translation

 po/es.po | 77 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 40 insertions(+), 37 deletions(-)

commit 409e016e6aa6b325bebfe9b0de1735a232387f6c
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sun Jul 10 14:16:12 2011 +0200

    Updated POTFILES.in

 po/POTFILES.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 132409df62aabb9482038eb4d1572905a524c45b
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Jul 10 17:17:41 2011 +0530

    update Punjabi Translation

 po/pa.po | 2464 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1491 insertions(+), 973 deletions(-)

commit 0c6ddedf9167672e9b105130473b897e7e8e95e6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 7 17:53:47 2011 +0100

    region: Show measurement

 panels/region/gnome-region-panel-formats.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit ec843a03bb8c028507670af49e5d0ef00edda97a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jul 7 18:23:53 2011 +0200

    region: If no regional settings, use the configured language

 panels/region/gnome-region-panel-system.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 46c1dfe6646bfdee7bdeafe5af945ea086071acb
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jul 7 18:20:56 2011 +0200

    region: Set LC_ specific variables, not LC_ALL

 panels/region/gnome-region-panel-formats.c | 14 +++++++++++---
 panels/region/gnome-region-panel.ui        | 12 ++++++++++++
 2 files changed, 23 insertions(+), 3 deletions(-)

commit 51641785d722763fdada9f858bf2404743383563
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 7 17:05:41 2011 +0100

    Revert "lib: Export the editable entry for the Bluetooth panel"
    
    This reverts commit 9fb2e4806b0b940b4225494c1cfec13567992edc.

 libcinnamon-control-center/Makefile.am | 1 -
 1 file changed, 1 deletion(-)

commit 8ca85762de3ed4fd4df1547259bfbb012182e393
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 7 16:34:08 2011 +0100

    common: Add safeguards for empty language
    
    NULL or empty languages aren't useful.

 panels/common/gdm-languages.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 9fb2e4806b0b940b4225494c1cfec13567992edc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 29 17:35:43 2011 +0100

    lib: Export the editable entry for the Bluetooth panel
    
    Necessary for the Bluetooth panel
    
    https://bugzilla.gnome.org/show_bug.cgi?id=575991

 libcinnamon-control-center/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 34abd47d91cd90165979c3bde46be3cda56e6446
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jul 6 17:28:48 2011 +0200

    region: Some Glade file fixes

 panels/region/gnome-region-panel.ui | 18 ------------------
 1 file changed, 18 deletions(-)

commit 4abb6f8a1fc68f1cbe7d0872a1225d90192885da
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jul 6 17:11:40 2011 +0200

    region: Add weak ref for locale settings

 panels/region/gnome-region-panel-system.c | 2 ++
 1 file changed, 2 insertions(+)

commit f2e66a6087fa5e3c395384c8acbac8256407d9df
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Jul 6 09:42:54 2011 +0200

    Updated Spanish translation

 po/es.po | 332 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 180 insertions(+), 152 deletions(-)

commit 9132f8f2f848ddfb9a9059a64742c179c3181162
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jul 5 16:39:17 2011 +0200

    Avoid making lots of DBus calls to set the brightness when the slider changes
    too quickly
    
    https://bugs.launchpad.net/ubuntu/+source/cinnamon-control-center/+bug/805473

 panels/screen/cc-screen-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit b2be7a7b4c337f3018e98cf17da46e5028caaea1
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jul 5 13:13:04 2011 +0200

    network: Kill compilation warnings

 panels/network/cc-network-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2716d97a35b4ac9ed27d86f7e330631a93a2f327
Author: Fran Dieguez <fran@openhost.es>
Date:   Mon Jul 4 21:24:02 2011 +0200

    Updated Galician translations

 po/gl.po | 290 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 171 insertions(+), 119 deletions(-)

commit b5aa23b5ca0ff18f8365e52cbd5be7ab3d8ab54f
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Jul 4 11:56:49 2011 +0100

    Use the new gnome-settings-daemon DBus names now the power plugin has moved there

 panels/power/cc-power-panel.c   |  6 +++---
 panels/screen/cc-screen-panel.c | 12 ++++++------
 2 files changed, 9 insertions(+), 9 deletions(-)

commit 9a0db214257598ad870a3d89fd98544e4acda118
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 4 18:24:55 2011 +0200

    Release 3.1.3

 NEWS         | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 100 insertions(+), 1 deletion(-)

commit 5c75beeaf433ef1dbb88b1937dea581bd4c91d0f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 4 16:47:29 2011 +0200

    Add missing translatable files

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 41007a89647cf01b1962cc8a4a5cee036c42dfaf
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 4 13:59:20 2011 +0200

    region: Display user settings in new System tab

 panels/region/gnome-region-panel-system.c | 37 +++++++++++++++++++++++++++++--
 1 file changed, 35 insertions(+), 2 deletions(-)

commit 81945e7a546240a57b09a3ef7254c09c29823b78
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 4 12:25:43 2011 +0200

    region: Add System tab

 panels/region/Makefile.am                 |   2 +
 panels/region/cc-region-panel.c           |   2 +
 panels/region/gnome-region-panel-system.c |  40 ++++
 panels/region/gnome-region-panel-system.h |  29 +++
 panels/region/gnome-region-panel.ui       | 347 +++++++++++++++++++++++++++++-
 5 files changed, 415 insertions(+), 5 deletions(-)

commit 08b7bdd1d9ee1001423a56f488e1a9cdf579d821
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jul 3 23:14:48 2011 +0200

    Fix terminology in the Hungarian translation

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c9daa9d71891c306ebb57a3ddefa8725af480419
Author: Fran Dieguez <fran@openhost.es>
Date:   Sun Jul 3 18:09:29 2011 +0200

    Updated Galician translations

 po/gl.po | 421 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 238 insertions(+), 183 deletions(-)

commit f0aa264366f2616ed8784b5d06fdea49370b8610
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Sat Jul 2 20:10:02 2011 +0200

    [l10n]Updated Catalan (Valencian) translation

 po/ca@valencia.po | 549 ++++++++++++++++++++++++++++++++----------------------
 1 file changed, 326 insertions(+), 223 deletions(-)

commit 324897b14a3359be3f903fcb55f9b11beb1cfdd9
Author: Pau Iranzo <paulists@gmail.com>
Date:   Sat Jul 2 20:09:54 2011 +0200

    [l10n]Minor fix on Catalan translation

 po/ca.po | 1862 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1194 insertions(+), 668 deletions(-)

commit 0683798d03831576318107cfbe546e6140cd2e7d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jul 2 17:03:30 2011 +0300

    Updated Hebrew translation.

 po/he.po | 30 ++++++++++++++----------------
 1 file changed, 14 insertions(+), 16 deletions(-)

commit 5a04aaf3a55901fa23f4b83d90b6034beed4c768
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jul 2 11:15:53 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 363 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 158 insertions(+), 205 deletions(-)

commit d72c165c08fd0d7cd3b9ed4feffb5549d93aee3c
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jul 2 11:00:39 2011 +0300

    Updated Hebrew translation.

 po/he.po | 476 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 279 insertions(+), 197 deletions(-)

commit 0138d9a7af11eb79dd09216f5d4e089156a2b646
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jul 2 10:57:54 2011 +0300

    Marked non-exitsing files as comments.

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b72c71a9709fbb6f5e0188e7d69ab4ef8525d244
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Jun 29 06:12:59 2011 +0200

    keyboard: Support string array keybindings
    
    Metacity/Mutter stores keybindings as string array to support multiple
    bindings per action. Even though multiple bindings are not exposed in
    the UI, support keybindings stored as string array by getting/setting
    the first element of the array.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653613

 panels/keyboard/cc-keyboard-item.c | 59 ++++++++++++++++++++++++++++++++++++--
 1 file changed, 56 insertions(+), 3 deletions(-)

commit a6d3ad6af357731da213695ac37e04afc8a79448
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Jun 29 06:12:10 2011 +0200

    keyboard: Fix a small memory leak
    
    Unless g_conf_client_get_string(), g_settings_get_string() always
    returns a newly allocated string.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653613

 panels/keyboard/cc-keyboard-item.c | 1 +
 1 file changed, 1 insertion(+)

commit 8a858345a8742bb82869261d4739ea6bd80c393d
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Jun 29 23:55:53 2011 +0200

    keyboard: Change precedence for schema in KeyList parser
    
    Right now, if both KeyList and KeyListEntry contain a schema element,
    the (global) one of the list wins. This makes it rather cumbersome
    to mix keys of different schemas in a single list, as rather than
    using a default schema and specifying a different one where necessary,
    every key needs its own schema element.
    A brief IRC discussion suggests that the current precedence didn't
    trigger any particular issues before, and neither should changing
    it - so do this to support above case.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653685

 panels/keyboard/keyboard-shortcuts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 30302acefac83ed2467d5c3caaf8bef8718b781a
Author: Michael Terry <michael.terry@canonical.com>
Date:   Thu Jun 30 12:50:42 2011 +0100

    Remove extraneous line from the sound applet .desktop file.

 panels/sound/data/cinnamon-sound-applet.desktop.in | 1 -
 1 file changed, 1 deletion(-)

commit 0a8669a5b579d5e4c93a2708a3ebb53efb6da175
Author: Michael Terry <michael.terry@canonical.com>
Date:   Thu Jun 30 12:38:07 2011 +0100

    Add Unity to OnlyShowIn fields
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653661

 panels/background/gnome-background-panel.desktop.in.in             | 2 +-
 panels/color/gnome-color-panel.desktop.in.in                       | 2 +-
 panels/display/gnome-display-panel.desktop.in.in                   | 2 +-
 panels/info/gnome-info-panel.desktop.in.in                         | 2 +-
 panels/keyboard/gnome-keyboard-panel.desktop.in.in                 | 2 +-
 panels/media/gnome-media-panel.desktop.in.in                       | 2 +-
 panels/mouse/gnome-mouse-panel.desktop.in.in                       | 2 +-
 panels/network/gnome-network-panel.desktop.in.in                   | 2 +-
 panels/online-accounts/gnome-online-accounts-panel.desktop.in.in   | 2 +-
 panels/power/gnome-power-panel.desktop.in.in                       | 2 +-
 panels/region/gnome-region-panel.desktop.in.in                     | 2 +-
 panels/screen/gnome-screen-panel.desktop.in.in                     | 2 +-
 panels/sound/data/cinnamon-sound-applet.desktop.in                    | 2 +-
 panels/sound/data/gnome-sound-panel.desktop.in.in                  | 2 +-
 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 2 +-
 panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in  | 2 +-
 shell/cinnamon-control-center.desktop.in.in                           | 2 +-
 17 files changed, 17 insertions(+), 17 deletions(-)

commit 38252af6cf42da3d4e9474c24f703b4bf15e7a8c
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Jun 29 22:50:40 2011 +0200

    universal-access: Re-add cc-marshal.[ch]
    
    Sorry for the noise, that's the correct fix.

 panels/universal-access/cc-marshal.c | 41 ++++++++++++++++++++++++++++++++++++
 panels/universal-access/cc-marshal.h | 15 +++++++++++++
 2 files changed, 56 insertions(+)

commit 827459fef130cc1d8dab96e14d6627ee32825d43
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Jun 29 22:50:13 2011 +0200

    Revert "universal-access: Fix build"
    
    This reverts commit 85e20b040ff2a490c25110773e16826df59f2bb1.

 panels/universal-access/Makefile.am | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 85e20b040ff2a490c25110773e16826df59f2bb1
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Wed Jun 29 19:57:46 2011 +0200

    universal-access: Fix build
    
    Commit 4a8c7afbe03be broke build of the ua panel, fix this.

 panels/universal-access/Makefile.am | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 4a8c7afbe03be04202bfed0eb8786695187ae8bc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 29 17:34:22 2011 +0100

    universal-access: Keep your own gconf horrors

 libcinnamon-control-center/Makefile.am             |    5 -
 libcinnamon-control-center/cc-marshal.c            |   41 -
 libcinnamon-control-center/cc-marshal.h            |   15 -
 libcinnamon-control-center/gconf-property-editor.c | 1869 -----------------------
 libcinnamon-control-center/gconf-property-editor.h |  164 --
 panels/universal-access/Makefile.am             |   10 +-
 panels/universal-access/cc-ua-panel.c           |    2 +-
 panels/universal-access/gconf-property-editor.c | 1869 +++++++++++++++++++++++
 panels/universal-access/gconf-property-editor.h |  164 ++
 9 files changed, 2041 insertions(+), 2098 deletions(-)

commit 2fa73b50913f751bc9f8106699ad616ffaf25805
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Tue Jun 28 23:42:04 2011 +0300

    Updated Lithuanian translation.

 po/lt.po | 2480 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1377 insertions(+), 1103 deletions(-)

commit e6a70eed694ad74c92d997ab5a1730a8c701edf1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jun 28 08:41:39 2011 -0400

    Add some .desktop.in files to POTFILES.skip
    
    This shows up as failed checks on build.gnome.org

 po/POTFILES.skip | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit c9a1c2de30f2d31a6a919717f96a64c93357c04c
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sun Jun 26 20:35:46 2011 +0200

    Updated Slovenian translation

 po/sl.po | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 77 insertions(+), 10 deletions(-)

commit d57049107f40dcc758e0b2e806829c5b1f528b48
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Jun 25 12:35:03 2011 +0200

    Updated Spanish translation

 po/es.po | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 88 insertions(+), 21 deletions(-)

commit 90b3fb1c2afe448d1061c3751bb11a890e2e5788
Author: Richard Hughes <richard@hughsie.com>
Date:   Sat Jun 25 09:36:15 2011 +0100

    color: Mark a user visible string as translatable

 panels/color/cc-color-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 89ae22a334e2b0bcafd1b4b4baf07ce8f522046e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Jun 25 02:56:54 2011 +0100

    online-accounts: Add missing UI file

 panels/online-accounts/online-accounts.ui | 159 ++++++++++++++++++++++++++++++
 1 file changed, 159 insertions(+)

commit c280c3b18d8ab5c3c15abe1618a98ba1743b119c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 24 16:31:23 2011 +0100

    online-accounts: goa-account icons back in goa

 configure.ac                                         |   1 -
 panels/online-accounts/icons/16x16/Makefile.am       |   1 -
 panels/online-accounts/icons/16x16/goa-account.png   | Bin 846 -> 0 bytes
 panels/online-accounts/icons/22x22/Makefile.am       |   1 -
 panels/online-accounts/icons/22x22/goa-account.png   | Bin 1202 -> 0 bytes
 panels/online-accounts/icons/24x24/Makefile.am       |   1 -
 panels/online-accounts/icons/24x24/goa-account.png   | Bin 1230 -> 0 bytes
 panels/online-accounts/icons/256x256/Makefile.am     |   1 -
 panels/online-accounts/icons/256x256/goa-account.png | Bin 25710 -> 0 bytes
 panels/online-accounts/icons/32x32/Makefile.am       |   1 -
 panels/online-accounts/icons/32x32/goa-account.png   | Bin 1938 -> 0 bytes
 panels/online-accounts/icons/48x48/Makefile.am       |   1 -
 panels/online-accounts/icons/48x48/goa-account.png   | Bin 3123 -> 0 bytes
 panels/online-accounts/icons/Makefile.am             |   2 +-
 panels/online-accounts/icons/scalable/Makefile.am    |  13 -------------
 15 files changed, 1 insertion(+), 21 deletions(-)

commit 0786539969b50a162621e597119d88c3fbeecd59
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 24 15:46:56 2011 +0100

    online-accounts: Use newly added component in BZ

 panels/online-accounts/gnome-online-accounts-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 896b5e87d994181414ba2197f7f8f8aaf73b98be
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 24 14:17:31 2011 +0100

    online-accounts: Add panel for gnome-online-accounts
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653334

 configure.ac                                       |  11 +
 panels/Makefile.am                                 |   1 +
 panels/online-accounts/Makefile.am                 |  36 ++
 panels/online-accounts/cc-online-accounts-model.c  | 438 ++++++++++++++
 panels/online-accounts/cc-online-accounts-model.h  |  58 ++
 panels/online-accounts/cc-online-accounts-panel.c  | 639 +++++++++++++++++++++
 panels/online-accounts/cc-online-accounts-panel.h  |  40 ++
 .../gnome-online-accounts-panel.desktop.in.in      |  17 +
 panels/online-accounts/icons/16x16/Makefile.am     |  15 +
 panels/online-accounts/icons/16x16/goa-account.png | Bin 0 -> 846 bytes
 panels/online-accounts/icons/16x16/goa-panel.png   | Bin 0 -> 917 bytes
 panels/online-accounts/icons/22x22/Makefile.am     |  15 +
 panels/online-accounts/icons/22x22/goa-account.png | Bin 0 -> 1202 bytes
 panels/online-accounts/icons/22x22/goa-panel.png   | Bin 0 -> 1431 bytes
 panels/online-accounts/icons/24x24/Makefile.am     |  15 +
 panels/online-accounts/icons/24x24/goa-account.png | Bin 0 -> 1230 bytes
 panels/online-accounts/icons/24x24/goa-panel.png   | Bin 0 -> 1469 bytes
 panels/online-accounts/icons/256x256/Makefile.am   |  15 +
 .../online-accounts/icons/256x256/goa-account.png  | Bin 0 -> 25710 bytes
 panels/online-accounts/icons/256x256/goa-panel.png | Bin 0 -> 42185 bytes
 panels/online-accounts/icons/32x32/Makefile.am     |  15 +
 panels/online-accounts/icons/32x32/goa-account.png | Bin 0 -> 1938 bytes
 panels/online-accounts/icons/32x32/goa-panel.png   | Bin 0 -> 2170 bytes
 panels/online-accounts/icons/48x48/Makefile.am     |  15 +
 panels/online-accounts/icons/48x48/goa-account.png | Bin 0 -> 3123 bytes
 panels/online-accounts/icons/48x48/goa-panel.png   | Bin 0 -> 3747 bytes
 panels/online-accounts/icons/Makefile.am           |  18 +
 panels/online-accounts/icons/scalable/Makefile.am  |  13 +
 po/POTFILES.in                                     |   3 +
 29 files changed, 1364 insertions(+)

commit d6bc292a69b2677fd65ccd2be1f6a4d7621fa03f
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Jun 24 15:03:35 2011 +0100

    color: Actually install the icon in the corect place

 panels/color/icons/16x16/Makefile.am    | 2 +-
 panels/color/icons/22x22/Makefile.am    | 2 +-
 panels/color/icons/24x24/Makefile.am    | 2 +-
 panels/color/icons/256x256/Makefile.am  | 2 +-
 panels/color/icons/32x32/Makefile.am    | 2 +-
 panels/color/icons/48x48/Makefile.am    | 2 +-
 panels/color/icons/64x64/Makefile.am    | 2 +-
 panels/color/icons/scalable/Makefile.am | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

commit 47fb197d73c39eb8cb76ff997a01215b15b28f24
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Jun 23 13:39:51 2011 +0200

    Printers: Remove redundant check
    
    Remove check which is not needed.

 panels/printers/pp-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 16ac093def54ee1adf7f293a85df3c6e2d0a26b4
Author: Alexandre Rostovtsev <tetromino@gmail.com>
Date:   Thu Jun 23 00:05:34 2011 -0400

    Fix https scheme handler app setting (bug #653211)
    
    default_app_changed() contains a typo: we need to set the https
    handler app when the user changes the http app chooser, not the
    (non-existent) https app chooser.

 panels/info/cc-info-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aafbaa6c1b4fc43bcd6473fa7cf82a3020ed6b9c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jun 23 11:19:05 2011 +0200

    Updated Spanish translation

 po/es.po | 161 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 79 insertions(+), 82 deletions(-)

commit e32472f81c1afa29eb5e3b25fa91b41e16d5743b
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Wed Jun 22 21:14:06 2011 +0200

    Updated Slovenian translation

 po/sl.po | 151 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 78 insertions(+), 73 deletions(-)

commit 2e448904218ac76309098f2082b3533f02d2f2b7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 17:35:31 2011 +0100

    shell: Print warning for uninstantiable panels
    
    Install stuff in /usr/local, desktop icon shows up, and it doesn't
    work. That's because it can't load the GIO extension. Yell like a madman
    about it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652583

 shell/cinnamon-control-center.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 632501cf1cc46f1254f5056815bdaa2261e0fa99
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 16:56:41 2011 +0100

    shell: " " isn't a search term, really
    
    Don't re-filter for added trailing or leading spaces

 shell/cinnamon-control-center.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 6dd4817d6824d11e0f5ed88b6512839ef02827e2
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jun 21 16:15:07 2011 +0100

    color: Allow advanced users to create virtual devices using the context menu

 panels/color/cc-color-panel.c | 11 +++++++++--
 panels/color/color.ui         |  1 -
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 24b2d2534ef97ff13004500e62cbc8cfb58548f8
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jun 21 13:25:32 2011 +0100

    color: Add a popup menu for advanced users that want to set the system default
    
    A menu popup was the best thing we could find after discussing it on
    If anybody has any better ideas then please shout / send patches.
    
    To show the menu, press the context menu key on the keyboard.

 panels/color/cc-color-panel.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

commit 14328b704e1108e6424e2fee467daa9525255527
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:52:39 2011 +0100

    region: Re-add missing toolbar style

 panels/region/gnome-region-panel.ui | 3 +++
 1 file changed, 3 insertions(+)

commit 566e0559b1f245cd001baf52b624c0000ad76980
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:51:38 2011 +0100

    region: Force icons only toolbar style

 panels/region/gnome-region-panel.ui | 1 +
 1 file changed, 1 insertion(+)

commit 9aaef2614ce8fa2abd97cdb5fbbf16ed4e2b4b34
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:47:16 2011 +0100

    printers: Force icons toolbar style
    
    https://bugzilla.gnome.org/show_bug.cgi?id=651599

 panels/printers/printers.ui | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 4623be9c947e3a32ebda899ed390470ac11c854b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:45:33 2011 +0100

    keyboard: Force "icons" toolbar style
    
    https://bugzilla.gnome.org/show_bug.cgi?id=651595

 panels/keyboard/gnome-keyboard-panel.ui | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 8e557aeaa3d69e7976c19ebe4f845233cc91dc82
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:42:44 2011 +0100

    network: Fix toolbar style
    
    We always want an icon toolbar style for those.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=651595

 panels/network/network.ui | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit b76013bd1d9cf72fffd3a16f2e2dde8bf227fbad
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:36:43 2011 +0100

    network: Avoid uninitialised variable

 panels/network/cc-network-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit a37f8770e563d2403a940e93ce42788f11af0ea6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 21 15:10:08 2011 +0100

    shell: Fix bad rendering of search results
    
    Don't use pango_cairo_layout_path(), which doesn't do any
    hinting whatsoever, use gtk_render_layout() from GTK+ instead,
    as the text cell renderer already does.
    
    With help from Matthias Clasen <mclasen@redhat.com>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652709

 shell/shell-search-renderer.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

commit c63f09dc0e9cfac20c35419445c0d553c18d4ce6
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:   Mon Jun 20 17:54:03 2011 +0200

    Updated Esperanto translation

 po/eo.po | 2249 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1458 insertions(+), 791 deletions(-)

commit 63edb0dcbeec16f00d5a9e54e80e1a0a5b2d6488
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jun 20 17:02:39 2011 +0200

    Printers: Include cups/ppd.h explicitly
    
    cups/ppd.h is not included by cups/cups.h since CUPS 1.5.

 configure.ac                            | 2 +-
 panels/printers/pp-new-printer-dialog.c | 1 +
 panels/printers/pp-utils.c              | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

commit 8054f2d773f81a8bbe875e9dea9ed10c03210f6b
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jun 20 13:45:48 2011 +0200

    Updated Galician translations

 po/gl.po | 133 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 86 insertions(+), 47 deletions(-)

commit 35e10fd1b0b9b0cdce2c432cb9956e7a23fdca5a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jun 19 17:50:55 2011 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 152 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 94 insertions(+), 58 deletions(-)

commit 48fcb5ca5c7ad15536f08bbb0db0a548ae17e738
Author: Andika Triwidada <andika@gmail.com>
Date:   Sun Jun 19 19:02:23 2011 +0700

    Updated Indonesian translation

 po/id.po | 5037 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 3468 insertions(+), 1569 deletions(-)

commit a543ed35c6cfb2b8ad1af9c930aedb233386c552
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Jun 19 11:54:42 2011 +0200

    Updated Spanish translation

 po/es.po | 96 +++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 59 insertions(+), 37 deletions(-)

commit 5ec3fa99419b454bc7aca92cfa1bbabedaf949d9
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Jun 17 12:30:05 2011 +0100

    shell: Use proper Unicode ellipses in the search renderer

 shell/shell-search-renderer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4b655eee128b6c6bc359f5f955ee8af884208dff
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 17 11:20:52 2011 +0200

    region: Simplify displaying of dates and times

 panels/region/gnome-region-panel-formats.c | 38 +++++++++++++-----------------
 1 file changed, 16 insertions(+), 22 deletions(-)

commit 2ded577f3dbc534b7ff17fcbad57f257dc1fbb1e
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 17 11:07:04 2011 +0200

    region: Add weak ref for GSettings object

 panels/region/gnome-region-panel-formats.c | 1 +
 1 file changed, 1 insertion(+)

commit 87baf75e9c06286d61e4e17a40e797b685d65ffb
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 17 11:04:47 2011 +0200

    region: Added missing assignment for loop control variable

 panels/common/cc-common-language.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f25e06b7d98b4865cad7a5794e8efe59eddc94fd
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 17 11:03:26 2011 +0200

    region: Bind region selection to GSettings

 panels/region/gnome-region-panel-formats.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit 82c9d1530c74615263e1e571ab51c75b3b41de49
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 17 10:44:25 2011 +0200

    Bump gsettings-desktop-schemas requirement for locale settings

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 00402d3595b28b1fe7e90fbf97eab82edab857f7
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Jun 16 18:29:10 2011 +0200

    Updated Slovenian translation

 po/sl.po | 75 ++++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 52 insertions(+), 23 deletions(-)

commit 066209d095f46995f489943c513cf2032e5ce858
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jun 14 18:27:36 2011 +0200

    region: Display all example strings, even though some are wrong

 panels/region/gnome-region-panel-formats.c | 16 ++++++++++++++--
 panels/region/gnome-region-panel.ui        | 26 +++++++++++++-------------
 2 files changed, 27 insertions(+), 15 deletions(-)

commit 68763a928bf98065e83c9586f8460493dc05247b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jun 14 17:39:41 2011 +0200

    region: Add code to manage the new Formats tab

 panels/region/Makefile.am                  |   2 +
 panels/region/cc-region-panel.c            |   2 +
 panels/region/gnome-region-panel-formats.c | 103 +++++++++++++++
 panels/region/gnome-region-panel-formats.h |  29 +++++
 panels/region/gnome-region-panel.ui        | 195 ++++++++++++++++++++++++++---
 5 files changed, 316 insertions(+), 15 deletions(-)

commit 298a95559db1d0d3bccc38dc9de39679a38b5e51
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 13 11:40:05 2011 +0200

    region: Add 'formats' tab

 panels/region/gnome-region-panel.ui | 174 +++++++++++++++++++++++++++++++++---
 1 file changed, 164 insertions(+), 10 deletions(-)

commit eb6084e9e0dd017f16c06d1fb0dceae755262379
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Jun 14 18:22:47 2011 +0200

    Updated Slovenian translation

 po/sl.po | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

commit 864e9b9cdcc3ac7bad385f0eb3cd21c064e9d6d0
Author: Dan Winship <danw@gnome.org>
Date:   Tue Jun 14 10:51:06 2011 -0400

    xrandr-capplet: Change "Anti-Clockwise" to "Counterclockwise"
    
    and then change it back in en_GB.po
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652569

 panels/display/xrandr-capplet.c | 2 +-
 po/af.po                        | 2 +-
 po/ar.po                        | 2 +-
 po/bg.po                        | 2 +-
 po/bn.po                        | 2 +-
 po/ca.po                        | 2 +-
 po/ca@valencia.po               | 2 +-
 po/cs.po                        | 2 +-
 po/da.po                        | 2 +-
 po/de.po                        | 2 +-
 po/el.po                        | 2 +-
 po/en_GB.po                     | 4 ++--
 po/eo.po                        | 2 +-
 po/es.po                        | 2 +-
 po/et.po                        | 2 +-
 po/eu.po                        | 2 +-
 po/fa.po                        | 2 +-
 po/fr.po                        | 2 +-
 po/ga.po                        | 2 +-
 po/gl.po                        | 2 +-
 po/gu.po                        | 2 +-
 po/he.po                        | 2 +-
 po/hi.po                        | 2 +-
 po/hu.po                        | 2 +-
 po/it.po                        | 2 +-
 po/ja.po                        | 2 +-
 po/kn.po                        | 2 +-
 po/ko.po                        | 2 +-
 po/lt.po                        | 2 +-
 po/lv.po                        | 2 +-
 po/nb.po                        | 2 +-
 po/nl.po                        | 2 +-
 po/pa.po                        | 2 +-
 po/pl.po                        | 2 +-
 po/pt.po                        | 2 +-
 po/pt_BR.po                     | 2 +-
 po/ro.po                        | 2 +-
 po/ru.po                        | 2 +-
 po/sk.po                        | 2 +-
 po/sl.po                        | 2 +-
 po/sr.po                        | 2 +-
 po/sr@latin.po                  | 2 +-
 po/sv.po                        | 2 +-
 po/ta.po                        | 2 +-
 po/te.po                        | 2 +-
 po/th.po                        | 2 +-
 po/tr.po                        | 2 +-
 po/ug.po                        | 2 +-
 po/uk.po                        | 2 +-
 po/vi.po                        | 2 +-
 po/zh_CN.po                     | 2 +-
 po/zh_HK.po                     | 2 +-
 po/zh_TW.po                     | 2 +-
 53 files changed, 54 insertions(+), 54 deletions(-)

commit 22f7c182bd6c2fc3380c8b59226b5aa94156e989
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sun Jun 12 22:45:05 2011 +0100

    region: trigger the layout chooser dialog response on 'row-activated' signal
    
    Allows the user to choose a new layout by double clicking or hitting enter.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652409

 panels/region/gnome-region-panel-xkbltadd.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 8af454938dfd01687b80cbf4e8d6f010f8a1beae
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Mon Jun 13 17:54:30 2011 +0200

    Updated Slovenian translation

 po/sl.po | 123 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 54 insertions(+), 69 deletions(-)

commit 60a25073668b8d8e571dd68ca2d34c9c1a7483ee
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sun Jun 12 01:12:20 2011 +0100

    region: remove helper function not needed since GTK+ 3.0
    
    GTK+ 3.0 introduced gtk_tree_model_iter_previous() so we no longer need to
    keep this helper function.
    
    Also, simplify the use of GtkTreeIters by allocating them on the stack.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652374

 panels/region/gnome-region-panel-xkblt.c | 38 +++++++-------------------------
 1 file changed, 8 insertions(+), 30 deletions(-)

commit 6db9b9fbfa3f0be0c9c2daee3eded3193118a425
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sat Jun 11 17:44:31 2011 +0100

    region: fix infinite loop dealing with gsettings 'changed' signal
    
    Setting updating_settings in update_layouts_list() and checking for it in the
    gsettings 'changed' signal handler doesn't prevent a loop because the signal
    handler is only called after update_layouts_list() returns and thus
    updating_settings is already FALSE at that point.
    
    By using the 'drag-end' signal instead of 'row-inserted', etc. we continue to
    support DnD re-ordering of layouts while avoiding the loop from
    xkb_layouts_fill_selected_tree() deleting and inserting rows into the model.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652361

 panels/region/gnome-region-panel-xkblt.c | 49 +++++++++-----------------------
 1 file changed, 13 insertions(+), 36 deletions(-)

commit efbe184019cc16e057758b1985f5e23fd2a8fc72
Author: Rui Matos <tiagomatos@gmail.com>
Date:   Sat Jun 11 17:42:35 2011 +0100

    region: fix a couple of memory leaks
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652360

 panels/region/gnome-region-panel-xkblt.c | 1 +
 panels/region/gnome-region-panel-xkbot.c | 2 ++
 2 files changed, 3 insertions(+)

commit 36cc21db32664ad14e0d677b44a87e49d9ea7fce
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Jun 11 12:40:39 2011 +0100

    user-accounts: Fix deleting users on 32-bit systems
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652073

 panels/user-accounts/um-user-manager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b5eaf1f3d41685b2d46c69093fb1c1ae13384da7
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jun 11 11:33:57 2011 +0200

    Updated Spanish translation

 po/es.po | 92 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 52 insertions(+), 40 deletions(-)

commit a047f3106208c699c3cde5a9c4a3bb3a06f0c876
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jun 11 11:38:45 2011 +0300

    Updated Hebrew translation.

 po/he.po | 82 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 43 insertions(+), 39 deletions(-)

commit c05e531bfb5d84547428a9149a043d62c08f0c94
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Jun 11 01:57:44 2011 +0100

    Fix the labels according to the usability gurus
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641021

 panels/region/gnome-region-panel.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 527f6841be39f28c144bddf07ec612e1d68aee08
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Jun 10 21:16:50 2011 +0200

    Updated Slovenian translation

 po/sl.po | 1626 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 990 insertions(+), 636 deletions(-)

commit 777a90b0a430030edf2cca6a17e78c116dfd63dd
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Jun 10 20:09:56 2011 +0200

    Updated Slovenian translation

 po/sl.po | 610 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 596 insertions(+), 14 deletions(-)

commit 5ffae5b569dd80543b4466daec9abef4be06d36a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jun 10 17:57:29 2011 +0100

    user-accounts: Fix fingerprint assistant
    
    https://bugzilla.gnome.org/show_bug.cgi?id=649678

 panels/user-accounts/data/account-fingerprint.ui | 11 +++++-----
 panels/user-accounts/um-fingerprint-dialog.c     | 26 +++---------------------
 2 files changed, 8 insertions(+), 29 deletions(-)

commit 8473ed33ebb3929e54042d034c5ba72f2e556c9d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 10 17:23:23 2011 +0100

    shell: Make --help-all and --help-gtk work
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652165

 shell/control-center.c | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

commit 0402e73b8f957921d1bcdf309dce84a7537d1f43
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Jun 10 16:52:26 2011 +0200

    shell: Don't update the visibility of the lock button
    
    Currently the lock button's visibility is updated on permission
    changes - if the active panel does provide a permission object,
    the button is shown, otherwise hidden.
    As GtkLockButton itself does manage its visibility, it is not
    necessary to handle it in g-c-c. In fact it is harmful, as the
    more sophisticated handling in GtkLockButton is overwritten: for
    instances, GtkLockButton hides itself if an action is allowed and
    the permission can not be released. By overwriting the behavior,
    cinnamon-control-center ends up showing a non-functional button.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652299

 shell/cinnamon-control-center.c | 12 ------------
 1 file changed, 12 deletions(-)

commit 1b183a5fa25c7848512590b1c60fbf3a6984602d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 10 16:28:01 2011 +0100

    info: Fix disk space showing free space
    
    An error in porting to async code in
    c22a98dcb74b0942f50fe70f996cf9a16243447b made the info panel
    report the free space rather than the disk space.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639376

 panels/info/cc-info-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ee73a6cf2b52648379d5bb410212e214bc9371ca
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Jun 10 00:01:40 2011 +0200

    datetime: Fix date sensitivity on permission changes
    
    Setting the date manually should be disabled when using NTP, but
    the "Network Time" setting is not taken into account when updating
    sensitivities after permission changes. As a result, the date is
    always editable after unlocking the panel - to fix, take the NTP
    setting into account on permission changes.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=652240

 panels/datetime/cc-datetime-panel.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit b7d40cb613f1d1a42d8f3aa03a207aca52796d76
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Thu Jun 9 20:11:48 2011 +0700

    po/vi.po: update shortcut translations

 po/vi.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 791f41c793745598ce5d873896245b3f0e01e51a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Wed Jun 8 23:06:54 2011 +0200

    Updated Spanish translation

 po/es.po | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit 90b05dc04c62c871be37f113f6a5a41e90ba4324
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Jun 8 09:54:55 2011 +0300

    Updated Hebrew translation.

 po/he.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 7d82d430d6f8354a47ae7f2b278a9ea465f9372c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jun 7 08:19:30 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1369 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 843 insertions(+), 526 deletions(-)

commit 4c405ae5bfb10b2d5474b677b78555934fbc7f20
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Jun 6 16:05:20 2011 -0400

    shell: move the raised class hint to the tool item
    
    This fixes the raised buttons in the primary toolbar with GTK+ master.

 shell/shell.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b5d77ed394c8a5696bb36f2eb95e5b10587113d0
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Jun 6 20:56:28 2011 +0200

    Updated Spanish translation

 po/es.po | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit a61cbccf46d3ce96b9c89e603f701c8e55293cd4
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Jun 6 16:24:07 2011 +0200

    network: Remove spaces before question marks

 panels/network/cc-network-panel.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 80855dac996607016c5ba25a962e7dc62077566e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jun 6 10:23:24 2011 +0200

    Updated Galician translations

 po/gl.po | 1456 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 893 insertions(+), 563 deletions(-)

commit 93259e12ec342d83cbe1ab08a6238e5bc0c91ebe
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Jun 5 17:33:52 2011 +0200

    Updated Spanish translation

 po/es.po | 80 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 39 insertions(+), 41 deletions(-)

commit 9cc68d8292d10472c94581a58e6ab0783f2f5a7f
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Jun 5 15:36:20 2011 +0200

    [l10n] Updated German translation

 po/de.po | 1650 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 924 insertions(+), 726 deletions(-)

commit 51b958790774f8bcf41b2898362f2487c60824b8
Author: Yuri Kozlov <yuray@komyakino.ru>
Date:   Sun Jun 5 11:02:51 2011 +0400

    Updated Russian translation

 help/ru/ru.po | 107 ++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 62 insertions(+), 45 deletions(-)

commit 25cb784c68d7b905a05eb7be1c38ab039a44ec99
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sun Jun 5 10:13:35 2011 +0400

    Revert "Updated Russian translation"
    
    This reverts commit 81b7db3fdc351578a3b41af6455c4d04e02e94ee.

 po/ru.po | 4041 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 3931 insertions(+), 110 deletions(-)

commit 64e26500868527a949b437b5b8cfd99f0da18699
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jun 4 14:38:54 2011 +0300

    Added the 3rd plural form for Hebrew.

 po/he.po | 34 +++++++++++++++++++++-------------
 1 file changed, 21 insertions(+), 13 deletions(-)

commit 0e8dcd703ae74c163497969d8e4f88b3e8186ff4
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jun 4 14:24:45 2011 +0300

    Updated Hebrew translation.

 po/he.po | 1523 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 922 insertions(+), 601 deletions(-)

commit 81b7db3fdc351578a3b41af6455c4d04e02e94ee
Author: Yuri Kozlov <yuray@komyakino.ru>
Date:   Sat Jun 4 10:26:28 2011 +0400

    Updated Russian translation

 po/ru.po | 4045 ++------------------------------------------------------------
 1 file changed, 112 insertions(+), 3933 deletions(-)

commit 3fe26cfe504487dfec9ce229dccc79e014be86c6
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jun 3 12:51:57 2011 +0200

    Printers: Move check for availability of CUPS to better place
    
    Fixes problem of not showing information about stopped CUPS and
    missing printers.

 panels/printers/cc-printers-panel.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit 5912f0027375a4d9f7f969adf88a29c2a1892cc1
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Jun 2 16:39:09 2011 +0100

    color: Don't emit a critical warning if the panel starts with a colorimeter already plugged in

 panels/color/cc-color-panel.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 6c691dacf2455b523c63cc6f961a83910bb8b5e4
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Jun 1 18:23:47 2011 +0100

    color: Actually sort the new profile box by name by setting the sort column

 panels/color/cc-color-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit f4228e48cef8555203dc4d976d9c4df73f7b3d25
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Jun 1 18:18:18 2011 +0100

    color: Only attempt to get the main window after the widget has been realized
    
    This fixes a critical warning when adding a profile.

 panels/color/cc-color-panel.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 1e064c8b962d3ce8642e7fccafb06ab5a0a115ff
Author: Frédéric Péters <fpeters@0d.be>
Date:   Wed Jun 1 17:57:33 2011 +0200

    [info] skip test-hostnames if en_US.UTF-8 is not available

 panels/info/test-hostname.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 6e95994858072485ca00a2cfc3fc61e875876603
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Wed Jun 1 18:04:21 2011 +0300

    Updated Greek translation

 po/el.po | 2416 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1280 insertions(+), 1136 deletions(-)

commit a44d36f9932008499e44443b512319e33f4fd615
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue May 31 10:43:31 2011 +0100

    color: Connect to the profile before doing cd_profile_equal -- we use the ID not the path

 panels/color/cc-color-panel.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 203046ccfbd30ffc2da34aea2dd87ae60ed4045d
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon May 30 23:08:00 2011 +0100

    color: Fix a critical warning when devices are removed
    
    It's a treeview, not a listview...

 panels/color/cc-color-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e51b037b765da34844de03d9ea6290c4e12e0c98
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon May 30 22:06:36 2011 +0100

    color: Adapt to new async colord API
    
    The libcolord async API used to use a thread to get the properties for the
    device and profiles in the background.
    
    This was racy as hell, and was not good API design. Connect to each device and
    profiles explicitly before we access the properties.

 panels/color/cc-color-panel.c | 150 +++++++++++++++++++++++++++++++-----------
 1 file changed, 111 insertions(+), 39 deletions(-)

commit 63c7019e95abddd2aaa237f855f91f4f652e378a
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 27 20:11:49 2011 +0100

    color: fix up some minor indenting issues

 panels/color/cc-color-panel.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 26031e6de67232a26d24d7c63b03a74efb7e8e95
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Mon May 30 12:18:12 2011 -0600

    Updated Irish translation.

 po/ga.po | 1596 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 951 insertions(+), 645 deletions(-)

commit b1677ff74ea27495142cf04b4b11565110600829
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Sun May 29 18:11:55 2011 +0200

    [l10n]Updated Catalan (Valencian) translation

 po/ca@valencia.po | 8326 +++++++++++++++++++++--------------------------------
 1 file changed, 3356 insertions(+), 4970 deletions(-)

commit 426cf5f9fb2f7c54e62ad0cc5bace69d40d41273
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun May 29 10:04:18 2011 +0200

    Updated Spanish translation

 po/es.po | 193 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 92 insertions(+), 101 deletions(-)

commit 58149d06459a1240e52b718d060888b330a1f0da
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sun May 29 10:51:50 2011 +0400

    Updated Russian translation

 po/ru.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a6d09a54fb4651925b6def1b0c6ccff75d804e32
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sun May 29 10:50:52 2011 +0400

    Updated Russian translation

 po/ru.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f6d8f9c2724550678fd09596397a10d79d62b785
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sat May 28 18:51:21 2011 +0400

    Updated Russian translation

 po/ru.po | 1658 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1086 insertions(+), 572 deletions(-)

commit 9812be38c1c1f7d1ccdf1762f061f8a64c3351fa
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat May 28 10:59:56 2011 +0200

    Updated Spanish translation

 po/es.po | 258 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 159 insertions(+), 99 deletions(-)

commit b041e659550ba76ac2c8622fb28fa0d94d610148
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 27 18:39:25 2011 +0100

    sound: Fix direction of speaker test in RTL languages
    
    https://bugzilla.gnome.org/show_bug.cgi?id=651273

 panels/sound/gvc-speaker-test.c | 1 +
 1 file changed, 1 insertion(+)

commit fba02faa49881bd369a81f62ae5a64f5af2e4ea6
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri May 27 15:38:59 2011 +0200

    Printers: Use SNMP CUPS backend to discover printers on given address
    
    Search for printers on address given by user using CUPS's SNMP backend.
    This modification typically finds network printers publishing themselves
    on port 9100.

 panels/printers/pp-new-printer-dialog.c | 170 ++++++++++++++++++++++++++++++--
 1 file changed, 162 insertions(+), 8 deletions(-)

commit 8f4895559aeeca11f67e6374ae1da22b6da686ce
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon May 16 12:11:30 2011 +0200

    Printers: Allow editing of printer name and location
    
    Use CcEditableEntry for editing name and location of local printers
    (#649511).

 panels/printers/Makefile.am             |   1 +
 panels/printers/cc-printers-panel.c     | 322 +++++---------
 panels/printers/pp-new-printer-dialog.c |  36 +-
 panels/printers/pp-utils.c              | 752 +++++++++++++++++++++++++++++++-
 panels/printers/pp-utils.h              |  37 +-
 panels/printers/printers.ui             |  33 +-
 6 files changed, 923 insertions(+), 258 deletions(-)

commit 03b2a21e7d7002f283665a54bbe6b13a27b55dcc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 20:22:34 2011 -0400

    Network: Use the 'pretty hostname' for hotspots
    
    Also, prevent crashes when nm_active_connection_get_devices()
    decides to return NULL instead of an array.

 panels/network/cc-network-panel.c | 60 +++++++++++++++++++++++++++++++++++----
 1 file changed, 55 insertions(+), 5 deletions(-)

commit a7c3024998cdc1619f49b9d72e5d82ba1ab2747e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 18:47:27 2011 -0400

    Network: Improve wording of warnings
    
    Also, add a warning when stopping hotspots, too, and consequently
    add the dots back to the stop button as well.

 panels/network/cc-network-panel.c | 128 ++++++++++++++++++++++++--------------
 panels/network/network.ui         |   2 +-
 2 files changed, 84 insertions(+), 46 deletions(-)

commit 24c320a2c3bf1a53c87489b0ab6375788416d6b4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 17:42:14 2011 -0400

    Network: put the dots back in the hotspot button
    
    After all we are showing a dialog now, sometimes...

 panels/network/network.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0273e3b9264a2b4cb10f9fe1ea40f67a8ca692cc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 17:34:56 2011 -0400

    Network: disable the hotspot button when the device is off

 panels/network/cc-network-panel.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit fea89403bf8324c8f4a6a56709cf9f3615ceec69
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 17:19:58 2011 -0400

    Network: Add warning dialogs
    
    We warn if there is no connection to the internet (questionable
    to create a hotspot in that case) or if creating the hotspot
    would drop the default connection to the internet (ditto).

 panels/network/cc-network-panel.c | 69 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 69 insertions(+)

commit b8529164d6278dbdeb420e2e843b3d72732c3efc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 17:15:53 2011 -0400

    Network: prevent a possible crash
    
    Some of the settings may be NULL when we call is_hotspot_connection()
    on random connections. No need to crash then...

 panels/network/cc-network-panel.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit f658ff61aa687a8aea7c6e098beb61c61a9233ce
Author: Antoine Jacoutot <ajacoutot@openbsd.org>
Date:   Thu May 26 17:45:23 2011 +0200

    Typo preventing compilation on some platforms.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=651162

 libcinnamon-control-center/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1b60a6fd6b4dcaeb9c5caf3f752c98d920135230
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 11:59:16 2011 -0400

    Network: Remove ellipses from hotspot buttons
    
    There's no dialogs anymore...

 panels/network/network.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b3067539f65782fcc5b6a3ea646f692840a02fff
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 11:57:49 2011 -0400

    Network: simplify security string for hotspots
    
    Dan recommends that we do not discriminate between WPA and WPA2,
    so we don't have to bother with showing multiple strings at all
    anymore, it is just None or WEP or WPA now.

 panels/network/cc-network-panel.c | 48 ++++-----------------------------------
 1 file changed, 5 insertions(+), 43 deletions(-)

commit 97982f395e393d166a46584c61fc0a0f4fd67937
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 26 07:05:00 2011 -0400

    Network: fix the build

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 64e94a0adbf810aa844e75b92b79954dd9acc949
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue May 24 07:28:31 2011 -0400

    Implement network sharing
    
    This is an implementation of network sharing (aka 'Hotspot').
    The new 'Use as hotspot' button lets you use a wifi device
    as a hotspot for sharing network connections with others.
    
    Currently, the panel generates a ssid based on the hostname,
    sets the security to WEP, and generates a random key. These
    parameters can be edited afterwards.
    
    It is currently not possible to show how many connections
    are using the hotspot. Apart from this, the implementation
    is pretty much complete.

 panels/network/cc-network-panel.c | 467 +++++++++++++++++++++++++++++++++++++-
 panels/network/network.ui         | 151 ++++++++++--
 2 files changed, 592 insertions(+), 26 deletions(-)

commit d4b88f12a6e3b1fb122f84c573a7a37607aa7fcf
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed May 25 08:54:35 2011 -0400

    Network: refresh ui in an idle
    
    This seems a lot safer than doing it directly from all kinds
    of callbacks.

 panels/network/cc-network-panel.c | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

commit c390d4f36d53adeb197adef41259d2ed050bc229
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed May 25 08:33:56 2011 -0400

    Network: use the correct condition for the option button
    
    The button needs a connection to edit; so set the sensitivity
    based on the existence of a connection.

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e5675435c2ed98476555c5a89714c2ec68f4abf3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed May 25 07:05:44 2011 -0400

    Network: avoid a possible crash
    
    When there are no active connections, nm_device_get_active_connections
    returns NULL.

 panels/network/cc-network-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit f9a186a2721fae131dc70bfb44061ffd345eea88
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue May 24 20:03:50 2011 -0400

    Network: fix the wpad warning
    
    Due to size allocation changes in GTK+, wrapping labels without
    a minimal width now become very high. So we need to set a reasonable
    width-chars value to ensure the label shows up.

 panels/network/cc-network-panel.c | 2 +-
 panels/network/network.ui         | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit a4af31e0689d0649e69098c4d383523de9b79e40
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Wed May 25 02:36:51 2011 +0430

    Updated Persian translation

 po/fa.po | 2302 ++++++++++++++++++++++++++------------------------------------
 1 file changed, 954 insertions(+), 1348 deletions(-)

commit 659baf5adf5bcf5b949c9115a7bb03544da83081
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Tue May 24 23:46:21 2011 +0700

    po/vi.po: typo fix

 po/vi.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 5324d6ce9f08b16e2b9752c47bb99f0823f4ffe2
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Tue May 24 19:27:18 2011 +0700

    po/vi.po: added shortcut and two more translations

 po/vi.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit fa9b65faffeda65d3b7fd7f44fd3bfa02b70da6e
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue May 24 11:06:25 2011 +0200

    Add NEWS for 3.0.2 release

 NEWS | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

commit 6af3db5994649c319c228b66b0d0adbc8bd599ba
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 23 16:06:18 2011 +0100

    datetime: Add mention of a few gdbus-codegen bugs

 panels/datetime/Makefile.am | 6 ++++++
 1 file changed, 6 insertions(+)

commit a0d0a4c28fc7c8e51c90340e6b63d23a2565d73c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon May 23 16:05:53 2011 +0100

    datetime: Regenerate dtm.[ch]
    
    Fixes a few compilation warnings.

 panels/datetime/dtm.c | 73 +++++++++++++++++++--------------------------------
 panels/datetime/dtm.h |  2 ++
 2 files changed, 29 insertions(+), 46 deletions(-)

commit d8bbb0af6683d81e7b28c7a4b9a410c4579c1cba
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 21:29:33 2011 -0400

    users: don't add a lockbutton
    
    Instead, implement get_permission to get a lockbutton
    in the toolbar.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650292

 panels/user-accounts/um-user-panel.c | 41 ++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 23 deletions(-)

commit be35c2a83433b9cbb5298df872928b5f54935af4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 21:29:00 2011 -0400

    Datetime: Don't add a lockbutton
    
    Instead, implement get_permission to get a lockbutton
    in the toolbar.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650292

 panels/datetime/cc-datetime-panel.c | 35 +++++++++++++++++++++++------------
 1 file changed, 23 insertions(+), 12 deletions(-)

commit 3e263c5764b55c65d355d939d18380de7c58ecf9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 21:28:06 2011 -0400

    Printers: Don't add a lockbutton
    
    Instead, implement get_permission to get a lockbutton
    in the toolbar.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650292

 panels/printers/cc-printers-panel.c | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)

commit e5072232eee59afb923a270e7d9d5fb786caa7d0
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 21:27:09 2011 -0400

    Add a lockbutton to the toolbar
    
    And populate it from the get_permission method added earlier.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650292

 shell/cinnamon-control-center.c | 30 +++++++++++++++++++++++++++++-
 shell/shell.ui               | 26 +++++++++++++++++++-------
 2 files changed, 48 insertions(+), 8 deletions(-)

commit 9cdd557ecac496bb22907e311cc54daa91b4e457
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 21:24:43 2011 -0400

    Add a cc_panel_get_permission method
    
    This is in preparation for moving lock buttons to the toolbar.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650292

 libcinnamon-control-center/cc-panel.c | 10 ++++++++++
 libcinnamon-control-center/cc-panel.h |  3 +++
 2 files changed, 13 insertions(+)

commit 13a08f499432365eb42a277ee6c304037e00cb78
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon May 23 09:19:19 2011 -0400

    Users: strip out periods when generating proposals
    
    Some systems seem to disallow them in usernames, but more
    importantly, the proposals look just wrong for abbreviated
    middle initials with a period.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650777

 panels/user-accounts/um-utils.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit f50f66f345d6bd109f6fd989334852b6a4eee430
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun May 22 14:42:16 2011 +0200

    Updated Spanish translation

 po/es.po | 1466 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 866 insertions(+), 600 deletions(-)

commit 9673998ecaa1bd5de00a263809dbc86947a517f5
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun May 22 14:08:51 2011 +0200

    Updated Spanish translation

 po/es.po | 1464 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 599 insertions(+), 865 deletions(-)

commit 4b69a0665a87399d55014fd7e90233ab0ef14b92
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun May 22 05:55:12 2011 +0200

    Updated Spanish translation

 po/es.po | 27 ++++++++++++---------------
 1 file changed, 12 insertions(+), 15 deletions(-)

commit cb1bb49c887eb463035ba24f65ae841b1e8b8efb
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat May 21 20:43:22 2011 +0200

    Updated Spanish translation

 po/es.po | 134 +++++++++++----------------------------------------------------
 1 file changed, 23 insertions(+), 111 deletions(-)

commit 6e841adf35e86f971e35cff0a0b1baa46b853907
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat May 21 09:50:48 2011 +0200

    Updated Spanish translation

 po/es.po | 1569 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 961 insertions(+), 608 deletions(-)

commit e7863d0e0207e0bf2a5bbaee88199610a460dc44
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 20 20:40:10 2011 +0100

    color: Add the virtual device UI which is used when a physical device connection is impossible
    
    This is designed so power users can create virtual devices (just like in
    ColorSync) that represent things like 'Hexachrome Press #2' or 'Cinema'.
    
    This new UI isn't actually wired up yet, and there are no new UI controls as
    the UI still needs love from the designers.
    
    This was added at this point for two reasons:
    
    1. To get the translations early so we can enable this later
    2. To be able to delete the code out of gcm-prefs.c

 panels/color/cc-color-panel.c | 224 +++++++++++++++++++++++++++++++++++++
 panels/color/color.ui         | 255 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 479 insertions(+)

commit 0ad983ebffde6ec36910c7cf4753b82fe7e4fb57
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 12:43:51 2011 -0400

    info: add padding to the list
    
    For consistency with sidebar lists in other panels. Almost like
    this was a designed application, and not just a grabbag of panels...

 panels/info/cc-info-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit f93fee01210f259106f4029e186e7c34ef75818e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 12:30:49 2011 -0400

    Network: use the new sidebar-list icon size
    
    Also add some padding. The designers like it like this.

 panels/network/cc-network-panel.c | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit 02c26cd2c0fa8fd21ddfc16819589b7067976bb5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 12:29:57 2011 -0400

    Printers: use the new sidebar-list icon size
    
    Also add some padding for good looks.
    Overwhelmingly approved by #gnome-design.

 panels/printers/cc-printers-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2219fc116ce62e002cc9ee04c36f9f58de6bc746
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri May 20 12:28:27 2011 -0400

    Register a symbolic icon size for icons in sidebar lists
    
    That way, we can use 24, but still remain (at least theoretically)
    themable for the benefit of large-print a11y themes.

 shell/control-center.c | 3 +++
 1 file changed, 3 insertions(+)

commit d75adefd960df7fcc7b38a99f6557ddc668e7e70
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 20 16:34:35 2011 +0100

    color: Force the color treeview scrolled window to be at least 6 rows in height

 panels/color/cc-color-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 3ee0fd13031b40db604b9e02561e3f1519c91f71
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 20 15:49:47 2011 +0100

    Fix make check by updating POTFILES.in to reflect reality

 po/POTFILES.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 391cd73e5e34112aca5570f8eebb1ba7683fd3a3
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri May 20 09:38:47 2011 +0100

    color: install a preferences-color icon to avoid using the gnome-color-manager icon name

 configure.ac                                      |    9 +
 panels/color/Makefile.am                          |    2 +
 panels/color/gnome-color-panel.desktop.in.in      |    2 +-
 panels/color/icons/16x16/Makefile.am              |   11 +
 panels/color/icons/16x16/preferences-color.png    |  Bin 0 -> 837 bytes
 panels/color/icons/22x22/Makefile.am              |   11 +
 panels/color/icons/22x22/preferences-color.png    |  Bin 0 -> 1531 bytes
 panels/color/icons/24x24/Makefile.am              |   11 +
 panels/color/icons/24x24/preferences-color.png    |  Bin 0 -> 1562 bytes
 panels/color/icons/256x256/Makefile.am            |   11 +
 panels/color/icons/256x256/preferences-color.png  |  Bin 0 -> 44668 bytes
 panels/color/icons/32x32/Makefile.am              |   11 +
 panels/color/icons/32x32/preferences-color.png    |  Bin 0 -> 2366 bytes
 panels/color/icons/48x48/Makefile.am              |   11 +
 panels/color/icons/48x48/preferences-color.png    |  Bin 0 -> 4353 bytes
 panels/color/icons/64x64/Makefile.am              |   11 +
 panels/color/icons/64x64/preferences-color.png    |  Bin 0 -> 5883 bytes
 panels/color/icons/Makefile.am                    |   15 +
 panels/color/icons/render-icons.py                |  149 +++
 panels/color/icons/scalable/Makefile.am           |   12 +
 panels/color/icons/scalable/preferences-color.svg |  728 +++++++++++++
 panels/color/icons/src/preferences-color.svg      | 1154 +++++++++++++++++++++
 22 files changed, 2147 insertions(+), 1 deletion(-)

commit 2e7e54c3c2d89cb8376bccb34cfeb95e19c3582f
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu May 19 17:36:48 2011 +0100

    Add a color panel based on the functionality available in gnome-color-manager
    
    All the major functionality is present, but the virtual device stuff needs
    further work with the designers before being included.

 configure.ac                                 |    3 +
 panels/Makefile.am                           |    1 +
 panels/color/Makefile.am                     |   34 +
 panels/color/cc-color-panel.c                | 1939 ++++++++++++++++++++++++++
 panels/color/cc-color-panel.h                |   74 +
 panels/color/color-module.c                  |   42 +
 panels/color/color.ui                        |  365 +++++
 panels/color/gnome-color-panel.desktop.in.in |   17 +
 po/POTFILES.in                               |    3 +
 po/POTFILES.skip                             |    1 +
 10 files changed, 2479 insertions(+)

commit a04a873d68885c6d57df514993df3cb5a848e211
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri May 20 12:27:05 2011 +0200

    Kill warning in g_print call

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit eb684a4bcfa84ea3a59daa59076c8e7e512e1232
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri May 20 12:17:02 2011 +0200

    Remove calls to AM_GNU_GETTEXT, IT_PROG_INTLTOOL should be enough

 configure.ac | 3 ---
 1 file changed, 3 deletions(-)

commit aef79bbf79541ed5b2063b6cf69374bd08173c12
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed May 18 21:20:39 2011 -0400

    Move username related utilities to um-utils.[hc]
    
    This will make it easier to reuse them in gdm-initial-setup.

 panels/user-accounts/um-account-dialog.c | 268 +--------------------------
 panels/user-accounts/um-utils.c          | 302 +++++++++++++++++++++++++++++++
 panels/user-accounts/um-utils.h          |   7 +
 3 files changed, 314 insertions(+), 263 deletions(-)

commit 4ca492bc267fe1bdd5749351254558a93e353a16
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 18 13:08:43 2011 +0100

    info: Work-around test failing in some locales
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650342

 panels/info/test-hostname.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 5e05b920c41fb288cc1edd8e1b3136a056a9dd45
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue May 17 11:27:47 2011 -0400

    Datetime: use a gdbus-codegen-erated wrapper
    
    Instead of handrolled, copy-pasted async code for talking to
    the date-time-mechanism, use gdbus-codegen to generate one
    that looks nicer and is just all-around better.

 panels/datetime/Makefile.am         |    4 +-
 panels/datetime/cc-datetime-panel.c |  135 +-
 panels/datetime/dtm.c               | 3085 +++++++++++++++++++++++++++++++++++
 panels/datetime/dtm.h               |  473 ++++++
 4 files changed, 3673 insertions(+), 24 deletions(-)

commit 11571bf609659008a0093abaf71ded91b9c98c6a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 17 15:19:46 2011 +0100

    info: Split test cases into separate file
    
    This fixes errors when run in non-UTF-8 locales.

 panels/info/Makefile.am        |  4 ++-
 panels/info/hostnames-test.txt | 11 +++++++
 panels/info/test-hostname.c    | 66 +++++++++++++++++++++++-------------------
 3 files changed, 51 insertions(+), 30 deletions(-)

commit 61623a1f665b8668ca95498c4540586fd926417f
Author: David Benjamin <davidben@mit.edu>
Date:   Wed Mar 23 22:00:58 2011 -0400

    user-accounts: don't call gtk_main_quit if AccountService is unavailable
    
    Just desensitize the panel and call it a day.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648969

 panels/user-accounts/um-user-panel.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 60e9f496733ad67ac9a1f6885d0e834dd1c224f5
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon May 16 10:43:18 2011 +0200

    Printers: Check that GValue holds int before using it
    
    Check that GValue returned as value of GTK_STYLE_PROPERTY_BORDER_RADIUS
    holds int.

 panels/printers/cc-printers-panel.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit bb858701a388e67d9bb448cc3fcc6ebf39bfa7c7
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon May 16 00:52:07 2011 -0400

    Shell: Make ShellSearchRenderer accessible
    
    Since GtkIconViews a11y implementation only takes text from
    GtkCellRendererText::text, derive ShellSearchRenderer from
    GtkCellRendererText and set the text property. Now orca
    reads the search results nicely.

 shell/shell-search-renderer.c | 69 ++++++++++++++++++++++++++++++++++++-------
 shell/shell-search-renderer.h |  4 +--
 2 files changed, 60 insertions(+), 13 deletions(-)

commit 4838efab110354e3af853372f343f21fcb241b8e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon May 16 00:12:44 2011 -0400

    Background: Improve a11y of wallpaper list
    
    Add an invisible text cell renderer to have the text spoken
    by orca.

 panels/background/background.ui          | 10 ++++++++++
 panels/background/bg-colors-source.c     |  1 +
 panels/background/bg-source.c            |  2 +-
 panels/background/bg-wallpapers-source.c |  1 +
 4 files changed, 13 insertions(+), 1 deletion(-)

commit c513d2b3aacfe1557235596358e2c1f9cd10e984
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 23:53:11 2011 -0400

    Printers: Improve a11y of inline toolbars
    
    Mark the labels of the add/remove buttons as translatable. While
    these are not shown in the ui, orca reads them.

 panels/printers/printers.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit dc1773866b65cd01f40bd05eeba4128f15d4a213
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 23:52:13 2011 -0400

    Background: Improve a11y of inline toolbar
    
    Give translatable labels to the add/remove buttons; while these
    are not shown in the ui, orca reads them.

 panels/background/background.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 67d52185a8d84ce68093bf2d51bb4b3e5a6ec5b8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 23:19:27 2011 -0400

    Datetime: Improve a11y for time controls
    
    By giving them an accessible description, orca reads them
    somewhat meaningfully.

 panels/datetime/datetime.ui | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

commit c6ed45a0dc889e4bcb327c3c498065d84bfc3442
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 22:40:26 2011 -0400

    Fix a11y/keynav issues in the sound panel
    
    Add mnemonic to the 'Test Speaker' button, and add labelled-by
    relations to the 'Test' buttons in the speaker test dialog.

 panels/sound/gvc-combo-box.c    | 1 +
 panels/sound/gvc-mixer-dialog.c | 2 +-
 panels/sound/gvc-speaker-test.c | 5 +++++
 3 files changed, 7 insertions(+), 1 deletion(-)

commit ebe174f51ca1ac66944c9b322aefefb7a5823238
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 22:14:20 2011 -0400

    Some more a11y fixes
    
    Add labelled-by relations to 'label-less' switches.

 panels/screen/screen.ui | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

commit c4c9a74b8aca1ca4993dbf049fb95f30f37bbe0d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 21:59:07 2011 -0400

    Fix a11y/keynav issues in the universal access panel
    
    Add several mnemonics. The switches in this panel are not really
    equipped with suitable labels, so at least mark them as labelled-by
    their section headings, so that ATs have some chance to read a
    meaningful blurb for them.

 panels/universal-access/uap.ui | 88 ++++++++++++++++++++++++++++++------------
 1 file changed, 64 insertions(+), 24 deletions(-)

commit a13cdf16f4ea9f0a6de2050fd05481bb0619e6e8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 21:09:40 2011 -0400

    Forgotten file
    
    This belongs to the earlier commit that fixed a11y/keynav issues
    in the user account panel.

 panels/user-accounts/data/password-dialog.ui | 1 +
 1 file changed, 1 insertion(+)

commit f9c8d63585659b795b481a5fa9feae1848921ee5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 21:09:11 2011 -0400

    Fix a11y/keynav issues in the printer panel
    
    This adds some missing mnemonics.

 panels/printers/new-printer-dialog.ui | 13 +++++++++----
 panels/printers/printers.ui           | 18 ++++++++++++------
 2 files changed, 21 insertions(+), 10 deletions(-)

commit 685b5ebb9b1a41b3555b07a05d6af4e4e771b6d3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 20:20:19 2011 -0400

    Fix a11y/keynav issue in the network panel
    
    The mnemonic for the 'Network name' combo was not working.

 panels/network/network.ui | 1 +
 1 file changed, 1 insertion(+)

commit 0725cffaee2b08e8369e1c5f099e67d0f7668dd1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 20:10:57 2011 -0400

    Fix a11y/keynav issues in the user account panel
    
    Add missing mnemonics to a number of places. Also make
    the editable button/combo widgets react better to mnemonic
    activation.
    
    Part of bug 650132

 panels/user-accounts/data/account-fingerprint.ui  |  6 +++---
 panels/user-accounts/data/language-chooser.ui     |  6 ++++--
 panels/user-accounts/data/user-accounts-dialog.ui | 20 ++++++++++++-----
 panels/user-accounts/um-editable-button.c         | 26 +++++++++++++++++++++++
 panels/user-accounts/um-editable-button.h         |  1 +
 panels/user-accounts/um-editable-combo.c          | 24 +++++++++++++++++++++
 panels/user-accounts/um-editable-combo.h          |  1 +
 7 files changed, 74 insertions(+), 10 deletions(-)

commit f783f3cfdcd3df6438c6de990ef602cb0b0fc4b6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 18:53:24 2011 -0400

    Fix a11y/keynav issues in info panel
    
    Add mnemonics for all active controls.
    
    Part of bug 650132

 panels/info/cc-info-panel.c | 19 +++++++++++++------
 panels/info/info.ui         | 35 +++++++++++++++++++++--------------
 2 files changed, 34 insertions(+), 20 deletions(-)

commit 4afbbe7265ff6e3ee420b887da70ffc7544fad59
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 15:07:16 2011 -0400

    Fix a11y/keynav issues in the datetime panel
    
    Add mnemonics to all controls that have labels.
    Possible further improvements: set a11y descriptions for the
    unlabeled controls (the time and date controls, mostly). The map
    widget is lacking keynav altogether.
    
    Part of bug 650132

 panels/datetime/datetime.ui | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit b7f82e98ff03d06cf93e6a368d35490e90561600
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 14:50:17 2011 -0400

    Fix a11y/keynav issues in power panel
    
    Add mnemonics to all items. We may need to revisit this and set
    labeled-by relations for the combo boxes where the labels are
    checkboxes (in that case, the mnemonic automatism doesn't really
    work, I think).
    
    Part of bug 650132

 panels/power/power.ui | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

commit 007696b8fdef1aa5ca08aec8ac994064de7b89b9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 14:36:03 2011 -0400

    Fix a11y/keynav issues in the mouse panel
    
    The Acceleration mnemonics were conflicting with the 'All Settings'
    mnemonic, which can easily be avoided by moving the mnemonic to 'c'.
    Also, the mnemonic widgets for the scale labeles on the touchpad
    page were pointing at the widgets on the mouse page (copy-paste error)
    and thus did not work.
    
    Part of bug 650132

 panels/mouse/gnome-mouse-properties.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d29d6a395eb62418a3015a995ef8063e8cf158fc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 14:03:26 2011 -0400

    Fix a11y/keynav issues in display panel
    
    The Rotation label had a mnemonic, but no suitable mnemonic
    widget set up.
    
    Part of bug 650132

 panels/display/display-capplet.ui | 1 +
 1 file changed, 1 insertion(+)

commit 5c41ffd60278f65331df4bffca8e192ee647cd6b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun May 15 14:02:02 2011 -0400

    Fix a11y/keynav issues in screen panel
    
    Setting mnemonics and mnemonic widgets also takes care
    of the LABELLED_BY/LABEL_FOR a11y relations.
    
    Part of bug 650132

 panels/screen/screen.ui | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 018848689070c3dae16eb4d6ee6046764be32129
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 13 16:07:55 2011 +0100

    info: Set the StaticHostname
    
    when changing the PrettyHostname
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650044

 panels/info/cc-info-panel.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit a2885a56d41f5f190bc3d5ad1dab8e43088457a9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 13 15:48:45 2011 +0100

    info: Add helper for pretty hostname to hostname
    
    So that we can set the static hostname depending on the value
    of the pretty hostname.

 panels/info/Makefile.am       |  16 +++-
 panels/info/hostname-helper.c | 173 ++++++++++++++++++++++++++++++++++++++++++
 panels/info/hostname-helper.h |  21 +++++
 panels/info/test-hostname.c   |  59 ++++++++++++++
 4 files changed, 267 insertions(+), 2 deletions(-)

commit ac5bc2da75a14bfc1abae5741dc1a6fe4cd542d2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri May 13 13:44:55 2011 +0100

    user-accounts: Move UmEditableEntry to lib
    
    So it can be reused in the printers panel.
    
    Also see:
    https://bugzilla.gnome.org/show_bug.cgi?id=649511

 libcinnamon-control-center/Makefile.am               |   2 +
 libcinnamon-control-center/cc-editable-entry.c       | 508 ++++++++++++++++++++++
 libcinnamon-control-center/cc-editable-entry.h       |  72 +++
 panels/user-accounts/Makefile.am                  |   3 +-
 panels/user-accounts/data/user-accounts-dialog.ui |   2 +-
 panels/user-accounts/um-editable-entry.c          | 508 ----------------------
 panels/user-accounts/um-editable-entry.h          |  72 ---
 panels/user-accounts/um-user-panel.c              |  12 +-
 8 files changed, 590 insertions(+), 589 deletions(-)

commit a089d7e710e652693898cb17cde29f4eb266e994
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 12 14:46:50 2011 +0100

    info: Implement setting of "PrettyHostname"
    
    This property can be used to name services running on the machine
    such as media sharing, device sharing, or externally visible
    services such as the Bluetooth name.
    
    We don't set the statis hostname yet though, this will need
    to be done to follow the recommendations from systemd.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650044

 configure.ac                |   3 +-
 panels/info/Makefile.am     |   1 +
 panels/info/cc-info-panel.c | 136 ++++++++++++++++++++++++++++++++++++++++++--
 panels/info/info.ui         |  12 ++--
 4 files changed, 139 insertions(+), 13 deletions(-)

commit c3e7514ed67803754ac1629484f2e74a89aaa0c1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu May 12 18:51:45 2011 +0100

    user-accounts: UmEditableEntry improvements
    
    * Avoid sending two consecutive "editing-done" signals when
      validating the entry with the "Return" key
    * Use symbolic names for the notebook page numbers

 panels/user-accounts/um-editable-entry.c | 28 +++++++++++++++++++++++-----
 1 file changed, 23 insertions(+), 5 deletions(-)

commit f66e7bb4dd7124cebeff7531fa7d4e28aa0c782d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 11 17:25:03 2011 +0100

    user-accounts: Fix bug when name is changed to contain markup
    
    When changing to a "display name" that contains markup, such
    as "Foo & Bar", the code to update the user list on the left
    wasn't escaping the text correctly.

 panels/user-accounts/um-user-panel.c | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

commit b8c2826e3dcf418c8be599a4d38aa055d8fc9a89
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 11 14:18:37 2011 +0100

    info: Simplify WID() macro

 panels/info/cc-info-panel.c | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit 019fbc66584b2aceea8614b58fb8a730113e10ba
Author: Wind He <lofwind@gmail.com>
Date:   Thu May 12 19:57:54 2011 +0800

    update zh_CN translation

 po/zh_CN.po | 134 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 66 insertions(+), 68 deletions(-)

commit 4df13eb8f7b54138a1f5814ad1ff8dfbd9896262
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 12 07:06:58 2011 -0400

    Properly select the active ap
    
    Comparing by object id does not work here, since there is no
    guarantee that the object id will still be present in the array
    after we did filter the list by strongest-per-ssid. Instead,
    compare the ssid.
    https://bugzilla.gnome.org/show_bug.cgi?id=649934

 panels/network/cc-network-panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit c187313a9e38d4dfd4bc4c95e407c0b9e7e57c99
Author: Funda Wang <fundawang@gmail.com>
Date:   Wed May 11 12:03:03 2011 +0200

    Updated zh_CN translation.

 po/zh_CN.po | 827 ++++++++++++++++++++----------------------------------------
 1 file changed, 269 insertions(+), 558 deletions(-)

commit 3980a44ebbc2cbf96c7675132ff2e10978326673
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 19:10:35 2011 +0100

    user-accounts: Remove use of images in fingerprint
    
    gtk_assistant_set_page_header_image() is deprecated, stop using
    it in the fingerprint setup assistant.

 panels/user-accounts/um-fingerprint-dialog.c | 6 ------
 1 file changed, 6 deletions(-)

commit 1f00e38838b5e9da5c7c50dd1e711e0c44e4f4dc
Author: Christian Persch <chpe@gnome.org>
Date:   Mon Mar 21 19:39:28 2011 +0100

    network: Use g_settings_get_child to construct the proxy settings
    
    Bug #645439.

 panels/network/cc-network-panel.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 13e4bbeb7d2163fb8e3701915eaffdd16a8a818a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 27 13:50:11 2011 +0100

    info: Add preferred to the list of keywords
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648253

 panels/info/gnome-info-panel.desktop.in.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit a4341af9fb3c67553e570b3b6eb52e9543eba48e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 17:54:41 2011 +0100

    build: Require newer gnome-desktop for display changes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=589562

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d91e4baaf4cf8977dd83549e979389eb3ba6935
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Thu Mar 17 15:10:43 2011 +1100

    Only show monitor labels when display applet has focus
    
    https://bugzilla.gnome.org/show_bug.cgi?id=589562

 panels/display/xrandr-capplet.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

commit 922116e04e2f1a2fea89c169a44488ac2de0521f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 14:43:06 2011 +0100

    region: Use input-keyboard instead of system-run icon
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647656

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e02e7513d90e527842dee53d4cf273798793e337
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 13 16:06:20 2011 +0100

    keyboard: Change tab label from "General" to "Typing"
    
    https://bugzilla.gnome.org/show_bug.cgi?id=615206

 panels/keyboard/gnome-keyboard-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit da829ad5554821eedb9da384b237da60adc7e54a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 17:47:27 2011 +0100

    lib: Remove CcLockbutton
    
    We can now use the lock button in GTK+ itself.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640732

 libcinnamon-control-center/Makefile.am     |   3 -
 libcinnamon-control-center/cc-lockbutton.c | 627 --------------------------------
 libcinnamon-control-center/cc-lockbutton.h |  68 ----
 3 files changed, 698 deletions(-)

commit 8c6221a567c11ecd8e7ce17c86246f7bc59cd522
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 17:47:13 2011 +0100

    user-accounts: Use GTK+ lock button

 panels/user-accounts/um-user-panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit b28923cc903fa966e5b64fa74ceedad7efe10eee
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 17:46:55 2011 +0100

    datetime: Use GTK+ lock button

 panels/datetime/cc-datetime-panel.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 8dea9d125b9cd21176aa41d5ab712ab4d8995ade
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 17:46:43 2011 +0100

    printers: Use GTK+ lock button

 panels/printers/cc-printers-panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 00bfe342bbf3a5cff27fd10e15e1d903f9397e74
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 7 17:46:25 2011 +0100

    build: Require a newer GTK+ for the lock button

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 03f49b9e3f8a42a1c77ce7844dbe2fa5b4cb6882
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri May 6 13:39:37 2011 +0200

    printers: Check presence of new printer
    
    Check successful installation of new printer by search
    in list of destinations given by CUPS. Add index to the end
    of name of new printer if the name is already used.

 panels/printers/pp-new-printer-dialog.c | 45 ++++++++++++++++++++++++++++++---
 1 file changed, 42 insertions(+), 3 deletions(-)

commit 8164c8f7f9327e26d501ffeb103ede772165666f
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri May 6 12:31:42 2011 +0200

    printers: Improve search for PPDs for new devices
    
    Improve logic for selecting PPD from available PPDs.
    Try to find the best PPD if there is not an exact match
    (rhbz#691808, rhbz#691701).

 panels/printers/pp-new-printer-dialog.c |   30 +-
 panels/printers/pp-utils.c              | 1090 +++++++++++++++++++++++++++++--
 panels/printers/pp-utils.h              |   20 +-
 3 files changed, 1063 insertions(+), 77 deletions(-)

commit af06b3657a63c0c50c59649a910f7dbd60598ccd
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu May 5 02:05:00 2011 +0200

    Fix a Hungarian translation problem

 po/hu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 51bddc0499909d074399585ca73abc17a2c9cfcc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed May 4 10:37:18 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 442 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 202 insertions(+), 240 deletions(-)

commit 9f961048ae32a0a66a2852c6a2a3ad81e6e38b60
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 3 16:42:35 2011 +0100

    mouse: Update from gnome-settings-daemon
    
    Should fix detection of touchpads not working in some cases.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=695041

 panels/mouse/gsd-input-helper.c | 117 ++++++++++++++++++++++++++++++++--------
 panels/mouse/gsd-input-helper.h |  14 ++++-
 2 files changed, 108 insertions(+), 23 deletions(-)

commit df77dc1ee585c57fbb1931c3596a278a5d36ad80
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue May 3 14:36:09 2011 +0100

    Revert "display: Only show monitor labels when display applet has focus"
    
    This reverts commit 201714d99a8219ccb4d7470769fb953fcbfebe57.
    
    This isn't the unstable branch you're looking for.

 panels/display/xrandr-capplet.c | 28 ----------------------------
 1 file changed, 28 deletions(-)

commit fcdbf41ebb2fd19d1984a9905fce6a11666c4fd1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon May 2 11:49:59 2011 -0400

    shell: add raised style to "All Settings" button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645809

 shell/shell.ui | 3 +++
 1 file changed, 3 insertions(+)

commit 6a629ecb82510aef085bdbbf19be7011073228ac
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Mon May 2 20:20:34 2011 -0600

    Updated Irish translation

 po/ga.po | 5334 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 2744 insertions(+), 2590 deletions(-)

commit 475f3fee9a7b9f8eb3cce536177efc152d11c822
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon May 2 15:48:19 2011 +0200

    printers: Make Add button insensitive until user select a printer
    
    Set Add button in the PpNewPrinterDialog sensitive only if user select
    a printer in the dialog (#648787).

 panels/printers/pp-new-printer-dialog.c | 71 ++++++++++++++++++++++++++++++++-
 1 file changed, 69 insertions(+), 2 deletions(-)

commit a00d6c14ba469c178f58c3626ad077f403462160
Author: Pin-Hsien Li <pspeter9931@gmail.com>
Date:   Mon May 2 20:21:57 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 help/Makefile.am    |   2 +-
 help/zh_HK/zh_HK.po | 125 +++++++++++++++++++++++++++++++++++++++++++++
 help/zh_TW/zh_TW.po | 142 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 268 insertions(+), 1 deletion(-)

commit 201714d99a8219ccb4d7470769fb953fcbfebe57
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Mon May 2 15:59:50 2011 +1000

    display: Only show monitor labels when display applet has focus
    
    https://bugzilla.gnome.org/show_bug.cgi?id=589562

 panels/display/xrandr-capplet.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

commit f13bae02b89cd85bd12b43d7e967f2451cc16096
Author: Abduxukur Abdurixit <abdurixit@gmail.com>
Date:   Mon May 2 07:13:46 2011 +0200

    Added UG translation

 po/ug.po | 7034 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3514 insertions(+), 3520 deletions(-)

commit b835b8c3a1eeeadc34a1aee426a9d9dce18cdc53
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Mon May 2 02:55:53 2011 +0300

    Uploaded Ukranian

 po/uk.po | 538 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 269 insertions(+), 269 deletions(-)

commit 93acf6bbf555e426371483ce966fddf58967a559
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sun May 1 13:17:26 2011 +0200

    Updated Polish translation

 po/pl.po | 132 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 66 insertions(+), 66 deletions(-)

commit 52edf3536d19718f40cf31c82cd79e37f1e590e5
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Apr 30 23:27:21 2011 +0200

    Updated galician translations

 po/gl.po | 276 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 133 insertions(+), 143 deletions(-)

commit 8a3368be657753c654d68128bc0be84b6641272f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Apr 29 12:07:13 2011 -0400

    Remove the subscription renewal timeout when the panel goes away
    
    Otherwise, bad things (ie crashes) happen after 500 seconds...

 panels/printers/cc-printers-panel.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit bbe9e19bec652408e68ef9c9d44d08513db4bb21
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Apr 29 15:48:11 2011 +0200

    Updated Polish translation

 po/pl.po | 127 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 64 insertions(+), 63 deletions(-)

commit f02c4910ac731b61691eab7eb4f31921a154a99f
Author: Rodrigo Padula de Oliveira <contato@rodrigopadula.com>
Date:   Thu Apr 28 14:36:43 2011 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 538 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 269 insertions(+), 269 deletions(-)

commit b435556cd33d1536d452af0f49cfddbb9be9b923
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 28 14:14:18 2011 +0100

    user-accounts: Show username when no real name
    
    So that users added "by hand" with adduser show up correctly
    in the treeview.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648348

 panels/user-accounts/um-user.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit e51ff4001b7fb2f0dbf38e62cc2f5ccc350b6383
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Apr 28 11:33:14 2011 +0100

    power: Only show the 'When power is critically low' when there is a laptop battery or UPS attached.
    
    This fixes https://bugzilla.gnome.org/show_bug.cgi?id=646053

 panels/power/cc-power-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit 721f36087a656aff4c07b7e84abc71e28d8ba3ad
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Apr 26 20:58:10 2011 -0400

    NEWS for 3.0.1.1

 NEWS | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 74d70470a2bbd6ffb328f665499034e4fb003e42
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Apr 26 20:58:01 2011 -0400

    Bump version to 3.0.1.1

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d5c7b65a625608c65f17a6d1d1a521c2cefb746
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 15:54:59 2011 +0100

    keyboard: Avoid warnings when adding new shortcuts
    
    We don't want to unset GConf watches if we didn't set them
    in the first place.

 panels/keyboard/cc-keyboard-item.c | 7 ++++---
 panels/keyboard/cc-keyboard-item.h | 3 +++
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 83512fb6fed5d6a88554e0716639d771881938d2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 15:49:16 2011 +0100

    keyboard: Fix adding custom shortcuts
    
    We need something other than "0" as an answer. Thanks for breaking
    the responses glade.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648187

 panels/keyboard/gnome-keyboard-panel.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 15c5d5a96e2785ba8a88938d886cad9c543c88b6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 15:30:31 2011 +0100

    keyboard: Use correct base for unsetting custom shortcuts

 panels/keyboard/keyboard-shortcuts.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 7481609b4dc0e2c2b31faadc5386cc8dba701ede
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 15:22:46 2011 +0100

    Revert "region: Use input-keyboard instead of system-run icon"
    
    This reverts commit 4320dbfadf163b5555730bcfd843473580376894.
    
    No UI changes for GNOME 3.0 yet.

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 53f78eec0b1472996cc2fbef4eb19afaf313a184
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 15:20:45 2011 +0100

    keyboard: Always add the "Custom shortcuts" section
    
    Even if it is empty by default.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648091

 panels/keyboard/keyboard-shortcuts.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 4320dbfadf163b5555730bcfd843473580376894
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 14:43:06 2011 +0100

    region: Use input-keyboard instead of system-run icon
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647656

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 702fb777b11625abc9e3851a6d30a7d2fb3b789c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 14:38:30 2011 +0100

    region: Add "clear" secondary icon to search entry
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647717

 panels/region/gnome-region-panel-layout-chooser.ui |  3 +++
 panels/region/gnome-region-panel-xkbltadd.c        | 26 ++++++++++++++++++++++
 2 files changed, 29 insertions(+)

commit b532e235323d1216d9b1395480631e9b27768bb8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 14:28:59 2011 +0100

    shell: Fix initial state of the "search" icon in entry

 shell/shell.ui | 2 ++
 1 file changed, 2 insertions(+)

commit f3e41a5ec3ac008e3bd2c07de747cc6533d283fa
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 13:16:07 2011 +0100

    display: Add vscroll/hscroll policy properties
    
    To kill the startup critical warnings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648620

 panels/display/scrollarea.c | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

commit 3d77ea3f870a1033ca42876f4848dad53c469149
Author: Pavol Šimo <palo.simo@gmail.com>
Date:   Tue Apr 26 13:26:38 2011 +0200

    Updated Slovak translation

 po/sk.po | 7577 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 3018 insertions(+), 4559 deletions(-)

commit 63d23c7a52976c320fc91d433fd8f00503067c58
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 12:03:17 2011 +0100

    doap: Add myself as maintainer

 MAINTAINERS               | 4 ++++
 cinnamon-control-center.doap | 7 +++++++
 2 files changed, 11 insertions(+)

commit b8641929ab430ed6203816b2e5f0a7261b4f2724
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 26 10:58:49 2011 +0100

    3.0.1

 NEWS | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

commit 987d27d5edcffd58b8403249e6bb75f74a55ddab
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Mon Apr 25 22:44:28 2011 +0200

    Updated Danish translation

 po/da.po | 470 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 239 insertions(+), 231 deletions(-)

commit 7c814b3078acd6609d535c9cd2ad13ad3b8dc659
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Apr 25 18:08:56 2011 +0700

    Updated Thai translation.

 po/th.po | 3255 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2024 insertions(+), 1231 deletions(-)

commit 3c70b34353afb7ecd91d68529397c4048d467b10
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Apr 25 08:44:09 2011 +0700

    Updated Thai translation.

 po/th.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit f030cf549f2069fc7c889f2fd0e09653c466fab5
Author: Abduxukur Abdurixit <abdurixit@gmail.com>
Date:   Sun Apr 24 21:56:04 2011 +0200

    Added UG translation

 po/ug.po | 3276 +++++++++-----------------------------------------------------
 1 file changed, 461 insertions(+), 2815 deletions(-)

commit 441515ad11b21d3b4187b3e92d9921987c3add25
Author: Jiro Matsuzawa <matsuzawa.jr@gmail.com>
Date:   Sat Apr 23 15:40:23 2011 +0900

    Updated Japanese translation

 po/ja.po | 185 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 90 insertions(+), 95 deletions(-)

commit b1aad0d0f8f77e3dc1788f476fa52c786ea389f6
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Sat Apr 23 01:58:05 2011 +0300

    Updated Turkish translation

 po/tr.po | 535 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 283 insertions(+), 252 deletions(-)

commit 94933c18f446a56da780e104b77f7b6c81d16146
Author: Arash Mousavi <amousavi@src.gnome.org>
Date:   Sat Apr 23 00:10:53 2011 +0430

    Updated Persian translation

 po/fa.po | 484 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 242 insertions(+), 242 deletions(-)

commit 7b830a3c6ac32cd97e178172d9b50d3e37be6083
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Apr 22 14:30:26 2011 +0200

    printers: Cache PPD files for later use
    
    Don't get PPD file from CUPS server every time user needs
    an information from it. Have PPD files stored on disk and
    delete them on exit.

 panels/printers/cc-printers-panel.c | 60 +++++++++++++++++++++++++------------
 panels/printers/pp-utils.c          | 12 ++++----
 panels/printers/pp-utils.h          |  2 +-
 3 files changed, 47 insertions(+), 27 deletions(-)

commit 565258d385efcd8cb6f9bd7d4ff22e35dbb761e2
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Apr 21 22:22:33 2011 +0200

    Updated Hungarian translation

 po/hu.po | 476 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 217 insertions(+), 259 deletions(-)

commit 6fe3a1f6447d33745be42edb6d33fca8fcfbcc36
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Apr 21 16:25:53 2011 +0200

    Updated French translation

 po/fr.po | 503 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 233 insertions(+), 270 deletions(-)

commit 8fb5a720d863e253e544cf2e084aa73ebc79531d
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Wed Apr 20 13:11:16 2011 +0100

    Updated British English translation

 po/en_GB.po | 518 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 261 insertions(+), 257 deletions(-)

commit 4c591bbbc6eee5e0a552050eb615f98f3eed3fe4
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Apr 20 13:02:22 2011 +0200

    Updated Polish translation

 po/pl.po | 65 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 32 insertions(+), 33 deletions(-)

commit 4117a2cff938b6068e6494b2684a601150c769bc
Author: Gil Forcada <gforcada@gnome.org>
Date:   Wed Apr 20 09:00:18 2011 +0200

    [l10n]Updated Catalan translation

 po/ca.po | 305 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 149 insertions(+), 156 deletions(-)

commit 6d07fd70bf6accf0d433e1185d9aba40ad95b066
Author: Gil Forcada <gforcada@gnome.org>
Date:   Wed Apr 20 08:50:02 2011 +0200

    [l10n]Fixed Catalan translation

 po/ca.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6b0c9cacb290bff2e664f6dfb9a49cfe8108eed1
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Apr 19 13:30:02 2011 +0200

    printers: Set default PaperSize of new printer according to the locale
    
    Set Letter or A4 according to the locale when adding new printer (rhbz#691714).

 panels/printers/pp-new-printer-dialog.c | 242 +++++++++++++++++++-------------
 1 file changed, 145 insertions(+), 97 deletions(-)

commit 8e19a1093047ba244e12361e3a11884810676cbf
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Apr 18 11:28:37 2011 -0400

    media: actually bind the 'autorun-never' key to the checkbox widget
    
    The 'Never prompt or start programs on media insertion' checkbox was not
    wired properly with the relevant settings key.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=648108

 panels/media/cc-media-panel.c | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

commit 6e479859ed06316ec7872efbb7c8f48321dfff7b
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Apr 18 16:14:27 2011 +0200

    printers: Make call of DevicesGet cancellable
    
    Pass a GCancellable object to g_dbus_proxy_call() for DevicesGet
    method. This assures that g-c-c won't crash when user cancels addition
    of new printer before the call is finished (rhbz#691931).

 panels/printers/pp-new-printer-dialog.c | 219 +++++++++++++++++---------------
 1 file changed, 120 insertions(+), 99 deletions(-)

commit eb623389fc663afe87e4f59e060942b97c82f950
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Apr 16 10:54:42 2011 +0300

    Updated Hebrew translation.

 po/he.po | 480 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 240 insertions(+), 240 deletions(-)

commit 2c0252e8c9266e3bde8708bdc08fd9ad10b41cf3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Apr 15 17:49:06 2011 +0200

    Updated Polish translation

 po/pl.po | 150 +++++++++++++++++++++++----------------------------------------
 1 file changed, 55 insertions(+), 95 deletions(-)

commit 07e51912e6017d747a2728ee3fe371c81ec9c99d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 15 04:15:30 2011 +0100

    datetime: Unset TZ after we're done
    
    Just in case we call localtime() for something else...

 panels/datetime/tz.c | 2 ++
 1 file changed, 2 insertions(+)

commit 3746d6e2c5b491efd06e2c9d677cc36c7b126896
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 15 02:32:50 2011 +0100

    datetime: Shrink the number of messages in test-tz
    
    So that we avoid showing duplicates. Also don't show errors for
    the Factory and posixrules timezones.

 panels/datetime/test-timezone.c | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

commit 3e8afd57505853f790d403088a006a96c3ca3bb5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 15 02:27:46 2011 +0100

    datetime: Add hacks to support all the TZs
    
    On a recent Linux system, so all the existing timezones
    (apart from factory and posixrules) are attached to a location,
    or a GMT offset.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644782

 panels/datetime/tz.c | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 81 insertions(+), 3 deletions(-)

commit 8d15af48c88f97024ad4bd6c2e66c63d2beb67f7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 13 17:07:07 2011 +0100

    datetime: Move backward TZ DB to tz.[ch]
    
    So we can add hacks in one location

 panels/datetime/cc-timezone-map.c | 82 +--------------------------------------
 panels/datetime/test-timezone.c   | 14 ++++++-
 panels/datetime/tz.c              | 82 +++++++++++++++++++++++++++++++++++++--
 panels/datetime/tz.h              |  5 ++-
 4 files changed, 96 insertions(+), 87 deletions(-)

commit f8c3b0c59e6574b373a6dcba90a3134d651ff7f5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 13 15:35:12 2011 +0100

    user-accounts: Don't include link in translation
    
    And use a link to local documentation, rather than an
    external website in English.
    
    Removed mentions of "in English" for the languages that mentioned it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643118

 panels/user-accounts/data/password-dialog.ui |  2 +-
 panels/user-accounts/um-password-dialog.c    | 10 ++++++++++
 po/af.po                                     |  8 ++++----
 po/ar.po                                     |  8 ++++----
 po/bg.po                                     |  8 ++++----
 po/bn.po                                     |  8 ++++----
 po/ca.po                                     |  8 ++++----
 po/cs.po                                     |  6 +++---
 po/da.po                                     |  8 ++++----
 po/de.po                                     |  8 ++++----
 po/el.po                                     |  8 ++++----
 po/en.po                                     |  4 ++--
 po/en_GB.po                                  |  8 ++++----
 po/eo.po                                     |  8 ++++----
 po/es.po                                     |  8 ++++----
 po/et.po                                     |  8 ++++----
 po/eu.po                                     |  8 ++++----
 po/fa.po                                     |  8 ++++----
 po/fr.po                                     |  8 ++++----
 po/gl.po                                     |  8 ++++----
 po/gu.po                                     |  8 ++++----
 po/he.po                                     |  8 ++++----
 po/hi.po                                     |  8 ++++----
 po/hu.po                                     |  8 ++++----
 po/it.po                                     |  8 ++++----
 po/ja.po                                     |  8 ++++----
 po/kn.po                                     |  8 ++++----
 po/ko.po                                     |  8 ++++----
 po/lt.po                                     |  8 ++++----
 po/lv.po                                     |  8 ++++----
 po/nb.po                                     |  8 ++++----
 po/nl.po                                     |  8 ++++----
 po/nn.po                                     |  8 ++++----
 po/pa.po                                     |  8 ++++----
 po/pl.po                                     |  6 +++---
 po/pt.po                                     |  8 ++++----
 po/pt_BR.po                                  |  8 ++++----
 po/ro.po                                     |  8 ++++----
 po/ru.po                                     |  8 ++++++--
 po/sl.po                                     |  8 ++++++--
 po/sr.po                                     |  8 ++++----
 po/sr@latin.po                               |  8 ++++----
 po/sv.po                                     |  4 ++--
 po/ta.po                                     |  8 ++++----
 po/te.po                                     |  4 ++--
 po/th.po                                     |  6 +++---
 po/tr.po                                     |  4 ++--
 po/ug.po                                     |  8 ++++----
 po/uk.po                                     |  8 ++++----
 po/vi.po                                     |  8 ++++----
 po/zh_CN.po                                  |  8 ++++----
 po/zh_HK.po                                  |  8 +++++---
 po/zh_TW.po                                  |  8 ++++----
 53 files changed, 209 insertions(+), 189 deletions(-)

commit c56919e8fad59b525abd7dcad1cc457149ed48a9
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Thu Apr 14 23:23:00 2011 +0400

    Updated Russian translation

 po/ru.po | 613 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 267 insertions(+), 346 deletions(-)

commit 2eca6bf22b722289a9c36d875fe55cdc591e4e15
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Fri Apr 15 03:57:34 2011 +0900

    Updated Korean translation

 po/ko.po | 379 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 193 insertions(+), 186 deletions(-)

commit 23073004f21982bec4960e219e879adb88e7726d
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Thu Apr 14 23:28:06 2011 +0900

    Updated Japanese translation

 po/ja.po | 366 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 187 insertions(+), 179 deletions(-)

commit 6841820435649b57c9c1823b22a1b9b8299f9224
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Thu Apr 14 20:00:03 2011 +0700

    Updated Vietnamese translations

 po/vi.po | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit e7678f478fb42e39d4a145b20ed49f479295cd39
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Thu Apr 14 19:59:30 2011 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 480 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 225 insertions(+), 255 deletions(-)

commit 3cbedee98ebb9067872d4f62de892e539184eda0
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Thu Apr 14 19:39:38 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 386 ++++++++++++++++++++++++++++++------------------------------
 po/zh_TW.po | 355 ++++++++++++++++++++++++++++---------------------------
 2 files changed, 372 insertions(+), 369 deletions(-)

commit 75cfa6db4db471332f5d40b13239cbcb6f898a65
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Apr 13 18:14:13 2011 +0200

    printers: Block callback of printer selection when setting treemodel
    
    Don't trigger callback of printer selection when setting treemodel
    of printers list. Don't actualize jobs list when printer hasn't changed.

 panels/printers/cc-printers-panel.c | 74 +++++++++++++++++++++----------------
 1 file changed, 43 insertions(+), 31 deletions(-)

commit 9fe696c663e4fd000e4f87baa866c673d9b6c841
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Wed Apr 13 17:57:49 2011 +0200

    Updated Slovenian translation

 po/sl.po | 1222 +++++++++++++++-----------------------------------------------
 1 file changed, 296 insertions(+), 926 deletions(-)

commit 846dca05af502eb8fe3ea7dc4d67464680434c87
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 13 15:19:28 2011 +0100

    Revert "Users: Use a local document for 'How to choose a good password'"
    
    This reverts commit 76ba785b06761db322db3323f0b0924a5549ba7a.
    
    It's actually a string change, because the link is within the
    translatable string.

 panels/user-accounts/data/password-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 76ba785b06761db322db3323f0b0924a5549ba7a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Apr 12 21:20:05 2011 -0400

    Users: Use a local document for 'How to choose a good password'
    
    The user guide contains a suitable page, so lets just use it.
    https://bugzilla.gnome.org/show_bug.cgi?id=643118

 panels/user-accounts/data/password-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 525209f29475c1947cbd1486ebc2ed3309ca1b2f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 25 18:07:09 2011 +0000

    build: Remove unused GConf schemas
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645704

 Makefile.am                     | 18 ---------------
 configure.ac                    | 12 ----------
 cinnamon-control-center.schemas.in | 49 -----------------------------------------
 po/POTFILES.in                  |  1 -
 4 files changed, 80 deletions(-)

commit 995be4e6f00c3fde876ea6e74b60b1e4f53a3c17
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 13 12:51:00 2011 +0100

    keyboard: Handle shortcuts conflict in different section
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646504

 panels/keyboard/keyboard-shortcuts.c | 42 ++++++++++++++++++++++++++----------
 1 file changed, 31 insertions(+), 11 deletions(-)

commit 0f3cf2286f3b8095f40ea7847d41947c7b3f3443
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 13 12:17:30 2011 +0100

    keyboard: Use correct type for enum

 panels/keyboard/keyboard-shortcuts.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit eb0da9f0300ccec46c2974574caca8a8cd75cde8
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Wed Apr 13 07:51:00 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 88 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 46 insertions(+), 42 deletions(-)

commit 59db8d3716b9fe48549ba2e3e7b142f2a275c4f6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Apr 11 14:36:20 2011 -0400

    Users: try harder not to show system accounts
    
    When used with accountsservice >= 0.6.9, this fixes the problem where,
    when you click the unlock button on the user panel, the root user pops
    up in the user list, unexpectedly.
    
    When used with 0.6.8 it silently does nothing, since the system-account
    property is not available.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647487

 panels/user-accounts/um-user-manager.c |  5 +++++
 panels/user-accounts/um-user.c         | 13 ++++++++++++-
 panels/user-accounts/um-user.h         |  1 +
 3 files changed, 18 insertions(+), 1 deletion(-)

commit 2b3da7feb859a8d7ea9c4d9fe8fcf2dd1225f1d0
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Apr 12 16:43:36 2011 +0200

    printers: Set default printer properly
    
    Clean "~/.cups/lpoptions" file before setting default printer
    on local CUPS server. Store default printer to "~/.cups/lpoptions"
    if we are connected to a remote CUPS server (#646100).

 panels/printers/cc-printers-panel.c | 62 ++++++++++++++++++++++++-------------
 panels/printers/pp-utils.c          | 23 ++++++++++++++
 panels/printers/pp-utils.h          |  2 ++
 3 files changed, 66 insertions(+), 21 deletions(-)

commit 60847d99cb02f2d4530e74725cb37e2ab4d7382b
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Apr 12 11:17:02 2011 +0200

    Updated Galician translations

 po/gl.po | 463 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 237 insertions(+), 226 deletions(-)

commit cbcc43647e311fe27a50c65908c16112070a9b2b
Author: Marek Černocký <marek@manet.cz>
Date:   Mon Apr 11 23:17:06 2011 +0200

    Updated Czech translation

 po/cs.po | 298 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 157 insertions(+), 141 deletions(-)

commit a04c954efcae483073e31d84e3d435680a054b18
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Mon Apr 11 21:55:25 2011 +0200

    [l10n] Updated German translation

 po/de.po | 296 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 155 insertions(+), 141 deletions(-)

commit f023200b8d79c4bd1cace59dbd6b6b8023fd20d5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 11 11:28:48 2011 +0100

    shell: Be centred by default
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647260

 shell/shell.ui | 1 +
 1 file changed, 1 insertion(+)

commit ff3dda1edcd82946364aebe5ae697e5cc72ad501
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Apr 11 06:04:47 2011 +0200

    Updated Polish translation

 po/pl.po | 296 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 155 insertions(+), 141 deletions(-)

commit 16af11af0577af12e67326e28d1f2a6e3dd17b25
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Apr 11 01:47:59 2011 +0200

    Updated Hungarian translation

 po/hu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8bd309df711816bdd2a59a40471c2aae1b1c2bba
Author: Wouter Bolsterlee <wbolster@gnome.org>
Date:   Sun Apr 10 22:24:59 2011 +0200

    Updated Dutch translation by Wouter Bolsterlee

 po/nl.po | 296 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 155 insertions(+), 141 deletions(-)

commit 92a44b36d4674f4d3856cf5e868da0490f9054c8
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Apr 10 21:29:36 2011 +0200

    Updated Spanish translation

 po/es.po | 82 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 43 insertions(+), 39 deletions(-)

commit 3b24acc3749b88e2034c5d7760e9f67def31b83a
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Apr 10 20:42:03 2011 +0200

    Updated Swedish translation

 po/sv.po | 1507 +++++++++++++-------------------------------------------------
 1 file changed, 311 insertions(+), 1196 deletions(-)

commit c22a98dcb74b0942f50fe70f996cf9a16243447b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 8 13:27:50 2011 +0100

    info: Make free space checking async
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647125

 panels/info/cc-info-panel.c | 102 ++++++++++++++++++++++++++++++++++----------
 panels/info/info.ui         |   2 +-
 2 files changed, 80 insertions(+), 24 deletions(-)

commit adb74f26d3512453a51aeff19beebeb0a72ba6c4
Author: Gil Forcada <gforcada@gnome.org>
Date:   Sun Apr 10 19:34:06 2011 +0200

    [l10n]Updated Catalan translation

 po/ca.po | 380 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 192 insertions(+), 188 deletions(-)

commit 9e4cc627273dfd59d93cd35212223824d347c6dc
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Apr 10 17:41:37 2011 +0200

    Updated Arabic translation

 po/ar.po | 224 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 117 insertions(+), 107 deletions(-)

commit 32f3734cedcb370af48513dd24b7a366854f6b98
Author: Alexander Shopov <ash@kambanaria.org>
Date:   Sun Apr 10 16:15:23 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 42 +++++++++++++++++++++++++-----------------
 1 file changed, 25 insertions(+), 17 deletions(-)

commit 654afe478d8c4eb1e639eced5feda37cc018a1cd
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Apr 10 11:52:04 2011 +0200

    Updated Spanish translation

 po/es.po | 412 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 209 insertions(+), 203 deletions(-)

commit 03d17a95c40206efddd439cdeceacaffd2f928f9
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Apr 6 14:46:23 2011 +0100

    network: add a 'Other...' entry to the wireless combobox so users can connect to hidden access points
    
    A suprising number of people need this to be able to get onto their wireless
    network. This is also a Fedora blocker if that matters.
    
    This patch also adds a string. I don't feel there is a way around it, although
    we could steal the translations from another project. I think using a real word
    is better than displaying a blank entry or a picture or something. I dunno.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=645002

 panels/network/cc-network-panel.c           | 127 ++++++++++++++++++++++++++++
 panels/network/panel-cell-renderer-signal.c |   6 ++
 2 files changed, 133 insertions(+)

commit 7a875f89010ec86a659cceebdbe8f0e405f43443
Author: Ivaylo Valkov <ivaylo@e-valkov.org>
Date:   Sun Apr 10 08:45:03 2011 +0300

    Updated Bulgarian translation

 po/bg.po | 5678 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 2787 insertions(+), 2891 deletions(-)

commit cbecb1878801ea77622f9ed128ffde488ec545b6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Apr 7 21:18:06 2011 -0400

    Shell: fix handling of commandlines
    
    With HANDLES_COMMANDLINE, the commandline is handled in the primary
    instance. That means two things:
    - We cannot let GOption handle --help, since it calls exit() after
      printing out the help
    - The static booleans need to be reset to FALSE for each handled
      commandline
    
    This commit adds a new string, 'Show help options'. It also includes
    existing translations for this string that were taken from GLib.

 po/af.po               |    7 +-
 po/am.po               |    3 +
 po/ar.po               |    3 +
 po/as.po               |  177 +++-----
 po/ast.po              |   25 +-
 po/az.po               |    3 +
 po/be.po               |  503 ++++++++++++++++------
 po/be@latin.po         |    3 +
 po/bg.po               |   10 +-
 po/bn.po               |    3 +
 po/bn_IN.po            |   74 ++--
 po/bs.po               |    7 +-
 po/ca.po               |   10 +-
 po/ca@valencia.po      |    3 +
 po/cs.po               |    3 +
 po/cy.po               |    3 +
 po/da.po               |    3 +
 po/de.po               |    3 +
 po/dz.po               |  728 ++++++++++++++++++++++++++------
 po/el.po               |    3 +
 po/en@shaw.po          |  589 +++++++++++++-------------
 po/en_CA.po            |    7 +-
 po/en_GB.po            |    6 +-
 po/eo.po               |    3 +
 po/es.po               |   10 +-
 po/et.po               |    3 +
 po/eu.po               |   50 ++-
 po/fa.po               |   11 +-
 po/fi.po               |   11 +-
 po/fr.po               |    3 +-
 po/ga.po               |    7 +-
 po/gl.po               |   10 +-
 po/gu.po               |   36 +-
 po/he.po               |   10 +-
 po/hi.po               |    3 +
 po/hr.po               |    7 +-
 po/hu.po               |   50 ++-
 po/hy.po               |  174 +++++---
 po/id.po               |    3 +
 po/is.po               |    3 +
 po/it.po               |    3 +
 po/ja.po               |    3 +
 po/ka.po               |    3 +
 po/kk.po               |  223 ++++++----
 po/kn.po               |   32 +-
 po/ko.po               |    3 +
 po/ku.po               |  544 ++++++++++++++++++------
 po/lt.po               |    3 +
 po/lv.po               |   14 +-
 po/mai.po              |   66 ++-
 po/mg.po               |   13 +-
 po/mk.po               |   59 ++-
 po/ml.po               |   71 ++--
 po/mn.po               |   88 ++--
 po/mr.po               |   69 ++-
 po/ms.po               |    3 +
 po/nb.po               |    3 +
 po/nds.po              |    3 +
 po/ne.po               |  214 +++++++---
 po/nl.po               |    3 +
 po/nn.po               |   19 +-
 po/oc.po               |   11 +-
 po/or.po               |   74 ++--
 po/pa.po               |   66 ++-
 po/pl.po               |    3 +
 po/pt.po               |    3 +
 po/pt_BR.po            |   10 +-
 po/ro.po               |    6 +-
 po/ru.po               |  260 +++++++-----
 po/rw.po               |    4 +
 po/si.po               |   40 +-
 po/sk.po               |    3 +
 po/sl.po               |  844 ++++++++++++++++++++++++++++++++-----
 po/sq.po               |  115 ++---
 po/sr.po               |    3 +
 po/sr@latin.po         |   18 +-
 po/sv.po               | 1097 +++++++++++++++++++++++++++++++++++++++++++-----
 po/ta.po               |    3 +
 po/te.po               |   35 +-
 po/th.po               |    3 +
 po/tr.po               |    3 +
 po/ug.po               |  125 ++++--
 po/uk.po               |   14 +-
 po/vi.po               |   18 +-
 po/wa.po               |    3 +
 po/xh.po               |    3 +
 po/zh_CN.po            |   10 +-
 po/zh_HK.po            |   34 +-
 po/zh_TW.po            |    3 +
 shell/control-center.c |   22 +-
 90 files changed, 5089 insertions(+), 1753 deletions(-)

commit ce561eb68f43a5f38cfe4e87433b716264c4f462
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 8 16:12:56 2011 +0100

    sound: Prevent > 100% volume showing up as 100%
    
    When the output of input bar changes from a non-decibel capable
    output, to one that is (such as on startup), don't clip the
    volume displayed at 100%, by setting the level of the bar again.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646254

 panels/sound/gvc-mixer-dialog.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit 58e4fab6bed1ed4bfe69824341d7b5f434b9aadf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 8 13:41:05 2011 +0100

    background: Allow adding multiple images
    
    https://bugzilla.gnome.org/show_bug.cgi?id=647053

 panels/background/cc-background-panel.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 6233c7d20f1043d1a9ee96108a03edc0096947e8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Apr 8 13:00:38 2011 +0100

    info: Use correct destructor for GUnixMountEntry

 panels/info/cc-info-panel.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 9d94d2dfae0db0a91818621a1cdcbe233b8b1070
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 7 14:59:34 2011 +0100

    keyboard: Fix reloading keyboard shortcuts
    
    When reloading entries, we also need to clear the section
    hash tables, otherwise we won't be adding the keys as they
    already exist in the hashtables.
    
    Fixes empty keyboard shortcuts when creating a new workspace (eg.
    moving any window to an empty workspace in gnome-shell)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646949

 panels/keyboard/keyboard-shortcuts.c | 35 +++++++++++++++++++++--------------
 1 file changed, 21 insertions(+), 14 deletions(-)

commit 01b639d64fb49eaac3c6002fd7e07a92f251cb35
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Apr 7 11:08:05 2011 -0400

    Sound: Only autostart the applet in gnome
    
    Other desktops don't appreciate the extra sound control.
    https://bugzilla.gnome.org/show_bug.cgi?id=646987

 panels/sound/data/cinnamon-sound-applet.desktop.in | 1 +
 1 file changed, 1 insertion(+)

commit 534a7a1eac0864fdd205293b64d82a48c9385719
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Apr 5 12:23:00 2011 -0400

    datetime: fix a critical when showing the panel
    
    The critical was spawned because we were calling gtk_style_attach()
    before calling gtk_widget_set_window(), but that code can go away
    entirely.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646836

 panels/datetime/cc-timezone-map.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

commit 274569d4f3e228aac1d9660a6d9a212970b7ea83
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Apr 6 10:17:58 2011 -0400

    Bump version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c5b11fcd226b316d954877a3cf8acecbce61e87d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Apr 6 10:01:38 2011 -0400

    Update for 3.0.0.1

 NEWS         | 20 ++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 33cc8c782bf717f81c9e821c9d3f8460de7ffcd4
Author: Mahyar Moghimi <mahyar.moqimi@gmail.com>
Date:   Wed Apr 6 16:38:00 2011 +0430

    Updating Persian Translation

 po/fa.po | 3157 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 2089 insertions(+), 1068 deletions(-)

commit 3a0bb1c7f2f4b1e87aa0511939e7fec107d8b55e
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Apr 6 10:07:15 2011 +0100

    network: use the correct widget name for the IP address of the mobile broadband device. Fixes #646837

 panels/network/network.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 81799838a3557c82bd69db5f93d35df7ff5f4992
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Apr 6 10:05:44 2011 +0100

    network: do not assert if a widget is missing, instead print a critical warning with the widget name
    
    This helps us debug bugs like #646837
    
    I've also asked the designers to clarify what entries we should show on the mobile broadband page too.

 panels/network/cc-network-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 7b7f67fbae00e84a85507be85558f4f4cbe96c12
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Apr 5 12:08:18 2011 -0400

    background: fix a compilation warning

 panels/background/cc-background-xml.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 84a2b3e3538c5b148174332daf518d6e7d562eb6
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Apr 5 17:50:18 2011 +0200

    printers: Don't set reason when setting AcceptJobs
    
    Set reason to NULL when setting AcceptJobs to TRUE (rhbz#691154).

 panels/printers/pp-new-printer-dialog.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit aedbc186a845549718773f3f137b2bdfd301ed9b
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Apr 5 17:10:54 2011 +0200

    printers: Check whether the requested policy is available
    
    Check whether the system has policy
    "org.opensuse.cupspkhelper.mechanism.all-edit" before using it (#646813).

 panels/printers/cc-printers-panel.c | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)

commit 3349308ea28ac1314313ad3f106e9930a69c6885
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Apr 5 15:54:09 2011 +0200

    printers: Actualize printer list and job list automatically
    
    This patch makes Printers panel to automatically refresh printers list
    when a new printer is added or removed. It is refreshed also when a printer
    changes its state (to see changes in paused/unpaused state) (rhbz#691718).
    It also automatically refresh list of jobs (and also number of active jobs in
    main tab) for actual printer (rhbz#691737).

 panels/printers/cc-printers-panel.c | 236 +++++++++++++++++++++++++++++++++++-
 panels/printers/pp-utils.c          |  97 +++++++++++++++
 panels/printers/pp-utils.h          |   7 ++
 3 files changed, 338 insertions(+), 2 deletions(-)

commit 8390f73f4b9f3a1c1bc9f9dfe43684bd6f6be82d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Apr 5 09:40:30 2011 +0100

    datetime: Fix test-endianess on OpenSUSE
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646780

 panels/datetime/test-endianess.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit aa23db269985d1862328c2d3635040cbffefb403
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Tue Apr 5 01:28:25 2011 +0600

    Updated Bengali translation

 po/bn.po | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit ccb02c13906d44d84bb4dd2067ce86cd76d9867b
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:   Mon Apr 4 19:05:22 2011 +0200

    Updated Esperanto translation

 po/eo.po | 6570 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3744 insertions(+), 2826 deletions(-)

commit 90d4786a045e3fae9f7b909fd64b0305d80a7c72
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Mon Apr 4 23:47:17 2011 +0700

    Updated Vietnamese translation

 po/vi.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit fcff8e64ff824507bdae0e1ea8c4a5d2c87e0092
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 4 16:53:18 2011 +0200

    Release 3.0.0

 NEWS | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 72 insertions(+), 1 deletion(-)

commit 6cffd6aa1902cba0cf65c5e134dbe25df1d19836
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Apr 4 20:50:19 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 933 +++++++++++++++++++++++++++++++++++++++-------------------
 po/zh_TW.po | 964 +++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 1287 insertions(+), 610 deletions(-)

commit 053482da50eac902b7f08583e0f2382b2b62b0c7
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Mon Apr 4 20:14:20 2011 +0900

    Updated Japanese translation of "firmware missing"

 po/ja.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a993bf2a6d34c609c2b643995f10f6d80fc70aef
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Mon Apr 4 15:10:46 2011 +0600

    Updated Bengali translation

 po/bn.po | 8492 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 4591 insertions(+), 3901 deletions(-)

commit db39ad2150c38a234a46a21bf416ae0acf94926e
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Mon Apr 4 17:21:04 2011 +0900

    Updated Japanese translation

 po/ja.po | 182 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 93 insertions(+), 89 deletions(-)

commit 5d477dad4e733c09e46779b23aac43cc713d1657
Author: Baris Cicek <baris@teamforce.name.tr>
Date:   Mon Apr 4 06:34:14 2011 +0300

    Updated Turkish translation

 po/tr.po | 7079 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4306 insertions(+), 2773 deletions(-)

commit 5fc194f52cf5e6b53497806852b3825eab67df6b
Author: Jordi Serratosa <serratosa@gmail.com>
Date:   Sun Apr 3 23:26:29 2011 +0200

    [l10n]Fixes on Catalan translation

 po/ca.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 9e05a15cac31ad2732e44e7670e1479b3ef95194
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:   Sun Apr 3 19:41:14 2011 +0200

    [l10n] Updated German translation, umlauts fixed

 po/de.po | 232 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 114 insertions(+), 118 deletions(-)

commit afd02b5515bd8d3b2f33e376f2d78d9357ebbf31
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Sun Apr 3 08:43:22 2011 +0530

    Updated Tamil translation

 po/ta.po | 78 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 39 insertions(+), 39 deletions(-)

commit 3256adcb7e1c7625bc662504d31674ca24c0f116
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Apr 2 12:52:25 2011 -0400

    Network: Make creating vpn connections work again
    
    Somehow the 'Create' button lost its action id.
    Don't trust glade on these files...

 panels/network/network.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a6a19418bae01b4ec7f544ed037d4be08265886
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Sat Apr 2 23:57:52 2011 +0200

    build: Fix build on fresh checkouts
    
    Commit a0672cb9ad0 removed the API documentation, but left a stray
    reference to the docs/ subdirectory causing a build failure with
    fresh checkouts.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit adcbb76c91114dfeb9d32679e906519f423248b9
Author: Wouter Bolsterlee <wbolster@gnome.org>
Date:   Sat Apr 2 19:53:37 2011 +0200

    Updated Dutch translation by Wouter Bolsterlee

 po/nl.po | 1412 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 640 insertions(+), 772 deletions(-)

commit 4dd215bb67afae73aff572fe980c4e9192088440
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Sat Apr 2 19:28:15 2011 +0200

    Updated Danish translation

 po/da.po | 5616 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 3595 insertions(+), 2021 deletions(-)

commit 43393b2a45e6003f691904fe9b1d608cd6438929
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Sat Apr 2 21:39:01 2011 +0530

    Updated Tamil translation

 po/ta.po | 41 ++++++++++++++++++++++++++---------------
 1 file changed, 26 insertions(+), 15 deletions(-)

commit 043a435ffefa1206fa19e6c9afe7a50dbbe6a499
Author: Simos Xenitellis <simos@gnome.org>
Date:   Sat Apr 2 17:07:17 2011 +0300

    l10n: Updated Greek translation for gnome-contorl-center

 po/el.po | 18 ++++--------------
 1 file changed, 4 insertions(+), 14 deletions(-)

commit b7ce542457ccbc3f4beda6e4882619f5ed58a9f6
Author: George Stefanakis <george.stefanakis@gmail.com>
Date:   Sat Apr 2 17:00:10 2011 +0300

    l10n: Updated Greek translation for gnome-contorl-center

 po/el.po | 1544 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 840 insertions(+), 704 deletions(-)

commit a1a6e6b894a1c2c248e3fbc36613d3dac1274b56
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Sat Apr 2 13:47:16 2011 +0200

    Updated Basque language

 po/eu.po | 218 +++++++++++++++++----------------------------------------------
 1 file changed, 57 insertions(+), 161 deletions(-)

commit 2bc9df3f55963d7c0ceb6f4791ee398a08d71a0b
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Apr 2 20:07:07 2011 +0900

    Updated Korean translation

 po/ko.po | 311 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 154 insertions(+), 157 deletions(-)

commit 19a53dbe2926653ec2c1a460b22bb3420354c101
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Apr 2 00:06:38 2011 +0100

    Updated Portuguese translation

 po/pt.po | 156 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 80 insertions(+), 76 deletions(-)

commit 8a660c9a5150c8577807da1b9f6dd75b664a7b77
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Apr 1 22:39:06 2011 +0200

    Updated Italian translation

 po/it.po | 291 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 147 insertions(+), 144 deletions(-)

commit 42724c9637c950800ad52e1f504ea277c66ddc37
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Apr 1 21:11:06 2011 +0200

    Updated Polish translation

 po/pl.po | 181 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 85 insertions(+), 96 deletions(-)

commit a0672cb9ad07b649842316d50309a3c3d16d189f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 1 18:42:27 2011 +0200

    Remove API reference, as it's incomplete and going away for next cycle

 Makefile.am                                        |   3 +-
 configure.ac                                       |   7 --
 docs/Makefile.am                                   |   3 -
 docs/reference/Makefile.am                         |   3 -
 docs/reference/libcinnamon-control-center/Makefile.am | 102 ---------------------
 .../libcinnamon-control-center-docs.sgml              |  35 -------
 .../libcinnamon-control-center-sections.txt           |  43 ---------
 .../libcinnamon-control-center/version.xml.in         |   1 -
 8 files changed, 1 insertion(+), 196 deletions(-)

commit 885bab172f8738026a72b637ef9699097e8f329b
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Apr 1 16:19:16 2011 +0200

    printers: Do not delete browsed printers
    
    Make "printer-remove-button" button insensitive when
    a browsed printer is selected (rhbz#691831).

 panels/printers/cc-printers-panel.c | 85 ++++++++++++++++++++-----------------
 1 file changed, 46 insertions(+), 39 deletions(-)

commit fadb5ff9181fc7e5d92357a67d434f45800574ec
Author: krishnababu k <kkrothap@redhat.ocm>
Date:   Fri Apr 1 19:36:06 2011 +0530

    Updated Telugu Translations

 po/te.po | 5351 +++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 3701 insertions(+), 1650 deletions(-)

commit aa398b2f612c97f2b6d22f93195bd9ec4ce5a532
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Apr 1 14:15:06 2011 +0200

    Updated Arabic translation

 po/ar.po | 197 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 96 insertions(+), 101 deletions(-)

commit 0bfa974ae4f2271acc2ecee0b82f16b52fad97b2
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Apr 1 14:02:12 2011 +0200

    Updated Hungarian translation

 po/hu.po | 407 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 188 insertions(+), 219 deletions(-)

commit 56612dee63899ddbbc69cd641edad62e6411a437
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Fri Apr 1 16:38:19 2011 +0530

    Updated Gujarati Translations

 po/gu.po | 683 ++++++++++++++++++++-------------------------------------------
 1 file changed, 219 insertions(+), 464 deletions(-)

commit 596017962324db520e04130d8d55b4e007fb8454
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Fri Apr 1 16:22:43 2011 +0530

    Updated Gujarati Translations

 po/gu.po | 2124 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1245 insertions(+), 879 deletions(-)

commit 34306aed05667ff4c5fd5411258bb088b1492726
Author: Rajesh Ranjan <rranjan@redhat.com>
Date:   Fri Apr 1 14:43:42 2011 +0530

    hindi updated

 po/hi.po | 1053 +++++++++++++++++---------------------------------------------
 1 file changed, 279 insertions(+), 774 deletions(-)

commit 3fea2f20e012e12cc2b8e5e81c0e5d6c07e318d6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Apr 1 09:30:05 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 275 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 136 insertions(+), 139 deletions(-)

commit 6055cb7491a87ac11d290191fcfc8147fb46235e
Author: Marek Černocký <marek@manet.cz>
Date:   Fri Apr 1 09:16:35 2011 +0200

    Updated Czech translation

 po/cs.po | 307 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 153 insertions(+), 154 deletions(-)

commit 6310c48595bb97e32173c40637e0d94be08f7951
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Fri Apr 1 12:08:37 2011 +0530

    Updated Tamil translation

 po/ta.po | 130 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 60 insertions(+), 70 deletions(-)

commit d520bb78f62ce200cb97532e40a1c9c4a7112081
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Fri Apr 1 12:07:09 2011 +0530

    Updated Tamil translation

 po/ta.po | 45 +++++++++++++++++++++++++++++----------------
 1 file changed, 29 insertions(+), 16 deletions(-)

commit 23ceb4470b494ccaae8a503e75bf4906fbc0315e
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Fri Apr 1 11:32:05 2011 +0530

    Updated kn translations

 po/kn.po | 452 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 201 insertions(+), 251 deletions(-)

commit 23f239e46158c545df602a7b1211849fe6e11d7d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 31 10:38:31 2011 -0400

    Network: display more detailed status for unavailable devices
    
    If NetworkManager knows that firmware is missing, say so.
    This matches recent changes in the gnome-shell network menu.
    It adds one new string, "Firmware missing", for which I have
    pulled existing translations from the similar "firmware missing"
    string in gnome-shell.
    https://bugzilla.gnome.org/show_bug.cgi?id=646027

 panels/network/cc-network-panel.c |  2 +-
 panels/network/panel-common.c     | 14 ++++++++++++--
 panels/network/panel-common.h     |  3 +--
 po/ar.po                          |  4 ++++
 po/bg.po                          |  4 ++++
 po/ca.po                          |  4 ++++
 po/de.po                          |  4 ++++
 po/es.po                          |  4 ++++
 po/fr.po                          |  4 ++++
 po/gl.po                          |  4 ++++
 po/he.po                          |  4 ++++
 po/lv.po                          |  4 ++++
 po/mr.po                          |  4 ++++
 po/nl.po                          |  4 ++++
 po/pa.po                          |  4 ++++
 po/pl.po                          |  4 ++++
 po/pt_BR.po                       |  4 ++++
 po/ru.po                          |  4 ++++
 po/sl.po                          |  4 ++++
 po/sv.po                          |  4 ++++
 po/uk.po                          |  4 ++++
 po/vi.po                          |  4 ++++
 po/zh_CN.po                       |  4 ++++
 23 files changed, 94 insertions(+), 5 deletions(-)

commit ecd99dc1f353848e2ae994cdd2352e37f9922ee6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 31 22:27:44 2011 -0400

    Network: reset the network name combo when disconnected
    
    While we are not connected, showing the name of an access point
    in the combobox is misleading.
    https://bugzilla.gnome.org/show_bug.cgi?id=646031

 panels/network/cc-network-panel.c | 40 ++++++++++++++++++++++++++++++++++-----
 1 file changed, 35 insertions(+), 5 deletions(-)

commit 36f91a8073203e3331bcc5a11eed6e361c852cac
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 31 20:16:41 2011 -0400

    Fix build against NetworkManager on Debian
    
    Add more complete list of dependencies for the network panel.
    https://bugzilla.gnome.org/show_bug.cgi?id=646349

 configure.ac | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit a42e2b98fcdc2d5930373aaad2d92e3a42806af5
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Mar 31 22:51:36 2011 +0100

    Updated Portuguese translation

 po/pt.po | 829 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 448 insertions(+), 381 deletions(-)

commit f3d02cd0e8684170bbb8db3755bfa603735b8ec1
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 31 16:05:12 2011 +0100

    network: Do not add bluetooth devices to the panel to avoid asserting the control-center
    
    There's no mockup for bluetooth devices, and it's not clear what any of the
    buttons or sliders should do.
    I'll actually wire up bluetooth devices for 3.2, but this at least fixes the
    assert ready for 3.0.

 panels/network/cc-network-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit e46c3267baf2cedb2006490bc97a9dfe61913055
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 30 18:36:03 2011 +0100

    background: Don't assert() for typos in XML files
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646250

 panels/background/cc-background-xml.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7280f14460a96ae0af5e21982b1d17fbc24ae419
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 30 15:42:28 2011 +0100

    sound: Make sound applet work again in fallback
    
    Seems to work fine without us trying to popdown the dock
    by ourselves.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646044

 panels/sound/gvc-stream-status-icon.c | 48 -----------------------------------
 1 file changed, 48 deletions(-)

commit 32c126e2e51defac4517bc9505c4866fad4f6f4b
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Thu Mar 31 16:56:40 2011 +0530

    Updated kn translations

 po/kn.po | 7456 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4615 insertions(+), 2841 deletions(-)

commit aa7184ee52e2ef8aa00deb7ef50088d59e4333cc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 31 12:19:37 2011 +0100

    build: Bump gnome-settings-daemon requirement
    
    For keyboard schema changes

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6dd3318b8037ff700cc4384941db9dff39f5d3c4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 30 18:17:50 2011 +0100

    keyboard: Set repeat-interval correctly
    
    This sets the repeat-interval key in milliseconds. From a minimum of
    one char per 2 seconds up to 50 characters per second (as per
    requirements listed in 84eed6b0cf9f0b44db5a030018bfca17dae18fd5).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646241

 panels/keyboard/keyboard-general.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit c80d4aa85a654b73edbdda46f341b087a0cc5f56
Author: Friedel Wolff <friedel@translate.org.za>
Date:   Wed Mar 30 23:09:41 2011 +0200

    Updated translation for Afrikaans (af)

 po/af.po | 7275 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 4333 insertions(+), 2942 deletions(-)

commit 67450ffb24544d6306304c5d0a9d0dd08daea855
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Wed Mar 30 22:58:00 2011 +0200

    Updated Basque language

 po/eu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1940c82d52f0642f1da31553feb8dcdc52cdf831
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Wed Mar 30 22:50:17 2011 +0200

    Updated Basque language

 po/eu.po | 3649 +++++++++++++++++++-------------------------------------------
 1 file changed, 1118 insertions(+), 2531 deletions(-)

commit 76eaa6cc43626af3e0e17fb1a18608b8ab64bec2
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Mar 30 11:13:34 2011 -0400

    universal-access: don't incorrectly mark some hboxes as insensitive
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646240

 panels/universal-access/uap.ui | 3 ---
 1 file changed, 3 deletions(-)

commit 7cef6dc582a9cdf3a7d3df30a3679a2ab9e94f26
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Mar 29 23:44:58 2011 -0400

    background: don't use the GnomeBG thumbnails for the preview area
    
    Instead, use gnome_bg_draw(), which renders the preview directly at the
    desired size.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646180

 panels/background/cc-background-item.c  | 56 ++++++++++++++++++++++++---------
 panels/background/cc-background-item.h  |  3 +-
 panels/background/cc-background-panel.c |  8 ++---
 3 files changed, 47 insertions(+), 20 deletions(-)

commit eac562b162528204ec2c9c2ab053e7293e0c42fb
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Mar 30 00:59:13 2011 -0400

    region: make the layout options modal
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646183

 panels/region/gnome-region-panel-xkbot.c | 1 +
 1 file changed, 1 insertion(+)

commit e98da620780ad1ad09ec1f1d6c36d958045f292b
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Wed Mar 30 15:01:27 2011 +0100

    Updated British English translation

 po/en_GB.po | 836 ++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 475 insertions(+), 361 deletions(-)

commit 479149328948830b7c6120dd246f9e021694a31f
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Wed Mar 30 17:05:04 2011 +0530

    Updated Tamil translation

 po/ta.po | 3689 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2296 insertions(+), 1393 deletions(-)

commit 5f3acad39aba7e3d437ff38ecb9a2bba80c26359
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Mar 29 15:09:53 2011 -0400

    sound: make the volume icons smaller and center them properly in the bar
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646153

 panels/sound/gvc-channel-bar.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit b3af71f37f30f63ea4283d5d72213319db899fca
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Mar 29 14:33:49 2011 -0400

    network: hide the security cell renderer if there's no icon to display
    
    This allows the mode renderer which is on the left to slide in and
    replace it in case.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646140

 panels/network/panel-cell-renderer-security.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit 44847a571c1d0ba293e70fb931b1956e7ce0680c
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Mar 29 14:23:12 2011 -0400

    network: use symbolic icon for ad-hoc wireless connections
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646140

 panels/network/panel-cell-renderer-mode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit df42f5ed6f9067d6100d84fb5da591a822a2f403
Author: Marek Černocký <marek@manet.cz>
Date:   Tue Mar 29 19:37:40 2011 +0200

    Updated Czech translation

 po/cs.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bd69290c4625bd0595ae37ac529f92badcfbb349
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 29 13:48:58 2011 +0100

    shell: Turn off spinner cursor when launched
    
    Startup notification should be stopped when the window appears.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646045

 shell/control-center.c | 1 +
 1 file changed, 1 insertion(+)

commit d361022907b771be062f7ce7e0167372f0f99252
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 29 11:09:14 2011 +0100

    background: Don't show errors when loading default bg
    
    Check whether the file exists so we don't get warnings
    when loading the default wallpaper on startup.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=646056

 panels/background/cc-background-xml.c | 3 +++
 1 file changed, 3 insertions(+)

commit c53d736d43f2c2f98899e6305ce73acf26509f02
Author: Jiro Matsuzawa <matsuzawa.jr@gmail.com>
Date:   Tue Mar 29 23:51:25 2011 +0900

    Updated Japanese translation.

 po/ja.po | 143 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 69 insertions(+), 74 deletions(-)

commit 8444b2e38aa1187384e45071925bd3cedf8e0239
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Mar 29 16:21:14 2011 +0200

    printers: Make "Print Test Page" button always sensitive
    
    Since "Printer Test Page" prints CUPS' testing page, we don't
    need to make it insensitive when the printer doesn't support
    "PrintSelfTestPage" maintenance command.

 panels/printers/cc-printers-panel.c | 69 +++----------------------------------
 1 file changed, 4 insertions(+), 65 deletions(-)

commit 2f7e61ba411d6e27668e81ac0a972aec1a2fb2fb
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:   Tue Mar 29 14:18:27 2011 +0200

    Updated Lithuanian translation.

 po/lt.po | 935 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 392 insertions(+), 543 deletions(-)

commit ba13860e2c8f26b84dd0c4fe7737caaadd1a821b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 28 20:31:21 2011 -0400

    Back to the future

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6d42216388d06c6bd559f9602e35d124c36e8e2b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 28 19:36:01 2011 -0400

    2.91.93

 NEWS         | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 55 insertions(+), 1 deletion(-)

commit 3bba21113ca10409634085100ef56005fd7ef8d2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Mar 28 20:30:15 2011 +0200

    Updated Polish translation

 po/pl.po | 310 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 151 insertions(+), 159 deletions(-)

commit d5d0ec3b066978c039aae56bbcc3d0435f906029
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Mar 28 16:46:32 2011 +0100

    network: don't segfault the network panel if the user restarts NetworkManager with it open

 panels/network/cc-network-panel.c | 35 ++++++++++++++++++++++++-----------
 1 file changed, 24 insertions(+), 11 deletions(-)

commit 52415cc9db841442d80403631772173c4934105f
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Mon Mar 28 18:58:43 2011 +0200

    Updated French Translation
    
    Contributed by Milan Bouchet-Valat

 po/fr.po | 237 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 117 insertions(+), 120 deletions(-)

commit c5af880dc94d42bd61f45d440a90aba8b2673a87
Author: Krix Apolinário <krixapolinario@gmail.com>
Date:   Mon Mar 28 09:39:47 2011 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 2364 ++++++++++++++++++++++++-----------------------------------
 1 file changed, 960 insertions(+), 1404 deletions(-)

commit 5cd2ca1d3fc4bd8b665f8822453d95cb26f742d3
Author: Rajesh Ranjan <rranjan@redhat.com>
Date:   Mon Mar 28 16:22:38 2011 +0530

    hindi updated

 po/hi.po | 6260 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 3358 insertions(+), 2902 deletions(-)

commit 8613d54e9a0c576bb1767a9f3ed7d6e9168e506e
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Mar 26 16:45:08 2011 -0400

    Network: Use grids for alignment instead of a huge set of size groups
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645772

 panels/network/cc-network-panel.c |  565 +++---
 panels/network/network.ui         | 3726 +++++++++++++++++--------------------
 2 files changed, 2033 insertions(+), 2258 deletions(-)

commit 4576e48c19cec0e0e99b71483a10260e8cd4d014
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Mar 26 20:52:04 2011 -0400

    Network: properly track vpn connection state
    
    We were not listening for state changes on the ActiveConnection
    objects representing actual connections, but only listened for
    active connections appearing or disappearing. This caused
    the VPN tab to get stuck on 'Authentication required' or similar
    'intermediate' states until you manually switch tabs and back.
    
    Also keep the switch from jumping back to off while the
    vpn auth dialog is up, by adjusting the states we consider 'off'.

 panels/network/cc-network-panel.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit 2c52e10d2fa412cd7bf373b4c9e010064144cea5
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   Mon Mar 28 01:20:23 2011 +0300

    Updated Latvian translation.

 po/lv.po | 781 +++++++++++++++++++--------------------------------------------
 1 file changed, 229 insertions(+), 552 deletions(-)

commit 8797a7cb389e5ad4a9f5e84d2311d40326a2632a
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Sun Mar 27 23:59:26 2011 +0200

    [l10n] Updated German translation

 po/de.po | 257 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 131 insertions(+), 126 deletions(-)

commit 0952295fb2f708919b1bc04eaef15dc00543921a
Author: Abduxukur Abdurixit <abdurixit@gmail.com>
Date:   Sun Mar 27 19:41:57 2011 +0200

    Added UG translation

 po/ug.po | 2237 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 1323 insertions(+), 914 deletions(-)

commit 021db667af7870bdd6c6a86d35fced397510feb9
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Sun Mar 27 13:54:08 2011 +0300

    Uploaded Ukranian

 po/uk.po | 246 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 125 insertions(+), 121 deletions(-)

commit 470f0dd13aad4a40c4521802cb218624c39801f3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Mar 26 01:20:57 2011 +0000

    background: Make icon list smaller on netbooks
    
    The default treeview is quite tall by default, and with the addition
    of the shell's toolbar, the titlebar and the GNOME shell panel,
    the background panel would be too tall for netbook computers.
    
    This works around the issue by setting a smaller height request
    for the icon list when the screen on which the panel will be shown
    are no taller than 768 pixels.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645649

 panels/background/cc-background-panel.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit 55b32d4da228b81b07f2bbee5ee4495df3060d73
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Mar 26 20:30:59 2011 +0100

    Updated Slovenian translation

 po/sl.po | 244 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 122 insertions(+), 122 deletions(-)

commit 1b14c37b27f4e8b107b16816ea3aaddd826737c1
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Sat Mar 26 21:10:04 2011 +0300

    Updated Russian translation

 po/ru.po | 467 ++++++++++++++-------------------------------------------------
 1 file changed, 102 insertions(+), 365 deletions(-)

commit a654a26f40149fcadececd5f84d945c07e556990
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Mar 26 17:35:02 2011 +0200

    Updated Arabic translation

 po/ar.po | 232 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 118 insertions(+), 114 deletions(-)

commit e1cd06b1ede3acf02dbebb5e6adecc8c48e40563
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Mar 26 21:45:51 2011 +0700

    po/vi.po: updated "Screen turns off"

 po/vi.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 24b4e0223ab79fad0ea7663567f57d14dec9da30
Author: Jiro Matsuzawa <matsuzawa.jr@gmail.com>
Date:   Sat Mar 26 23:42:27 2011 +0900

    Updated Japanese translation.

 po/ja.po | 1458 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 734 insertions(+), 724 deletions(-)

commit b02b523c5684e05fed73752135227a8d3c63a4d1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Mar 25 20:08:48 2011 -0400

    Network: Implement on/off switch for wired devices
    
    This is to match the network menu, which also has an on/off switch
    for wired devices.

 panels/network/cc-network-panel.c | 53 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 52 insertions(+), 1 deletion(-)

commit 942ff4a9ad0dadff615fa6af67cf8e12aedddfe1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Mar 25 20:12:08 2011 -0400

    Network: Plug a memory leak

 panels/network/cc-network-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 158246ebab352cfaa8605c1a15241f9eb0f4cacb
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Mar 26 14:07:47 2011 +0700

    Updated Vietnamese translation

 po/vi.po | 150 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 56 insertions(+), 94 deletions(-)

commit d0651544232af40cd16e1fdc9526e15c0833ca83
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sat Mar 26 14:00:06 2011 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 1079 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 583 insertions(+), 496 deletions(-)

commit 186b1b1a74e8f0d938745e85a2f45fe9ec32d792
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 25 21:29:55 2011 +0000

    region: Remove tooltips for add layout list view
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645674

 panels/region/gnome-region-panel-layout-chooser.ui | 1 -
 1 file changed, 1 deletion(-)

commit aa211ab61212e77623e060758320ea423ec3b3ff
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Mar 26 01:05:48 2011 +0200

    Updated Hebrew translation.

 po/he.po | 773 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 402 insertions(+), 371 deletions(-)

commit 759dbfd328453286c80245e6ad62d7929dc2fcd9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Mar 25 17:40:17 2011 -0400

    Network: show a padlock for 'secure' access points
    
    This patch adds a trivial GtkCellRendererPixbuf subclass and
    uses it to show a padlock icon for access points which have some
    kind of security.

 panels/network/Makefile.am                    |   2 +
 panels/network/cc-network-panel.c             |  44 ++++++++
 panels/network/network.ui                     |   2 +
 panels/network/panel-cell-renderer-security.c | 145 ++++++++++++++++++++++++++
 panels/network/panel-cell-renderer-security.h |  69 ++++++++++++
 5 files changed, 262 insertions(+)

commit f2a1eb66912eb409c5a79b1ae97acb23afeb6baf
Author: Marek Černocký <marek@manet.cz>
Date:   Fri Mar 25 22:11:31 2011 +0100

    Updated Czech translation

 po/cs.po | 3743 +++++++++++++++-----------------------------------------------
 1 file changed, 918 insertions(+), 2825 deletions(-)

commit a2b89e799c34485aed54f168be4dda0b1316f8f2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 24 16:16:16 2011 +0000

    universal-access: Show "Screen Reader" option
    
    and hook up to the preferences change
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645708

 panels/universal-access/cc-ua-panel.c | 5 +++++
 panels/universal-access/uap.ui        | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit a9523ffc5b9d10decb4580bb17a114432d0393f1
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 25 12:43:08 2011 +0000

    network: remove all the entries apart from VPN from the [+] dialog box
    
    We can't actually see the new connections for the other types, and so it's deceptive at best
    to allow the user to create anything other than the VPN connection type.

 panels/network/network.ui | 16 ----------------
 1 file changed, 16 deletions(-)

commit 0b25f5a45e53338646c6c87cc540df3db828c0f2
Author: Colin Walters <walters@verbum.org>
Date:   Wed Mar 23 11:43:13 2011 -0400

    cinnamon-control-center.desktop: Ensure we're in the menu
    
    If we're not categorized, the shell won't pick us up, and that's
    a problem for application tracking.  Per IRC discussion, go
    into System Settings for now.

 shell/cinnamon-control-center.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bb8549af411185140ea07fb50213495878ca4eb1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Mar 25 14:44:00 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

commit 02a35a5b3a1961d4ddbb7854d3315aad6d7bdde8
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Fri Mar 25 21:50:38 2011 +0900

    Updated Korean translation

 po/ko.po | 189 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 97 insertions(+), 92 deletions(-)

commit 41d30c10b498bf5ed28f52405b768902070140d6
Author: Aron Xu <aronxu@gnome.org>
Date:   Fri Mar 25 04:39:40 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 357 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 184 insertions(+), 173 deletions(-)

commit 53f0b96bd75a9c9ee378b8efa88213af888992b6
Author: Aron Xu <aronxu@gnome.org>
Date:   Fri Mar 25 04:29:37 2011 +0000

    Clear fuzzies for Simplified Chinese translation.

 po/zh_CN.po | 480 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 240 insertions(+), 240 deletions(-)

commit 510f45de31b171e20dbac98c81b9792ec62d8917
Author: A S Alam <aalam@users.sf.net>
Date:   Fri Mar 25 08:22:14 2011 +0530

    update tranlation for Punjabi by A S Alam

 po/pa.po | 875 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 500 insertions(+), 375 deletions(-)

commit c3388ac7be84efd0d5e9a5887d4e8652e675605a
Author: Wouter Bolsterlee <wbolster@gnome.org>
Date:   Fri Mar 25 00:28:59 2011 +0100

    Updated Dutch translation by Wouter Bolsterlee

 po/nl.po | 7544 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4607 insertions(+), 2937 deletions(-)

commit 1bfcb9ce7db6a230bb403fc680e77ad2feaa8832
Author: Joan Duran <joudfi@gmail.com>
Date:   Fri Mar 25 00:07:34 2011 +0100

    [l10n]Updated Catalan translation

 po/ca.po | 1218 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 713 insertions(+), 505 deletions(-)

commit 3812dbc1d5731fd82075f8da6ce298fb6880a5cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 24 16:13:07 2011 +0000

    user-accounts: Fix blue-ish bg in crop dialogue
    
    The conversion to GtkStyleContext means we now use GdkRGBA,
    so we need to scale the colours between 0.0 and 1.0, not 0 and 255.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645712

 panels/user-accounts/um-crop-area.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5b5347b5b288467d6017312526e0dbdcd0e18f0c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 24 15:16:23 2011 +0000

    user-accounts: Make crop window modal
    
    So it's attached to the panel correctly.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645700

 panels/user-accounts/um-photo-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit 5d3824b344f91132f87ac8abbcaaab1668607842
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Thu Mar 24 23:27:46 2011 +0300

    Updated Russian translation

 po/ru.po | 6403 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 3264 insertions(+), 3139 deletions(-)

commit 902be24cd27eba555006f29054e5452a5d3807b9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Mar 24 10:39:50 2011 -0400

    power: use a better icon for the power panel
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645535

 panels/power/gnome-power-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cd467f60f1a161ed07facd627e1dc7de93c540eb
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Mar 24 15:12:32 2011 +0100

    printers: Use CUPS' test page
    
    Send CUPS' testing ps file to the selected printer when
    user press "Print Test Page" button. Fallback to maintenance
    command "PrintSelfTestPage" if the file doesn't exist.

 panels/printers/cc-printers-panel.c | 125 +++++++++++++++++++++++++++++++++++-
 1 file changed, 124 insertions(+), 1 deletion(-)

commit e9cafd21edb74b97b1d0b81182c3cf14fd5722c2
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Thu Mar 24 14:07:27 2011 +0100

    Updated French translation

 po/fr.po | 818 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 459 insertions(+), 359 deletions(-)

commit 3b01c3f09f6382aeecc18added976542c2206baf
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Mar 24 09:46:06 2011 +0100

    Updated Galician translations

 po/gl.po | 127 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 66 insertions(+), 61 deletions(-)

commit 467109c247f85ce69d4c8f2d734dc0753e2afefb
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Mar 24 09:07:57 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 124 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 64 insertions(+), 60 deletions(-)

commit 75bcbce646ff7676d291d3351371d060d285f494
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Mar 24 08:06:19 2011 +0100

    Updated Swedish translation

 po/sv.po | 124 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 64 insertions(+), 60 deletions(-)

commit ed2b1863e00650e9a9bbc07d1ff1712083595d12
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu Mar 24 00:52:40 2011 +0100

    Updated Italian translation

 po/it.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 10acf0a1c12a066300ef1a02b541639415614e7b
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 23 22:01:07 2011 +0100

    Updated Italian translation

 po/it.po | 134 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 69 insertions(+), 65 deletions(-)

commit ff1caa6bc088c68eb1c5f8716c22951732153b9f
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Wed Mar 23 19:42:48 2011 +0100

    Updated Spanish translation

 po/es.po | 125 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 65 insertions(+), 60 deletions(-)

commit cdbff7ba6a7761ca8ef376e87a0b9b0442e33e9b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 22 19:31:06 2011 +0000

    sound: Fallback if loading an inexistant custom theme
    
    If the sound theme is set to be a custom sound theme, but it
    does not exist, then we should fallback gracefully on the
    default sound theme, and avoid warnings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645541

 panels/sound/gvc-sound-theme-chooser.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

commit d7e4369d40827b6792e26206bd0dad775efcdf9e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 22 16:46:55 2011 +0000

    shell: Add "-v" for verbose option to the shell
    
    And remove it in the sound panel, so that all the panels
    use the same verbose settings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645435

 panels/sound/Makefile.am      |  4 +--
 panels/sound/cc-sound-panel.c |  4 ---
 panels/sound/gvc-log.c        |  6 +++--
 shell/Makefile.am             |  2 ++
 shell/cc-shell-log.c          | 63 +++++++++++++++++++++++++++++++++++++++++++
 shell/cc-shell-log.h          | 33 +++++++++++++++++++++++
 shell/control-center.c        |  7 +++++
 7 files changed, 111 insertions(+), 8 deletions(-)

commit e1bebc6bf2cd9c587f0d5dd050208a041e0ed508
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 22 16:46:12 2011 +0000

    user-accounts: Remove stray debug

 panels/user-accounts/um-photo-dialog.c | 1 -
 1 file changed, 1 deletion(-)

commit bffcca76ff44f1311b7e5993e9e137ba5fbc2ef5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 22 15:06:50 2011 +0000

    sound: Use GSettings for theme configuration
    
    As we should really have been doing before.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645527

 panels/sound/gvc-sound-theme-chooser.c | 63 +++++++++++++++++-----------------
 1 file changed, 31 insertions(+), 32 deletions(-)

commit bb577444b309741afb4029825112dec5c7de4340
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Mar 23 15:44:47 2011 +0100

    printers: Honor "disable-print-setup" setting
    
    Make "Unlock" button and all widgets which depend on it
    insensitive if "disable-print-setup" setting is true (#645337).

 panels/printers/cc-printers-panel.c | 36 +++++++++++++++++++++++++++++++++++-
 1 file changed, 35 insertions(+), 1 deletion(-)

commit 3f51c12ef4c50be48c02d77214f9485e79097859
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Wed Mar 23 15:48:41 2011 +0200

    Uploaded Ukranian

 po/uk.po | 81 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 41 insertions(+), 40 deletions(-)

commit ac5fa10f52854efb46b111bd5fda8dbce2d759bd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 23 14:23:16 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

commit 8d77636ac6f834ecb61687306de4aefe3678d7af
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Mar 23 14:05:31 2011 +0100

    printers: Check for "all-edit" policy in "Unlock" button
    
    The policy "all-edit" groups almost all policies from cups-pk-helper,
    hence we don't need to authenticate more than once (#645533).

 panels/printers/cc-printers-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 68ba37eb11858437607c7034852aba2096f57515
Author: Aron Xu <aronxu@gnome.org>
Date:   Wed Mar 23 20:58:33 2011 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 491 +++++++++++++++++++++---------------------------------------
 1 file changed, 172 insertions(+), 319 deletions(-)

commit f11e736ab82ae7240e9e2637801c6d048f774130
Author: Daniel Șerbănescu <cyber19rider@gmail.com>
Date:   Wed Mar 23 01:52:03 2011 +0100

    Updated Romanian translation

 po/ro.po | 4028 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 1874 insertions(+), 2154 deletions(-)

commit aaa2986cd81fa4a255b2999d922abf81c233be66
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 23 01:44:19 2011 +0100

    Updated Italian translation

 po/it.po | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

commit f96156f00198c558d515ed7c2a5208d9286879f7
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:   Tue Mar 22 22:41:57 2011 +0100

    [l10n] Updated German translation

 po/de.po | 355 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 198 insertions(+), 157 deletions(-)

commit 75445fb31198f7281e594ff0924aaff508e97f94
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Mar 22 22:04:36 2011 +0100

    Updated Slovenian translation

 po/sl.po | 76 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 37 insertions(+), 39 deletions(-)

commit b4bdc65cd039ec4608491e2ecd91b5847c9429a4
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Mar 22 15:56:19 2011 +0100

    Updated Italian translation

 po/it.po | 700 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 360 insertions(+), 340 deletions(-)

commit 7064f38d75a350284c0d9309b2a78fb74377f3b2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Mar 22 10:46:57 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 298 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 159 insertions(+), 139 deletions(-)

commit 815ab9d890db855a85964bfa7445abaf472d5d41
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Tue Mar 22 10:27:34 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 353 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 206 insertions(+), 147 deletions(-)

commit 67fb7e863c66acccc8abf6ef58252b311ab053be
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Mar 22 00:50:33 2011 +0100

    Updated Galician translations

 po/gl.po | 78 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 40 insertions(+), 38 deletions(-)

commit 647f2a836d7c21ed2abc8dbc660c2161f671981c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 21 21:05:06 2011 +0000

    datetime: Fix time editing widgets order for RTL
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645425

 panels/datetime/cc-datetime-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit a5627cd63a44483c4dd00f0a774ad56e993f9902
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Mar 21 21:58:06 2011 +0100

    Updated Swedish translation

 po/sv.po | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

commit e7cd0659eb9cb4b4e3692883f31aa0d50cc22b12
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Mar 21 20:49:34 2011 +0100

    Updated Spanish translation

 po/es.po | 81 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 41 insertions(+), 40 deletions(-)

commit 9408e401629898d1cf49e3a5d4ff98f8db9b1291
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Mar 21 19:29:52 2011 +0200

    Updated Arabic translation

 po/ar.po | 77 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 39 insertions(+), 38 deletions(-)

commit 0cba872aa5e9508031b619e4fd6e22853cd6d6a8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Mar 21 17:17:45 2011 +0100

    Release 2.91.92

 NEWS         | 134 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |   2 +-
 2 files changed, 135 insertions(+), 1 deletion(-)

commit a3fce2970f4b5b346c1f7eb981a0d4a842e96897
Author: Ray Strode <rstrode@redhat.com>
Date:   Fri Mar 18 15:49:24 2011 -0400

    region: update language string
    
    Change description on language tab of region panel from
    
    Select a display language
    
    to
    
    Select a display language (change will be applied next time you log in)
    
    to make it clear that the setting won't take effect until
    next login.
    
    http://mail.gnome.org/archives/gnome-i18n/2011-March/msg00152.html

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7e976baf869577bc8be4ddac1997993facb3e625
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Mar 21 15:50:12 2011 +0100

    printers: Show computer-fail icon when can not connect to CUPS
    
    Show "computer-fail" under the text "Sorry! The system printing
    service doesn't seem to be available." if we can not connect to
    CUPS server (#641421).

 panels/printers/printers.ui | 34 +++++++++++++++++++++++++++++++---
 1 file changed, 31 insertions(+), 3 deletions(-)

commit 1e53d76bc0ca852169bead0d555170d134b3022b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Mar 21 09:58:08 2011 -0400

    network: use computer-fail instead of the error icon when NM isn't available
    
    It is not something the user did wrong so we shouldn't use a mean
    looking error icon.  We use computer-fail when something is wrong
    with the setup of the computer that the user can't fix.

 panels/network/cc-network-panel.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 92e95d075253b938ef22402fb3dacac9804d6c61
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Mar 20 20:38:39 2011 -0400

    user-accounts: move faces images from GDM
    
    The don't really make sense in GDM anymore since all the tools
    that used them have been removed from there.  It makes more sense
    for them to live close the UI that selects and manipulates them.
    
    At some point we should probably consider making face images themeable
    so that they can be loaded in various sizes.

 configure.ac                                    |   1 +
 panels/user-accounts/data/Makefile.am           |   2 +-
 panels/user-accounts/data/faces/Makefile.am     |  34 ++++++++++++++++++++++++
 panels/user-accounts/data/faces/Makefile.am~    |  32 ++++++++++++++++++++++
 panels/user-accounts/data/faces/astronaut.jpg   | Bin 0 -> 3034 bytes
 panels/user-accounts/data/faces/baseball.png    | Bin 0 -> 12985 bytes
 panels/user-accounts/data/faces/butterfly.png   | Bin 0 -> 17171 bytes
 panels/user-accounts/data/faces/cat-eye.jpg     | Bin 0 -> 5495 bytes
 panels/user-accounts/data/faces/chess.jpg       | Bin 0 -> 3346 bytes
 panels/user-accounts/data/faces/coffee.jpg      | Bin 0 -> 3467 bytes
 panels/user-accounts/data/faces/dice.jpg        | Bin 0 -> 2807 bytes
 panels/user-accounts/data/faces/energy-arc.jpg  | Bin 0 -> 2041 bytes
 panels/user-accounts/data/faces/fish.jpg        | Bin 0 -> 3225 bytes
 panels/user-accounts/data/faces/flake.jpg       | Bin 0 -> 4216 bytes
 panels/user-accounts/data/faces/flower.jpg      | Bin 0 -> 3572 bytes
 panels/user-accounts/data/faces/grapes.jpg      | Bin 0 -> 4045 bytes
 panels/user-accounts/data/faces/guitar.jpg      | Bin 0 -> 2281 bytes
 panels/user-accounts/data/faces/launch.jpg      | Bin 0 -> 3121 bytes
 panels/user-accounts/data/faces/leaf.jpg        | Bin 0 -> 2627 bytes
 panels/user-accounts/data/faces/lightning.jpg   | Bin 0 -> 2621 bytes
 panels/user-accounts/data/faces/penguin.jpg     | Bin 0 -> 2192 bytes
 panels/user-accounts/data/faces/puppy.jpg       | Bin 0 -> 3461 bytes
 panels/user-accounts/data/faces/sky.jpg         | Bin 0 -> 2964 bytes
 panels/user-accounts/data/faces/soccerball.png  | Bin 0 -> 9267 bytes
 panels/user-accounts/data/faces/sunflower.jpg   | Bin 0 -> 4105 bytes
 panels/user-accounts/data/faces/sunset.jpg      | Bin 0 -> 2752 bytes
 panels/user-accounts/data/faces/tennis-ball.png | Bin 0 -> 13432 bytes
 panels/user-accounts/data/faces/yellow-rose.jpg | Bin 0 -> 2727 bytes
 28 files changed, 68 insertions(+), 1 deletion(-)

commit 509da80abdac1463f3caa176da38309ffd74dcf2
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Mar 20 19:20:56 2011 -0400

    screen: honor disable-lock-screen setting

 panels/screen/cc-screen-panel.c | 35 +++++++++++++++++++++++++++++++++++
 panels/screen/screen.ui         |  2 +-
 2 files changed, 36 insertions(+), 1 deletion(-)

commit 0e60fb1f12d3501165317b86c7c255590b4ba6fc
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:   Mon Mar 21 10:37:52 2011 +0100

    Updated Lithuanian translation.

 po/lt.po | 5977 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 4004 insertions(+), 1973 deletions(-)

commit a97d65fdcc3cd93e4ebb99807558d12d827e7075
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 21 00:15:52 2011 +0000

    user-accounts: Don't warn if there are no faces pixmaps
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645347

 panels/user-accounts/um-photo-dialog.c | 82 ++++++++++++++++++++--------------
 1 file changed, 49 insertions(+), 33 deletions(-)

commit a665a5260967d18753870eccd0f6e16701a8b826
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Mar 20 19:45:18 2011 +0100

    Updated Swedish translation

 po/sv.po | 677 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 341 insertions(+), 336 deletions(-)

commit fd0a4cc2e447c0f485096f34f103c8ea6c1c9115
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Mar 20 18:51:31 2011 +0100

    Updated Galician translations

 po/gl.po | 214 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 124 insertions(+), 90 deletions(-)

commit b7b1f9f4d07a44870c7eb256d5b5954ffcd85466
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Mar 20 16:58:46 2011 +0000

    keyboard: Correct labels for blinking speed
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645314

 panels/keyboard/gnome-keyboard-panel.ui | 1 +
 1 file changed, 1 insertion(+)

commit c34734dd87debd2428e2d3208bf18c308a5c7352
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 18 16:19:50 2011 +0000

    mouse: Don't reset scrolling method on start
    
    Or tap-to-click for that matter, if the device present does
    not support it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642474

 panels/mouse/gnome-mouse-properties.c | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

commit f1c3818094c22116ea740bcdcdee35c770288b01
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   Sun Mar 20 16:06:55 2011 +0200

    Updated Latvian translation.

 po/lv.po | 6666 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3381 insertions(+), 3285 deletions(-)

commit 917fa81f106802ed84525cf0955b9fc98bf7ba9b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Mar 20 03:04:26 2011 -0400

    mouse: make sure we fit within our minimum vertical size
    
    Make sure we fit on netbook screens.

 panels/mouse/gnome-mouse-properties.ui | 406 ++++++++++++++++++++-------------
 1 file changed, 253 insertions(+), 153 deletions(-)

commit f9bcc485e38ecce38a0ffb66a08b816d0dd6fb99
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Mar 20 00:04:38 2011 -0400

    printer: use inline-toolbar style on all listview toolbars

 panels/printers/printers.ui | 6 ++++++
 1 file changed, 6 insertions(+)

commit e2cb3282e276820cd27b7df06c7b3afe1718a811
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Mar 19 23:16:52 2011 -0400

    printers: fix alignment in secondary notebook pages

 panels/printers/printers.ui | 114 +++++++++++++++++++++++++++-----------------
 1 file changed, 69 insertions(+), 45 deletions(-)

commit 3689177e669c3c6e232d21da817cddd157a43ec8
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Mar 19 16:23:52 2011 +0100

    Updated Polish translation

 po/pl.po | 639 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 348 insertions(+), 291 deletions(-)

commit eb1fec869ff085e8fc4ff013c4bd76771ee211fc
Author: Aron Xu <aronxu@gnome.org>
Date:   Sat Mar 19 23:07:47 2011 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 2490 +++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1582 insertions(+), 908 deletions(-)

commit 3e46c3f817c37d67d1ba5b3829acc8ad02903c9a
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Mar 19 23:00:04 2011 +0900

    Updated Korean translation

 po/ko.po | 772 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 429 insertions(+), 343 deletions(-)

commit 000fe86c2165724d689dcf4367a502fe7f0d54c7
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Mar 19 14:50:26 2011 +0100

    Updated Spanish translation

 po/es.po | 243 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 125 insertions(+), 118 deletions(-)

commit 802e7443f8b769c679719c461af4eeb5e2a01c80
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Mar 19 02:29:43 2011 +0100

    Updated Hungarian translation

 po/hu.po | 612 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 296 insertions(+), 316 deletions(-)

commit d6e17b262202d22c3d6b1e38affbe4d8c3fe1cf2
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Mar 19 02:42:38 2011 +0200

    Updated Arabic translation

 po/ar.po | 593 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 311 insertions(+), 282 deletions(-)

commit 2582560cdc98859031f50ee9a104292b9cdc5dd1
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Fri Mar 18 22:16:39 2011 +0100

    Updated Serbian Translation

 po/sr.po       | 8021 ++++++++++++++++++++++----------------------------------
 po/sr@latin.po | 8019 ++++++++++++++++++++++---------------------------------
 2 files changed, 6251 insertions(+), 9789 deletions(-)

commit 2180139ae442ac4ca39f74b358a65bf405a647e7
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Mar 18 21:27:24 2011 +0100

    Updated Slovenian translation

 po/sl.po | 740 ++++++++-------------------------------------------------------
 1 file changed, 92 insertions(+), 648 deletions(-)

commit bea866cf6299d76031e617ba32c570e5287dec14
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Mar 18 14:58:06 2011 -0400

    universal-access: use NO_SENSITIVITY flag for g_settings_bind()
    
    Otherwise the sensitivity will be overridden with the setting
    writability.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645171

 panels/universal-access/cc-ua-panel.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 66af5ba820b91bc18dd09a15caf1601fa59bc738
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Fri Mar 18 20:09:09 2011 +0200

    Uploaded Ukranian

 po/uk.po | 212 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 123 insertions(+), 89 deletions(-)

commit 6b5e77de035f13bec92a10688b4a0b441ad23cc8
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Mar 18 18:45:42 2011 +0100

    Updated Slovenian translation

 po/sl.po | 569 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 290 insertions(+), 279 deletions(-)

commit 27346dc87d5836e552ca81dce7af9bef384b0d35
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Mar 18 11:30:34 2011 -0400

    keyboard: mark the scales as insensitive when the checkboxes are off
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645151

 panels/keyboard/gnome-keyboard-panel.ui | 4 ++--
 panels/keyboard/keyboard-general.c      | 8 ++++++++
 2 files changed, 10 insertions(+), 2 deletions(-)

commit dd7bd159390714c3921c9da1feea3aabbe92b8f6
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Mar 18 11:18:12 2011 -0400

    screen: set the label as insensitive when Lock is off
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645149

 panels/screen/cc-screen-panel.c | 1 +
 panels/screen/screen.ui         | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit ea317f5677b9c32dd0053ea154b9b0f4ddbd570f
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Mar 18 17:03:25 2011 +0100

    printers: Change text about unavailability of CUPS
    
    Change "The printing service (CUPS) is not running,
    please check with your system administrator." to
    "Sorry! The system printing service
     doesn't seem to be available." (#641421).

 panels/printers/printers.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6946159d84020d1e63de5069203b5aa44bfb9498
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 18 15:46:19 2011 +0000

    mouse: Check caps of the touchpad when added

 panels/mouse/gnome-mouse-properties.c | 23 +++++++++++++++++------
 1 file changed, 17 insertions(+), 6 deletions(-)

commit 189a24c280678c8b56ec6d3ee154ba93a7567918
Author: Alexander Larsson <alexl@redhat.com>
Date:   Fri Mar 18 16:37:22 2011 +0100

    Fix dragging rotated monitors
    
    Need to take rotation into account when handling the snapping.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641345

 panels/display/xrandr-capplet.c | 28 +++++++++++++++++++---------
 1 file changed, 19 insertions(+), 9 deletions(-)

commit a731dcb28b85d41eb9529de68da347409df119e1
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Mar 18 16:35:12 2011 +0100

    printers: Show IP address of printer
    
    Show address of printer in "IP Address" field.

 panels/printers/cc-printers-panel.c | 45 +++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

commit 2fd11caaaf1aad593947869e5775f21cd75d2d3b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 18 15:29:15 2011 +0000

    mouse: Don't forget to set the variables we use
    
    Otherwise we can't disconnect very much...

 panels/mouse/gnome-mouse-properties.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 11c9cf680ed8743373a828a9d30a72e457891b51
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Mar 18 10:51:03 2011 -0400

    universal-access: set the name to the right hboxes
    
    So that the label in the box gets the sensitive state propagated to it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645135

 panels/universal-access/uap.ui | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 7c3011c3522c5b4c38f80b5c0f66c56cca325def
Author: Alexander Larsson <alexl@redhat.com>
Date:   Fri Mar 18 15:47:37 2011 +0100

    Fix include not found for gsettings-desktop-schemas/cdesktop-enums.hs
    
    pkg-config --cflags gsettings-desktop-schemas lists:
     $incdir/gsettings-desktop-schemas
    and that directory contains a cdesktop-enums.hs file, so including
    <gsettings-desktop-schemas/cdesktop-enums.hs> will fail unless
    the parent directory also accidentally got added as -I.

 panels/datetime/cc-datetime-panel.c | 2 +-
 panels/display/xrandr-capplet.c     | 2 +-
 panels/printers/cc-printers-panel.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit dd397167906b5c36dc3e631ccb85c83f8802afee
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Mar 18 10:42:24 2011 -0400

    property-editor: use the right signalture for the notify::active callback
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645143

 libcinnamon-control-center/gconf-property-editor.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit e2f6f36b8e29efaf44ec80928cdb063276262f65
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Mar 18 14:45:57 2011 +0100

    printers: Handle no printers situation better
    
    Show "No printer available" in the device list.
    Show "Add New Printer" button on the right side.
    Show appropriate message if CUPS is not running.
    Fixes #641421.

 panels/printers/cc-printers-panel.c | 87 +++++++++++++++++++++++++++++++++----
 panels/printers/printers.ui         | 59 +++++++++++++++++++++++--
 2 files changed, 134 insertions(+), 12 deletions(-)

commit 88e192c03292d0d601ef1c71ee2d660e8223222d
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 18 12:16:26 2011 +0000

    network: add a warning to the user when the PAC textbox is empty and we're going to use WPAD
    
    If you choose Automatic and then don't fill in any configuration URL, it
    defaults to WPAD.
    
    But really, WPAD is a bad default anyway; if you enable it on an untrusted
    network, then anyone else on that network can tell your machine that it should
    proxy all of your web traffic through them.
    
    The best bet might be to just add some explanatory text to the (otherwise
    nearly-empty) Automatic page.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=641793

 panels/network/cc-network-panel.c | 49 +++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         | 49 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)

commit bedb8e12183f421a4f433d0e6e4bcfda57dd78db
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Mar 18 12:55:18 2011 +0100

    printers: Don't sort printers by usage
    
    It is very inefficient to get all jobs when there are
    thousands of them. Sort it alphabetically.

 panels/printers/cc-printers-panel.c | 86 +------------------------------------
 1 file changed, 1 insertion(+), 85 deletions(-)

commit f1d70389c0e5dc6e2c62c4f5510ff75b62b73ebf
Author: Frédéric Péters <fpeters@0d.be>
Date:   Fri Mar 18 11:58:32 2011 +0100

    Do not abort if an unknown user is signaled removed
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645118

 panels/user-accounts/um-user-manager.c | 2 ++
 1 file changed, 2 insertions(+)

commit ea4bb37914cb6b8be37bb7d70c7461d48d3a3d00
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Fri Mar 18 15:05:54 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 1735 ++++++++++++++++++++++++++--------------------------------
 po/zh_TW.po | 1764 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 1587 insertions(+), 1912 deletions(-)

commit e9e553579777c732f8c64d3e8c1ec103e7216d3e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 22:56:48 2011 -0400

    Network: Always select a device
    
    In particular, when removing the selected row, we need to manually
    select another one.
    https://bugzilla.gnome.org/show_bug.cgi?id=645095

 panels/network/cc-network-panel.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit b071eba8ebaf1c4b5d7caf9a28b506557d6c07d7
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 22:12:48 2011 -0400

    Network: Ellipsize the connection name label
    
    For custom or VPN connections, the name can get long, so
    better ellipsize, otherwise we risk resizing.

 panels/network/network.ui | 1 +
 1 file changed, 1 insertion(+)

commit 22d7b535fcd5f4525cb5285f6539472524802c47
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 21:43:24 2011 -0400

    Network: try to fix horizontal resizing problems
    
    Strip out an extra label between the device list and the right side
    to win some space, and force the right-hand sides on the proxy tab
    to not change size.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644981

 panels/network/network.ui | 33 ++++++++++++++++++++++-----------
 1 file changed, 22 insertions(+), 11 deletions(-)

commit 64ead43760efdc95d484161a38221550b8ddfae2
Author: Fran Dieguez <frandieguez@gnome.org>
Date:   Fri Mar 18 02:11:43 2011 +0100

    Updated Galician translations

 po/gl.po | 466 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 232 insertions(+), 234 deletions(-)

commit e0eb298781ad018a1f870ae157300d0af73741da
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Mar 17 20:56:32 2011 +0100

    Updated Spanish translation

 po/es.po | 518 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 268 insertions(+), 250 deletions(-)

commit 92c3f6dd6131a0aacd37bd8984c012762b7c13a1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Mar 17 15:07:46 2011 -0400

    all: set the 'inline-toolbar' style class to toolbars which need it
    
    https://bugzilla.gnome.org/show_bug.cgi?id=645059

 panels/background/background.ui                   | 3 +++
 panels/keyboard/gnome-keyboard-panel.ui           | 3 +++
 panels/network/network.ui                         | 3 +++
 panels/printers/printers.ui                       | 3 +++
 panels/region/gnome-region-panel.ui               | 3 +++
 panels/user-accounts/data/user-accounts-dialog.ui | 3 +++
 6 files changed, 18 insertions(+)

commit 7c70142969280890bacaab61881f8493649a6329
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Mar 17 15:07:09 2011 -0400

    network: add a missing include

 panels/network/cc-network-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit b0f62e4799bafed4b3224cfd78c41cb79666fe06
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Mar 17 20:04:06 2011 +0100

    Updated Spanish translation

 po/es.po | 252 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 146 insertions(+), 106 deletions(-)

commit 8d2e003abc89f6d611bce9f6d30bea6b7595583c
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Thu Mar 17 20:21:46 2011 +0200

    Uploaded Ukranian

 po/uk.po | 521 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 271 insertions(+), 250 deletions(-)

commit e9230d25fa8937a49dbd1f5498bd3fe4f8007ca6
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 17 16:33:03 2011 +0000

    network: actually switch the wireless networks when the combo is changed
    
    If we have an existing connection that matches the SSID, then we use that.
    Otherwise we create a connection and activate it.
    
    This fixes #644446

 panels/network/cc-network-panel.c | 101 ++++++++++++++++++++++++++++++++++++--
 1 file changed, 97 insertions(+), 4 deletions(-)

commit bc160c45377ae513c4ed30722a40a086613a9fe0
Author: David Zeuthen <davidz@redhat.com>
Date:   Thu Mar 17 10:34:25 2011 -0400

    Nuke supervised accounts
    
    The org.freedesktop.Accounts mechanism no longer supports supervised
    accounts as per the patch in
    
     https://bugs.freedesktop.org/show_bug.cgi?id=35390
    
    Therefore, nuke supervised accounts from the user interface as well.
    
    Signed-off-by: David Zeuthen <davidz@redhat.com>

 panels/user-accounts/data/account-dialog.ui       | 4 ----
 panels/user-accounts/data/user-accounts-dialog.ui | 4 ----
 panels/user-accounts/um-account-type.c            | 2 --
 panels/user-accounts/um-account-type.h            | 3 +--
 4 files changed, 1 insertion(+), 12 deletions(-)

commit af40513416bcbbbbcb9b5c839adea43aecac2bee
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 09:09:21 2011 -0400

    Network: fix the duplicate ap check
    
    We were getting the aps to check against from the wrong array.
    https://bugzilla.gnome.org/show_bug.cgi?id=644959

 panels/network/cc-network-panel.c | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit d1be44ba223504af995aa2c5a708f02b89e857bc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 08:54:44 2011 -0400

    Network: Avoid warnings

 panels/network/cc-network-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8d10eecc6659d6628d054bc62ae178803e931829
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Mar 17 13:28:13 2011 +0100

    [l10n] Updated German translation

 po/de.po | 299 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 154 insertions(+), 145 deletions(-)

commit 0f1c59b4e36ec2625f4145c5ed6802ac23ec9d46
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Mar 17 13:24:09 2011 +0100

    [l10n] Updated German translation

 po/de.po | 434 +++++++++++++++++++++++----------------------------------------
 1 file changed, 160 insertions(+), 274 deletions(-)

commit 0a918a27aadcb9f8e4dd9fa6ccb786829629f375
Author: Gerd Kohlberger <gerdk@src.gnome.org>
Date:   Thu Mar 17 01:02:16 2011 +0100

    shell: Fix resizing when switching from panel to panel
    
    set_active_panel_from_id doesn't remove the active
    panel from the notebook before adding a new one. After that the shell
    window can't shrink below the size of the original panel.
    
    This might also cause crashers as some parts of the panel are left
    alive, behind another notebook tab, ready to receive signals.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636596

 shell/cinnamon-control-center.c | 2 ++
 1 file changed, 2 insertions(+)

commit d7e7cf227876c9b1ab0c797eedc784411e38c5c9
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 17 09:45:56 2011 +0000

    network: show a device header for the proxy device
    
    This is the first half of #644981, although I need help from the designers for the rest.

 panels/network/cc-network-panel.c | 33 ++++++++++++++++++++-------------
 1 file changed, 20 insertions(+), 13 deletions(-)

commit b83d43d0cd472e94c0f0377ab03265a1acda5c03
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 17 09:35:15 2011 +0000

    network: use the new network-vpn icon from gnome-icon-theme

 panels/network/cc-network-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 886e53aaba679662d5499b48642d555c12d8a4d9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Mar 17 09:47:12 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 421 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 190 insertions(+), 231 deletions(-)

commit 93ad1eedf6bdee72f827fcfddd8dfc58d42f01e3
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Mar 17 01:43:22 2011 -0400

    screen: go back to using relative time in the lock ui
    
    This means that lock times are relative to the time the display
    backlight turns off.

 panels/screen/cc-screen-panel.c | 87 ++---------------------------------------
 panels/screen/screen.ui         |  4 ++
 2 files changed, 8 insertions(+), 83 deletions(-)

commit 28db9455f308fc02afcd38ea132466175fb7b1e2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 00:36:07 2011 -0400

    Network: forgotten file

 panels/network/network.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit f456f06153b462f037cb60ab825ba0fa22d38fdd
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 17 00:35:19 2011 -0400

    Network: don't use deprecated libnm-glib functions
    
    nm_access_point_get_hw_address() has been deprecated.

 panels/network/cc-network-panel.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit a52956abf6532aada193822ba1ae0e67aeec0ea3
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Mar 16 23:56:52 2011 -0400

    screen: drop converting between seconds and minutes
    
    All settings now use seconds for consistency.

 panels/screen/cc-screen-panel.c | 16 ----------------
 1 file changed, 16 deletions(-)

commit b6e340aaa1661513804d3a68aaa6ff0730ef0e1b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 23:41:56 2011 -0400

    Network: Use better label for IP address
    
    When we have only one of ip v4 or v6, just label it 'IP Address'.
    https://bugzilla.gnome.org/show_bug.cgi?id=644965

 panels/network/cc-network-panel.c | 47 ++++++++++++++++++++++++++++++---------
 1 file changed, 37 insertions(+), 10 deletions(-)

commit e43f922b89064d08dcde35ab898d36fdc2e35771
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 23:18:05 2011 -0400

    Network: Avoid header pixel noise and inconsistent spacing
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644954
    https://bugzilla.gnome.org/show_bug.cgi?id=644955

 panels/network/network.ui | 38 ++++++++++++++++++++++++--------------
 1 file changed, 24 insertions(+), 14 deletions(-)

commit 2df60eab71304665ef04fb7a5ee3bf3dfd758317
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 22:24:27 2011 -0400

    Network: Fix up visibility of fields
    
    When a device is unavailable / off, we show only the hardware address.
    Otherwise, we show speed / security / ssid.
    Other connection parameters are only shown when the connection is active.

 panels/network/cc-network-panel.c | 127 +++++++++++++++++++++-----------------
 panels/network/network.ui         |   2 +-
 2 files changed, 70 insertions(+), 59 deletions(-)

commit 96c7ab6f9a8d92d4b492d491231efb4518609a2c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 22:02:32 2011 -0400

    Network: Mark speed label as translatable
    
    Also, use the same units everywhere.

 panels/network/cc-network-panel.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit c93c35aef905877300f2eea753b6c13533b82a1d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 21:36:07 2011 -0400

    Network: Adjust wording of VPN status messages too

 panels/network/panel-common.c | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

commit e1b1be1f60960b49d6adc4e57eb88fbe37325047
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Mar 16 19:30:29 2011 -0400

    network: fix version compatibility warning dialog
    
    Make it use the correct parent window, improve the text, and
    not block startup.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644973

 panels/network/cc-network-panel.c | 84 ++++++++++++++++++++++-----------------
 1 file changed, 48 insertions(+), 36 deletions(-)

commit 4f000889ebf5890e4775dc2e0ca6121c52ef7fc6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 20:41:42 2011 -0400

    Network: Add padding above options buttons
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644957

 panels/network/network.ui | 4 ++++
 1 file changed, 4 insertions(+)

commit 67241cc1027f0a368e354bef1ab74404a271935e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 19:13:45 2011 -0400

    Network: adjust status strings
    
    Make the strings match what the shell network menu shows
    more closely.
    https://bugzilla.gnome.org/show_bug.cgi?id=644962

 panels/network/cc-network-panel.c |  7 +------
 panels/network/panel-common.c     | 28 +++++++++++-----------------
 panels/network/panel-common.h     | 13 +++++++------
 3 files changed, 19 insertions(+), 29 deletions(-)

commit e22dbc495fd51acc78172e919c1a33edd31e04f1
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 18:47:54 2011 -0400

    Network: Use dim-label style class for labels
    
    Also drop :s.
    https://bugzilla.gnome.org/show_bug.cgi?id=644958

 panels/network/network.ui | 150 ++++++++++++++++++++++++++++++++++++----------
 1 file changed, 120 insertions(+), 30 deletions(-)

commit 9fd3059bb788348427c55d27647b5bff7b417edd
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 18:23:27 2011 -0400

    Network: Drop tooltips on the device list
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644964

 panels/network/cc-network-panel.c | 4 ----
 panels/network/network.ui         | 3 ---
 2 files changed, 7 deletions(-)

commit 01c6b793ed0986b72611b6609cafc5212c6c461a
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Mar 16 17:27:24 2011 +0000

    network: keep the device/connections model up to date with reality
    
    Remove the ID parameter from the model, and move it to the NetDevice object.
    Remove the devices GPtrArray and use the mode for everything.
    Connect up the changed and deleted signals from NetObject and DTRT in the UI.

 panels/network/cc-network-panel.c | 370 +++++++++++++++++++-------------------
 panels/network/net-object.c       |  44 ++++-
 panels/network/net-object.h       |   5 +
 panels/network/net-vpn.c          |  40 ++++-
 panels/network/network.ui         |   6 +-
 5 files changed, 261 insertions(+), 204 deletions(-)

commit cb031cf06cb28f3384e734476a53225f5385fea5
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Mar 16 14:11:23 2011 +0000

    network: watch for new VPN connections being added and add them to the panel

 panels/network/cc-network-panel.c | 89 ++++++++++++++++++++++++++++++++-------
 1 file changed, 73 insertions(+), 16 deletions(-)

commit 8174d81b5d4fe4d72ac3f26ce17b1e048b5517d9
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 16 18:21:24 2011 +0100

    datetime: do not mark placeholder strings for translation

 panels/datetime/datetime.ui | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 31d4c39643e0dd1c0da915035a1e444733744a37
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 16 17:58:18 2011 +0100

    printer: avoid show a single space as translatable string

 panels/printers/new-printer-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 03c1b418dc3baa97cf4c1c03d9cd6ad91401bd8b
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 16 17:42:44 2011 +0100

    Updated Italian translation

 po/it.po | 215 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 113 insertions(+), 102 deletions(-)

commit 541b0e5f6694cb2b8651d0ec51e035fb2591cdc0
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 16 17:39:36 2011 +0100

    printer: do not mark for translation placeholder labels

 panels/printers/new-printer-dialog.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ea6215f1126693b12c6fd09cf4cd334e3b5aaea0
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Wed Mar 16 17:03:51 2011 +0100

    Updated Slovenian translation

 po/sl.po | 699 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 636 insertions(+), 63 deletions(-)

commit 1307be44765d9deff2fc04da2b76f0817d1f84c8
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Mar 16 17:06:37 2011 +0200

    Updated Hebrew translation.

 po/he.po | 248 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 147 insertions(+), 101 deletions(-)

commit 5b259bfe5661121092b5d41a9d8f223e930ddf30
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 16 13:48:08 2011 +0000

    mouse: Make touchpad tab appear when connected
    
    On-the-fly!

 panels/mouse/gnome-mouse-properties.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

commit 30fdeafef5c5feb679458ef9211caa8a78b07ce7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 16 13:18:47 2011 +0000

    mouse: Remove unused "start_page" code

 panels/mouse/gnome-mouse-properties.c | 23 +----------------------
 1 file changed, 1 insertion(+), 22 deletions(-)

commit e98b32d3691dd70dafdbedf0eab375da33be066c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 16 13:17:38 2011 +0000

    mouse: Use newly implemented dispose

 panels/mouse/cc-mouse-panel.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 4c2fcca2f69273999c9d00ef9edb367db477cb27
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 16 13:17:22 2011 +0000

    mouse: Implement dispose for the widget

 panels/mouse/gnome-mouse-properties.c | 13 +++++++++++++
 panels/mouse/gnome-mouse-properties.h |  1 +
 2 files changed, 14 insertions(+)

commit cf8465c250434b17561e05e18c7c39aebc5058c9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 16 13:12:11 2011 +0000

    mouse: Don't destroy the touchpad tab
    
    We might actually need it when a touchpad appears.

 panels/mouse/gnome-mouse-properties.c  | 54 ++++++++++++++++------------------
 panels/mouse/gnome-mouse-properties.ui |  2 +-
 2 files changed, 27 insertions(+), 29 deletions(-)

commit 2b2ea6bcca2378ab262b869c8d9251c0d9f2a2f5
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Mar 16 15:03:13 2011 +0200

    Updated Arabic translation

 po/ar.po | 185 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 103 insertions(+), 82 deletions(-)

commit 6c6c37609c609db9f74220ff6c453cc1457287ca
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 16 12:49:03 2011 +0000

    keyboard: Fix crasher when num workspace changes
    
    And the panel has already been closed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644784
    https://bugzilla.redhat.com/show_bug.cgi?id=684368

 panels/keyboard/keyboard-shortcuts.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

commit 976c9ce1c356c0ce8c4f7fa9ecbc37feb425c061
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Mar 16 12:32:09 2011 +0000

    network: when the user selects a VPN connection, allow them to delete it

 panels/network/cc-network-panel.c | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

commit ea13583edd0616759a75a5b05319772835dcf15c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 16 07:31:01 2011 -0400

    network: adapt to yesterdays libnm-glib api changes
    
    That's what you get for complaining about inconsistent api...more work :-)

 panels/network/cc-network-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 677a7744e235a20473f638fc582158ba28b2f848
Author: Fran Diéguez <fran@openhost.es>
Date:   Wed Mar 16 11:55:55 2011 +0100

    Updated Galician translations

 po/gl.po | 142 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 80 insertions(+), 62 deletions(-)

commit a1f8d28a20153fbae9168ecc2e7edcd7e80d6a6f
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Wed Mar 16 10:12:32 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 56 ++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 42 insertions(+), 14 deletions(-)

commit 499e34cf88f749037c99c1a1fdf623fec6cefd75
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Mar 16 07:34:38 2011 +0100

    Updated Swedish translation

 po/sv.po | 140 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 80 insertions(+), 60 deletions(-)

commit d4e155a2774f0c2a70a4de3486f8a33c56660e99
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 22:05:31 2011 -0400

    Network: Add a + button and make it do something
    
    In the short term, cheat by bringing up nm-connection-editor.
    In the future, we will do something better here.
    The newly created connections do net get picked up in the list
    of devices/connections yet.

 panels/network/cc-network-panel.c |  58 +++++++++++--
 panels/network/network.ui         | 170 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 222 insertions(+), 6 deletions(-)

commit cf8e083b9b353be529496fd96654137ea97854f4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 21:30:32 2011 -0400

    Network: Add Option buttons to allow editing connections
    
    In the short term, we cheat here by bringing up nm-connection-editor
    for an individual connection. This will be replaced by something
    better in the future.

 panels/network/cc-network-panel.c | 98 +++++++++++++++++++++++++++++++++++++--
 panels/network/network.ui         | 13 ++++--
 2 files changed, 103 insertions(+), 8 deletions(-)

commit e2a2d4f00e754494a2266a38c0e54eeb03d6a37a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 21:08:53 2011 -0400

    network: Refresh UI when active connections change
    
    This makes us pick up vpn connection state changes.

 panels/network/cc-network-panel.c | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

commit ea5f76247df74591527740777f1df8e711caae93
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 21:07:51 2011 -0400

    Network: fix a refcounting bug with vpn settings
    
    nm_connection_get_setting_by_name() does not return a reference,
    so we have to get one ourselves.

 panels/network/net-vpn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit eeb61932488eb99b13985c883f17ebc566f755e4
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 20:28:00 2011 -0400

    network: add an on/off switch for vpn connections
    
    The switch does successfully bring vpn connections up and down.
    Updating the rest of the panel does not work yet.

 panels/network/cc-network-panel.c | 57 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 56 insertions(+), 1 deletion(-)

commit 0c4f98dd941cb7510bf4b2bd125723833a16e120
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Wed Mar 16 00:42:49 2011 +0000

    region: fixed regression: automatically add grp:* if necessary
    
    If Nlayouts > 1, the layout switchit shortcut is defined automatically

 panels/region/gnome-region-panel-xkblt.c | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

commit 069c35d84e274255659c22e9d20aaa8f914c855b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 20:12:02 2011 -0400

    Network: fix an oversight in visibility handling
    
    The last change made the VPN header invisible by accident.

 panels/network/cc-network-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 41af4a3e42555044419bc31db935afdd80b02c8a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 19:59:15 2011 -0400

    Network: Get the correct VPN state
    
    The connection that gets passed to NetVPN is not a state-carrying
    NMActiveConnection, but just a configuration-carrying NmRemoteConnection.
    So asking it for the VPN connection state is never giving us anything
    interesting. Instead, we need to fish out the active connection
    corresponding to the VPN config (if any), and get the state from there.
    Still todo: state change notification.

 panels/network/cc-network-panel.c | 42 +++++++++++++++++++++++++++++++--------
 1 file changed, 34 insertions(+), 8 deletions(-)

commit 211461007c394d607b7c81e8f445bbf5cd07c914
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 17:43:09 2011 +0000

    region: Make drag'n'drop work
    
    By making sure we only store the layouts in the list store, and keep
    GSettings in sync with the list store, rather than constantly re-reading
    from GSettings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644783

 panels/region/gnome-region-panel-xkb.h      |   7 +-
 panels/region/gnome-region-panel-xkblt.c    | 282 ++++++++++++++++------------
 panels/region/gnome-region-panel-xkbltadd.c |  65 ++-----
 panels/region/gnome-region-panel-xkbpv.c    |  13 --
 4 files changed, 179 insertions(+), 188 deletions(-)

commit ef11349667d8d895108b23cb4babb72c6a4e9c69
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 17:42:39 2011 +0000

    region: Stop layout add dialogue from "jumping"
    
    By making sure it's not shown before its parent is set.

 panels/region/gnome-region-panel-layout-chooser.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4081d83ca7d7af2e7fcc68290ae9f489997f4de0
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 17:20:54 2011 -0400

    network: add a way to get the vpn connection object back
    
    This will be needed to activate/deactivate vpn.

 panels/network/net-vpn.c | 6 ++++++
 panels/network/net-vpn.h | 1 +
 2 files changed, 7 insertions(+)

commit 3163675d852e62ec943781f9bd5ba41ff1f57919
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 16:34:30 2011 -0400

    network: fix a typo
    
    Use an existing id for the proxy method model.

 panels/network/network.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6f916b00b9b9882c952f962fb970cdbf41f69947
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 15 16:33:01 2011 -0400

    network: Don't leak the remote settings
    
    Instead, we keep it around; it will be useful later on.

 panels/network/cc-network-panel.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 6b1ef58d87b053d402f686d9182b5821ae9d47f5
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Tue Mar 15 16:08:54 2011 +0100

    Updated Slovenian translation

 po/sl.po | 101 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 67 insertions(+), 34 deletions(-)

commit cfab2b73703c7801e86bd720422099a9a7cea9ed
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 14:25:41 2011 +0000

    build: Fix cups cflags sed script

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9b1dff0166b371eec3e7844fa31da6f6108a046c
Author: Saleem Abdulrasool <compnerd@compnerd.org>
Date:   Wed Mar 2 11:00:18 2011 -0800

    build: improve CUPS detection
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644064

 configure.ac | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 3789666fac1578555127e429e0d12eba7866bbcd
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   Tue Mar 15 13:40:15 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 2034 ++++++++------------------------------------------------------
 1 file changed, 258 insertions(+), 1776 deletions(-)

commit d6a419f0671260cba2fedbb4be27d06700d78aa2
Author: Fran Diéguez <fran@openhost.es>
Date:   Tue Mar 15 12:05:06 2011 +0100

    Updated Galician translations

 po/gl.po | 1527 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 927 insertions(+), 600 deletions(-)

commit c7179b6901c9a0f06ab017b1500b7d6ffe41b405
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Mar 15 12:03:58 2011 +0100

    printers: Set longer timeout for installation of printer driver
    
    Don't timeout when installing printer drivers.

 panels/printers/pp-new-printer-dialog.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit c6999c2f01f08b32d6db52b9c2d8b74300cf436f
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Mar 15 10:32:31 2011 +0100

    Updated Swedish translation

 po/sv.po | 958 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 542 insertions(+), 416 deletions(-)

commit 615422f0936b5b12b9d3724c9fa885e4110d3ceb
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Tue Mar 15 06:41:23 2011 +0200

    Uploaded Ukranian

 po/uk.po | 103 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 67 insertions(+), 36 deletions(-)

commit 54af1285f28367705fc0a55e62ac05ee79989cd9
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Mar 15 04:04:58 2011 +0100

    Updated Hungarian translation

 po/hu.po | 791 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 475 insertions(+), 316 deletions(-)

commit 7ae3dffc8b14e7571c46235c70fdab94a1f028b3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 02:02:29 2011 +0000

    datetime: Disable test-timezone for now

 panels/datetime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 56cd9069eed492655c3d79f21a89b987432d3a3c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 01:57:15 2011 +0000

    datetime: Don't crash when the timezone is unknown
    
    Passing "posixrules" to cc_timezone_map_set_timezone() certainly
    won't work that well.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=684593

 panels/datetime/cc-datetime-panel.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 33fb810c846c68a2cde2a784057b965287322aa6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 01:56:24 2011 +0000

    datetime: Add test program for missing TZ support
    
    We don't handle a number of timezones currently, including
    things like "posixrules", or even "Etc/GMT".

 panels/datetime/Makefile.am     |  9 ++++-
 panels/datetime/test-timezone.c | 81 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 88 insertions(+), 2 deletions(-)

commit 31be5be9c7d1333bde7eedb98c938fc12c814bca
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 01:35:51 2011 +0000

    datetime: Add hacks to support more timezones
    
    Such as posix/Europe/London, and the likes.

 panels/datetime/cc-timezone-map.c | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

commit cb3c0af71de8f64bc61acba434ccbf5882b29034
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 00:49:00 2011 +0000

    datetime: Return FALSE when we fail to find a timezone

 panels/datetime/cc-timezone-map.c | 10 ++++++++--
 panels/datetime/cc-timezone-map.h |  4 ++--
 2 files changed, 10 insertions(+), 4 deletions(-)

commit 9ab02da28bcb9fc364b8a5d2ca88e1aa52422ce4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 15 00:40:25 2011 +0000

    datetime: Rename test-timezone to test-timezone-gfx

 panels/datetime/Makefile.am         | 12 ++++----
 panels/datetime/test-timezone-gfx.c | 55 +++++++++++++++++++++++++++++++++++++
 panels/datetime/test-timezone.c     | 55 -------------------------------------
 3 files changed, 61 insertions(+), 61 deletions(-)

commit b160c1549b2bf18ed6c83c3af305a63d7b58f7ec
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 14 19:21:54 2011 -0400

    Network: Implement and show on/off switch for wireless/wimax
    
    These map to nm_client_wireless/wimax_set/get_enabled.

 panels/network/cc-network-panel.c | 122 ++++++++++++++++++++++++++++++++++++++
 panels/network/network.ui         |   3 +-
 2 files changed, 124 insertions(+), 1 deletion(-)

commit b7f42ae16146041db58b81520fccdb261768ef57
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 14 17:54:06 2011 +0000

    sound: Remove old support code for PA < 0.9.15

 panels/sound/gvc-mixer-control.c | 17 +++++------------
 panels/sound/gvc-mixer-sink.c    |  4 ----
 panels/sound/gvc-mixer-source.c  |  4 ----
 3 files changed, 5 insertions(+), 20 deletions(-)

commit 719dda1ada7578837fb4572e996358ebbf525229
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 14 15:14:59 2011 +0000

    user-accounts: Update cheeese minimum requirements

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a320dc9303a3c95ecdd50c4939f4039664b671fe
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 14 17:04:05 2011 -0400

    Network: Add a device off switch
    
    As seen in the mockups. This is currently hidden, until
    I figure out how to wire this up properly.

 panels/network/network.ui | 38 ++++++++++++++++++++++++++------------
 1 file changed, 26 insertions(+), 12 deletions(-)

commit 2314ab7bd8ed00dfaacc7bf048881f5fa3d8f44d
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Mon Mar 14 21:11:05 2011 +0100

    Updated Italian translation

 po/it.po | 212 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 136 insertions(+), 76 deletions(-)

commit 013ef371ea0c1ef73949783ec5b6211c10df5183
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Mar 14 21:03:17 2011 +0200

    Updated Arabic translation

 po/ar.po | 71 ++++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 51 insertions(+), 20 deletions(-)

commit d892e1b6b80fe72d46df68b769b8dbf131bf84b1
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Mar 14 14:55:36 2011 -0400

    printers: use dim-label to accentuate values

 panels/printers/printers.ui | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 936175eddf95084a399063975d1ef5fcbce54385
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Mar 14 14:14:56 2011 -0400

    user-accounts: use dim-label class instead of hardcoded color

 panels/user-accounts/data/account-dialog.ui       | 18 +++++++-------
 panels/user-accounts/data/password-dialog.ui      | 30 +++++++++++------------
 panels/user-accounts/data/user-accounts-dialog.ui | 30 +++++++++++------------
 3 files changed, 39 insertions(+), 39 deletions(-)

commit 242381cd85efe2036ed4a27b95a784804c47d5ce
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Mar 14 14:09:33 2011 -0400

    info: use dim labels
    
    Use a style class for labels that accentuates the value instead of
    the label text.

 panels/info/info.ui | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit ec36584a2466c126386f0204e27325a733d69716
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Mon Mar 14 19:47:53 2011 +0100

    Updated Slovenian translation

 po/sl.po | 103 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 55 insertions(+), 48 deletions(-)

commit 5b056c83d784721814d2e0ea4fd20505569f4393
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 14 18:35:55 2011 +0100

    Annotate new printer prefs window to ensure strings are extracted.

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 84c029dd943871031bdc99ca620646be136a1ca5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 14 18:35:35 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 43 ++++++++++++++++++++++++++++++++++++-------
 1 file changed, 36 insertions(+), 7 deletions(-)

commit 12591bbc2c9ee5c5f0342975b1d18286b4c04e84
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 14 13:17:51 2011 -0400

    Network: Fix label alignment
    
    The DNS fields are wrapping, and need to be left-aligned to
    look ok in that case.

 panels/network/network.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 080dabe3e46ab8704cab219de56486a0cfc41100
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Mar 14 17:21:39 2011 +0100

    printers: Call cupsGetDevices() asynchronously
    
    This patch makes PpNewPrinterDialog to call DevicesGet method
    asynchronously now.
    It also adds spinner to the lower left corner with label showing
    status of this operation (#644212).

 panels/printers/new-printer-dialog.ui   |  37 ++++++--
 panels/printers/pp-new-printer-dialog.c | 159 ++++++++++++++++++++++++--------
 panels/printers/printers.ui             |   2 +-
 3 files changed, 155 insertions(+), 43 deletions(-)

commit 64650538049a6f42a2d330f1275a9c3d7d9f2e97
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Tue Mar 15 00:13:36 2011 +0900

    Updated Japanese translation.

 po/ja.po | 3275 ++++++++++----------------------------------------------------
 1 file changed, 484 insertions(+), 2791 deletions(-)

commit d31cbc202316db812d2a14bc8672f2c9793d486c
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun Mar 13 19:54:19 2011 +0100

    Update Czech translation by Ondrej Kopka
    
    Reviewed by: Petr Kovar.

 po/cs.po | 7415 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4595 insertions(+), 2820 deletions(-)

commit 137d2595c57e08eb8de40d72a3ed87e66b142c84
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Mar 13 17:35:21 2011 +0100

    Updated German translation

 po/de.po | 764 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 451 insertions(+), 313 deletions(-)

commit 8c17b1b339e8fa85f28296f10d75a870ecfc3aa1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 13 16:26:19 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 243 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 155 insertions(+), 88 deletions(-)

commit e98f4efb6e253f4c9b4b169b300d68817d4fec9f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Mar 13 12:11:14 2011 +0100

    Updated Spanish translation

 po/es.po | 233 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 139 insertions(+), 94 deletions(-)

commit 7e7c3c16c36a68a082ff03f61656850e6f9cccdd
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Mar 13 09:51:13 2011 +0200

    Updated Hebrew translation.

 po/he.po | 103 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 55 insertions(+), 48 deletions(-)

commit 4109335861a4bdfaf5e9d3c11ca24a8ca5900f6e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Mar 13 00:39:13 2011 -0500

    Mouse: set up scroll method radios initially
    
    The panel was always coming up with scrolling disabled.
    https://bugzilla.gnome.org/show_bug.cgi?id=644223

 panels/mouse/gnome-mouse-properties.c | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

commit 451b7edf373e9e97b9b011eb9561b36ca0e1e13f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Mar 13 00:26:50 2011 -0500

    Mouse: don't reuse the same adjustments
    
    The acceleration and sensitivity sliders on the mouse and touchpad
    tabs were sharing the same adjustment, which doesn't really work.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644223

 panels/mouse/gnome-mouse-properties.ui | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

commit d120490013716e5bf4b856e6a45f410af02db384
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sun Mar 13 01:04:50 2011 +0000

    Using separate window group to avoid modal shadowing
    
    The idea by mclasen. Non-modal preview for modal "add layout" popup

 panels/region/gnome-region-panel-xkbltadd.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 9a7a1216f5ff1ab39cb1d0bb33ae4f6355a24473
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Mar 12 23:44:28 2011 +0000

    Updated Portuguese translation

 po/pt.po | 114 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 61 insertions(+), 53 deletions(-)

commit 3d9cd4be39cdee04fea4203008dfdbe6ebfe326b
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Mar 12 23:43:27 2011 +0000

    Updated Portuguese translation

 po/pt.po | 5647 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 3622 insertions(+), 2025 deletions(-)

commit 367f1ab790edbb1a7006246270fd8bdac1235f9e
Author: Frédéric Péters <fpeters@0d.be>
Date:   Sat Mar 12 20:49:20 2011 +0100

    Add missing timezone files
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630261

 panels/datetime/Makefile.am            |   5 +++--
 panels/datetime/data/cc.png            | Bin 53948 -> 52271 bytes
 panels/datetime/data/timezone_-11.png  | Bin 7406 -> 8347 bytes
 panels/datetime/data/timezone_14.png   | Bin 0 -> 7722 bytes
 panels/datetime/data/timezone_8.75.png | Bin 0 -> 13993 bytes
 panels/datetime/data/timezone_8.png    | Bin 16725 -> 16050 bytes
 6 files changed, 3 insertions(+), 2 deletions(-)

commit fc1150fe67fa858b0693238afaa6ddf18fc68b77
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Sat Mar 12 23:51:56 2011 +0200

    Uploaded Ukranian

 po/uk.po | 210 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 128 insertions(+), 82 deletions(-)

commit bcddf3d47c08d0e5f41a568366701725d503eb2d
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Thu Mar 10 20:32:28 2011 +0200

    Uploaded Ukranian

 po/uk.po | 176 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 112 insertions(+), 64 deletions(-)

commit 243c11712b2bff2e970cd68c139bebb58198250a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Mar 12 15:46:16 2011 -0500

    Network: fix some alignment and focus issues
    
    Make the wireless network combo focusable, but not editable.
    Make all the proxy labels right-aligned and equal size.
    There is still an overall size problem with the proxy page.

 panels/network/network.ui | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

commit 459328c5b8fc53250da8d0d9d9d2740fe9401415
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Mar 12 22:14:29 2011 +0200

    Updated Arabic translation

 po/ar.po | 186 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 99 insertions(+), 87 deletions(-)

commit bc34b8777537bf15577aa70be780e93376754cb2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Mar 12 15:12:53 2011 -0500

    Network: Reinstate the proxy method model
    
    Glade was playing tricks on me there.

 panels/network/network.ui | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 9f07f2b9bed4aeb246ef8c53bd7588b548f2c1e5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Mar 12 15:02:58 2011 -0500

    Network: Add mnemonics
    
    Make the panel keynav friendly by setting up mnemonics for active
    controls.

 panels/network/network.ui | 41 ++++++++++++++++++++++++++++++-----------
 1 file changed, 30 insertions(+), 11 deletions(-)

commit ed5f4f5fdf59e6594dd0d910cce4d673c5511d70
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Mar 12 14:27:22 2011 -0500

    Network: Add Option buttons
    
    Following the design. These are currently hidden, until we have
    something to show there.

 panels/network/network.ui | 448 +++++++++++++++++++++++++++++++++++++---------
 1 file changed, 364 insertions(+), 84 deletions(-)

commit 6719082f1eee29bb83436db91387de83ac325f75
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Mar 12 23:31:38 2011 +0900

    Updated Korean translation

 po/ko.po | 687 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 405 insertions(+), 282 deletions(-)

commit 912a90348b595ced1e7cdf211b799342ebdbf43c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Mar 12 10:04:46 2011 +0100

    Updated Spanish translation

 po/es.po | 71 ++++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 49 insertions(+), 22 deletions(-)

commit bed3d6b16b1f4da147025f4c21fa27f2c12892e8
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Mar 12 06:19:11 2011 +0200

    Updated Hebrew translation.

 po/he.po | 112 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 68 insertions(+), 44 deletions(-)

commit 09c72ea541392ee4ab87d3beb3ba71e186f724d5
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Mar 11 22:49:41 2011 +0100

    Updated Italian translation

 po/it.po | 391 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 244 insertions(+), 147 deletions(-)

commit 284dd26273261436b1edd53191222fca0ee2c9be
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Mar 11 20:08:46 2011 +0100

    Updated Slovenian translation

 po/sl.po | 680 ++++++++-------------------------------------------------------
 1 file changed, 86 insertions(+), 594 deletions(-)

commit 29b2b6cb05d416e458a5ea94c2a972cdcd277eb0
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Mar 11 16:22:51 2011 +0000

    sound: Add introspection info for new GIcon function

 panels/sound/gvc-mixer-stream.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit a9555f52d0b22413eb8f63a49d8bc3503ca5e228
Author: Colin Guthrie <cguthrie@mandriva.org>
Date:   Fri Mar 11 15:45:57 2011 +0000

    sound: Use upstream value for amplified volume
    
    In order to standardise various separate volume UIs,
    upstream PulseAudio has made a new define available for the
    recommended
    maximum volume to show in UIs. This volume was chosen to be
    similar to the value currently employed in gvc but also be
    based on dB values rather than a multiple of PA_VOLUME_NORM.
    
    The 150% value previously used mapped to +10.57dB with the
    current cubic volume mapping. In the interests of sanity,
    and with a tip of the hat to Spinal Tap, we decreed that the
    value should be +11dB. This is approx 153% which is doesn't really
    change the visual look of GVC.
    
    I will also be recommending other volume controls use this new
    value so everyone can use the mixer they want.
    
    This one goes up to 11. :)
    
    References:
    https://tango.0pointer.de/pipermail/pulseaudio-discuss/2010-April/006945.html
    https://tango.0pointer.de/pipermail/pulseaudio-discuss/2010-April/006950.html
    http://en.wikipedia.org/wiki/Up_to_eleven
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644292

 panels/sound/gvc-channel-bar.c   |  5 +++--
 panels/sound/gvc-mixer-control.c | 17 +++++++++++++++++
 panels/sound/gvc-mixer-control.h |  3 +++
 3 files changed, 23 insertions(+), 2 deletions(-)

commit 83c681ee9e93073d351c9916fbcd1b203a858b51
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 11 15:29:15 2011 +0000

    sound: Fix ordering of typedefs
    
    When building without PulseAudio includes.

 panels/sound/gvc-pulseaudio-fake.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ed04eaeb03512e6f1a6e98580e047c6332af0a5d
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 16:13:17 2011 +0000

    network: ensure we refresh the UI if coldplug devices are changed

 panels/network/cc-network-panel.c | 36 ++++++++++++++++++++----------------
 panels/network/net-device.c       | 14 ++++++++++++++
 2 files changed, 34 insertions(+), 16 deletions(-)

commit 3bee2844a7e441cf5360a9d49290615725de1fd1
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 15:56:49 2011 +0000

    network: use the new network-wired-disconnected icon
    
    You need to build a gnome-icon-theme from git for this to work correctly.

 panels/network/cc-network-panel.c | 2 +-
 panels/network/panel-common.c     | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

commit 96026dae34026d5851d418b3721286adc172199a
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 15:53:54 2011 +0000

    network: do not show a speed of zero for any device

 panels/network/cc-network-panel.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit eeac17e2265bde858ddcf807c2243abaf9d2d9b4
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 15:13:20 2011 +0000

    network: display a different icon if the wired ethernet device is disconnected

 panels/network/panel-common.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 4fc48a3fb3c9f0d3c76d205e659ec8291317ba0b
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 15:04:15 2011 +0000

    network: a disconnected wired connection is 'Unplugged', not 'Disconnected'

 panels/network/cc-network-panel.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 5421992af87b6b64131363854c51428729eb8030
Author: Hugo Vaz Sampaio <hvazsampaio@gmail.com>
Date:   Fri Mar 11 11:50:09 2011 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 6032 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3151 insertions(+), 2881 deletions(-)

commit 639e87724e7d991660c2a06617e2ba0ba4ed8ef3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 11 13:16:03 2011 +0000

    datetime: Make 24h setting changeable without unlocking
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643891

 panels/datetime/cc-datetime-panel.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 96ff9114e161d77014efc270573600ff456fd95c
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Mar 11 15:08:09 2011 +0200

    Updated Arabic translation

 po/ar.po | 101 ++++++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 77 insertions(+), 24 deletions(-)

commit 0d2903f1c4768052f0670ae65d7ce1dada515cf9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 11 13:01:23 2011 +0000

    datetime: Change combobox when map is clicked
    
    https://bugzilla.redhat.com/show_bug.cgi?id=684072

 panels/datetime/cc-datetime-panel.c | 39 +++++++++++++++++++++++++------------
 1 file changed, 27 insertions(+), 12 deletions(-)

commit 7914025e1f2efe6ecd0d2efaf11b9fd624e695a4
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 12:56:14 2011 +0000

    network: show the VPN connection state in the panel header

 panels/network/cc-network-panel.c | 24 ++++++++++++++++++--
 panels/network/net-object.c       | 25 ++++++++++++++++----
 panels/network/net-object.h       |  3 +++
 panels/network/net-vpn.c          | 27 ++++++++++++++++++++++
 panels/network/net-vpn.h          |  3 +++
 panels/network/panel-common.c     | 48 +++++++++++++++++++++++++++++++++++++++
 panels/network/panel-common.h     |  2 ++
 7 files changed, 125 insertions(+), 7 deletions(-)

commit bb70c1bd1a9d3fa9c7e22f8fa3779bc7f99684a2
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 12:28:14 2011 +0000

    network: use an abstract device so we can get the VPN connection data

 panels/network/Makefile.am        |   6 ++
 panels/network/cc-network-panel.c | 102 ++++++++++++++++++++++++---------
 panels/network/net-device.c       |  83 +++++++++++++++++++++++++++
 panels/network/net-device.h       |  63 +++++++++++++++++++++
 panels/network/net-object.c       |  94 +++++++++++++++++++++++++++++++
 panels/network/net-object.h       |  59 +++++++++++++++++++
 panels/network/net-vpn.c          | 115 ++++++++++++++++++++++++++++++++++++++
 panels/network/net-vpn.h          |  66 ++++++++++++++++++++++
 panels/network/network.ui         |   8 +--
 9 files changed, 566 insertions(+), 30 deletions(-)

commit 199774f0872064d425207b9a9a7f1dbe5641e9f8
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Mar 11 10:27:23 2011 +0000

    network: never show the loop device if IP4 data isn't available

 panels/network/cc-network-panel.c | 28 ++++++++++++++++++++++++++++
 panels/network/network.ui         |  4 ++--
 2 files changed, 30 insertions(+), 2 deletions(-)

commit d0704a68827122c5d61e4dfff7c88ebf39498b55
Author: Frédéric Péters <fpeters@0d.be>
Date:   Thu Mar 10 17:40:53 2011 +0100

    Fix linking of libshortcuts against X
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644410

 configure.ac              | 1 +
 panels/common/Makefile.am | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 722660617af07b241a4b3d00784ea3cc7a91fb50
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Mar 11 08:43:32 2011 +0200

    Updated Hebrew translation.

 po/he.po | 31 ++++++++++++++++++++-----------
 1 file changed, 20 insertions(+), 11 deletions(-)

commit 31c90f3ad593d9520d4ce7043285d78d7075342d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 10 21:43:09 2011 -0500

    Sound: Fix scroll event handling of channel bars
    
    Scrolling in any direction always went down. Very frustrating
    experience...
    https://bugzilla.gnome.org/show_bug.cgi?id=644462

 panels/sound/gvc-channel-bar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f74df686219ffe4121bfd9f17fd4e4227dfa9ba9
Author: A S Alam <aalam@users.sf.net>
Date:   Fri Mar 11 07:30:05 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 108 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 81 insertions(+), 27 deletions(-)

commit 5eaf72f654b78f3756b339c765f5d72873d55c9e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 10 19:39:08 2011 -0500

    Printers: Attach 'add printer' dialog to toplevel
    
    It was already transient-for and modal, just missing the
    right window type.
    https://bugzilla.gnome.org/show_bug.cgi?id=644213

 panels/printers/new-printer-dialog.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d032666d06e203ebf850c522723be17ffb492a9b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 10 19:10:47 2011 -0500

    Bump GTK+ dep to 3.0.2
    
    This is necessary because we assign style classes in .ui files.
    https://bugzilla.gnome.org/show_bug.cgi?id=644182

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 22bd03db52c3b54cc12bdd1467e80335c0042d70
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Mar 10 19:03:51 2011 -0500

    Screen: Fix the delay acrobatics
    
    The special-casing of lock delay 0 was wrong, since the > 0 check
    was happening after converting to absolute.
    https://bugzilla.gnome.org/show_bug.cgi?id=644403

 panels/screen/cc-screen-panel.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

commit 2ef2db18a01affb39eabb5b878e2b178326c872e
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 18:30:39 2011 +0000

    network: add the work in progress VPN code
    
    More to follow tomorrow...

 panels/network/cc-network-panel.c | 71 ++++++++++++++++++++++++++++++++++-----
 1 file changed, 62 insertions(+), 9 deletions(-)

commit 282e084301a97ca7b2c35a837c57e0b4c21383f0
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 17:21:03 2011 +0000

    network: display the IPv6 address if one is provided for the device

 panels/network/cc-network-panel.c | 37 ++++++++++++++++++++++++++++++++-----
 1 file changed, 32 insertions(+), 5 deletions(-)

commit b7886616632566ed4f9ec7a4bd4ba0adbb71ad0f
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Mar 10 18:19:23 2011 +0100

    Updated Slovenian translation

 po/sl.po | 64 +++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 43 insertions(+), 21 deletions(-)

commit c7af64a679db07645ff6ee87910a310302c5d9a4
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Mar 10 19:03:04 2011 +0200

    Updated Hebrew translation.

 po/he.po | 179 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 112 insertions(+), 67 deletions(-)

commit 8fd8cb5d518f4824148a55fd00ac2fdba4d2b050
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 14:54:23 2011 +0000

    network: Hide UI controls that are not connected up to anything yet

 panels/network/cc-network-panel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit a2f3a4312be836de0ef99d56674227e982ac7ebb
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 14:50:11 2011 +0000

    network: nm_device_wifi_get_bitrate() returns values in kb/s, not Mb/s

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ef3c9d13156544df2fee82a58152225429801b4f
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 14:24:09 2011 +0000

    network: do not show the IPv6 address if nm_device_get_dhcp6_config() failed

 panels/network/cc-network-panel.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 560fea4bc499e34877656c18c124cac0558fd489
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 14:04:02 2011 +0000

    network: do not show a provider string for mobile broadband devices when not connected

 panels/network/cc-network-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 5ecc2ca3d660341b3b75b6302dac2d9e96a7d3b8
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Mar 10 12:30:44 2011 +0100

    Updated Polish translation

 po/pl.po | 42 ++++++++++++++++++++++++++++++++----------
 1 file changed, 32 insertions(+), 10 deletions(-)

commit a597124e2646c8ff45e72bd9f8a0fd751475cd28
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 10:37:58 2011 +0000

    network: show the wireless security currently being used

 panels/network/cc-network-panel.c | 50 ++++++++++++++++++++++++++++++++++++---
 1 file changed, 47 insertions(+), 3 deletions(-)

commit 25530a889855db2f2fb9204426f9db432c1a4569
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Mar 10 10:37:24 2011 +0000

    network: fixup a trivial warning from mclasens fix

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bf4489c5ef191898e8d59c87d4d6d1bc10ab70c0
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Wed Mar 9 20:55:11 2011 +0100

    Updated Polish translation

 po/pl.po | 5850 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 2777 insertions(+), 3073 deletions(-)

commit 60423be87fd9ff3df65650a5f5ce68eaf9703b44
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Mar 9 19:40:19 2011 +0100

    Updated Spanish translation

 po/es.po | 51 +++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 37 insertions(+), 14 deletions(-)

commit 6b0473b00905f7d385926260fc9c4d70cdde3c18
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Wed Mar 9 16:48:46 2011 +0000

    Updated British English translation

 po/en_GB.po | 5480 ++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 3583 insertions(+), 1897 deletions(-)

commit 9d7e8db02d0044f8946eca00d05ff1aa0a0c606a
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Wed Mar 9 17:49:30 2011 +0100

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a8f8bae7ca0243e388a5eca0a9e6d087403d09c5
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Wed Mar 9 17:39:26 2011 +0100

    Updated Slovenian translation

 po/sl.po | 3751 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2419 insertions(+), 1332 deletions(-)

commit 73f9bffb3c37284a42c8aa48cbcfdfd147c1c8ed
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 9 13:33:08 2011 +0000

    background: Use new picture-uri GSettings key
    
    https://bugzilla.gnome.org/show_bug.cgi?id=633983

 panels/background/cc-background-panel.c | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

commit 1d9806fe81f8630308d30edd31e3dc911f817293
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Mar 8 19:26:02 2011 -0500

    Network: don't be shy
    
    The moment the network panel actually met a real-life NM 0.9, it would
    crash and burn...

 panels/network/cc-network-panel.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit ea92ba62e3ad19f50882a6864805d23caeddd834
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Mar 9 00:41:34 2011 +0200

    Updated Arabic translation

 po/ar.po | 126 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 76 insertions(+), 50 deletions(-)

commit 5fdc90cc8b04c3224394fee615d265dbb8632616
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 8 11:36:13 2011 +0000

    2.91.91
    
    Fix wrong include lines, so distcheck works

 NEWS                                  | 42 +++++++++++++++++++++++++++++++++++
 configure.ac                          |  4 ++--
 panels/datetime/cc-datetime-panel.c   |  2 +-
 panels/display/Makefile.am            |  3 ++-
 panels/printers/cc-printers-panel.c   |  2 +-
 panels/universal-access/cc-ua-panel.c |  2 +-
 panels/user-accounts/um-user-panel.c  |  2 +-
 7 files changed, 50 insertions(+), 7 deletions(-)

commit a7e5f367b54fbeab26fa6a38e01607d0b4c0817a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Mar 8 12:21:47 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 153 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 89 insertions(+), 64 deletions(-)

commit cff8677531a010f0e6340b7833eda0eaa0eff56b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 21:41:39 2011 +0100

    universal-access: Add #include <config.h> to make translations work.

 panels/universal-access/cc-ua-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit fea9ed5d368e53471f2c34f8ac3a128c730a80d3
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Mar 8 10:41:56 2011 +0100

    l10n: include new add printer files

 po/POTFILES.in | 2 ++
 1 file changed, 2 insertions(+)

commit 968b3adbe51558a2f6ffad867da866b9e550a293
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 8 07:58:52 2011 +0000

    datetime: Add test application for date endianess

 panels/datetime/Makefile.am      |  9 ++++++--
 panels/datetime/test-endianess.c | 49 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+), 2 deletions(-)

commit 2898b86e68be5be01e8fe5bba72f2df87e92225d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 8 07:57:37 2011 +0000

    datetime: Implement date endianess detection
    
    Implement fairly robust detection of endianess based on
    the d_fmt format exported by glibc.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636896

 panels/datetime/cc-datetime-panel.c |   2 +-
 panels/datetime/date-endian.c       | 131 ++++++++++++++++++++++++++++++++++--
 panels/datetime/date-endian.h       |   6 +-
 3 files changed, 130 insertions(+), 9 deletions(-)

commit c93e7add24047ed51d693d1f835f235e5c9e3592
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Mar 8 06:47:19 2011 +0000

    datetime: Add UI code to reorder date widgets
    
    Based on the locale's date format, rather than only support
    the US-centric version.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636896

 panels/datetime/Makefile.am         |  2 ++
 panels/datetime/cc-datetime-panel.c | 38 ++++++++++++++++++++++++++
 panels/datetime/date-endian.c       | 53 +++++++++++++++++++++++++++++++++++++
 panels/datetime/date-endian.h       | 30 +++++++++++++++++++++
 4 files changed, 123 insertions(+)

commit d2a87ebe151c40f096498916841b0254881240f5
Author: A S Alam <aalam@users.sf.net>
Date:   Tue Mar 8 08:42:35 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 267 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 131 insertions(+), 136 deletions(-)

commit 233816f028b9e79d62e6cd6b8eb3c2d0df5b4487
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Mar 7 23:07:59 2011 +0000

    Bumping libgnomekbd version requirement to 2.91.91

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b86c55cf47aeb6743ab6f2d85cee5500a79a1239
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Mar 7 16:20:11 2011 -0500

    shell: oops gmenu_tree isn't a gobject
    
    So don't unref it like one.

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6ee33377a2370e589a5df7823395743d90bb5586
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Mar 7 19:26:07 2011 +0100

    Updated Spanish translation

 po/es.po | 98 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 51 insertions(+), 47 deletions(-)

commit 603bd190e9d933b1cccb7b0cd07ca7e51a33feb9
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Mar 7 19:18:33 2011 +0100

    Updated Spanish translation

 po/es.po | 36 +++++++++++++++++-------------------
 1 file changed, 17 insertions(+), 19 deletions(-)

commit 6653f3276e3b450cbf987a5d5c57ef67f499c410
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 7 17:54:57 2011 +0000

    shell: Fix warning in renderer

 shell/shell-search-renderer.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 3fb4d4af2745124c3d370c0fcc94fdb5886af245
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Mar 7 17:09:00 2011 +0100

    printers: Add dialog for adding new printers
    
    The dialog is able to add printers discovered by cupsGetDevices().
    It can also add printers from a remote CUPS server by typing
    its address and selecting printer we want to add (#640734).

 panels/printers/Makefile.am             |    5 +
 panels/printers/cc-printers-panel.c     |  273 +++-----
 panels/printers/new-printer-dialog.ui   |  247 +++++++
 panels/printers/pp-new-printer-dialog.c | 1066 +++++++++++++++++++++++++++++++
 panels/printers/pp-new-printer-dialog.h |   39 ++
 panels/printers/pp-utils.c              |  385 +++++++++++
 panels/printers/pp-utils.h              |   59 ++
 7 files changed, 1887 insertions(+), 187 deletions(-)

commit c96cc691026084eea4db47ee8050f553a8cbfcc2
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Mar 7 10:42:54 2011 -0500

    shell: add primary-toolbar style class to the toolbar

 shell/shell.ui | 3 +++
 1 file changed, 3 insertions(+)

commit a05799ef39ba026eba828f5966fa4b541b27409b
Author: Jiro Matsuzawa <matsuzawa.jr@gmail.com>
Date:   Mon Mar 7 00:26:23 2011 +0900

    Updated Japanese translation.

 po/ja.po | 5515 +++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 3873 insertions(+), 1642 deletions(-)

commit b6a7cd222f84b25c2edd61eed4fb277a044b65b6
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Mar 6 21:13:19 2011 +0700

    po/vi.po: "Phòng bị" is better than "Phòng hờ"

 po/vi.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 460ecf2c01e93c5496d00330d1c2c8f46a49fb2e
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Mar 6 19:03:38 2011 +0700

    Updated Vietnamese translation

 po/vi.po | 543 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 207 insertions(+), 336 deletions(-)

commit 5cc12a54de2a27bdcff4a62fc3b71788e10e4687
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Mar 6 18:35:43 2011 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 3142 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2029 insertions(+), 1113 deletions(-)

commit 307f81e419286026d3c0474165f273a8d0aca527
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Mar 6 05:01:29 2011 -0500

    Reload the list of panels when the menu changes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630902

 shell/cinnamon-control-center.c | 129 ++++++++++++++++++++++++++++---------------
 1 file changed, 85 insertions(+), 44 deletions(-)

commit f87adffad2e8ec0e164b46497b2569834aa4e17e
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Sat Mar 5 17:10:31 2011 +0200

    Uploaded Ukranian

 po/uk.po | 2372 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1478 insertions(+), 894 deletions(-)

commit 04a12e62b90fc99122757255d974d4b6f35dc185
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Sat Mar 5 16:08:20 2011 +0200

    Uploaded Ukranian

 po/uk.po | 638 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 323 insertions(+), 315 deletions(-)

commit 1fe08078b7c4b75597e2ebbd0d1bd63a8d290cc7
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Mar 5 11:38:06 2011 +0100

    Added Spanish translation

 po/es.po | 185 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 90 insertions(+), 95 deletions(-)

commit e3fa37f99296be44b6adc9663eceb02cad6c25c2
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Mar 5 11:35:02 2011 +0100

    Added Spanish translation

 po/es.po | 235 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 134 insertions(+), 101 deletions(-)

commit e02e1babc967386311c1aad665fa9c5ff5a1b44d
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Mar 4 16:48:42 2011 +0200

    Updated Arabic translation

 po/ar.po | 164 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 83 insertions(+), 81 deletions(-)

commit 0a5ba58fe437c906dbc872e648728cce871db117
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Mar 4 12:55:25 2011 +0100

    configure: Fix build if cheese is explicitly disabled
    
    If --with-cheese=no is passed, the BUILD_CHEESE conditional is never
    defined and the build breaks - move the call to AM_CONDITIONAL to
    define it in any case.

 configure.ac | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 78d6115c4c7d8b9d43d6c5f179a0a82ca5373a48
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Mar 4 07:02:14 2011 +0200

    Updated Hebrew translation.

 po/he.po | 164 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 83 insertions(+), 81 deletions(-)

commit 9f148dd316cf1fd5482ce69b936b40246c6d566b
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Mar 4 02:40:44 2011 +0100

    Updated Italian translation

 po/it.po | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit 5a5ddf9535452515a1e34512e025040c6d0d3cff
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 4 01:14:47 2011 +0000

    info: Add a few more keywords to the desktop file
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643832

 panels/info/gnome-info-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dd93bbae3196e230826dc94185cc7b57b3f8586f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Mar 4 00:09:19 2011 +0000

    build: Update libgnomekbd dependencies

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3758211330fca597643db97538942c200b608f1e
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Thu Mar 3 21:36:02 2011 +0100

    Updated French Translation
    
    Contributed by Gérard Baylard and Bruno Brouard

 po/fr.po | 6034 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 2813 insertions(+), 3221 deletions(-)

commit bc5c05fef5405eba9e12919e45dc45e6b30f3953
Author: Colin Walters <walters@verbum.org>
Date:   Thu Mar 3 15:08:57 2011 -0500

    configure: Also require a new enough version of cheese

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 95b4771bc5e657a0af0220b3bfc6dd41b95e3407
Author: Colin Walters <walters@verbum.org>
Date:   Thu Mar 3 14:41:53 2011 -0500

    configure: error out if cheese is configured but not enabled

 configure.ac | 3 +++
 1 file changed, 3 insertions(+)

commit 1b7ce6ee5aec42e614a8fdd04bc3f54bfe1dfc95
Author: Colin Walters <walters@verbum.org>
Date:   Thu Mar 3 14:12:23 2011 -0500

    configure: Make cheese detection auto
    
    Simply detect cheese availability, and build with if it is.
    This helps people jhbuilding the gnome-shell moduleset.

 configure.ac                     |  9 ++++++---
 panels/user-accounts/Makefile.am | 10 ++++++++--
 2 files changed, 14 insertions(+), 5 deletions(-)

commit 975c3aea6a416d78d092d98b980ae18e25cb95b3
Author: Colin Walters <walters@verbum.org>
Date:   Thu Mar 3 13:25:09 2011 -0500

    info: Fix ui widget references
    
    This should have been rebased into the earlier patches.

 panels/info/info.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f6b0ae89af8fe1f34c7e1c16f57276c8e4a100b1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 3 13:24:23 2011 +0000

    universal-access: Use "text-scaling-factor" instead of "dpi"
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643704

 panels/universal-access/cc-ua-panel.c | 118 +++++-----------------------------
 1 file changed, 15 insertions(+), 103 deletions(-)

commit 4e27e36593064508f34e47b8f38cbb602358cf98
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 2 21:57:48 2011 +0100

    Updated Italian translation

 po/it.po | 435 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 225 insertions(+), 210 deletions(-)

commit 93e615e7f63cc1ea7366440c5e29eda0b8370540
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 18:45:16 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 932 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 467 insertions(+), 465 deletions(-)

commit 680c00be22140c1e63b23834d4683edd27e97c8b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 18:40:44 2011 +0100

    Add #include <config.h>

 panels/network/cc-network-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit d441df289c1ad00be2dcae419c59a6a92c5c1ac1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:55:32 2011 +0100

    Avoid null pointer dereference and remove unused variable

 shell/cinnamon-control-center.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit dd7d6aa4840ad3043ce4ea054870ed1702c4a5d0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:54:23 2011 +0100

    Remove unused assignment

 panels/user-accounts/um-language-dialog.c | 1 -
 1 file changed, 1 deletion(-)

commit 57895a445519e64d7795a743f1615ded72c3674a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:54:08 2011 +0100

    Remove unused assignment

 panels/user-accounts/um-crop-area.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2a92753d9728cb9196d5674ed805a454062a8dec
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:53:47 2011 +0100

    Use the right return type

 panels/sound/gvc-mixer-stream.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 73ceb9301aea707adede4a861a99c2595ba26548
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:53:36 2011 +0100

    Use the right return type

 panels/sound/gvc-mixer-card.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3e689ac25fc793f7a474601a417fd3496d64945c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:52:58 2011 +0100

    #include <config.h> to make translations work

 panels/power/cc-power-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit ab453dc044f68a816f42859592a67b0acff8a75f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:52:47 2011 +0100

    Initialize variable to avoid using uninitialized memory later

 panels/sound/gvc-mixer-control.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 24cfcd9a36dd04be9426ca39310d3609632131c0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:52:00 2011 +0100

    #include <config.h> to make translations work

 panels/keyboard/keyboard-shortcuts.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7696c157eab648c325ef70a2795bcead929367f0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:51:44 2011 +0100

    #include <config.h> to make translations work

 panels/info/cc-info-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 81191add1191b0a893ee8a0806aee9870f83de17
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:51:20 2011 +0100

    Remove unused code

 panels/display/xrandr-capplet.c | 1 -
 1 file changed, 1 deletion(-)

commit e24394dafffe5630aae9cf6a921b4814d551c9e2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 24 19:50:01 2011 +0100

    Remove unused variables

 panels/display/scrollarea.c | 5 -----
 1 file changed, 5 deletions(-)

commit 916e4d2f1673a186c823301977e3eb71743a6f01
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 18:09:17 2011 +0000

    shell: GCC 4.6 warning fixes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642810

 shell/cc-shell-category-view.c | 4 +---
 shell/cinnamon-control-center.c   | 3 +--
 2 files changed, 2 insertions(+), 5 deletions(-)

commit 849b752cff37234be217039d48258460caced5f1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 18:08:33 2011 +0000

    media: GCC 4.6 warning fixes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642810

 panels/media/cc-media-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1ca3755aeca2ac2cb0d5fe30693259ceef853218
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 18:06:07 2011 +0000

    display: GCC 4.6 warning fixes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642810

 panels/display/xrandr-capplet.c | 18 ------------------
 1 file changed, 18 deletions(-)

commit e50563f67c291a1c9a571fd5c22343b1a2667266
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 2 18:00:36 2011 +0000

    datetime: Fix GCC 4.6 warnings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642810

 panels/datetime/cc-datetime-panel.c |  5 -----
 panels/datetime/set-timezone.c      |  2 --
 panels/datetime/tz.c                | 31 -------------------------------
 3 files changed, 38 deletions(-)

commit 2516ffcddc8c4229ea2836d18a447a24f42ad29e
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Mar 2 20:02:08 2011 +0200

    Updated Hebrew translation.

 po/he.po | 345 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 192 insertions(+), 153 deletions(-)

commit 8c6024b9673608db89da6c5fe7bae81e98f00da3
Author: Saleem Abdulrasool <compnerd@compnerd.org>
Date:   Sun Dec 19 19:06:15 2010 -0800

    build: Add explicit option for cheese
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643263

 configure.ac | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 88cf391846b1b5ff0d12784fac73abed306570a9
Author: Saleem Abdulrasool <compnerd@compnerd.org>
Date:   Thu Feb 24 19:57:22 2011 -0800

    build: add explicit option for cups

 configure.ac | 39 +++++++++++++++++++--------------------
 1 file changed, 19 insertions(+), 20 deletions(-)

commit f8877716a60fdcaf659645b7bf96ae51feaa7e4e
Author: Frédéric Péters <fpeters@0d.be>
Date:   Fri Feb 25 18:02:44 2011 +0100

    info: Remove (tm) from GNOME logo
    
    See http://live.gnome.org/BrandGuidelines
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643310

 panels/info/GnomeLogoVerticalMedium.svg | 66 +++++++++++++++++----------------
 1 file changed, 34 insertions(+), 32 deletions(-)

commit e824d024a76c1748fcbab06986b6777e2b5144a7
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Mar 2 17:35:46 2011 +0200

    Updated Arabic translation

 po/ar.po | 177 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 93 insertions(+), 84 deletions(-)

commit 08bbcdc2786a032c3f3e25e9e47a72a69bcdff94
Author: A S Alam <aalam@users.sf.net>
Date:   Wed Mar 2 18:27:32 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 376 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 203 insertions(+), 173 deletions(-)

commit 4534d0fb58e5aee2ad92ba1dc5cf7a74b41c26f5
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Mar 2 01:17:59 2011 +0100

    universal-access: context and comments for translators
    
    Provide context for some translatable strings available elsewhere with
    different meaning, for instance Display, Zoom, High, Low.

 panels/universal-access/uap.ui | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit a04152fe867edf4ca0b6779c4be923b22eaa116a
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Mar 1 23:07:21 2011 +0100

    Updated Italian translation

 po/it.po | 895 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 466 insertions(+), 429 deletions(-)

commit 7b1d31f0726a21a241a313ebdac1efd9b0883185
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Mar 1 22:36:54 2011 +0100

    Updated Spanish translation

 po/es.po | 278 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 147 insertions(+), 131 deletions(-)

commit ff203278992dea3886625e4f897a5cd74b0d2aa6
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Tue Mar 1 11:32:29 2011 +0000

    Small update in libgnomekbd api
    
    Improved function name

 panels/region/gnome-region-panel-xkblt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 320df2e3288931fc02932c2654a5307a46043e37
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Mar 1 21:07:19 2011 +0100

    Updated Swedish translation

 po/sv.po | 1253 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 711 insertions(+), 542 deletions(-)

commit 2c1d6a829c246b33e4c054764ec41988646353f3
Author: Colin Walters <walters@verbum.org>
Date:   Fri Feb 25 11:04:02 2011 -0500

    info: Look for VESA mode
    
    In the case where "nomodeset" is given to Linux, or
    we don't have a driver, we'll end up in VESA in most cases.
    So handle this by parsing the XOrg log, and extract
    from it what chipset VESA is driving.
    
    This is again better than lspci because it corresponds
    better to what the X server is doing.

 panels/info/cc-info-panel.c | 124 +++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 117 insertions(+), 7 deletions(-)

commit e91e2ab77aec64dc80c1a6c365db62e74ba5f2f4
Author: Colin Walters <walters@verbum.org>
Date:   Thu Feb 24 18:49:38 2011 -0500

    info: Drop chipset from Graphics
    
    For our purposes, the OpenGL renderer string from current
    Mesa is about as good as it gets.  When we have drivers,
    the driver best knows how to handle whatever PCI etc.
    devices it found, and it's also tied to the current X server,
    which makes the most sense.
    
    If you're wondering why GNOME is in fallback mode, the
    lspci output isn't going to help a lot more for a bug report;
    for that we need a lot of info from Xorg, kernel, etc.  That
    would be a separate script.

 panels/info/cc-info-panel.c | 76 ++-------------------------------------------
 1 file changed, 3 insertions(+), 73 deletions(-)

commit 6766a3ef65fea00345a5c5d597c0e050438271c1
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Mar 1 16:39:03 2011 +0200

    Updated Arabic translation

 po/ar.po | 168 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 85 insertions(+), 83 deletions(-)

commit 0c6bc16db8d0a69e7e8f72cf2f55a02ac7ccdf3f
Author: Joan Duran <jodufi@gmail.com>
Date:   Tue Mar 1 00:47:15 2011 +0100

    [l10n] Updated Catalan translation

 po/ca.po | 7825 ++++++++++++++++++++++----------------------------------------
 1 file changed, 2791 insertions(+), 5034 deletions(-)

commit f421ba9d8a52f5b5d100a40593ad49f7c925c8b3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Feb 28 14:46:42 2011 -0500

    Don't mark theme names as translatable

 panels/universal-access/uap.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 8936c853c21fe840a407f71b85f52ea42e2ce84b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Feb 28 13:25:03 2011 -0500

    Fix a typo
    
    The new AutostartCondition syntax is 'if-session', not 'is-session'.

 panels/sound/data/cinnamon-sound-applet.desktop.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a90585f454d0b2e8a5147bda9e69f3dc69973c3c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 28 16:24:46 2011 +0000

    universal-access: Add 0.75 DPI scale factor
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643503

 panels/universal-access/uap.ui | 5 +++++
 1 file changed, 5 insertions(+)

commit 69e7f00833a402acd0208a7d5691f37b9aa57a72
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 28 16:02:59 2011 +0000

    universal-access: Fix initial state of DPI dropdown
    
    And handle the special "0.0" DPI.

 panels/universal-access/cc-ua-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit 84eed6b0cf9f0b44db5a030018bfca17dae18fd5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 28 14:46:03 2011 +0000

    keyboard: Switch repeat rate/speed to be a fraction
    
    Instead of settings the absolute value of the repeat rate in msecs
    through the scale, we set the number of chars per sec, and
    use GSettings' bindings functions to transform those a timeout.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=569612

 panels/keyboard/gnome-keyboard-panel.ui | 14 +++++++-------
 panels/keyboard/keyboard-general.c      | 30 +++++++++++++++++++++++++++---
 2 files changed, 34 insertions(+), 10 deletions(-)

commit 53d4020c8e240c2c73e79204d7de199734751db5
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Feb 28 16:50:32 2011 +0200

    Updated Arabic translation

 po/ar.po | 59 ++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 32 insertions(+), 27 deletions(-)

commit f658c8db0feb2a9efc7d71f061d69d06ea75adc0
Author: Daniel Trebbien <dtrebbien@gmail.com>
Date:   Sun Feb 27 11:10:10 2011 -0500

    Use the NetworkManager modem capabilities API.
    
    A recent change to the NetworkManager API combined the
    NM_DEVICE_TYPE_GSM and NM_DEVICE_TYPE_CDMA types as
    NM_DEVICE_TYPE_MODEM and provided an alternative API for accessing the
    modem device's capabilities (including GSM_UMTS and CDMA_EVDO).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643390
    
    Signed-off-by: Richard Hughes <richard@hughsie.com>

 panels/network/cc-network-panel.c | 70 +++++++++++++++++++++------------------
 panels/network/panel-common.c     | 51 ++++++++++++++++++----------
 panels/network/panel-common.h     |  7 ++--
 3 files changed, 75 insertions(+), 53 deletions(-)

commit 4906b8cde89d038c2f22239724c34c6fd1e9c873
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Feb 28 06:14:17 2011 +0100

    Updated POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit bf20294d1724b4c2fd6510b4aa0042c7acf38d72
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Feb 27 23:01:44 2011 +0200

    Updated Hebrew translation.

 po/he.po | 531 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 262 insertions(+), 269 deletions(-)

commit 2bc5e113e179b411ea403dde87af402a48d9c66d
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Sun Feb 27 20:33:40 2011 +0100

    [l10n] Updated German translation

 po/de.po | 1492 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 896 insertions(+), 596 deletions(-)

commit 38fa11f3614442b7f7f91fe8a9c44c1acc12291f
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Feb 27 02:19:26 2011 +0200

    Updated Arabic translation

 po/ar.po | 152 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 77 insertions(+), 75 deletions(-)

commit b73331b11676446b14bca2fa48db6050b71291fb
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sun Feb 27 06:29:36 2011 +0900

    Updated Korean translation

 po/ko.po | 814 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 417 insertions(+), 397 deletions(-)

commit c5f53adfa1e02cd794824d6557164684cfdfa07c
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Sat Feb 26 17:27:26 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 769 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 453 insertions(+), 316 deletions(-)

commit 076e2ac228a42b30cb8c98e1929ec2e24f20e7f5
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Feb 26 20:19:48 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 849 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 420 insertions(+), 429 deletions(-)

commit c9f632464d52015c3c1a89dbfa2c032cf1a7ff4e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Feb 26 13:09:01 2011 +0100

    Updated Spanish translation

 po/es.po | 29 ++++++-----------------------
 1 file changed, 6 insertions(+), 23 deletions(-)

commit 7b476780519dfe98e5d31e5d1fb35accc2de1224
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 26 12:02:05 2011 +0100

    Updated Spanish translation

 po/es.po | 588 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 298 insertions(+), 290 deletions(-)

commit 88f7b8d5186799dd1907db17e0322614f653e6b4
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Feb 26 03:03:53 2011 +0100

    Updated Hungarian translation

 po/hu.po | 4010 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2569 insertions(+), 1441 deletions(-)

commit 6d018d3295b09c05322a62f56d9ce8caca673fcd
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Feb 26 01:59:18 2011 +0000

    Do not allow adding the same layout twice
    
    Just disable the "add" button when already chosen layout is selected
    https://bugzilla.gnome.org/show_bug.cgi?id=642907

 panels/region/gnome-region-panel-xkbltadd.c | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

commit 08aac9e129ce4023eee4063676915f8b628f75b2
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 25 19:33:00 2011 -0500

    user-accounts: reduce visual noise by removing lots of colons
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643339

 panels/user-accounts/data/account-dialog.ui       | 10 +++++-----
 panels/user-accounts/data/password-dialog.ui      | 12 ++++++------
 panels/user-accounts/data/user-accounts-dialog.ui | 10 +++++-----
 3 files changed, 16 insertions(+), 16 deletions(-)

commit 8251128055c28a8054f41d050ea0a0266a96b72a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 23:20:57 2011 +0000

    mouse: Remove obsolete properties

 panels/mouse/gnome-mouse-properties.ui | 6 ------
 1 file changed, 6 deletions(-)

commit be4323689ba2961197951ee00a842c30a4be5bdc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 25 15:48:59 2011 -0500

    info: remove unused driver item

 panels/info/info.ui | 63 ++++++++++-------------------------------------------
 1 file changed, 12 insertions(+), 51 deletions(-)

commit d613bec36d3d6f8c75228e629459d53243f84c3e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 18:19:55 2011 +0000

    universal-access: Don't use "..." in references to other panels
    
    As we don't do this in other panels.

 panels/universal-access/uap.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 232c0e5862e99555a354c7ee2b7d4d1527c8f6b8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 18:06:17 2011 +0000

    universal-access: Fix initial state of typing help
    
    Bounce keys, slow keys, and sticky keys had the wrong state on
    startup.

 panels/universal-access/cc-ua-panel.c | 11 +++++++++--
 panels/universal-access/uap.ui        |  6 +++---
 2 files changed, 12 insertions(+), 5 deletions(-)

commit ceb4f6e96f329a791f5eefdb641f5ec9d732125d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 18:02:01 2011 +0000

    universal-access: Change the label to reflect reality

 panels/universal-access/uap.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c9a27453e73e018362c8970184c3acea1d658963
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 17:13:16 2011 +0000

    universal-access: Hide unused prefs to typing assistant

 panels/universal-access/uap.ui | 1 +
 1 file changed, 1 insertion(+)

commit e065fe040984297c0ede7501dde6450985618162
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 17:10:24 2011 +0000

    Revert "universal-access: Add typing assistant selection"
    
    We don't actually want to select on-screen keyboards. Dasher
    isn't an on-screen keyboard, and is complementary to OSKs.
    
    The only supported OSK is caribou, so we'll be using that instead.
    
    This reverts commit 35ae71247274656c2df7f9de1f2c7beb94abbc81.

 panels/universal-access/cc-ua-panel.c | 123 ----------------------------------
 1 file changed, 123 deletions(-)

commit 35ae71247274656c2df7f9de1f2c7beb94abbc81
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 25 16:02:26 2011 +0000

    universal-access: Add typing assistant selection
    
    With a hard-coded list of possible screen readers.

 panels/universal-access/cc-ua-panel.c | 123 ++++++++++++++++++++++++++++++++++
 1 file changed, 123 insertions(+)

commit 5b43e72c95e45e595eebb67af993fae688a9e277
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Feb 25 12:41:10 2011 +0100

    Link keyboard and mouse panels with x11

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8760016db24446d0922d1e5ee14425e357973a6a
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Fri Feb 25 00:50:28 2011 +0000

    region: Shared non-modal layout preview dialog
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642903

 panels/region/gnome-region-panel-xkbltadd.c | 40 +++++++++++++++++++----------
 1 file changed, 27 insertions(+), 13 deletions(-)

commit 17427f979c7f82bc617b83c1fc2cbb06505ff19a
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Feb 24 15:50:39 2011 +0200

    Updated Arabic translation

 po/ar.po | 68 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 38 insertions(+), 30 deletions(-)

commit 02f1d12c39566ad416479e27a7de47aa4d11f9b5
Author: Michael Kotsarinis <mk73628@gmail.com>
Date:   Thu Feb 24 11:47:42 2011 +0200

    l10n: Updated Greek translation for cinnamon-control-center

 po/el.po | 4988 +++++++++++++++++++++++---------------------------------------
 1 file changed, 1856 insertions(+), 3132 deletions(-)

commit d65ee3490d2fffa585876a539cb8aa1e55b802cf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 24 05:35:46 2011 +0000

    keyboard: Implement "editing-canceled" property
    
    Through sheer "pointless" cut'n'paste.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642695

 panels/keyboard/eggcellrendererkeys.c | 104 +++++++++++++++++++++++-----------
 1 file changed, 72 insertions(+), 32 deletions(-)

commit 3be36e735b5b6ae6654d20326b22ab8fd3fd2494
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 23:43:16 2011 -0500

    Drop the sync language loading code
    
    All users have been ported to use the async variant.

 panels/common/cc-common-language.c        | 45 ++-----------------------------
 panels/common/cc-common-language.h        |  6 ++---
 panels/region/gnome-region-panel-lang.c   |  2 +-
 panels/user-accounts/um-language-dialog.c |  2 +-
 4 files changed, 6 insertions(+), 49 deletions(-)

commit a13cf931a9bb49f612104b4e4fd08a6c439fc147
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 24 04:33:17 2011 +0000

    keyboard: Rework stupid conflict detection code
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643124

 panels/keyboard/keyboard-shortcuts.c | 105 ++++++++++++++++-------------------
 1 file changed, 48 insertions(+), 57 deletions(-)

commit b77df5138445b9e00f85ff6b866dd8beb00ae618
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 24 04:20:07 2011 +0000

    keyboard: Add _equal() helper function

 panels/keyboard/cc-keyboard-item.c | 21 +++++++++++++++++++++
 panels/keyboard/cc-keyboard-item.h |  3 +++
 2 files changed, 24 insertions(+)

commit 19615016809595619eb5eb77f38f9215bfc84897
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 24 04:19:19 2011 +0000

    keyboard: Fix stupidness when setting GConf keys
    
    When setting a new binding in GConf, actually set something...

 panels/keyboard/cc-keyboard-item.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 14e503fa2cf8776853e5d7e1be94258cb2015b85
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 21:46:37 2011 -0500

    User accounts: Get the invisible char to use from GTK+
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643103

 panels/user-accounts/um-user-panel.c | 29 +++++++++++++++++++++++++++--
 1 file changed, 27 insertions(+), 2 deletions(-)

commit 7a84244be5357781e751f6d6a59ec390717b284b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 19:51:07 2011 -0500

    Fix initial selection in the shortcuts pane
    
    Change the selection mode for the left pane to browse, meaning
    that one row is always selected, and select the first row
    initially.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643098

 panels/keyboard/keyboard-shortcuts.c | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

commit efaffc113682d84b0047313a1d88f3e25575e53a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 19:50:05 2011 -0500

    Don't exit prematurely
    
    There was an accidental exit in the middle of shortcut setup
    that caused us to not load custom shortcuts.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643098

 panels/keyboard/keyboard-shortcuts.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8053c9561dc1289a9d5912922454145b832455de
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 22:06:49 2011 -0500

    User accounts: Load languages async
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643096

 panels/user-accounts/um-language-dialog.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit 3e25e3d2133a4d93d91a30ff35cdb01f026dc288
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 22:02:44 2011 -0500

    Region: load languages async
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643096

 panels/region/gnome-region-panel-lang.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

commit 012c52f4f5441858d665be2866d66c59a1460ae5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 23 21:50:32 2011 -0500

    Add an async variant of language loading
    
    This just code loads one language at a time in an idle,
    to avoid blocking the UI for a long time. The function returns
    the id of the sources, so you can just call g_source_remove()
    if you don't need the languages anymore (e.g if the user goes
    to another panel before the list is fully populated).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643096

 panels/common/cc-common-language.c | 77 ++++++++++++++++++++++++++++++++++++++
 panels/common/cc-common-language.h |  2 +
 2 files changed, 79 insertions(+)

commit a50f471715c3f4ae57dfb1e9ce33b9c4a89101e9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 19:20:13 2011 +0000

    universal-access: Make the typing assistant switch work

 panels/universal-access/cc-ua-panel.c | 9 +++++++++
 panels/universal-access/uap.ui        | 5 ++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 1b39b18b7cd19939cb2d25aee0c1ac97e91be641
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 16:46:53 2011 +0000

    universal-access: Show the actual keyboard shortcuts
    
    Rather than hard-coded versions
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642582

 panels/universal-access/Makefile.am   |  3 ++-
 panels/universal-access/cc-ua-panel.c | 49 +++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+), 1 deletion(-)

commit c3b742af6f13465f110b228b7d87d5da72a97390
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 16:43:26 2011 +0000

    keyboard: Add a11y for magnifier zoom in/out

 panels/keyboard/50-accessibility.xml.in | 4 ++++
 1 file changed, 4 insertions(+)

commit 628a62300600180001632a4f05ce4dbc117ba5c7
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Feb 23 18:46:27 2011 +0200

    Updated Arabic translation

 po/ar.po | 337 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 160 insertions(+), 177 deletions(-)

commit 34df3ff2de3da241d364f5d3feac350de749283e
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Feb 23 18:45:56 2011 +0200

    Fix POTFILES.in

 po/POTFILES.in | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit db16c45bafc703be40676a80a6a600b8635b888a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 16:09:24 2011 +0000

    universal-access: Keyboard shortcuts don't need translation
    
    And rename the label widgets to something useful

 panels/universal-access/uap.ui | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 33ecd74b0d7dd627761ab5edad01739a482c6033
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 15:51:06 2011 +0000

    lib: Add missing lock button files

 libcinnamon-control-center/cc-lockbutton.c | 627 ++++++++++++++++++++++++++++++++
 libcinnamon-control-center/cc-lockbutton.h |  68 ++++
 2 files changed, 695 insertions(+)

commit 3574d8f8829721ce5bb58eeab021fd14da1108b8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 15:40:46 2011 +0000

    common: Move eggaccelerators to common/
    
    So we can share it with the universal-access panel.

 panels/common/Makefile.am         |  11 +-
 panels/common/eggaccelerators.c   | 632 ++++++++++++++++++++++++++++++++++++++
 panels/common/eggaccelerators.h   |  95 ++++++
 panels/keyboard/Makefile.am       |   8 +-
 panels/keyboard/eggaccelerators.c | 632 --------------------------------------
 panels/keyboard/eggaccelerators.h |  95 ------
 6 files changed, 740 insertions(+), 733 deletions(-)

commit 3336eb9d8850bc64d8a5f4dd9511ddea155628c9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 23 14:59:21 2011 +0000

    lib: Add a lock button
    
    Instead of using a copy/pasted version, until GTK+ includes
    such a button itself.

 libcinnamon-control-center/Makefile.am  |   3 +
 panels/datetime/Makefile.am          |   2 -
 panels/datetime/cc-datetime-panel.c  |   4 +-
 panels/datetime/dt-lockbutton.c      | 627 -----------------------------------
 panels/datetime/dt-lockbutton.h      |  68 ----
 panels/printers/Makefile.am          |   2 -
 panels/printers/cc-printers-panel.c  |   4 +-
 panels/printers/pp-lockbutton.c      | 627 -----------------------------------
 panels/printers/pp-lockbutton.h      |  68 ----
 panels/user-accounts/Makefile.am     |   2 -
 panels/user-accounts/um-lockbutton.c | 627 -----------------------------------
 panels/user-accounts/um-lockbutton.h |  68 ----
 panels/user-accounts/um-user-panel.c |   4 +-
 13 files changed, 9 insertions(+), 2097 deletions(-)

commit 5cc610bef6fd82d8ca7bc023511567cad0d90eeb
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Wed Feb 23 19:22:48 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 776 ++++++++++++++++++++++++++++++++++++------------------------
 po/zh_TW.po | 776 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 936 insertions(+), 616 deletions(-)

commit 39bcde27f60bebf4dfb4f9bbd57988bc76ec68cb
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Feb 22 20:49:04 2011 +0100

    Updated Spanish translation

 po/es.po | 243 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 132 insertions(+), 111 deletions(-)

commit 395d0837828005b2488317a2f0ecdcde25e673c6
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Feb 22 17:26:31 2011 +0100

    printers: Don't show driver version in model name
    
    Get value of ModelName attribute from printer's PPD file
    or use cleaned up printer-make-and-model attribute if ModelName
    is not available (#641288).

 panels/printers/cc-printers-panel.c | 99 ++++++++++++++++++++++++++++++++++---
 1 file changed, 92 insertions(+), 7 deletions(-)

commit daf6d12620795c381333cd0754883e97c3fb8b86
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Feb 22 16:27:41 2011 +0100

    Release 2.91.90

 NEWS         | 136 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |   5 ++-
 2 files changed, 140 insertions(+), 1 deletion(-)

commit 55d908a775609cde7db7cb138f2470f0945bab4b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Feb 22 16:20:58 2011 +0100

    background: Fix generation of autogenerated files on distcheck

 panels/background/Makefile.am | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit a6128f0468f24928fee84c5dfc65013fed6db213
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 21 19:38:05 2011 +0000

    datetime: Make test-timezone link for some setups
    
    Seems that on some setups, libtool isn't dragging in the
    dependencies from the libcinnamon-control-center static library.

 panels/datetime/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a2fa77302b59a03b6b7fd3bc309b729d848ef198
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 21 19:16:47 2011 +0000

    region: Fix memleak on error

 panels/region/cc-region-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3ea70200875937e52a4fa4ce497032c145c42878
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Feb 21 19:19:17 2011 +0200

    Updated Arabic translation

 po/ar.po | 274 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 145 insertions(+), 129 deletions(-)

commit 8e0cd7d495859a8460ec35fefc337b6431bd8b39
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Feb 21 16:28:11 2011 +0000

    network: Only add the strongest AP for each SSID to the drop down box. Fixes #640471

 panels/network/cc-network-panel.c | 68 +++++++++++++++++++++++++++++++++++++--
 1 file changed, 65 insertions(+), 3 deletions(-)

commit 63874a8de8ad488722de4a15b102024b24a1e50b
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Feb 21 16:24:59 2011 +0000

    network: Remove the 'ControlCenter::AccessTechnology' attribute as nothing uses it in the GUI

 panels/network/cc-network-panel.c | 13 -------------
 1 file changed, 13 deletions(-)

commit d3358d729012c45cbd2ef8c95348d03a4e93c0dd
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Feb 21 17:28:53 2011 +0200

    Updated Hebrew translation.

 po/he.po | 274 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 145 insertions(+), 129 deletions(-)

commit 5a02db3c0ff91e79accd4e74f0983f69918fb717
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 21 09:29:32 2011 -0500

    info: remove unused function

 panels/info/cc-info-panel.c | 23 -----------------------
 1 file changed, 23 deletions(-)

commit c9a7f998180531135725b98389192304aa406584
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Feb 21 10:05:22 2011 +0000

    network: port to the rm-userset branch of NetworkManager

 configure.ac                              |    9 +
 panels/Makefile.am                        |    5 +-
 panels/network/Makefile.am                |    7 +-
 panels/network/cc-network-panel.c         |  966 ++++++++++++-------
 panels/network/network.ui                 |    8 +-
 panels/network/nm-access-point.c          |  290 ------
 panels/network/nm-access-point.h          |   73 --
 panels/network/nm-device.c                | 1495 -----------------------------
 panels/network/nm-device.h                |  107 ---
 panels/network/panel-cell-renderer-mode.c |    2 +-
 panels/network/panel-common.c             |   93 +-
 panels/network/panel-common.h             |   42 +-
 po/POTFILES.in                            |    2 -
 13 files changed, 647 insertions(+), 2452 deletions(-)

commit 21683ab85e9ce065a0f50efdd0e13d8a326cc1b0
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Feb 21 09:37:55 2011 +0200

    Updated Hebrew translation.

 po/he.po | 524 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 332 insertions(+), 192 deletions(-)

commit 5e536421a5d9415caa4d74bb500bab6e0f62b26a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Feb 20 18:23:06 2011 +0100

    Updated Spanish translation

 po/es.po | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

commit 0a60891ee8bad27e063d59f968a215373cd98320
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sun Feb 20 23:15:14 2011 +0900

    Korean translation update

 po/ko.po | 7072 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 4275 insertions(+), 2797 deletions(-)

commit d573f0e7c6ac126569238f53302770e8c5e2d406
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 20 12:21:49 2011 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 248 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 124 insertions(+), 124 deletions(-)

commit 24e785e898e5f62ff75d27f3c342594a6c06d551
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 19 17:38:38 2011 +0000

    Remove the example panel
    
    The example panel is no longer needed as there are now many more panels
    implemented.

 Makefile.am                                |   8 +-
 configure.ac                               |  15 ----
 examples/Makefile.am                       |  27 -------
 examples/cc-example-panel.c                | 113 -----------------------------
 examples/cc-example-panel.h                |  74 -------------------
 examples/example-module.c                  |  41 -----------
 examples/gnome-example-panel.desktop.in.in |  14 ----
 po/POTFILES.skip                           |   3 -
 8 files changed, 2 insertions(+), 293 deletions(-)

commit 9d1d8534b8e82d143e84a07ea7ea8fa4cf078567
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 19 17:25:20 2011 +0000

    background: only reset item_added_id when the source is removed
    
    Make sure item_added_id is set to zero only when the idle source id is
    actually removed. This ensures that the source is removed during finalize
    if it still exists when the object is destroyed.

 panels/background/cc-background-xml.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit e2f944a66a5cd3a6f9a445cd9d7acd6b8c518fd2
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 19 16:46:26 2011 +0000

    configure: Group pkg-config checks based on how they are used
    
    Group the pkg-config checks so that pkg-config can remove duplicated CFLAGS
    and LIBS.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636593

 configure.ac                                       | 88 +++++++++-------------
 docs/reference/libcinnamon-control-center/Makefile.am |  4 +-
 libcinnamon-control-center/Makefile.am                | 14 ++--
 panels/background/Makefile.am                      | 14 +---
 panels/common/Makefile.am                          | 20 ++---
 panels/datetime/Makefile.am                        | 13 ++--
 panels/display/Makefile.am                         | 11 +--
 panels/info/Makefile.am                            |  5 +-
 panels/keyboard/Makefile.am                        |  8 +-
 panels/media/Makefile.am                           |  9 ++-
 panels/mouse/Makefile.am                           |  7 +-
 panels/network/Makefile.am                         |  4 +-
 panels/power/Makefile.am                           |  4 +-
 panels/printers/Makefile.am                        |  6 +-
 panels/region/Makefile.am                          |  7 +-
 panels/screen/Makefile.am                          |  4 +-
 panels/sound/Makefile.am                           | 20 ++---
 panels/universal-access/Makefile.am                |  4 +-
 panels/user-accounts/Makefile.am                   | 18 +----
 shell/Makefile.am                                  |  6 +-
 20 files changed, 99 insertions(+), 167 deletions(-)

commit 645c4f85b1c244adc6b087b9581b795f4fc58691
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Feb 19 16:33:48 2011 +0200

    Updated Arabic translation

 po/ar.po | 223 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 121 insertions(+), 102 deletions(-)

commit 96d46e3600664e4c558361dd9d71b7069ebc035c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 19 12:22:15 2011 +0100

    Updated Spanish translation

 po/es.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit dd33cd8a0851554ecacc8a2f03675d617b051581
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 19 12:06:09 2011 +0100

    Updated Spanish translation

 po/es.po | 86 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 46 insertions(+), 40 deletions(-)

commit 9ec52cc05bd7a05ee014853979f783cef93cb701
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 19 12:03:48 2011 +0100

    Updated Spanish translation

 po/es.po | 220 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 109 insertions(+), 111 deletions(-)

commit 6528a5b049a3ce1feaef05d7b9dadc1b9b894936
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Feb 19 12:38:29 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 787 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 482 insertions(+), 305 deletions(-)

commit ecc078edc110c2a4a8b182f8634ed3ea3ff18202
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 18 16:33:34 2011 -0500

    sound: try using symbolic icons for range widgets
    
    Since they replace texual descriptions of "low" / "high".
    
    https://bugzilla.gnome.org/show_bug.cgi?id=614213

 panels/sound/gvc-channel-bar.c  | 12 ++++++------
 panels/sound/gvc-mixer-dialog.c |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

commit dd25d61fdca6a4eb5e98e6efddab69b0d0fed231
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 18 21:09:49 2011 +0000

    info: Remove "Chat" preferred app setting
    
    We only really support Telepathy-based clients, so no
    point in giving a choice here.

 panels/info/cc-info-panel.c |  9 +++-----
 panels/info/info.ui         | 56 +++++++++++++++------------------------------
 2 files changed, 21 insertions(+), 44 deletions(-)

commit f05f6307d72974ff22e1fddd0e83747794d5783a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 18 19:24:29 2011 +0000

    info: Implement saving for default applications

 panels/info/cc-info-panel.c | 98 +++++++++++++++++++++++++++++++++++++--------
 1 file changed, 81 insertions(+), 17 deletions(-)

commit 8df9eeca42676e8959a201f8ce7b0721ccb6205d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 18 17:36:53 2011 +0000

    universal-access: Show the typing assistant widgets
    
    Not hooked yet, but will be useful for documentation folks.

 panels/universal-access/uap.ui | 1 +
 1 file changed, 1 insertion(+)

commit 62f6361af79d5d278c50c18a34e2d69b5047620e
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Feb 18 14:02:21 2011 +0000

    configure: remove redundant pkg-config checks
    
    Remove pkg-config checks for libraries that are no longer required.

 configure.ac | 26 --------------------------
 1 file changed, 26 deletions(-)

commit 2e88bc759ec52fa1b060ff9e6b66bc14eb7a82cd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 18 13:53:03 2011 +0000

    keyboard: Add Universal Access shortcuts
    
    As newly defined in gnome-settings-daemon.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641279

 panels/keyboard/50-accessibility.xml.in | 6 ++++++
 1 file changed, 6 insertions(+)

commit f0501c77ae25b29f17cb9e561317e946b76d09ca
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Feb 18 14:46:44 2011 +0100

    Updated Italian translation

 po/it.po | 633 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 405 insertions(+), 228 deletions(-)

commit 65057f54e7ce687abdd01ea78786049dcf85181e
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Feb 18 11:51:26 2011 +0000

    configure: Remove unnecessary use of AC_SUBST
    
    AC_SUBST does not need to be used on variables created by the
    PKG_CHECK_MODULES macro.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636593

 configure.ac | 4 ----
 1 file changed, 4 deletions(-)

commit 35af2cbfa38f54888aec51b85a511499c29946bf
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 19:34:22 2011 -0500

    info: 2 many colons everwharz
    
    They aren't really needed iff label text is right aligned and a clear
    vertical column of space separates the label from the values.

 panels/info/info.ui | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit b4c25fe9b438e0d34f0cdba604f1b0d17d080ffa
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Feb 18 01:30:30 2011 +0100

    info: fallback warning uses all available space on right side

 panels/info/info.ui | 68 ++++++++++++++++++++++++++++++++---------------------
 1 file changed, 41 insertions(+), 27 deletions(-)

commit 7ed56b00fdd4ed67b5b749871b5c03f110148878
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 19:21:00 2011 -0500

    universal-access: use switches instead of radio groups

 libcinnamon-control-center/gconf-property-editor.c |  67 ++++++
 libcinnamon-control-center/gconf-property-editor.h |   6 +
 panels/universal-access/cc-ua-panel.c           |  65 +++---
 panels/universal-access/uap.ui                  | 260 ++----------------------
 4 files changed, 109 insertions(+), 289 deletions(-)

commit ab5adcb98ed160063a3983605a2eafddcd366d12
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 18:21:22 2011 -0500

    info: don't use the fallback warning text when turning it off
    
    Use text that says the standard experience will be attempted.

 panels/info/cc-info-panel.c | 11 ++++++++++-
 panels/info/info.ui         |  2 +-
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 4f6e642670e84bc57f8d3df9bf9eb1f41e979b8c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 18:06:26 2011 -0500

    info: correctly detect the fallback session

 panels/info/cc-info-panel.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit d8f823a31c5795249ad55227fd5beb3b885c6e94
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Thu Feb 17 23:58:34 2011 +0100

    universal-access: Adjust for magnifier schema changes
    
    gsettings-desktop-schemas had two conflicting settings for enabling
    the magnifier: 'show-magnifier' in org.cinnamon.desktop.a11y.magnifier
    and 'screen-magnifier-enabled' in org.cinnamon.desktop.a11y.applications.
    The former has been removed in favor of the latter, so adjust to this
    change.

 panels/universal-access/cc-ua-panel.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit 05f7a4b1f48e9ef7cdea8ceb7e0b2307a89478e9
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 17:05:04 2011 -0500

    keyboard: align bottoms of panes in a neater way
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642629

 panels/keyboard/gnome-keyboard-panel.ui | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit 886d8718935f676202d44e817db4e223ab093432
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 16:59:45 2011 -0500

    keyboard: don't expand tables vertically
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=642625

 panels/keyboard/gnome-keyboard-panel.ui | 29 ++++++++++++++---------------
 1 file changed, 14 insertions(+), 15 deletions(-)

commit e5a8fc3ea8739af1cdadafdcd99ed0340e8f9dbb
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Feb 17 21:17:25 2011 +0100

    Updated Spanish translation

 po/es.po | 278 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 184 insertions(+), 94 deletions(-)

commit 4e06cd6236d0d4d9b8a1de30ca312a8ed71a1769
Author: Alexander Larsson <alexl@redhat.com>
Date:   Thu Feb 17 20:59:55 2011 +0100

    Fix includes for cdesktop-enums.hs
    
    The file is in $incdir/gsettings-desktop-schemas/cdesktop-enums.hs,
    and pkg-config returns -I$incdir/gsettings-desktop-schemas, so the
    right way is to #include <cdesktop-enums.hs> which is what other modules
    do.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642369

 panels/background/bg-colors-source.c    | 2 +-
 panels/background/bg-flickr-source.c    | 2 +-
 panels/background/bg-pictures-source.c  | 2 +-
 panels/background/cc-background-item.c  | 2 +-
 panels/background/cc-background-item.h  | 2 +-
 panels/background/cc-background-panel.c | 2 +-
 panels/background/cc-background-xml.c   | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

commit 1da5f177203bfc792195fb4fef40941072ebf8ca
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Feb 17 21:12:50 2011 +0200

    Updated Arabic translation

 po/ar.po | 56 +++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 33 insertions(+), 23 deletions(-)

commit 0e153740f9a24eb9f1e0d02f04023cf9df18a7bc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 19:10:00 2011 +0000

    keyboard: Don't resize the shell horizontally
    
    By ellipsising long key names.

 panels/keyboard/keyboard-shortcuts.c | 1 +
 1 file changed, 1 insertion(+)

commit 23f2c876722bc34253e7a0a23fcce7acf6f1513a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 18:52:55 2011 +0000

    info: Use a context for the "Standard" string
    
    So we can use a different translation for that same word in
    the user-accounts panel, and in the info panel.
    
    Also prefix the "Fallback" string the same way.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642598

 panels/info/cc-info-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bb2ff68a3966acc5004d68ef05b495b82df5c671
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 18:36:03 2011 +0000

    info: Add translator comments for "Fallback"
    
    and "standard" experiences, as presented by the info panel.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642439

 panels/info/cc-info-panel.c | 12 ++++++++++--
 panels/info/info.ui         |  2 +-
 2 files changed, 11 insertions(+), 3 deletions(-)

commit fd0a3468f026d8513830b94487ce737bc5c5db46
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Feb 17 19:47:46 2011 +0200

    Updated Arabic translation

 po/ar.po | 36 +++++++++++++++++++-----------------
 1 file changed, 19 insertions(+), 17 deletions(-)

commit 36fb74b8178407b3555b42506a93ca6661409820
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Feb 17 11:56:33 2011 -0500

    info: clearify language in force fallback controls

 panels/info/info.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 52f8687c37a7097c8f8f4fe170487bdd651b4c3a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 16:50:32 2011 +0000

    keyboard: Only listen to our own key
    
    Rather than all the possible changes that could have happened in
    the schemas.

 panels/keyboard/cc-keyboard-item.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 9d1869aaaefabcd6f33a104a485437323d6630a6
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Feb 17 18:19:29 2011 +0200

    Updated Arabic translation

 po/ar.po | 192 +++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 138 insertions(+), 54 deletions(-)

commit 000ba7fffec339e0af622c2e9b6a00b2ea9f6cdd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 12:59:58 2011 +0000

    keyboard: Fix memleaks when adding from XML file

 panels/keyboard/keyboard-shortcuts.c | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

commit 2bd214a1d4588f6fd64b7d7b5d6d80e0dc28146c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 12:59:03 2011 +0000

    keyboard: Fix memleaks in CcKeyboardItem

 panels/keyboard/cc-keyboard-item.c | 3 +++
 1 file changed, 3 insertions(+)

commit 52339fc0a37bf381fb7540f2d7b15652298317f7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 12:27:08 2011 +0000

    keyboard: Read XDG data dirs for keys to use
    
    And set the locale prefix accordingly.

 panels/keyboard/keyboard-shortcuts.c | 48 +++++++++++++++++++++++++-----------
 1 file changed, 34 insertions(+), 14 deletions(-)

commit fbe10dc98c0f4fc91e5255bd2ab361cf481f977e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 12:26:51 2011 +0000

    keyboard: Remove some debug

 panels/keyboard/cc-keyboard-item.c | 2 --
 1 file changed, 2 deletions(-)

commit 029797928d603739ba592a329d06e2d57d43f418
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 12:25:49 2011 +0000

    keyboard: Pass gettext domain name for GConf entries

 panels/keyboard/keyboard-shortcuts.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 73f155eaacd4d486d54680a20a9bfd50f91a79d4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 17 12:19:38 2011 +0000

    keyboard: Pass a gettext package when loading GConf
    
    As GConf itself won't be passing us a translated entry by itself.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=576570

 panels/keyboard/cc-keyboard-item.c | 13 ++++++++++++-
 panels/keyboard/cc-keyboard-item.h |  2 ++
 2 files changed, 14 insertions(+), 1 deletion(-)

commit 17d775aee60b80343114ce86d2f1d5fd501da810
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 17 13:40:57 2011 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 436 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 293 insertions(+), 143 deletions(-)

commit 06b9a36c67a9956db848ac5f51432bb0ecedd88e
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 15 11:50:28 2011 +0000

    Fix linking in the network pane

 panels/network/Makefile.am | 4 ++++
 1 file changed, 4 insertions(+)

commit 46e0f2a9571269e78dd0f6a658bd9e4faa49d9bf
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Wed Feb 16 21:16:24 2011 +0100

    Updated Basque language

 po/eu.po | 373 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 249 insertions(+), 124 deletions(-)

commit 407cf455bf520105f2d110f594140a9ac0510a79
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 16 17:59:29 2011 +0000

    keyboard: Use GSettings for those shortcuts

 panels/keyboard/00-multimedia.xml.in    | 32 +++++++++++---------------------
 panels/keyboard/01-launchers.xml.in     | 20 +++++++-------------
 panels/keyboard/01-system.xml.in        |  8 +++-----
 panels/keyboard/50-accessibility.xml.in |  2 ++
 4 files changed, 23 insertions(+), 39 deletions(-)

commit 82ae68abdfbf70514cd62ebece2cab98c948ee01
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 16 17:43:53 2011 +0000

    keyboard: Move a11y keys to cinnamon-control-center

 panels/keyboard/50-accessibility.xml.in | 8 ++++++++
 panels/keyboard/Makefile.am             | 2 +-
 po/POTFILES.in                          | 1 +
 3 files changed, 10 insertions(+), 1 deletion(-)

commit 27cf30ed545c2afec7abf739583f9d16664808cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 16 17:43:27 2011 +0000

    keyboard: Add support for GSettings shortcuts

 panels/keyboard/cc-keyboard-item.c   |  73 +++++++++++-
 panels/keyboard/cc-keyboard-item.h   |   9 ++
 panels/keyboard/keyboard-shortcuts.c | 223 ++++++++++++++++++-----------------
 3 files changed, 191 insertions(+), 114 deletions(-)

commit 174162ed968d9545beeae799477d73158fcac6f5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 16 12:08:43 2011 -0500

    Only autostart the sound applet in the fallback session
    
    This uses new AutostartCondition support that just landed
    in gnome-session.

 panels/sound/data/cinnamon-sound-applet.desktop.in | 1 +
 1 file changed, 1 insertion(+)

commit 6b5fa49cc600b4ad0298322c3b0aff4b59a72a58
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 16 01:28:04 2011 +0000

    keyboard: Don't update binding by hand
    
    Let the CcKeyboardItem update keyval, keymask, etc. for us when
    we set the binding value, instead of having us do it by hand.

 panels/keyboard/cc-keyboard-item.c   | 28 ++++++++++++++++++++++++++++
 panels/keyboard/keyboard-shortcuts.c | 26 --------------------------
 2 files changed, 28 insertions(+), 26 deletions(-)

commit 5c755904e1d6b4e0bf6f5d60a7e617f0cfa90fa5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 16 01:22:38 2011 +0000

    keyboard: Clean up GConf handling
    
    Move most of the horrible GConf monitoring code to a separate
    GObject(-ish). While quite ugly, it's not as bad as the code that
    used to be there before.
    
    Also fix the setting of KeyEntry->model (or CcKeyboardItem->model now)
    to be the correct model (eg. the shortcut model rather than the section
    model)

 panels/keyboard/Makefile.am          |   2 +
 panels/keyboard/cc-keyboard-item.c   | 450 ++++++++++++++++++++++++
 panels/keyboard/cc-keyboard-item.h   | 109 ++++++
 panels/keyboard/keyboard-shortcuts.c | 640 ++++++++++++-----------------------
 4 files changed, 780 insertions(+), 421 deletions(-)

commit 18a76d2dff9fc516afcb2b58187a45fbd76bb3eb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 15 18:40:34 2011 +0000

    background: Remove unused GConf include

 panels/background/cc-background-item.c | 2 --
 1 file changed, 2 deletions(-)

commit 816068ff6f0952a15d3cdf6ee73eb86f76b9b65a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 15 17:58:45 2011 +0000

    keyboard: Simplify bit of code

 panels/keyboard/keyboard-shortcuts.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 47770ed40c5a1846e14cd4b167ce5d808d52fdc9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 15 17:58:25 2011 +0000

    keyboard: typedef the shortcut types

 panels/keyboard/keyboard-shortcuts.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit bd9a54566825701c6c28f4a4f21f59726969b9f1
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Feb 15 21:27:57 2011 +0100

    Updated Spanish translation

 po/es.po | 347 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 195 insertions(+), 152 deletions(-)

commit 6ceea9b3aefdb373c3670dcc3288d722e174cb58
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 15 14:15:35 2011 -0500

    info: add warning that always fallback will effect next login

 panels/info/cc-info-panel.c | 48 +++++++++++++++++++++++++++++----------------
 panels/info/info.ui         | 35 +++++++++++++++++++++++++++++++--
 2 files changed, 64 insertions(+), 19 deletions(-)

commit 17008fe56556579b24d7b2d52dc3a536cb8c8e4d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 15 13:59:27 2011 -0500

    info: make sure to always print an experience value

 panels/info/cc-info-panel.c | 29 +++++++++++++++++++++--------
 1 file changed, 21 insertions(+), 8 deletions(-)

commit 0be178ba6bbc80c0460bf8941af7bc7498a89ef1
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 15 13:50:46 2011 -0500

    info: use the correct return type for getting dbus properties
    
    Makes getting the session experience property work.

 panels/info/cc-info-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9ad9dd895a6d3d920307cb2487ecd45a4309a46d
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Feb 15 12:59:22 2011 +0200

    Updated Arabic translation

 po/ar.po | 254 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 157 insertions(+), 97 deletions(-)

commit d1920f8bea0865fe522f074cedad76a1caab0e95
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 23:06:20 2011 -0500

    info: move update button into the overview page
    
    It doesn't make much sense when seen from other pages.

 panels/info/info.ui | 111 +++++++++++++++++++++++-----------------------------
 1 file changed, 50 insertions(+), 61 deletions(-)

commit ca48b040ec353c666bda2621bbe844959891b299
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 22:33:42 2011 -0500

    info: add an updates available button

 panels/info/cc-info-panel.c | 187 +++++++++++++++++++++++++++++++++++++++++++-
 panels/info/info.ui         |   4 +-
 2 files changed, 188 insertions(+), 3 deletions(-)

commit 6972c36af18b0463f48098bf17b16edad3c29d9a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 21:01:30 2011 -0500

    info: use a http scheme handler instead of html

 panels/info/cc-info-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5226b4242fe90a6a106d2730247a306798b5673f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 21:00:05 2011 -0500

    info: add Photos default app

 panels/info/cc-info-panel.c |  3 +++
 panels/info/info.ui         | 33 +++++++++++++++++++++++++++++++--
 2 files changed, 34 insertions(+), 2 deletions(-)

commit 1f0c728688778a8f5db406b37f59d763e6172192
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 20:39:00 2011 -0500

    info: make all app chooser buttons the same width

 panels/info/cc-info-panel.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit f04373fdd2ca138cddef763b1f355c5a9ff4c76f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 20:35:01 2011 -0500

    info: use ogg to find generic players for now since wildcards don't work

 panels/info/cc-info-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a06dd020922bf760865f84600a653d437fa969c2
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 19:48:44 2011 -0500

    info: re-prettify cpu info

 panels/info/cc-info-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 642e12a10ae489bbef7b20db02f052f67f2e780f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 19:45:43 2011 -0500

    info: add stub for default apps page

 panels/info/cc-info-panel.c |  35 +++++++
 panels/info/info.ui         | 229 ++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 247 insertions(+), 17 deletions(-)

commit f42c262123c13af669b2dd99c3cf472c74545c21
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Feb 14 18:47:55 2011 -0500

    info: fix the layout from the last commit
    
     - Don't use a paned widget
     - Fix spacing and alignment

 panels/info/cc-info-panel.c |   8 +-
 panels/info/info.ui         | 745 ++++++++++++++++++++++----------------------
 2 files changed, 369 insertions(+), 384 deletions(-)

commit 50211514c58cdbe93f229e51dc91a0dfa4fc62cf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 23:51:20 2011 +0000

    user-accounts: Hide fingerprint dialogue by default
    
    The dialogue was shown when loaded by GtkBuilder, and then
    parented properly, which made it jump before display.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641990

 panels/user-accounts/data/account-fingerprint.ui | 1 +
 1 file changed, 1 insertion(+)

commit 07664136d0185dabec3c6b45a237152cc81a8c98
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 23:48:49 2011 +0000

    user-accounts: Remove use of obsolete properties

 panels/user-accounts/data/user-accounts-dialog.ui | 2 --
 1 file changed, 2 deletions(-)

commit c32ce5ee9d9e763f3ca780a464d7a19d7bfee3b7
Author: Colin Walters <walters@verbum.org>
Date:   Thu Feb 10 14:13:28 2011 -0500

    info: Add panel chooser, graphics tab
    
    This is work towards implementing
    http://live.gnome.org/Design/SystemSettings/SystemInformation
    
    Implemented in this patch is some cleanup and parts of the
    Graphics tab.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642068

 panels/info/Makefile.am     |   1 +
 panels/info/cc-info-panel.c | 372 +++++++++++++++-----
 panels/info/info.ui         | 834 ++++++++++++++++++++++++++++----------------
 3 files changed, 822 insertions(+), 385 deletions(-)

commit 3ae9e15ebf0985dd51d3e2f9655fa650927c862b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 19:49:27 2011 +0000

    background: Fix initial state when loading gradients
    
    And fix saving as well, as we were saving from the item,
    instead of the current_background, thus losing name, etc.

 panels/background/cc-background-panel.c | 25 +++++++++++++++++++------
 1 file changed, 19 insertions(+), 6 deletions(-)

commit e4efd61cfecebe37d744be1f4a126021b54dfe15
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 19:49:07 2011 +0000

    background: Fix comparisons of gradients

 panels/background/cc-background-item.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 8be746af8d80eb546d9ac37b83fda230fa25854b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 19:48:38 2011 +0000

    background: Add arrows for the gradients

 panels/background/bg-colors-source.c | 34 +++++++++++++++++++++++++++++++---
 1 file changed, 31 insertions(+), 3 deletions(-)

commit 558d6752f9faecb3b575b12fda24b0ccaf189af3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 19:05:56 2011 +0000

    background: Add/Remove features for panel
    
    Remove unused "backgrounds-liststore" object from .ui file, and
    add remove button.
    
    Make remove button sensitive for files that were copied to the cache,
    and implement remove itself.
    
    Remember needs_download when copying CcBackgroundItem objects.
    
    Make "Add" button unsensitive in chooser when background was
    already added to the list, to avoid duplicates.
    
    Ellipsise background label.

 panels/background/background.ui         |  24 +++--
 panels/background/cc-background-item.c  |   1 +
 panels/background/cc-background-panel.c | 179 ++++++++++++++++++++++++--------
 3 files changed, 153 insertions(+), 51 deletions(-)

commit a1dd22ea178d62161a745c021780bf7d1592ffbf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 19:03:32 2011 +0000

    background: Add/Remove features in pictures source
    
    Remember added files, so they cannot be added twice to the pictures
    store (using UUID of the URI as key).
    
    Implement removing items from the list.
    
    Fix memory leaks.

 panels/background/bg-pictures-source.c | 145 ++++++++++++++++++++++++++++++++-
 panels/background/bg-pictures-source.h |   6 ++
 2 files changed, 150 insertions(+), 1 deletion(-)

commit db0b5b1195a4fea930871143e9326b517b748ddf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 18:11:04 2011 +0000

    background: Use objects for CcBackgroundItem storage
    
    So that we don't need to unref the items in the list store by hand.

 panels/background/background.ui |  2 +-
 panels/background/bg-source.c   | 20 +-------------------
 2 files changed, 2 insertions(+), 20 deletions(-)

commit 7aca4e1ab2cf2d1faa81c99b7120e8ac9a4a60ef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 17:47:39 2011 +0000

    background: Add support for source-url in XML

 panels/background/cc-background-xml.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit f77d23f35ac1f2ac46c7f1ccb7a9cb1b916c3d00
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 17:47:01 2011 +0000

    background: Add "needs-download" property
    
    Rather than relying on source-url being NULL, which would mean
    we can't then save it.

 panels/background/cc-background-item.c | 34 +++++++++++++++++++++++++++++++++-
 panels/background/cc-background-item.h |  1 +
 2 files changed, 34 insertions(+), 1 deletion(-)

commit 5864e7866f016d444f8c3e052431452a18598929
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Feb 14 17:58:45 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

commit 367daae2e4ad026b4255485257e8b116c55f5207
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 15:57:13 2011 +0000

    shell: Fix searching for anything hiding widgets
    
    When searching, don't hide the search entry...

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5ca53670182c769757a5eda54faed7c6f4548ecf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 15:11:17 2011 +0000

    background: Remove files that don't exist
    
    If an xml file references a wallpaper that doesn't exist
    (as seen by installing the desktop-backgrounds-basic package
    on Fedora), then just don't add it to the list of wallpapers.
    
    Reported by Matthias Clasen

 panels/background/cc-background-xml.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 4809be2b3f1392c364e212793d7072afe20092e6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 15:04:16 2011 +0000

    background: Implement 'Add' button

 panels/background/cc-background-panel.c | 146 ++++++++++++++++++++++++++++++--
 1 file changed, 139 insertions(+), 7 deletions(-)

commit 81ae3f446677702aba9dd7cf64e93ab2d6879ff3
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Feb 14 09:31:38 2011 -0500

    background: Avoid resizing the drawing area if controls are hidden

 panels/background/background.ui | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit bad4e389efab7a9654fef5a77d5bb5c7892d3140
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 14:28:46 2011 +0000

    background: Avoid warning when XML file doesn't exist

 panels/background/cc-background-xml.c | 3 +++
 1 file changed, 3 insertions(+)

commit 8eace42d8ab3e9224427ec64629b6d9b98acbaac
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 13:25:24 2011 +0000

    background: Update preview correctly for custom bgs
    
    When we're creating our new item for custom wallpapers, make
    sure that we update the ->current_background, otherwise we'll
    still be displaying the previous configuration.

 panels/background/cc-background-panel.c | 45 ++++++++++++++++++---------------
 1 file changed, 24 insertions(+), 21 deletions(-)

commit 8bca5459025fce1b694c0e2f185f0cb6ac01fa81
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 13:11:59 2011 +0000

    background: Fix errors when saving current wp
    
    As report by Matthias Clasen

 panels/background/cc-background-panel.c | 31 +++++++++++++++++++++----------
 1 file changed, 21 insertions(+), 10 deletions(-)

commit 78e16e52f4fc6879e10653d6dccbf6f56701eb21
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 13:05:58 2011 +0000

    background: Add first pass at "add" button
    
    With a hard-coded filename for now.

 panels/background/cc-background-panel.c | 191 +++++++++++++++++++++++---------
 1 file changed, 137 insertions(+), 54 deletions(-)

commit e6cb9f5b12648cee6dad76eed9e2f67432de0394
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 13:05:08 2011 +0000

    background: Add ability to add a single file
    
    To the pictures backend.

 panels/background/bg-pictures-source.c | 108 ++++++++++++++++++++++-----------
 panels/background/bg-pictures-source.h |   6 +-
 2 files changed, 75 insertions(+), 39 deletions(-)

commit c32b0da4e4e765a25ee66aef00a62b940af3d0e1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 13:03:30 2011 +0000

    background: Only accept URIs when creating items

 panels/background/cc-background-item.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 715474fb30c6d154646289c8359de724235000df
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 11:23:00 2011 +0000

    background: Update comment

 panels/background/cc-background-panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 1933bfdf176fa48b27e70c2c3d541792db070f10
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 11:16:15 2011 +0000

    background: Use correct cache directory

 panels/background/cc-background-panel.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 2866a70f6af4b7ba3b9765db7559011f17926cf2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 11:07:04 2011 +0000

    background: Don't show an error if no cache dir
    
    We don't want to see errors if the directory doesn't exist.

 panels/background/bg-pictures-source.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9ac7a0aa32ccf946428673a1a5a2c67ae8aad4fa
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 11:02:22 2011 +0000

    background: Remove code for impossible situation
    
    We can never have placement be "none" as we create new items
    with "scaled" by default. So just set "zoom" all the time.

 panels/background/bg-pictures-source.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 87f05ef0edc0c41b7ae82b48629cf657c673a096
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 10:52:12 2011 +0000

    background: Also look for items in ~/.cache
    
    We'll be saving items in ~/.cache/cinnamon-control-center/backgrounds
    for the Flickr and manual additions of items, so look there as well.

 panels/background/bg-pictures-source.c | 34 ++++++++++++++++++++++++----------
 panels/background/bg-pictures-source.h |  3 ++-
 2 files changed, 26 insertions(+), 11 deletions(-)

commit 575d8d2463e415c8deef72a585d90e371ea2c33e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 10:21:35 2011 +0000

    background: Add "add" button
    
    To allow adding arbitrary files to the list.

 panels/background/background.ui         | 37 ++++++++++++++++++++++++++++++---
 panels/background/cc-background-panel.c |  9 ++++++++
 2 files changed, 43 insertions(+), 3 deletions(-)

commit 83056c17dcc7b797f44390a886824ce2a8bf82a8
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Feb 14 14:02:17 2011 +0100

    printers: Modify jobs list
    
    Don't include owner's name in the list (it is actual user).
    Left align text in rows. Take into account system settings
    when showing time (12h/24h). Show headers.

 panels/printers/cc-printers-panel.c | 43 ++++++++++++++++++++++++-------------
 panels/printers/printers.ui         |  1 -
 2 files changed, 28 insertions(+), 16 deletions(-)

commit 8db5e051cd42c87601dd67c3da4a52f5d1495be5
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Feb 14 13:52:19 2011 +0100

    printers: Set Options and Show buttons sensitive
    
    Set "Options" button and "Show" button sensitive if there is a printer
    selected.

 panels/printers/cc-printers-panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 55cfef36a6c0b12cafd0b501b987b88417adc973
Author: Emilio Pozuelo Monfort <pochu27@gmail.com>
Date:   Mon Feb 14 12:49:35 2011 +0100

    printers: Link the printer panel with $(GNOMECC_CAPPLETS_LIBS)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641972

 panels/printers/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fbe3926ed31d91fe93eb8b7213b6aa5bb4b9437c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 09:40:06 2011 +0000

    background: Try our hardest to remember the last bg
    
    Save the current background as XML, and try to load it back up
    when starting. If the saved background pretty much matches what we
    have in GSettings, then it's the same item, and we try and remember
    all the metadata, including the name.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630417

 panels/background/cc-background-panel.c | 61 ++++++++++++++++++++++++++++-----
 1 file changed, 53 insertions(+), 8 deletions(-)

commit ecdcb2c23592f87fb165c4d227a4c6579eb927ff
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 09:38:50 2011 +0000

    background: Implement saving a single item

 panels/background/cc-background-xml.c | 155 +++++++++++++++++-----------------
 panels/background/cc-background-xml.h |   3 +-
 2 files changed, 78 insertions(+), 80 deletions(-)

commit 329aabf0b19662d2366fd4932cd1765e0f1d38bf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 08:42:32 2011 +0000

    background: Set the shading for pictures

 panels/background/bg-pictures-source.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 2a146db805b1674f90820416a3ba2d9bb30442f8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 07:43:30 2011 +0000

    background: Handle no-flags from saved config

 panels/background/cc-background-item.c | 3 +++
 1 file changed, 3 insertions(+)

commit 5517949b4e23bc7e7686bc5ce29c7e4e06267458
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 14 07:42:58 2011 +0000

    background: Treat empty URI as NULL
    
    So that comparisons are easier.

 panels/background/cc-background-item.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 758242bb8e43967e0a589e2cdd0597fcff2352fb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 13 02:49:03 2011 +0000

    background: Add function to compare 2 bg items

 panels/background/cc-background-item.c | 66 ++++++++++++++++++++++++++++++++++
 panels/background/cc-background-item.h |  3 ++
 2 files changed, 69 insertions(+)

commit 66ee58bf52e9822826f1840b4be9a60447b1af26
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 13 02:33:03 2011 +0000

    background: Add function to load a single XML file
    
    And its item out of it. So that we can load a file on startup
    and check whether it corresponds to our configuration.

 panels/background/cc-background-xml.c | 27 +++++++++++++++++++++++++++
 panels/background/cc-background-xml.h |  1 +
 2 files changed, 28 insertions(+)

commit 7448e7698e02b2b8652109e71400d604c1888ab6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 13 02:31:36 2011 +0000

    background: Add more info to _dump() function
    
    Also print out the placement and shading of the background.

 panels/background/cc-background-item.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

commit d3eb413b248dbf9012db491181ae25468b02f67b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 20:13:41 2011 +0000

    background: Move settings loading
    
    Into a separate function, so that we can extend it.

 panels/background/cc-background-panel.c | 58 +++++++++++++++++++--------------
 1 file changed, 34 insertions(+), 24 deletions(-)

commit 2eedc4fd3e03348b836f2981f069fd94689d16cf
Author: Mahyar Moghimi <mahyar.moqimi@gmail.com>
Date:   Sun Feb 13 20:17:56 2011 +0330

    Updating Persian Translation

 po/fa.po | 7769 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4821 insertions(+), 2948 deletions(-)

commit a34ed1057c80ca73f63ea01ad24912ac18053b0a
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Feb 13 14:10:04 2011 +0100

    Updated Galician translations

 po/gl.po | 426 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 240 insertions(+), 186 deletions(-)

commit 7172bc2b06cf836a467e4961df56f9a2bad83402
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 12 19:37:27 2011 +0000

    shell: make sure the search entry doesn't appear when in a panel
    
    Prevent the search entry appearing when opening a panel from another panel.

 shell/cinnamon-control-center.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit fe7b2212cc52b74e4bf60d00ecd681d8df2022ff
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 12 19:23:57 2011 +0000

    shell: remove debugging output

 shell/cinnamon-control-center.c | 2 --
 1 file changed, 2 deletions(-)

commit 6c0cbc9d40a15eabc32a439d51b08e69638d771a
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 12 19:21:43 2011 +0000

    shell: sort the icons alphabetically

 shell/cc-shell-model.c | 3 +++
 1 file changed, 3 insertions(+)

commit af882e85ce2170bfd5106e7506ad8de868aa8453
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 12 18:55:59 2011 +0000

    universal-access: implement the zoom setting
    
    Bind the zoom radio buttons to the "show-magnifier" key of the magnifier
    settings.

 panels/universal-access/cc-ua-panel.c | 12 ++++++++++++
 panels/universal-access/uap.ui        |  1 -
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 19082e16ac24bed6c68b8786b888401da46cf59d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 14:46:25 2011 +0000

    shell: Use symbolic icons in the search entry
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642167

 shell/cinnamon-control-center.c | 4 ++--
 shell/shell.ui               | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit d7d5e7124b5098fcbd5c4f5c2344893572e6abd8
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Feb 12 14:39:28 2011 +0100

    Updated Spanish translation

 po/es.po | 327 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 198 insertions(+), 129 deletions(-)

commit ee62ca5e9b327d9ae8d10a4fd2b48daaa46f0779
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 03:17:02 2011 +0000

    background: Add note about saving location
    
    To the unused XML save code.

 panels/background/cc-background-xml.c | 1 +
 1 file changed, 1 insertion(+)

commit e5fb92268ff06cfce462787cb12765b1ccc9ebb6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 03:12:52 2011 +0000

    background: Show 'Adwaita' as the first in the list
    
    https://bugzilla.gnome.org/show_bug.cgi?id=637384

 panels/background/bg-wallpapers-source.c | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit c4baa04942645497eb6bebe4a90eeb5f1b6f6395
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 03:12:23 2011 +0000

    background: Add ability to parse single XML file
    
    To load a particular file by hand.

 panels/background/cc-background-xml.c | 54 ++++++++++++++++++++++++-----------
 panels/background/cc-background-xml.h | 16 +++++------
 2 files changed, 45 insertions(+), 25 deletions(-)

commit 265e10af1ac93cdbc9875bc33b3b00177e8f513a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 02:47:35 2011 +0000

    background: Remove unused variable

 panels/background/bg-wallpapers-source.c | 1 -
 1 file changed, 1 deletion(-)

commit ce4f4d562725f4e29209cdecf08227f4bae5531c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 02:37:48 2011 +0000

    background: Make loading wallpapers seem faster
    
    As the UI actually updates as the files are loaded.

 panels/background/bg-wallpapers-source.c | 36 ++++++++++++++------------------
 1 file changed, 16 insertions(+), 20 deletions(-)

commit c2e84e2c8a63a182f730eb277211a3e86061ad5d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 02:37:04 2011 +0000

    background: Add "added" signal to CcBackgroundXml
    
    So that the front-end can load the wallpapers piece-meal, and
    avoid overloading the UI on startup.

 panels/background/cc-background-xml.c | 64 ++++++++++++++++++++++++++++++++++-
 panels/background/cc-background-xml.h | 11 +++---
 2 files changed, 69 insertions(+), 6 deletions(-)

commit 415d4c111191a419dd901d61b85425f95520625e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 02:01:23 2011 +0000

    background: GnomeWpXml to CcBackgroundXml
    
    and into a GObject.

 panels/background/Makefile.am            |   8 +-
 panels/background/bg-wallpapers-source.c |  38 +--
 panels/background/cc-background-xml.c    | 528 +++++++++++++++++++++++++++++++
 panels/background/cc-background-xml.h    |  67 ++++
 panels/background/gnome-wp-xml.c         | 456 --------------------------
 panels/background/gnome-wp-xml.h         |  52 ---
 6 files changed, 610 insertions(+), 539 deletions(-)

commit 2e9519a57fa587423f5ce23d88fcc4fe4307733b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 12 02:01:12 2011 +0000

    background: Remove unneeded include

 panels/background/cc-background-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit c016e5cea2287c55f57e2448cf04599c3550215e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 20:24:31 2011 +0000

    background: Remove the "changed" signal
    
    It wasn't used anyway.

 panels/background/bg-pictures-source.c   | 10 -----
 panels/background/bg-wallpapers-source.c | 65 +-------------------------------
 panels/background/cc-background-item.c   | 30 ---------------
 panels/background/cc-background-item.h   |  1 -
 4 files changed, 1 insertion(+), 105 deletions(-)

commit c06822b2e28bf59a449e29a2bb6cd5b377eebeff
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Feb 12 01:01:55 2011 +0200

    Updated Arabic translation

 po/ar.po | 155 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 81 insertions(+), 74 deletions(-)

commit f0b71abec5dc122039a9d37bf8ad0b3b25767f2d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Feb 12 00:43:19 2011 +0200

    Updated Hebrew translation.

 po/he.po | 527 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 291 insertions(+), 236 deletions(-)

commit c805978234e2830a0fa898cbbf90c7fa6f5f3974
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 11 17:01:16 2011 -0500

    screen: fix the operation of locking
    
     - Use the correct units power uses seconds the others use minutes
     - Use an absolute time in the lock dropdown (the key uses relative)
     - Use the MIN(screen-off, lock) for the idle time

 panels/screen/cc-screen-panel.c | 116 ++++++++++++++++++++++++++++++++++++++--
 1 file changed, 111 insertions(+), 5 deletions(-)

commit 55e17567992a9573711876bc3dc72585f74ea8d2
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 11 14:34:14 2011 -0500

    screen: untabify

 panels/screen/cc-screen-panel.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 555bf47f5162c33fa26a5cf661ce680171e553f8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 18:56:45 2011 +0000

    background: Load bg data when selected
    
    And only when selected. There's no point in loading it straight
    away, as we have more than enough metadata to display it in the
    icon view, and we'll need to load up the data when we display
    it anyway.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641414

 panels/background/bg-pictures-source.c | 1 -
 1 file changed, 1 deletion(-)

commit 2e8faa10f0748398fe519405faf3a76a1b8f8675
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 18:52:38 2011 +0000

    background: Don't warn when trying to load a gradient

 panels/background/cc-background-item.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 2735c788b400210b257d0b7f2453e0bc432f64c4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 18:04:57 2011 +0000

    background: Use URIs everywhere internally
    
    Now we'd just need gnome-bg to make the jump.
    
    This also fixes unique IDs for the wallpapers source, as
    multiple backgrounds can be defined in a single XML file.

 panels/background/bg-colors-source.c     |  4 +-
 panels/background/bg-pictures-source.c   | 16 ++----
 panels/background/bg-wallpapers-source.c |  2 -
 panels/background/cc-background-item.c   | 95 +++++++++++++++-----------------
 panels/background/cc-background-item.h   | 12 ++--
 panels/background/cc-background-panel.c  | 47 +++++++---------
 panels/background/gnome-wp-xml.c         | 54 +++++++++---------
 7 files changed, 105 insertions(+), 125 deletions(-)

commit eda2f27c5127436ce5be82c8353deff3be22800c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 18:04:05 2011 +0000

    background: Remove unused settings struct member

 panels/background/gnome-wp-xml.h | 1 -
 1 file changed, 1 deletion(-)

commit eb5b45509712200dd5c24e349506ec37e1390819
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 16:22:54 2011 +0000

    background: Remove some unneeded allocations

 panels/background/gnome-wp-xml.c | 18 ++++--------------
 1 file changed, 4 insertions(+), 14 deletions(-)

commit 7f9f1cabe0e1dfcf334a4b4a4b99d2790c1edb3b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 16:16:13 2011 +0000

    background: Remove debug

 panels/background/cc-background-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit 6b4f95e9d1988dae68b9dfa0ddf8b40f8fedd1aa
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 12:48:48 2011 +0000

    background: Copy to set the new background
    
    Instead of reusing the item from the list store, otherwise we
    might be tweaking properties for an item that we shouldn't,
    and leaking user preferences into the "static" list store.

 panels/background/cc-background-panel.c | 35 ++-------------------------------
 1 file changed, 2 insertions(+), 33 deletions(-)

commit 85b2cad706dcc5145622dff5e44cef348ce1c39d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 12:48:28 2011 +0000

    background: Add function to copy a background item

 panels/background/cc-background-item.c | 21 +++++++++++++++++++++
 panels/background/cc-background-item.h |  1 +
 2 files changed, 22 insertions(+)

commit 9b55bb20e3bcc229ce74a46dbda942c7c0f9dd14
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 12:39:51 2011 +0000

    background: Load initial state from GSettings
    
    gnome_wp_item_update() used to do that for us.

 panels/background/cc-background-panel.c | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

commit 4bd51634a074456b84fbbed0f3149a15d091ad06
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 12:38:46 2011 +0000

    background: Make update_size() work in _load()
    
    If we never got an initial frame, it wouldn't work too well.

 panels/background/cc-background-item.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit ba72b7ab189d657f60d2aa7e9ef23a19e069f45e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 12:23:44 2011 +0000

    background: Remove read-only source property
    
    And squash together the code to setup the editing widgets.

 panels/background/background.ui         |  2 -
 panels/background/cc-background-panel.c | 83 ++++++++++++---------------------
 2 files changed, 30 insertions(+), 55 deletions(-)

commit 15d67c1eaddc734512d8d1d061ea83250f1b24df
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Fri Feb 11 19:15:32 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 537 +++++++++++++++++++++++++++++++++---------------------------
 po/zh_TW.po | 537 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 592 insertions(+), 482 deletions(-)

commit 15a5849384f9862b01a549ca697ad3fb8cab2b7d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 03:51:38 2011 +0000

    background: Use the item flags
    
    When setting a new background. That ensures that we don't lose
    existing settings when the background item doesn't provide one
    (for example, setting the background colour when setting a picture
    item).

 panels/background/cc-background-panel.c | 43 +++++++++++++++++++++------------
 1 file changed, 27 insertions(+), 16 deletions(-)

commit 9e3903a8280e39237b5dde86c291ecb4108c5eb0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 03:49:49 2011 +0000

    background: Set the flags for the pictures source

 panels/background/bg-pictures-source.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

commit cb2a53141de03c978e0a1a9777056d8781ea4caf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 03:49:23 2011 +0000

    background: Set the flags for the colors source

 panels/background/bg-colors-source.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit f2cfedd98b22fd349423c9b7ca26036d1c2512da
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 03:35:50 2011 +0000

    background: Add function for debugging
    
    Prints out the contents of a CcBackgroundItem in details.

 panels/background/cc-background-item.c | 56 ++++++++++++++++++++++++++++++++++
 panels/background/cc-background-item.h |  2 ++
 2 files changed, 58 insertions(+)

commit 73798da68838fbdf309fca54a72d1cb6b95deab8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 03:19:09 2011 +0000

    background: Remove some dead code

 panels/background/cc-background-item.c | 49 ----------------------------------
 1 file changed, 49 deletions(-)

commit ed425ecf9dc7b8e7b65f112a6a5122c83973adae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 11 03:18:22 2011 +0000

    background: Better guards for public functions

 panels/background/cc-background-item.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 697ab6bc21ab0b4525d5cd9a1e67c1b540f0da82
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Thu Feb 10 22:45:35 2011 +0000

    region: Pass config registry to the kbd drawing dialog
    
    Updated for libgnomekbd API

 panels/region/gnome-region-panel-xkblt.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 0cbc8ea27ae3eb2f8f1b7572e5f877a2dd6f7850
Author: Jasper St. Pierre <jstpierre@mecheye.net>
Date:   Thu Feb 10 16:54:49 2011 -0500

    Fix build of generated sources.

 panels/background/Makefile.am | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 3bf4c967318906a056db6e5dd79d2c2ef7596e81
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Thu Feb 10 23:01:05 2011 +0100

    Updated Basque language

 po/eu.po | 6949 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 4092 insertions(+), 2857 deletions(-)

commit b518a33e9aba5f42b77708c69c4309e9eff08db5
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu Feb 10 22:32:25 2011 +0100

    l10n: clean up POTFILES.in

 po/POTFILES.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a653a0a5600cd0cfdeff8802d30211c29c20981d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 10 20:34:23 2011 +0000

    background: Remove unused GnomeWpInfo code

 panels/background/Makefile.am     | 34 +++++++-------
 panels/background/gnome-wp-info.c | 98 ---------------------------------------
 panels/background/gnome-wp-info.h | 46 ------------------
 3 files changed, 17 insertions(+), 161 deletions(-)

commit ca14846ef95ab65b6a01b87e2975913e8b93074e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 10 20:30:57 2011 +0000

    background: Major rework of the CcBackgroundItem code
    
    It now is a full GObject, will be able to track the original
    XML file for a wallpaper, as well as which values are set in it.
    
    This will allow us to restore wallpapers properly, and only offer
    editing options when those aren't already hard-coded inside the
    item.

 configure.ac                             |   2 +
 panels/background/Makefile.am            |  28 +-
 panels/background/bg-colors-source.c     |  28 +-
 panels/background/bg-flickr-source.c     |  26 +-
 panels/background/bg-pictures-source.c   |  28 +-
 panels/background/bg-source.c            |   4 +-
 panels/background/bg-wallpapers-source.c |  25 +-
 panels/background/cc-background-item.c   | 909 +++++++++++++++++++++++++------
 panels/background/cc-background-item.h   | 144 ++---
 panels/background/cc-background-panel.c  | 139 ++---
 panels/background/gnome-wp-xml.c         | 240 ++++----
 panels/background/gnome-wp-xml.h         |   1 +
 12 files changed, 1080 insertions(+), 494 deletions(-)

commit 9a209fa181bd2b480317228e5e847e946c50d190
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 10 12:29:29 2011 +0000

    background: Rename gnome-wp-item to cc-background-item

 panels/background/Makefile.am            |   6 +-
 panels/background/bg-colors-source.c     |   6 +-
 panels/background/bg-flickr-source.c     |   4 +-
 panels/background/bg-pictures-source.c   |   8 +-
 panels/background/bg-source.c            |   4 +-
 panels/background/bg-wallpapers-source.c |   8 +-
 panels/background/cc-background-item.c   | 223 +++++++++++++++++++++++++++++++
 panels/background/cc-background-item.h   |  89 ++++++++++++
 panels/background/cc-background-panel.c  |  16 +--
 panels/background/gnome-wp-item.c        | 223 -------------------------------
 panels/background/gnome-wp-item.h        |  89 ------------
 panels/background/gnome-wp-xml.c         |  12 +-
 12 files changed, 345 insertions(+), 343 deletions(-)

commit 45df865718456e8b8ce4952cff6712638bfa57a0
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Feb 10 15:34:20 2011 +0100

    printer: Some UI tweaks
    
    Set minimal width of renderer showing names of printers to 120 pixels.
    Set also ellipsizing for the renderer. Set some widgets insensitive
    when there is no printer (#641421). Set correct character for empty
    fields. Always set background color for supply levels' GtkDrawingArea.

 panels/printers/cc-printers-panel.c | 47 ++++++++++++++++++++++++++-----------
 1 file changed, 33 insertions(+), 14 deletions(-)

commit 7b287b8c03f3c272711239d9c4c2546d53ebe6bf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 10 12:01:17 2011 +0000

    background: Async function for loading XML wallpapers
    
    It's ugly API, but it means we don't block anymore.

 panels/background/bg-wallpapers-source.c | 28 ++++++++++++++++--------
 panels/background/gnome-wp-xml.c         | 37 ++++++++++++++++++++++++++++++++
 panels/background/gnome-wp-xml.h         | 10 +++++++++
 3 files changed, 66 insertions(+), 9 deletions(-)

commit 1416e68b92bc2e7063c6de303c385e28312f52cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 10 11:35:29 2011 +0000

    background: Make a few functions private
    
    They were only used within gnome-wp-xml.c, and nowhere else
    so hide them there.

 panels/background/gnome-wp-item.c | 70 ---------------------------------
 panels/background/gnome-wp-item.h |  5 ---
 panels/background/gnome-wp-xml.c  | 81 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 81 insertions(+), 75 deletions(-)

commit 75d97e3bf4754acd44c2024898bd30d631ef3319
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 9 16:15:23 2011 +0000

    background: Remove loading of obsolete backgrounds
    
    Shouldn't be needed any more.

 panels/background/gnome-wp-xml.c | 61 ----------------------------------------
 1 file changed, 61 deletions(-)

commit aa0f4765c4bec56c9394ae66a7c395775783c084
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Feb 10 12:34:15 2011 +0100

    printers: Replace "Idle" state by "Ready"

 panels/printers/cc-printers-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0f1caabc332fa35eea80a437b0c43da549330cc5
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Feb 10 11:04:17 2011 +0100

    printers: Don't try to draw empty ink level

 panels/printers/cc-printers-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 88ff47618b0f4b93c0d6c5b40f15e49505499974
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Feb 10 11:00:27 2011 +0100

    printers: Don't show printers separator when not needed
    
    Don't show printers separator when there are only unused printers.

 panels/printers/cc-printers-panel.c | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

commit b5e63ec96b2a50bb53e4749f8348d41419a4bbbe
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Wed Feb 9 09:29:57 2011 +0000

    Fix the modality of the Preview dialog
    
    set_modal should be used instead of set_transient_for
    Also, a bit of memory tidy up

 panels/region/gnome-region-panel-xkbltadd.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 2ebe50c4cece02e445053b8c6486fb7b2607797b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 9 18:09:18 2011 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 267 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 154 insertions(+), 113 deletions(-)

commit 30bb1fc9151ea5be58e51cab2532b56d01b87ac8
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Wed Feb 9 16:22:25 2011 +0530

    Updated Gujarati Translations

 po/gu.po | 5678 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2824 insertions(+), 2854 deletions(-)

commit 58d3071889e06e655be3df1708d498320e289ec2
Author: Ivar Smolin <okul@linux.ee>
Date:   Wed Feb 9 08:52:20 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 119 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 74 insertions(+), 45 deletions(-)

commit b7fdcc4ce54ed0dd131d8498b0c19f6d8c027972
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Feb 9 01:32:26 2011 +0100

    Updated Italian translation

 po/it.po | 390 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 201 insertions(+), 189 deletions(-)

commit 570c97ab266a5ab30af464ca499f93239035ff55
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 8 23:13:08 2011 +0000

    datetime: Fix city combobox filtering
    
    The city combo box's filter was never refiltered after setting
    the original timezone, so we always got the whole list of cities.

 panels/datetime/cc-datetime-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 9e0d566cfb03a851564e589c885c4fba2205e3ae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 8 22:33:12 2011 +0000

    region: Fix overeager string splitting
    
    So that Argentinian timezones show up properly again.

 panels/datetime/cc-datetime-panel.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 963f992452dda54ff344a924470d8bf5f7950efb
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Tue Feb 8 22:21:09 2011 +0000

    region: make layout filtering much faster
    
    Using app-level filter instead of libxklavier filter

 panels/region/gnome-region-panel-layout-chooser.ui |   9 +-
 panels/region/gnome-region-panel-xkbltadd.c        | 209 ++++++++++++++++++---
 2 files changed, 185 insertions(+), 33 deletions(-)

commit 99c1d959be62b6d4b6849dc0d4be7a126b7251de
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 8 21:35:30 2011 +0000

    screen: Make sure the combo box is always set
    
    If a value is between 2 values, choose the upper one. If a value
    is higher than the maximim used in the combobox, set it to the
    maximum.

 panels/screen/cc-screen-panel.c | 32 ++++++++++++++++++++++++++------
 1 file changed, 26 insertions(+), 6 deletions(-)

commit 23be6616a4f2207115d6c5d2c97d0b3d9cccab43
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Feb 8 18:37:29 2011 +0200

    Updated Arabic translation

 po/ar.po | 178 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 96 insertions(+), 82 deletions(-)

commit fc4bf8bf9d04af106ffd39588564c0b3b00675ee
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Feb 8 16:27:50 2011 +0100

    printers: Change widget showing supply levels
    
    Show Ink/Toner levels in one rectangle now. It sorts
    levels and shows the highest level. It paints the lower
    levels on top of that. So the lowest level is on top
    (overlapping the others).
    It also shows "Ink Level"/"Toner Level"/"Supply Level"
    label for corresponding supplies now.

 panels/printers/cc-printers-panel.c | 188 ++++++++++++++++++++++++------------
 panels/printers/printers.ui         |  17 +---
 2 files changed, 128 insertions(+), 77 deletions(-)

commit d6a2046a0f1c9c8d943fe720b10fc314941a40fc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 8 15:20:49 2011 +0000

    screen: Set idle-delay to the same value as DPMS timeout
    
    So that the user and session are idle when DPMS kicks in.

 panels/screen/cc-screen-panel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit c09ecde3cf40291bae9defb0a1e424cfdc509bdd
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 7 18:55:03 2011 +0000

    screen: Hook up screen locking
    
    https://bugzilla.gnome.org/show_bug.cgi?id=637939

 configure.ac                    |  2 +-
 panels/screen/cc-screen-panel.c | 75 ++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 75 insertions(+), 2 deletions(-)

commit f2461603f3c5a9b972f60089d0f4d970ace054bf
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 8 12:00:19 2011 +0000

    network: now we know that using NM async works, rework the prototype into some sane abstractions

 panels/network/cc-network-panel.c           | 1462 ++++----------------------
 panels/network/nm-access-point.c            |  290 ++++++
 panels/network/nm-access-point.h            |   73 ++
 panels/network/nm-device.c                  | 1495 +++++++++++++++++++++++++++
 panels/network/nm-device.h                  |  107 ++
 panels/network/panel-cell-renderer-mode.c   |    2 +-
 panels/network/panel-cell-renderer-mode.h   |    5 +-
 panels/network/panel-cell-renderer-signal.h |    3 +-
 po/POTFILES.in                              |    3 +-
 9 files changed, 2167 insertions(+), 1273 deletions(-)

commit 5253a808c05aba511f2020a4dc35c0672eeed254
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Feb 8 00:24:02 2011 +0100

    Updated Swedish translation

 po/sv.po | 2023 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1180 insertions(+), 843 deletions(-)

commit d79e31da3278ec18863252609240ab737ccb556a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 7 16:58:52 2011 +0000

    screen: Hide the brightness slider when it cannot be set
    
    If there's no brightness hardware, just hide the brightness related
    preferences.

 panels/screen/cc-screen-panel.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 5fd4a775881420fb3bea9f364d1b7f9eac1052a1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 7 16:58:25 2011 +0000

    screen: Simplify GtkBuilder-using code
    
    By using the already defined macro

 panels/screen/cc-screen-panel.c | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

commit 3b3392e1fedb2f635ab7c4bc5c39883373df858d
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Feb 7 18:06:19 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 6baa1a05dd9f3865ce72e86b8ec20e89f749062d
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Sun Feb 6 16:26:02 2011 -0500

    network: fix a crasher due to an uninitialized GVariant

 panels/network/cc-network-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8518a5eee86b4ac1669b946f453cbb99097cd377
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Feb 7 14:17:54 2011 +0000

    network: show the wired network subnet mask
    
    Note: this is really just a dummy commit, as the network device
    stuff is about to be abstracted away from the hacky code we have
    now.

 panels/network/cc-network-panel.c | 108 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 106 insertions(+), 2 deletions(-)

commit 419248bae91fe50db73f959c151a1fe9a807ed26
Author: Richard Hughes <richard@hughsie.com>
Date:   Mon Feb 7 13:39:07 2011 +0000

    network: Disable NetworkManager when the airplane switch gets changed

 panels/network/cc-network-panel.c | 95 ++++++++++++++++++++++++++++++++++-----
 1 file changed, 85 insertions(+), 10 deletions(-)

commit a345d23ed0835e32c92b134fccc6bf7aa2ebe5d0
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Feb 7 15:07:35 2011 +0100

    printers: Check that cups is recent enough
    
    Check that cups version is greater than 1.4 or equal to 1.4.

 configure.ac | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)

commit e55acf1eae7e48e5b8f10ee18e6c08c752402f8a
Author: A S Alam <aalam@users.sf.net>
Date:   Mon Feb 7 19:24:08 2011 +0530

    update Punjabi Translation by  Alam

 po/pa.po | 501 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 258 insertions(+), 243 deletions(-)

commit 6c403240cc5ce351b65187994274d6cad14e9683
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Feb 7 14:49:41 2011 +0200

    Updated Arabic translation

 po/ar.po | 211 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 125 insertions(+), 86 deletions(-)

commit 703129bbfe94f5b57f4b07787bd6c45ab3c8c1e9
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Feb 7 12:19:26 2011 +0100

    printers: Avoid unnecessary use of markup
    
    Replace unnecessary use of markup with text proprieties.

 panels/printers/printers.ui | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit dfdc194cbe657167b96d3d0ebdce5c929a5e96ee
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Mon Feb 7 11:55:27 2011 +0100

    printers: add translation context to statuses (#641339)
    
    Add translation context to printer status and job status. Increase required
    inltool to 0.40.1 in order to use NC_(). See bug #641339 for details.

 configure.ac                        |  2 +-
 panels/printers/cc-printers-panel.c | 24 ++++++++++++------------
 2 files changed, 13 insertions(+), 13 deletions(-)

commit 18d764cf9fe376e0c34f9e45ac9661731dec1aff
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Mon Feb 7 10:56:06 2011 +0100

    printers: l10n fixes for jobs count
    
    use ngettext for "%d active" message and don't mark as translatable
    the related placeholder in printers.ui file
    Slightly modified by Marek Kasik.

 panels/printers/cc-printers-panel.c | 4 +++-
 panels/printers/printers.ui         | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 610ddff3b0cdfaab7006036593ee2e029a52b1e9
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Feb 7 09:23:22 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 59 +++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 33 insertions(+), 26 deletions(-)

commit ceac040387f1fa9bf0c15ba373d3b9bbbcc8e755
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 7 01:50:22 2011 +0000

    region: Some UI fixes for the layout chooser
    
    And parent it appropriately.

 panels/region/gnome-region-panel-layout-chooser.ui | 139 ++++++++++++---------
 1 file changed, 77 insertions(+), 62 deletions(-)

commit 8f405c9346066cb64a7527fe9cd3876c899f1832
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 7 01:15:16 2011 +0000

    region: Remove code to handle print button
    
    It's not in the main UI anymore.

 panels/region/gnome-region-panel-xkb.c | 5 -----
 1 file changed, 5 deletions(-)

commit 9c2bfba4caf404456d5daf30ebfcc863c6d2cd68
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Feb 7 01:06:39 2011 +0000

    region: Easier to understand layout switching options
    
    Use 2 groups of radio buttons to make layout options related
    to windows easier to understand.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641021

 panels/region/gnome-region-panel-xkb.c | 40 ++++++--------
 panels/region/gnome-region-panel.ui    | 99 ++++++++++++++++++++++++++--------
 2 files changed, 93 insertions(+), 46 deletions(-)

commit a950f9d9d155ea4f0efedf22f829ba1f8615e0a8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 6 19:27:50 2011 +0100

    Add missing file

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit d14235d249134ee18c91ca3a8de0f70fe595336b
Merge: 3212170 ebfe1af
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 6 19:10:52 2011 +0100

    Updated Norwegian bokmål translation.

commit 3212170fdecc6b504bcca3a10c5c5df9c92c8d63
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 6 19:09:32 2011 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 678 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 313 insertions(+), 365 deletions(-)

commit ebfe1af8304ae474e0519c9512b4a0bd38c3f350
Author: Ivar Smolin <okul@linux.ee>
Date:   Sun Feb 6 10:11:06 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 374 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 193 insertions(+), 181 deletions(-)

commit 222103be38b277d55c1e7ae7f8f34c06ef308845
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 5 17:58:38 2011 +0000

    universal-access: hide "Option" buttons that don't have any implementation

 panels/universal-access/uap.ui | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit f629b1320698b8a528c30ea545420eee5e8be21e
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 5 17:13:57 2011 +0000

    universal-access: hide options that are currently unavailable
    
    Hide options that are currently unavailable or unlikely to be implemented
    in time for the 3.0 release.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639784

 panels/universal-access/uap.ui | 8 --------
 1 file changed, 8 deletions(-)

commit 987f8c14250b046d3094a3350edca921d3ccd455
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Feb 5 16:04:53 2011 +0000

    universal-access: allow the pointer page to use less horizontal space

 panels/universal-access/uap.ui | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

commit 3edfefad90b53485b96f16f0ea545ad9e4ae4ae4
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Feb 5 17:00:44 2011 +0000

    Showing the kbd layout preview dialog
    
    gtk_widget_show_all was in new_dialog before, has to be called explicitly

 panels/region/gnome-region-panel-xkblt.c | 1 +
 1 file changed, 1 insertion(+)

commit 3e3995dab7ce33a47c6b7cb18623766aaf6621c3
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Feb 5 16:39:32 2011 +0200

    Updated Arabic translation

 po/ar.po | 275 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 138 insertions(+), 137 deletions(-)

commit f96d5c5ea4ea4a6ed8a04b83ff00cb10df1fc2de
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 5 10:08:21 2011 +0100

    Updated Spanish translation

 po/es.po | 307 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 147 insertions(+), 160 deletions(-)

commit 4c38a00c395e5459e2ecc424a38d634e9dd77087
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Feb 5 10:07:07 2011 +0100

    Updated Spanish translation

 po/es.po | 484 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 273 insertions(+), 211 deletions(-)

commit c2bc94d6ef007078dc9d538c5e1fd27b313d2095
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 5 03:07:13 2011 +0000

    region: Remove annoying tooltip on a treeview

 panels/region/gnome-region-panel.ui | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 28d69973d2dccc355069788deb2208b3ce415b66
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Fri Feb 4 22:54:33 2011 +0000

    Sort the layout list in the chooser

 panels/region/gnome-region-panel-xkbltadd.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 7808e6edaed144d8472e3c44a608778044c2b341
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Fri Feb 4 22:39:03 2011 +0000

    Minor UI tweaks in kbd layout chooser
    
    Frame around layout list, initial focus on the search field

 panels/region/gnome-region-panel-layout-chooser.ui | 1 +
 panels/region/gnome-region-panel-xkbltadd.c        | 2 ++
 2 files changed, 3 insertions(+)

commit ce64d844d40c7af64f4177cdafc8f56698e064b6
Author: Gheyret Kenji <gheyret@hotmail.com>
Date:   Fri Feb 4 23:17:06 2011 +0100

    Added UG translation

 po/ug.po | 3825 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2321 insertions(+), 1504 deletions(-)

commit f536171953298f8e6abac651dc144fd72aa240dd
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 4 16:51:46 2011 -0500

    require libxklavier 5.1

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7da8390241cca72035f81f1809226ea4eee6060b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Feb 4 15:50:29 2011 -0500

    um-editable-entry: port to GtkStyleContext

 panels/user-accounts/um-editable-entry.c | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit 0132e4be37b9200c337c7a988f0dfdabc2a9820f
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Feb 4 15:43:40 2011 -0500

    all: make GCC stop complaining about set but unused variables

 panels/sound/gvc-mixer-event-role.c        | 19 -----------------
 panels/sound/gvc-mixer-sink-input.c        | 33 ------------------------------
 panels/sound/gvc-mixer-sink.c              | 31 ----------------------------
 panels/sound/gvc-mixer-source-output.c     | 16 ---------------
 panels/sound/gvc-mixer-source.c            | 31 ----------------------------
 panels/sound/gvc-sound-theme-chooser.c     | 16 +--------------
 panels/user-accounts/fingerprint-strings.h |  2 +-
 panels/user-accounts/um-language-dialog.c  |  2 --
 panels/user-accounts/um-user-panel.c       |  4 +---
 panels/user-accounts/um-utils.c            |  2 --
 10 files changed, 3 insertions(+), 153 deletions(-)

commit f0bee95a74a5d98939e6f1d4fbe2c1a7121d51c4
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Fri Feb 4 15:40:25 2011 -0500

    Use gdk_error_trap_pop_ignored()

 panels/mouse/gsd-input-helper.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 533edb7f48fb1897658a46d0b232e0deeb51897e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Feb 4 21:35:53 2011 +0100

    Updated Galician translations

 po/gl.po | 509 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 287 insertions(+), 222 deletions(-)

commit 56592a114d45841ab67920f6e454535b1e280f6e
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 4 15:21:18 2011 -0500

    info: add special case for Atom(TM)

 panels/info/cc-info-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit fe04b358a420d8e03951473c98ac0740613eb8d4
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Fri Feb 4 19:55:38 2011 +0000

    New search-based layout addition
    
    Bug #640772, see mockup
    Requires new version of libgnomekbd and libxklavier

 panels/region/gnome-region-panel-layout-chooser.ui | 260 ++-------
 panels/region/gnome-region-panel-xkb.c             |   9 +-
 panels/region/gnome-region-panel-xkb.h             |   2 +-
 panels/region/gnome-region-panel-xkblt.c           |   9 +-
 panels/region/gnome-region-panel-xkbltadd.c        | 587 ++++++---------------
 5 files changed, 221 insertions(+), 646 deletions(-)

commit d734bbc7348021ae90d50ea7d1aef0f726c45d3b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Feb 4 14:27:25 2011 -0500

    info: add graphics info
    
    Try to get the graphics info first from glxinfo and then
    from lspci.  Then prettify the results a bit.

 panels/info/cc-info-panel.c | 181 +++++++++++++++++++++++++++++++++++++++++++-
 panels/info/info.ui         | 122 ++++++++++++++++++++++-------
 2 files changed, 273 insertions(+), 30 deletions(-)

commit ec075f58f0e1d25831cee0f7afa3882329a7a253
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 4 16:41:33 2011 +0000

    display: Remove unused "apply_button" member

 panels/display/xrandr-capplet.c | 2 --
 1 file changed, 2 deletions(-)

commit cda9d34f941263bc72a39cd18cf378f2264eb182
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 4 03:37:30 2011 +0000

    display: Remove unused computation

 panels/display/xrandr-capplet.c | 6 ------
 1 file changed, 6 deletions(-)

commit 8f614133ea72629c8f18182ad8acc5e4f5a8b0ee
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 4 03:35:12 2011 +0000

    display: Remove old radio-timey code
    
    There's no radio button to switch to off now.

 panels/display/xrandr-capplet.c | 3 ---
 1 file changed, 3 deletions(-)

commit 19f5c35da85979747f39b0b2f4223dde0938f4cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 4 03:31:48 2011 +0000

    display: Simplify some old GNOME 2.x code
    
    There's no need to wait for gtk_dialog_run() now...

 panels/display/xrandr-capplet.c | 20 +++-----------------
 1 file changed, 3 insertions(+), 17 deletions(-)

commit 91faba68b2b1c3058a555ecfa79b3cde623ca69d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 4 03:06:40 2011 +0000

    display: Remove support for old D-Bus interface
    
    version 1 support for the protocol is gone. All the
    gnome-settings-daemon for the past 2 years have supported the new
    interface.

 panels/display/xrandr-capplet.c | 46 ++++-------------------------------------
 1 file changed, 4 insertions(+), 42 deletions(-)

commit b1af38f23d0b668677d18567b96cddc47ca52ff1
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Feb 4 18:30:03 2011 +0200

    Updated Arabic translation

 po/ar.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 2406752685b908ea7b6adcb44b0aaec27e2aa944
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Feb 4 17:09:00 2011 +0100

    printers: Sort printers by usage
    
    Sort printers by amount of jobs sent to them (#641285). Separate
    unused printers by separator from the rest of printers.

 panels/printers/cc-printers-panel.c | 121 +++++++++++++++++++++++++++++++-----
 1 file changed, 106 insertions(+), 15 deletions(-)

commit 3b681233ecbd0f421c08abe9254f453c96597f96
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Feb 4 09:20:49 2011 +0200

    Updated Hebrew translation.

 po/he.po | 444 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 248 insertions(+), 196 deletions(-)

commit 5448188cc4ed04e3835439ba0f2076ca126a4915
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Feb 4 02:35:05 2011 +0000

    datetime: Fix crash when TZ is an alias
    
    Using the "backward" file from tzdata (available under the public
    domain), we load the aliases for real timezones, to look them up
    against our database.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641360

 panels/datetime/Makefile.am       |   2 +
 panels/datetime/backward          | 118 ++++++++++++++++++++++++++++++++++++++
 panels/datetime/cc-timezone-map.c |  70 +++++++++++++++++++---
 3 files changed, 183 insertions(+), 7 deletions(-)

commit 40e2c9eed4a3a21d8e722bfda21dbf962dc7bc49
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 3 19:11:02 2011 +0000

    common: Load language names for locales with 3 letters
    
    If software with "Chhattisgarhi" translations was loaded (such
    as k3b), we would fail to load the language name for it, as we
    were not parsing the ISO-639-3 database.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641373

 panels/common/gdm-languages.c | 45 ++++++++++++++++++++++++++++++++++---------
 1 file changed, 36 insertions(+), 9 deletions(-)

commit 7cfa641feb67d6fd5ae5a86283c09e1c042ca12d
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Thu Feb 3 20:17:34 2011 +0200

    Avoid using locales without language names.
    
    Quick and dirty fix for not using all the iso-codes resources for
    finding a suitable language name for a locale.

 panels/common/cc-common-language.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 7f78615272ed9b40581ac97cd7214db77dc198c1
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Feb 3 17:08:00 2011 +0200

    Update Arabic timezones translation
    
    Already sent to upstream Fedora translators and should appear there in
    due time, but can't risk getting this embarrassing translation in the
    release.

 panels/datetime/po-timezones/ar.po | 527 ++++++++++++++++++-------------------
 1 file changed, 263 insertions(+), 264 deletions(-)

commit 6d04352c1fb07ef3b5b63b23e56ac51bbaa43105
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Feb 3 14:02:11 2011 +0000

    build: Make iso-codes a hard-dependency
    
    Otherwise the region panel, and the user-accounts panel would
    crash on startup, or when showing a list of languages.

 configure.ac | 3 +++
 1 file changed, 3 insertions(+)

commit f0d0c6300ff227198c916517fbc4f211ca8d757a
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Feb 3 15:55:16 2011 +0200

    Updated Arabic translation

 po/ar.po | 636 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 339 insertions(+), 297 deletions(-)

commit 83a437d2ff60505731203a52f88a3264efadb759
Author: Christian Persch <chpe@gnome.org>
Date:   Wed Feb 2 21:52:15 2011 +0100

    datetime: Create filenames locale-independently
    
    Bug #641294.

 panels/datetime/cc-timezone-map.c |  6 ++++--
 panels/datetime/test-timezone.c   | 10 +++++++++-
 2 files changed, 13 insertions(+), 3 deletions(-)

commit ace6fb930964978ad44aeb5cfe254af6e7e16278
Author: Christian Persch <chpe@gnome.org>
Date:   Wed Feb 2 20:35:54 2011 +0100

    shell: Don't pass invalid option flags
    
    G_OPTION_FLAG_OPTIONAL_ARG is only valid for callback options.
    
    Bug #641290.

 shell/control-center.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit faa5deccea691b14a85353b2d92e7fe39c266574
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu Feb 3 14:01:32 2011 +0100

    Updated Italian translation

 po/it.po | 997 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 560 insertions(+), 437 deletions(-)

commit b415a03a8ffb4b2abcc9bf8e6546b09eb0e6fe15
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Thu Feb 3 14:33:22 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 717 ++++++++++++++++++++++++++++++------------------------------
 po/zh_TW.po | 717 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 724 insertions(+), 710 deletions(-)

commit 6249d34f3945f2351460bde231e9431f29047cbe
Author: A S Alam <aalam@users.sf.net>
Date:   Thu Feb 3 08:18:01 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 498 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 274 insertions(+), 224 deletions(-)

commit bb2e8060d473f491af6798c2bdbda9bb977f4b9c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 21:30:17 2011 -0500

    info: make labels selectable

 panels/info/info.ui | 5 +++++
 1 file changed, 5 insertions(+)

commit 437b2cfb405a795feb17a8f6a2895aa7805e44c0
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 20:00:31 2011 -0500

    keyboard: improve the layout of the bindings page
    
    Limit size of sections view and keep the key column the same size.

 panels/keyboard/gnome-keyboard-panel.ui | 4 ++++
 panels/keyboard/keyboard-shortcuts.c    | 7 +++++++
 2 files changed, 11 insertions(+)

commit 5db83718e3d4fcd9154a290fcce07e8bd5984b14
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 17:48:35 2011 -0500

    keyboard: add missing file

 panels/keyboard/01-system.xml.in | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 4d7c8354c4200633866694db97a48f2cb4302669
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 17:31:18 2011 -0500

    keyboard: allow merging key groups together per section

 panels/keyboard/keyboard-shortcuts.c | 98 +++++++++++++++++++++++++++++-------
 1 file changed, 81 insertions(+), 17 deletions(-)

commit c248dd8788567ef9de6b57d7ba2f36742744b506
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 16:51:14 2011 -0500

    keyboard: change grouping of keys

 panels/keyboard/00-multimedia-key.xml.in | 35 --------------------------------
 panels/keyboard/00-multimedia.xml.in     | 35 ++++++++++++++++++++++++++++++++
 panels/keyboard/01-desktop-key.xml.in    | 29 --------------------------
 panels/keyboard/01-launchers.xml.in      | 23 +++++++++++++++++++++
 panels/keyboard/Makefile.am              |  2 +-
 po/POTFILES.in                           |  5 +++--
 6 files changed, 62 insertions(+), 67 deletions(-)

commit 6d27be8f787234e9f5f7576135a7920f991900ed
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Feb 2 16:59:50 2011 +0100

    printers: Add unlock button (#640733)
    
    Add unlock button from the User Accounts panel to the Printer panel.

 panels/printers/Makefile.am         |   5 +-
 panels/printers/cc-printers-panel.c |  68 +++-
 panels/printers/pp-lockbutton.c     | 627 ++++++++++++++++++++++++++++++++++++
 panels/printers/pp-lockbutton.h     |  68 ++++
 4 files changed, 761 insertions(+), 7 deletions(-)

commit de278d3a857374a8f9cb8af3db211e9f87089049
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 2 11:42:31 2011 +0000

    datetime: Don't crash when g-s-d is badly installed
    
    And require a newer gnome-settings-daemon to avoid those problems.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641232

 configure.ac                        | 2 +-
 panels/datetime/cc-datetime-panel.c | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b009d6875b9ff4b033c4b5c547eaab1b3bc05f78
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 1 13:41:01 2011 +0000

    shell: Add shortcuts to focus search entry
    
    Ctrl+S and Ctrl+F are used in overview mode to focus the search entry.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=409230

 shell/cinnamon-control-center.c | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

commit 04f84937a627b142f6cb45bf71e2f7882792ba57
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 02:18:07 2011 -0500

    network: use emblem-default-symbolic for the default printer

 panels/printers/cc-printers-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1173df903f2c3586fe980dca05801cfdbd10c82a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 02:13:01 2011 -0500

    printers: add mores spacing to table

 panels/printers/printers.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6d690d67282b05f64f470f6a496335acc7cd8a54
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 2 02:08:14 2011 -0500

    Post-release bump

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 33627f1ae804daea47f733c7cc2f24cb2fedce30
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 02:04:25 2011 -0500

    network: don't just select device once

 panels/network/cc-network-panel.c | 6 ------
 1 file changed, 6 deletions(-)

commit 5e4e05608c935a4c3d0680e843703be1d7eb5621
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 2 02:00:04 2011 -0500

    Update POTFILES

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit affe84ad5e502083b79f0bfa0423387d375ef1bc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 01:42:30 2011 -0500

    network: use the same border width as other panels

 panels/network/network.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5bbcd9b75d4f676ef13703470510885ede638008
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 01:38:33 2011 -0500

    network: select the first device after they are all loaded

 panels/network/cc-network-panel.c | 40 +++++++++++++++++++++++++++++++--------
 1 file changed, 32 insertions(+), 8 deletions(-)

commit a9c4426dd2c370578704c261f3a237832886324a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 01:07:18 2011 -0500

    network: wrap long dns lines

 panels/network/network.ui | 4 ++++
 1 file changed, 4 insertions(+)

commit 111b2785f809db427125e4011b2128494ba58f59
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 00:36:10 2011 -0500

    printers: remove unused variables

 panels/printers/cc-printers-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit 5ce5e74692b2649e829a78aa7df5f0e1302592ee
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 00:35:16 2011 -0500

    user-accounts: use 0 instead of blank to clear options

 panels/user-accounts/data/user-accounts-dialog.ui | 26 +++++++++++------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit a46e4ae9c4764b59e8bf9d38b3c747db09f18397
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Feb 2 00:31:41 2011 -0500

    printers: allow location and model to span cols again

 panels/printers/printers.ui | 28 ++--------------------------
 1 file changed, 2 insertions(+), 26 deletions(-)

commit 79752c921a623c529e3e3bc672ae8a0d34010abc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Feb 2 00:22:35 2011 -0500

    Printers: fix panel width

 panels/printers/cc-printers-panel.c | 10 ++--
 panels/printers/printers.ui         | 96 +++++++++++++++----------------------
 2 files changed, 41 insertions(+), 65 deletions(-)

commit cdf6311f63a0daf7f1a9ea78f7e9a56b70d500ce
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Feb 1 23:25:22 2011 -0500

    Printers: some table surgery
    
    Try to get sizing under control

 panels/printers/printers.ui | 61 ++++++++++++++++++++++-----------------------
 1 file changed, 30 insertions(+), 31 deletions(-)

commit 768e9f249beb1881bdc0342f9ff7e5991935da4f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Feb 1 17:54:08 2011 -0500

    2.91.6

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b65017536eca4d0295b0c8cc96396bcb95bde4d5
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 1 18:36:28 2011 -0500

    printers: don't expand switch vertically

 panels/printers/printers.ui | 119 +++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 107 insertions(+), 12 deletions(-)

commit 7523133570a5180cd6be44aef1d791f2981a18b4
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 1 18:17:43 2011 -0500

    printers: use a 64px icon

 panels/printers/printers.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2c8f8e290cd69502ca1169127e1e18875d15c857
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 1 18:16:01 2011 -0500

    printers: right align the image

 panels/printers/printers.ui | 1 +
 1 file changed, 1 insertion(+)

commit 8a4e047cd614a0c8ca40e7e524cffe80723ec3fc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Feb 1 18:00:12 2011 -0500

    region: use consistent border spacing

 panels/region/gnome-region-panel.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 19c22a34a7b20e2ece5bc4634365e14348f95692
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Feb 1 17:53:11 2011 -0500

    Update NEWS for 2.91.6

 NEWS | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 106 insertions(+)

commit 265948473e697fe7f409c48c21a1eb49f4283603
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Feb 1 16:40:42 2011 +0100

    printers: Show icons of printers in printers list
    
    Mark default printer in printers list.

 panels/printers/cc-printers-panel.c | 43 +++++++++++++++++++++++++++++++++----
 1 file changed, 39 insertions(+), 4 deletions(-)

commit 88562eba2df1debe486f9cff5173231c0502ed1b
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Feb 1 15:05:52 2011 +0100

    printers: Reorganize main tab
    
    Remove printer's description.
    Remove "Clean Print Heads" button.
    Move allowed users list to Options tab.
    Change printer-disable-button to GtkSwitch.
    Show printer's model name.
    Show an icon of printer.

 panels/printers/cc-printers-panel.c | 101 ++++++---
 panels/printers/printers.ui         | 431 +++++++++++++++++++++++-------------
 2 files changed, 344 insertions(+), 188 deletions(-)

commit e0f0cee9a2d3d8523252e424c8d19801331bfc08
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Feb 1 13:49:39 2011 +0000

    power: Fix up some of the wording to actually be translatable. Fixes #640119

 panels/power/power.ui | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit c322a42ea248c0dc1755830b4e541a03af1d7ec7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 1 13:11:06 2011 +0000

    display: Rename rotation options
    
    So it's easier to preview in one's head.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=563144

 panels/display/xrandr-capplet.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 8ba88c2309c0b7359e621cd0b6e9d4891208bd01
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Feb 1 11:23:35 2011 +0100

    printers: Move list of printer's jobs to notebook tab
    
    Add buttons for switching between different tabs
    (tabs are invisible).
    Show number of active jobs in main tab.

 panels/printers/cc-printers-panel.c |  62 +++
 panels/printers/printers.ui         | 734 ++++++++++++++++++++----------------
 2 files changed, 471 insertions(+), 325 deletions(-)

commit 9f2fb8520f9d4dfa4c6410f489bf898c5d9d22d4
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Feb 1 10:11:17 2011 +0100

    printers: Bring back buttons for addition/removal of printers

 panels/printers/cc-printers-panel.c | 62 +++++++++++++++++++++++++++++++++++--
 panels/printers/printers.ui         | 59 ++++++++++++++++++++++++++++++-----
 2 files changed, 112 insertions(+), 9 deletions(-)

commit 1b97a789e877a971f236c190ee9212d7b3e91557
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 1 02:28:52 2011 +0000

    display: Hide unsupported sizes
    
    Sizes smaller than 675x530 aren't supported in the design, so
    avoid them, unless they're bigger than the current output size
    (so you could go up from them).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=626822

 panels/display/xrandr-capplet.c | 28 +++++++++++++++++++++++++---
 1 file changed, 25 insertions(+), 3 deletions(-)

commit 8d2f8ac3ce7fad80e7b2aa3c2470476577a458f2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Feb 1 01:08:55 2011 +0000

    user-accounts: Avoid warning about uninitialised variable
    
    cursor_type could be used uninitialised (probably not, but gcc
    complains).

 panels/user-accounts/um-crop-area.c | 2 ++
 1 file changed, 2 insertions(+)

commit c26f5918db722c4a0ba490c6b22cb77f6ac920aa
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Feb 1 01:15:04 2011 +0100

    Updated Galician translations

 po/gl.po | 961 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 532 insertions(+), 429 deletions(-)

commit 85865648e55aeb0ac8e4b44703e8515e7ec6e073
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Mon Jan 31 23:27:38 2011 +0100

    [l10n] Updated German translation

 po/de.po | 1812 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 834 insertions(+), 978 deletions(-)

commit 9a1bdb4a30b083356a3c16e0da6f94f569cdadd7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 31 16:30:01 2011 +0000

    keyboard: Align the scales
    
    Make sure the scales in the keyboard panel are aligned by adding
    them all to GtkSizeGroups.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=605501

 panels/keyboard/gnome-keyboard-panel.ui | 335 ++++++++++++++++++++------------
 1 file changed, 206 insertions(+), 129 deletions(-)

commit 938b42c1c685e4382eb9d150bcd9edb87d70d6bb
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jan 29 18:29:17 2011 +0000

    datetime: add an 'unlock' button
    
    Add an 'unlock' button to allow users to explicitly authenticate to make
    changes.

 panels/datetime/Makefile.am         |   6 +-
 panels/datetime/cc-datetime-panel.c |  34 ++
 panels/datetime/dt-lockbutton.c     | 627 ++++++++++++++++++++++++++++++++++++
 panels/datetime/dt-lockbutton.h     |  68 ++++
 4 files changed, 734 insertions(+), 1 deletion(-)

commit 7d5cd9a9673da92f038ddd12a88571f829b6e03d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Jan 30 23:06:06 2011 +0200

    Updated Hebrew translation.

 po/he.po | 333 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 160 insertions(+), 173 deletions(-)

commit 40701689f7f71767c9742dbce18960848af5af78
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Jan 30 14:01:07 2011 -0500

    user-accounts: center real name label

 panels/user-accounts/data/user-accounts-dialog.ui | 10 ----------
 1 file changed, 10 deletions(-)

commit 32159d053308c83e7eaa73ea378a445dc79fc36c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Jan 30 13:56:24 2011 -0500

    user-accounts: make packing settings explicit

 panels/user-accounts/data/user-accounts-dialog.ui | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 2efa54af5d09c0710652cfffc8f85cc6d03a4f08
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Jan 30 13:00:00 2011 -0500

    user-accounts: remove unused hbox

 panels/user-accounts/data/user-accounts-dialog.ui | 458 +++++++++++-----------
 1 file changed, 225 insertions(+), 233 deletions(-)

commit b9e69ccf907cabb1fbf5fce5c76469795de748c9
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Jan 30 11:30:44 2011 -0500

    user-accounts: remove permissions items
    
    We don't use them yet.

 panels/user-accounts/data/user-accounts-dialog.ui | 72 +----------------------
 1 file changed, 1 insertion(+), 71 deletions(-)

commit 36043e66efc7648b6900edba821c0b374d7c94a4
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Jan 30 10:57:23 2011 -0500

    user-accounts: set a minimum size for the panel

 panels/user-accounts/um-user-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 6c2daaabacb4c1b9555a6d8548ed95d6ff4364fc
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Jan 29 07:39:07 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 681 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 364 insertions(+), 317 deletions(-)

commit 01a95b5fc87fd9a8ac5c6b83d5aad4d6b05d54bf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 28 20:02:33 2011 +0000

    region: Remove unused variable

 panels/region/gnome-region-panel-lang.c | 2 --
 1 file changed, 2 deletions(-)

commit 4f43c11d8402004502f3a3c4468feaef2190e37a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 28 20:01:35 2011 +0000

    region: Don't assert when language is empty
    
    Some users in the accounts service won't have any languages set,
    so avoid crashing in that case.

 panels/region/gnome-region-panel-lang.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit c3c445038b9d6089711062e7e78bcbdbd90d9747
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jan 28 20:07:38 2011 +0100

    Updated Spanish translation

 po/es.po | 211 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 104 insertions(+), 107 deletions(-)

commit f09c1c437e0073a95c5bbaab3a7305f3b668cef3
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jan 28 20:06:41 2011 +0100

    Updated Spanish translation

 po/es.po | 114 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 48 insertions(+), 66 deletions(-)

commit 0e577e38903ed84b61ed218c7e7d6b98db78d1ef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 28 15:59:13 2011 +0000

    printers: Add better translator comment for "Developer"
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640810

 panels/printers/cc-printers-panel.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 3781883051ddbcfc97b0b97d0fcfab130a7fb931
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 28 15:58:53 2011 +0000

    printers: Don't mark unused labels for translation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640810

 panels/printers/printers.ui | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 9c559913286367bd7dbe3460bc1220d6fe7e97f3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 28 15:57:04 2011 +0000

    screen: Clarify some strings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640810

 panels/screen/screen.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fdfebfac377a80dd40213ba30bd75fcfa95c858d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 28 15:48:12 2011 +0000

    [l10n] Update POTFILES.in for latest code changes

 po/POTFILES.in | 2 --
 1 file changed, 2 deletions(-)

commit 721d8114d1f29304ca69eff2dc3d97d20a33c1d0
Author: Emilio Pozuelo Monfort <pochu27@gmail.com>
Date:   Fri Jan 28 00:44:40 2011 +0000

    Make X-GNOME-Keywords translatable

 panels/media/gnome-media-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a42fc39ab4d1b02163d3d3534c9e091a555863bd
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jan 27 21:03:59 2011 +0100

    Updated Spanish translation

 po/es.po | 491 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 281 insertions(+), 210 deletions(-)

commit db1b386a84ac57affff0032cda11f1c1e89ae3ea
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 18:07:28 2011 +0000

    region: Fix close button in options dialogue

 panels/region/gnome-region-panel-options-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cd9da609f9c87126a9deb0a1f8a14c275b627b0b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 16:16:28 2011 +0000

    region: Add missing padding to the layouts tab

 panels/region/gnome-region-panel.ui | 1 +
 1 file changed, 1 insertion(+)

commit 53b7ee589514934904ba9f6c7531ef39b0422fbb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 16:09:11 2011 +0000

    region: Remove obsolete UI file

 panels/region/Makefile.am | 1 -
 1 file changed, 1 deletion(-)

commit 81c53713bde14575d01616ec998748a18be16fa3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 15:53:41 2011 +0000

    region: Remove Help button in options dialogue

 panels/region/gnome-region-panel-options-dialog.ui | 40 +++++++---------------
 panels/region/gnome-region-panel-xkbot.c           |  4 ---
 2 files changed, 13 insertions(+), 31 deletions(-)

commit cef84c51713cc9c5f781dc48af5337623c958e9e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 15:50:41 2011 +0000

    region: Remove keyboard model selection
    
    Seeing as all the keyboards should be using the same low-level
    keycode set, when using evdev.

 panels/region/Makefile.am                         |   1 -
 panels/region/gnome-region-panel-model-chooser.ui | 141 ---------
 panels/region/gnome-region-panel-xkb.c            |  57 ----
 panels/region/gnome-region-panel-xkb.h            |   2 -
 panels/region/gnome-region-panel-xkbmc.c          | 336 ----------------------
 panels/region/gnome-region-panel.ui               |  40 +--
 6 files changed, 1 insertion(+), 576 deletions(-)

commit 7bca4a0a05e594b362bd20e52f39105c8af3246f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 15:41:20 2011 +0000

    region: Add junction between treeview and toolbar
    
    As we do in other panels.

 panels/region/gnome-region-panel-xkb.c | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

commit 645a0bc7289944a9a8bdf378a0fe40abac84f203
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 15:40:27 2011 +0000

    region: UI tweaks
    
    Make the "Reset to defaults" button secondary, choose the correct
    icon size for the treeview toolbar.

 panels/region/gnome-region-panel.ui | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit a414ca48a401e9a60b098348172132223c9edc20
Author: Ivar Smolin <okul@linux.ee>
Date:   Thu Jan 27 17:02:20 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 185 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 116 insertions(+), 69 deletions(-)

commit 45ad8a6c64357484451a19c61580d0883a284446
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 14:46:26 2011 +0000

    region: Tweak the layouts tab UI

 panels/region/cc-region-panel.c     |  18 --
 panels/region/gnome-region-panel.ui | 350 +++++++++++++++++-------------------
 2 files changed, 167 insertions(+), 201 deletions(-)

commit 62e2bd6e7530f831ecc6e24864ccd8b837a35c48
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 27 08:15:33 2011 -0500

    Correct a comment

 shell/cc-shell-model.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8a2f45992f76e8a38383b5d1764d060ff12713e7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 27 12:38:46 2011 +0000

    region: Implement setting the user language
    
    And clean up the accounts service proxy when done.

 panels/region/gnome-region-panel-lang.c | 107 +++++++++++++++++++++++++++++---
 1 file changed, 100 insertions(+), 7 deletions(-)

commit 43dc7e3a7ed90a2552094abd03e14ddfe5d3f293
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Thu Jan 27 18:53:55 2011 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 3359 +++++++++++++++++++++++++++++++++-------------------------
 po/zh_TW.po | 3370 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 3933 insertions(+), 2796 deletions(-)

commit 38f06df60720e1810673878bca169c2c2514830c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 27 01:37:17 2011 -0500

    screen: Add Monitor as a keyword

 panels/screen/gnome-screen-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit df3a7e4c79cd64131f660f40387fe7176ca179f2
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 27 01:36:48 2011 -0500

    region: Add Keyboard as a keyword

 panels/region/gnome-region-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 959f720c3e9b22e48acccd66f4918c375f1fa595
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 27 01:36:23 2011 -0500

    media: Add some keywords

 panels/media/gnome-media-panel.desktop.in.in | 2 ++
 1 file changed, 2 insertions(+)

commit 118fcb3921a433e2d50aedfcd7131259b1a2a7b9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 27 01:35:58 2011 -0500

    background: Add Desktop as a keyword

 panels/background/gnome-background-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e701f158f0a4a45bfb96a3b3e8be695f936746e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 27 01:23:07 2011 -0500

    power: add Battery as a keyword

 panels/power/gnome-power-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cb334de67ce33c13020ff12b8fb4089305089545
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Jan 27 03:44:25 2011 +0100

    QA of Galician translations

 po/gl.po | 281 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 166 insertions(+), 115 deletions(-)

commit bee5e5950b7e1349bdd599e144772c37d2704bf8
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 17:18:48 2011 -0500

    printers: set shadow type to be IN on scrolled windows

 panels/printers/printers.ui | 3 +++
 1 file changed, 3 insertions(+)

commit 2723a3b51e183f4b3c749a498b2d058f31995595
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 16:47:43 2011 -0500

    keyboard: use attached toolbar pattern

 panels/keyboard/keyboard-shortcuts.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 34298c696bddbd83162572ee7dd2be64cf6915eb
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 16:40:37 2011 -0500

    printers: use toolbar pattern for jobs list

 panels/printers/cc-printers-panel.c |  10 +++
 panels/printers/printers.ui         | 165 +++++++++++-------------------------
 2 files changed, 60 insertions(+), 115 deletions(-)

commit 409cbfde9a22f236add63b8d07d1ea618e2646fa
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 16:18:04 2011 -0500

    printers: simplify layout a bit

 panels/printers/printers.ui | 490 +++++++++++++++++++++++---------------------
 1 file changed, 256 insertions(+), 234 deletions(-)

commit 228a3ccd2ccc0562490e0da0164c903644dff760
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 16:00:00 2011 -0500

    printers: fix table row spacing

 panels/printers/printers.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4d622d7b980d3a82100a4f6ff91dda8d218a2ed7
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 15:55:18 2011 -0500

    printers: never use horizontal scrollbars

 panels/printers/printers.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 72de22398c08c189d6f6ae1e21e48bb2dbcc1dc2
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 15:53:08 2011 -0500

    printers: add junctions for allowed users list

 panels/printers/cc-printers-panel.c | 38 ++++++++-----------------------------
 panels/printers/printers.ui         |  2 +-
 2 files changed, 9 insertions(+), 31 deletions(-)

commit ff224f56237279456ad2884558becd29e362ce42
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 15:49:13 2011 -0500

    printers: use the correct add/remove icons

 panels/printers/printers.ui | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 053f0f37092f66e21dc97b5f38a387fce86e8be4
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 15:08:15 2011 -0500

    user-accounts: use junction sides to connect toolbar and list

 panels/user-accounts/data/user-accounts-dialog.ui |  2 +-
 panels/user-accounts/um-user-panel.c              | 10 +++-------
 2 files changed, 4 insertions(+), 8 deletions(-)

commit 4fe7c98d8cff3eb6217f88cebbbff6e52c8db33f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 26 15:02:53 2011 -0500

    network: add junction sides to devices list

 panels/network/cc-network-panel.c | 12 ++++++++++++
 panels/network/network.ui         |  4 ++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit 6c20a5b03dc063492d78ab33356cc23cd509e37f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Jan 26 20:24:03 2011 +0100

    Updated Spanish translation

 po/es.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4964c1b21e200a017bf1dc9cc1246e2ad2558181
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Jan 26 20:22:28 2011 +0100

    Updated Spanish translation

 po/es.po | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 3ae82851898215fa4300f7d5c3a6050df4bb455d
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Wed Jan 26 20:21:14 2011 +0100

    Updated Spanish translation

 po/es.po | 269 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 138 insertions(+), 131 deletions(-)

commit 8f29da02e264ad40a1ee279c1f518bb7bdcfab8c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 26 18:41:34 2011 +0000

    region: Select the current session language

 panels/region/gnome-region-panel-lang.c | 3 +++
 1 file changed, 3 insertions(+)

commit 57b3678f07c5d9cb1dd947a8820e7a1ea5703a9e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 26 18:40:58 2011 +0000

    user-accounts: Select the current language
    
    We assume that env. locale == locale selected in accounts services.

 panels/user-accounts/um-language-dialog.c | 3 +++
 1 file changed, 3 insertions(+)

commit 1edc17e12637dcd304922f34860efb2aebc48384
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 26 18:40:41 2011 +0000

    common: Add API to select the current language

 panels/common/cc-common-language.c | 32 ++++++++++++++++++++++++++++++++
 panels/common/cc-common-language.h |  1 +
 2 files changed, 33 insertions(+)

commit c01c4b2cb28cf14e0ab54a50ed27918b949731ae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 26 18:22:26 2011 +0000

    region: Load languages from other users
    
    Using the accounts service.

 panels/region/gnome-region-panel-lang.c | 87 +++++++++++++++++++++++++++++++--
 1 file changed, 82 insertions(+), 5 deletions(-)

commit a3c2f534ce4f7e8c54814881ae112747f5549d85
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 26 18:21:46 2011 +0000

    user-accounts: Fix possible crasher
    
    When the current locale isn't in the list of languages used
    by other users.

 panels/user-accounts/um-language-dialog.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit f45a46c312338a62e61d6e8feb84c52255b7e9e3
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Jan 26 19:13:52 2011 +0200

    Updated Arabic translation

 po/ar.po | 348 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 201 insertions(+), 147 deletions(-)

commit f791bd05db270249bc0ae5c5765ed7fc5ef2868f
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Jan 26 17:22:41 2011 +0200

    Updated Hebrew translation.

 po/he.po | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 74 insertions(+), 8 deletions(-)

commit 9d411e4387cb6e598dc8f451eebc8dff1655d3c8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 26 12:07:30 2011 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 135 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 102 insertions(+), 33 deletions(-)

commit 42273b65f757c526958a1c3c2bd958aec2ef5fbe
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 23:55:52 2011 -0500

    Fix capitalization of other media names
    
    The English originals for these strings in shared-mime-info are
    supposed to stay lowercase for some reason, so duplicate them here
    and add an English translation that fixes the capitalization.
    https://bugzilla.gnome.org/show_bug.cgi?id=640013

 panels/media/cc-media-panel.c |   35 +-
 po/LINGUAS                    |    1 +
 po/en.po                      | 3195 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 3230 insertions(+), 1 deletion(-)

commit 8e3b7054ef6771052da84e16c8ca63e6a409635a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 23:17:29 2011 -0500

    media: Add better headings for appchooser dialogs
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640008

 panels/media/cc-media-panel.c | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

commit ff64ff10fd318a63b843fc8d6c37053cf3676960
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 22:55:22 2011 -0500

    datetime: Remove extra padding

 panels/datetime/datetime.ui | 1 -
 1 file changed, 1 deletion(-)

commit 4d3aee890424bbb3dfad6db27e9f2877c3f89b03
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 22:54:04 2011 -0500

    keyboard: make scales functional
    
    Without adjustments, nothing gets drawn and no change is possible.
    The boundaries for these adjustments were taking from the 2.32 branch.

 panels/keyboard/gnome-keyboard-panel.ui | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

commit 5bc2bbe79b9f2221e4a0259a105c5368594a2a9c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 21:50:55 2011 -0500

    Prevent the date&time panel from growing horizontally

 panels/datetime/cc-timezone-map.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 2c4bba74e07405205b22c684b3822d13aa429ea7
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 20:37:01 2011 -0500

    Fix handling of multichar splitting for regions
    
    g_strsplit_set is not the right thing to use with multibyte
    characters. GRegex to the rescue. This was causing misrendering
    and crashes in Chinese:
    https://bugzilla.redhat.com/show_bug.cgi?id=669415
    
    Also, we have to call bind_textdomain_codeset().

 panels/datetime/cc-datetime-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit f1399b53a2cc766741b4cf636834567097e6f766
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Jan 26 00:34:56 2011 +0200

    Updated Hebrew translation.

 po/he.po | 405 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 206 insertions(+), 199 deletions(-)

commit c758dfb2a2b8f41f8d42cc0d2e8ce4e8e841c7d6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 25 20:25:49 2011 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 70 ++++++----------------------------------------------------------
 1 file changed, 6 insertions(+), 64 deletions(-)

commit 81e67f086cd56c0458b8a01fefa8670c1daee609
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 25 20:25:21 2011 +0100

    Remove a string from translations.

 panels/network/network.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0ec577167e3242a1598c5a1d715cabcef18545e7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 25 20:24:33 2011 +0100

    Remove a string from translation.

 panels/keyboard/gnome-keyboard-panel.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 395e310512e9866e9e4898a64abf44d704c88097
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 25 18:44:21 2011 +0000

    region: Populate the language list
    
    Using the new common/ helper functions.

 panels/region/cc-region-panel.c         |  9 ++--
 panels/region/gnome-region-panel-lang.c | 89 ++++++++++++++++++++++++++++++++-
 panels/region/gnome-region-panel.ui     | 15 ++++--
 3 files changed, 105 insertions(+), 8 deletions(-)

commit 226aa064aa4628754dc8d9ed42893843d59e07eb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 25 18:33:47 2011 +0000

    user-accounts: Fix timeout hack to not crash
    
    Could end up crashing the way we implemented it.

 panels/user-accounts/um-language-dialog.c | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

commit e48c04a092d3b66962dcda14ec050819545a74e5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 25 17:59:39 2011 +0000

    common: Remove debug

 panels/common/cc-common-language.c | 2 --
 1 file changed, 2 deletions(-)

commit ffb0f5aca68058952859ed8fb710956a77fb8128
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 25 17:42:19 2011 +0000

    user-accounts: Move idle hack to password dialogue
    
    We had a hack to show the dialogue ASAP, and fill it in later. Now,
    we have the list of existing languages populated when showing the
    dialogue, and then populate it in an idle.

 panels/user-accounts/um-language-dialog.c | 41 +++++++++++++++++++++++---
 panels/user-accounts/um-language-dialog.h |  2 +-
 panels/user-accounts/um-user-panel.c      | 48 +++++++------------------------
 3 files changed, 48 insertions(+), 43 deletions(-)

commit f925a9ea86218570c94e9e743940d1a41c442b05
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 25 17:20:23 2011 +0000

    user-accounts: Don't use gtk_widget_size_request()

 panels/user-accounts/um-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dd4760b57f7f6ef8436514f024e89b682ccb421e
Author: Ivar Smolin <okul@linux.ee>
Date:   Tue Jan 25 20:40:41 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 622 ++++++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 473 insertions(+), 149 deletions(-)

commit 338d27feb0f204eb9ed7fe724d306937ecbb2bb9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 25 19:24:15 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 694 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 388 insertions(+), 306 deletions(-)

commit 259e25000e59d0f756bd7fd9bc5f9eeb5b961c5b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 25 19:20:10 2011 +0100

    Remove non-existing file

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit f7f1b4c073784d26c1f15ed1737fe7afd2bab863
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 25 17:07:08 2011 +0000

    user-accounts: Move more of the treeview setup to common/
    
    Make more of the code common one, so we can re-use it for
    the region panel. Show the user's current locale first, as well
    as the list of languages used by other users, followed by a separator.

 panels/common/cc-common-language.c        | 271 +++++++++++-------------------
 panels/common/cc-common-language.h        |  36 ++--
 panels/user-accounts/um-language-dialog.c | 113 ++++++++-----
 3 files changed, 189 insertions(+), 231 deletions(-)

commit 107e4db2f8fba28a68fad36999c5ea5e5e454d4e
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Jan 25 15:24:07 2011 +0100

    printers: Place buttons adding/removing allowed users to toolbar

 panels/printers/cc-printers-panel.c | 41 +++++++++++++++++++++++++++++++++----
 panels/printers/printers.ui         | 37 ++++++++++-----------------------
 2 files changed, 48 insertions(+), 30 deletions(-)

commit 51020d597609401104228cff5cdafd9f057fc6f8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 08:03:45 2011 -0500

    Improve strength bar drawing
    
    Use border-color from theme, don't create our own cairo context,
    and use GdkRGBA.

 panels/user-accounts/um-strength-bar.c | 95 ++++++++++++++++++----------------
 1 file changed, 49 insertions(+), 46 deletions(-)

commit e45b813079e2b61bfda784b42d693d30602f702d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 00:53:09 2011 -0500

    display: Don't use deprecated GTK+ api

 panels/display/Makefile.am      |  3 +-
 panels/display/xrandr-capplet.c | 62 ++++++++++++++++++++++++-----------------
 2 files changed, 38 insertions(+), 27 deletions(-)

commit 86bff4b9535c6a7a03101ee468e4642e54703922
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 00:34:37 2011 -0500

    user-accounts: Disable deprecated API

 panels/user-accounts/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5bc0d75d5c063d672f860d4c66f26a4e1bda9bc6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 00:33:57 2011 -0500

    Remove one remaining use of gdk_cursor_unref

 panels/user-accounts/um-user-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4c2e26307f53246d220f1b08b17a608fd274d40d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jan 25 00:32:10 2011 -0500

    Drop some deprecated GTK+ api

 panels/user-accounts/um-crop-area.c          | 16 ++++++++--------
 panels/user-accounts/um-fingerprint-dialog.c | 11 +++--------
 panels/user-accounts/um-password-dialog.c    |  2 +-
 panels/user-accounts/um-user-panel.c         | 10 ++++++++++
 4 files changed, 22 insertions(+), 17 deletions(-)

commit 26dd6e3d092f0b02decb42babcc7ea1703f1b94c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 24 23:48:30 2011 -0500

    Quiet some gcc warnings

 panels/user-accounts/um-lockbutton.c | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

commit f503381455a1fbca112553e79e9e786466879290
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 24 23:42:27 2011 -0500

    Use cairo to draw an arrow
    
    Misusing gtk_paint_expander() turned out to not be a good
    idea, now that the theme has started to draw +/- for expanders
    instead of arrows.

 panels/user-accounts/Makefile.am          |  3 +-
 panels/user-accounts/um-password-dialog.c | 13 +++----
 panels/user-accounts/um-photo-dialog.c    | 13 +++----
 panels/user-accounts/um-utils.c           | 62 +++++++++++++++++++++++++++++++
 panels/user-accounts/um-utils.h           |  7 ++++
 5 files changed, 81 insertions(+), 17 deletions(-)

commit 15bdbbfd973b85cce5d4a79395a514dc22284697
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 24 23:17:54 2011 -0500

    Revert accidental commit

 panels/user-accounts/um-user-panel.c | 6 ------
 1 file changed, 6 deletions(-)

commit fb193790c0ae6d2f01099b7cf6151d7009c28560
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 24 23:15:07 2011 -0500

    Use the correct widget id for remove-user-toolbutton

 panels/user-accounts/um-user-panel.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit ab178f195e8b51ecbf78eb5f5d2c3d883a418036
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 24 23:02:01 2011 -0500

    No xalign on GtkSwitch

 panels/user-accounts/data/user-accounts-dialog.ui | 1 -
 1 file changed, 1 deletion(-)

commit eef5788417bf519f9b36e0bec86f3c81fbe17c88
Author: A S Alam <aalam@users.sf.net>
Date:   Tue Jan 25 02:42:21 2011 +0530

    update Punjabi Translation by A S Alam

 po/pa.po | 317 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 141 insertions(+), 176 deletions(-)

commit 30231c798020dea772266c609cdf05a1fca80787
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 20:23:01 2011 -0500

    user-accounts: add autologin option

 panels/user-accounts/data/user-accounts-dialog.ui | 50 +++++++++++--
 panels/user-accounts/um-user-panel.c              | 86 ++++++++++++++++++++++-
 2 files changed, 131 insertions(+), 5 deletions(-)

commit 202ddad8fba1b1bc8417230c73701ed65b3a01f8
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 20:06:15 2011 -0500

    user-accounts: add a section for login options

 panels/user-accounts/data/user-accounts-dialog.ui | 34 +++++++++++++++++------
 1 file changed, 26 insertions(+), 8 deletions(-)

commit 30514161e14fd2a1cbb3c3f1801a392d0c747b8d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 19:55:21 2011 -0500

    user-accounts: remove unused addressbook card label

 panels/user-accounts/data/user-accounts-dialog.ui | 15 ---------------
 1 file changed, 15 deletions(-)

commit 0cc58a4efa82302c8ee8db5a7daf892bdd6af5db
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 19:47:25 2011 -0500

    user-accounts: remove email configuration
    
    We don't use it yet.  We can add it back if we want.

 panels/user-accounts/data/user-accounts-dialog.ui | 29 -----------------------
 panels/user-accounts/um-user-panel.c              | 28 ----------------------
 2 files changed, 57 deletions(-)

commit 31f2e6bbe554a1972626187f840ea3f667c5f38d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 19:44:38 2011 -0500

    user-accounts: remove location configuration
    
    We don't really have a good use case for it

 panels/user-accounts/data/user-accounts-dialog.ui | 29 ----------------------
 panels/user-accounts/um-user-panel.c              | 30 +----------------------
 2 files changed, 1 insertion(+), 58 deletions(-)

commit 4bacf4ba126b6d6b1cfce400a712ddb31c057c02
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 19:34:02 2011 -0500

    user-accounts: remove notebook and login options
    
    The plan is to fold the options into the main view.  Guest account
    configuration will be done via a Guest item in the user list.
    Automatic login will be offered in the user account detail view.

 panels/user-accounts/Makefile.am                  |   2 -
 panels/user-accounts/data/user-accounts-dialog.ui | 893 +++++++++-------------
 panels/user-accounts/um-login-options.c           | 436 -----------
 panels/user-accounts/um-login-options.h           |  34 -
 panels/user-accounts/um-user-panel.c              |  35 +-
 5 files changed, 371 insertions(+), 1029 deletions(-)

commit fdc58e201f2e7ec166e9603fc819b048e3182f20
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Jan 25 02:01:15 2011 +0200

    Updated Arabic translation

 po/ar.po | 281 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 145 insertions(+), 136 deletions(-)

commit 0853c05655d67d8da0910fc879a2ff9214790f78
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Jan 25 01:52:16 2011 +0200

    Fix moved file

 po/POTFILES.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9d000c1c8f32901b861ce3651bb32d047c4f19ba
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 17:13:03 2011 -0500

    user-accounts: don't expand table vertically

 panels/user-accounts/data/user-accounts-dialog.ui | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

commit 80488555e1f0ab2d70aaaf46238b3e6dc88b1ae4
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 17:05:44 2011 -0500

    user-accounts: put unlock button in its own row

 panels/user-accounts/data/user-accounts-dialog.ui | 689 +++++++++++-----------
 panels/user-accounts/um-user-panel.c              |   2 +-
 2 files changed, 349 insertions(+), 342 deletions(-)

commit 06e61c8283b853bd672cd2940c2e6fe634da545b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 16:42:01 2011 -0500

    user-accounts: remove another placeholder

 panels/user-accounts/data/user-accounts-dialog.ui | 3 ---
 1 file changed, 3 deletions(-)

commit 1a129074e0ccff675796a3f52c0cc48b89fd9894
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 16:36:28 2011 -0500

    user-accounts: remove unused notebook tabs

 panels/user-accounts/data/user-accounts-dialog.ui | 12 ------------
 1 file changed, 12 deletions(-)

commit 5046c067522189d54b35be24d11296044d68ae4a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 16:23:56 2011 -0500

    user-accounts: use a toolbar for source list

 panels/user-accounts/data/user-accounts-dialog.ui | 36 +++++++----------------
 panels/user-accounts/um-user-panel.c              | 12 ++++----
 2 files changed, 17 insertions(+), 31 deletions(-)

commit bb752ed25c93ddf99003e99f66db536e57f9fdb8
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 15:48:04 2011 -0500

    network: kill more tabs

 panels/network/network-module.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 308db2da1ad68fd23bf8503411ef68d3a0cde553
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 15:46:58 2011 -0500

    network: remove evil tabs
    
    The control center style does not use tabs.

 panels/network/cc-network-panel.c           | 3060 +++++++++++++--------------
 panels/network/cc-network-panel.h           |   26 +-
 panels/network/panel-cell-renderer-mode.c   |   96 +-
 panels/network/panel-cell-renderer-mode.h   |   30 +-
 panels/network/panel-cell-renderer-signal.c |  122 +-
 panels/network/panel-cell-renderer-signal.h |   30 +-
 panels/network/panel-common.c               |  344 +--
 panels/network/panel-common.h               |   56 +-
 8 files changed, 1882 insertions(+), 1882 deletions(-)

commit ca533af8f36a109f820236dba8785ec7f29e2501
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 15:43:37 2011 -0500

    network: use a toolbar for source list actions

 panels/network/cc-network-panel.c |   4 +-
 panels/network/network.ui         | 110 +++++++++++++++++++-------------------
 2 files changed, 58 insertions(+), 56 deletions(-)

commit 97bb5ec3cdc8735dead13414780df3e8a2a7a104
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 15:30:55 2011 -0500

    network: add orientation property for glade

 panels/network/network.ui | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 1e5e98dac0a66dde72330b4917c5294773224605
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Jan 24 21:21:52 2011 +0100

    Updated Spanish translation

 po/es.po | 152 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 69 insertions(+), 83 deletions(-)

commit dbc6f5a6b98c456418345e0b53137ec8316dcdaf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:35:21 2011 +0000

    region: Add stubs for language tab code

 panels/region/Makefile.am               | 5 +++--
 panels/region/cc-region-panel.c         | 2 ++
 panels/region/gnome-region-panel-lang.c | 7 ++++++-
 panels/region/gnome-region-panel-lang.h | 2 ++
 4 files changed, 13 insertions(+), 3 deletions(-)

commit 9229ab875e842ac2e30d6d44514eb0867c8fb3b9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:26:00 2011 +0000

    user-accounts: Move um_get_current_language to common/

 panels/common/cc-common-language.c        |  4 +++-
 panels/common/cc-common-language.h        |  2 +-
 panels/user-accounts/um-language-dialog.c | 17 +----------------
 panels/user-accounts/um-user-panel.c      |  4 ++--
 4 files changed, 7 insertions(+), 20 deletions(-)

commit dd9be3f2be2f30066f9b49fff3e57195c0dada79
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:23:35 2011 +0000

    common: Add panel name

 panels/common/Makefile.am | 3 +++
 1 file changed, 3 insertions(+)

commit 93832da41f5d0bad8527a9a6f76a2502468d9786
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:20:18 2011 +0000

    user-accounts: Move more functions to common/

 panels/common/cc-common-language.c        | 14 +++--
 panels/common/cc-common-language.h        |  2 +
 panels/user-accounts/um-language-dialog.c | 92 +------------------------------
 3 files changed, 12 insertions(+), 96 deletions(-)

commit e2dafa41694ee3c521ebed539a5a2a740bd0af14
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:16:57 2011 +0000

    common: Add missing Makefile.am

 panels/common/Makefile.am | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

commit 5dd0a8c47a54531dadebff4cb017bf4d82c74a7d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:15:03 2011 +0000

    user-accounts: Move um_get_iter_for_language to common/
    
    More sharing

 panels/common/cc-common-language.c        |  8 ++++----
 panels/common/cc-common-language.h        |  7 ++++---
 panels/user-accounts/um-language-dialog.c | 33 -------------------------------
 panels/user-accounts/um-language-dialog.h |  3 ---
 panels/user-accounts/um-user-panel.c      |  6 ++++--
 5 files changed, 12 insertions(+), 45 deletions(-)

commit 6a3b8be917339c169fa02213386c8ba24db38fd4
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 24 13:12:48 2011 -0500

    background: tweak widget alignments

 panels/background/background.ui | 64 +++++++++++++++++++++++++----------------
 1 file changed, 40 insertions(+), 24 deletions(-)

commit 930540ea283b46bf4f96ea18fc97ec108c562374
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:09:00 2011 +0000

    user-accounts: Move gdm-languages to common/
    
    Move gdm-languages and some of the helper functions to common/,
    so that we can share it with the region panel.

 configure.ac                              |    1 +
 panels/Makefile.am                        |    1 +
 panels/common/cc-common-language.c        |  374 ++++++++++
 panels/common/cc-common-language.h        |   47 ++
 panels/common/gdm-languages.c             | 1132 +++++++++++++++++++++++++++++
 panels/common/gdm-languages.h             |   41 ++
 panels/common/locarchive.h                |   97 +++
 panels/region/Makefile.am                 |    2 +
 panels/region/gnome-region-panel-lang.c   |   31 +
 panels/region/gnome-region-panel-lang.h   |   30 +
 panels/user-accounts/Makefile.am          |    5 +-
 panels/user-accounts/gdm-languages.c      | 1132 -----------------------------
 panels/user-accounts/gdm-languages.h      |   41 --
 panels/user-accounts/locarchive.h         |   97 ---
 panels/user-accounts/um-language-dialog.c |   31 +-
 15 files changed, 1760 insertions(+), 1302 deletions(-)

commit e82bb155374384c0af13bdecd710fde8fabc6f41
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 18:07:54 2011 +0000

    user-accounts: Remove unneeded include

 panels/user-accounts/um-user-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit c086f7dda795592910b6a7ad69d0318098ca3f5e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 17:35:21 2011 +0000

    region: Add UI for language tab

 panels/region/gnome-region-panel.ui | 191 ++++++++++++++++++++++++++++++++----
 1 file changed, 170 insertions(+), 21 deletions(-)

commit 80324e35c622995b59df2fa3a8b3d7f908d03082
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 17:35:10 2011 +0000

    region: Remove debug output

 panels/region/gnome-region-panel-xkb.c | 2 --
 1 file changed, 2 deletions(-)

commit 035cb78521e3dfc1945009a5b3ee77b3da723451
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 17:33:06 2011 +0000

    region: Parent dialogues properly

 panels/region/gnome-region-panel-xkblt.c    | 4 ++--
 panels/region/gnome-region-panel-xkbltadd.c | 3 +--
 panels/region/gnome-region-panel-xkbmc.c    | 3 +--
 panels/region/gnome-region-panel-xkbot.c    | 2 +-
 4 files changed, 5 insertions(+), 7 deletions(-)

commit 0c8dd1aebc2240491ca66fe306f3f4749d16278d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 17:31:47 2011 +0000

    region: Fix memory leaks and destroy dialogue properly
    
    There's no top-level dialogue any more, so we need some way to
    clean up after ourselves.

 panels/region/cc-region-panel.c        |  2 ++
 panels/region/gnome-region-panel-xkb.c | 12 +++++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit cc172a475441b2332e11fa9553d8a25ec220ff7c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 17:25:12 2011 +0000

    region: Remove unused finalize function

 panels/region/cc-region-panel.c | 7 -------
 1 file changed, 7 deletions(-)

commit 81a227558bfa61cd403c7c6cbe47a9d94816e195
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jan 24 16:41:11 2011 +0100

    printers: Remove compiler's warnings

 panels/printers/cc-printers-panel.c | 91 +++++++++++++++++--------------------
 1 file changed, 41 insertions(+), 50 deletions(-)

commit 468a9af0e63f46a35c8c72ee9e5be367f37bb61f
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jan 24 16:30:22 2011 +0100

    printers: Set correct background color for supply levels

 panels/printers/cc-printers-panel.c | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

commit c274f914cd3669fff10b59fb08ff3c8c55c3346f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 13:48:44 2011 +0000

    shell: Avoid windows with no icons
    
    Set the default icon for child windows as well, when setting the
    panel's icon.

 shell/cinnamon-control-center.c | 2 ++
 1 file changed, 2 insertions(+)

commit 5013cbd8738b5507d25150a35467656fc11d0f07
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jan 24 13:51:20 2011 +0100

    printers: Align maintenance buttons with check button
    
    Align buttons "Print Test Page", "Clean Print Heads" and
    "Disable Printer" with check button "Default".
    Add "Queue" label to print jobs' GtkExpander.

 panels/printers/printers.ui | 495 +++++++++++++++++++++-----------------------
 1 file changed, 237 insertions(+), 258 deletions(-)

commit f70af6ee47db092df22f1bf5b495cc26dc5a22e7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 12:30:59 2011 +0000

    region: Remove other uses of gtk_dialog_run()

 panels/region/gnome-region-panel-xkbltadd.c |  4 ++--
 panels/region/gnome-region-panel-xkbmc.c    | 16 ++++++++--------
 2 files changed, 10 insertions(+), 10 deletions(-)

commit 0dd5a8ac18697bc854c875062f5998a55bfc6234
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 24 12:23:34 2011 +0000

    region: Remove one use of gtk_dialog_run()
    
    And make sure that the dialogue is destroyed when clicking its
    close titlebar button.

 panels/region/gnome-region-panel-xkbot.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2a8870b7fb7e71a224da2c94fca219042a7adc39
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Jan 23 22:27:23 2011 +0200

    Updated Hebrew translation.

 po/he.po | 86 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 43 insertions(+), 43 deletions(-)

commit 254d631a6de4b8a2ac02b5bce5fcff8a67ad6200
Author: Marek Kasik <mkasik@redhat.com>
Date:   Sun Jan 23 14:12:47 2011 +0100

    printers: Remove temporary files after using them
    
    Remove some memory leaks.

 panels/printers/cc-printers-panel.c | 149 +++++++++++++++++++++++++++---------
 1 file changed, 112 insertions(+), 37 deletions(-)

commit 9e6aaaa734d1321a497ad69d616e0215ac6964a9
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sun Jan 23 13:57:51 2011 +0200

    Updated Arabic translation

 po/ar.po | 440 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 234 insertions(+), 206 deletions(-)

commit 813cdc062dcefca30d6c7e7131e3ed10d767e7ad
Author: Funda Wang <fundawang@gmail.com>
Date:   Sun Jan 23 05:14:06 2011 +0100

    Updated zh_CN translation.

 po/zh_CN.po | 1293 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 681 insertions(+), 612 deletions(-)

commit 2fc3a499cc8f975786f28cb576d4b6725cbbf61d
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Jan 23 02:52:32 2011 +0200

    Updated Hebrew translation.

 po/he.po | 844 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 520 insertions(+), 324 deletions(-)

commit ca86038a4bc04e89fbfbb42a739a9ab35a2d6b2e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jan 22 16:55:50 2011 +0100

    Updated Spanish translation

 po/es.po | 569 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 303 insertions(+), 266 deletions(-)

commit d667c3bfb3e74ea3331d7109d0df17fc08b5fd87
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Jan 22 19:01:12 2011 +0530

    update Punjabi Translation

 po/pa.po | 1568 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 984 insertions(+), 584 deletions(-)

commit 1a3ad0da5d0004b167ac5bebdc575576452e4180
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Jan 22 10:38:54 2011 +0100

    Updated Spanish translation

 po/es.po | 776 ++++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 574 insertions(+), 202 deletions(-)

commit ac91fe7ebfa273ebf47a02bfe62935cbe5115279
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 16:09:06 2011 -0500

    Fix a typo
    
    'Change constrast' should be 'Change contrast'. String change !

 panels/universal-access/uap.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3510583603acb756518d4293a8edb240ebd8fc47
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 16:06:31 2011 -0500

    Remove the "Show panel icon" checkbox

 panels/universal-access/uap.ui | 15 ---------------
 1 file changed, 15 deletions(-)

commit 9234d066637e98331848668c0c4738cc56499676
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 16:04:23 2011 -0500

    Wire up the "Sound Settings" button

 panels/universal-access/cc-ua-panel.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit d711c58e702d61aadc04fe1bc3f149f469ef4956
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 15:57:12 2011 -0500

    Make the fingerprint dialog play nice with gnome-shell
    
    It needs some convincing to let itself be attached...

 panels/user-accounts/um-fingerprint-dialog.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 1fac1b46ebaddbe7744c9db57d1a5a69f9a96eac
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Jan 21 21:26:04 2011 +0100

    Updated Italian translation

 po/it.po | 1346 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 760 insertions(+), 586 deletions(-)

commit 4bd4ab5bddaac8da8c8ee11b3c729d398659f8cf
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Jan 21 21:17:10 2011 +0100

    l10n: fix POTFILES.in after recent commits

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit eac5028a7598b40941d565023aff5e372d7598aa
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 15:06:36 2011 -0500

    Don't set a parent on a toplevel

 panels/region/gnome-region-panel-xkblt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 37b6e2b3328a6b4841da634a668ae14210c86ea8
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 14:41:20 2011 -0500

    Make custom shortcut dialog non-resizable
    
    The shell doesn't allow to resize attached dialogs, so we don't
    want to show resize grips.

 panels/keyboard/keyboard-shortcuts.c | 2 ++
 1 file changed, 2 insertions(+)

commit 37e444f96fdf40032244b00b17f99e319e20e375
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 18:14:36 2011 +0000

    region: Remove unused "test settings" UI

 panels/region/gnome-region-panel.ui | 33 ---------------------------------
 1 file changed, 33 deletions(-)

commit a4aa456c06fb79814f59e5fc930de75f3b260f6d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 18:13:42 2011 +0000

    region: Remove more dead UI

 panels/region/gnome-region-panel.ui | 47 -------------------------------------
 1 file changed, 47 deletions(-)

commit a7519f8340099383a0adff2c844965851eb7e2e2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 18:06:26 2011 +0000

    region: Remove useless level of indirection
    
    Clean up that mess of a code somewhat.

 panels/region/Makefile.am          |  2 -
 panels/region/cc-region-panel.c    | 29 ++++++++++++--
 panels/region/gnome-region-panel.c | 77 --------------------------------------
 panels/region/gnome-region-panel.h | 28 --------------
 4 files changed, 25 insertions(+), 111 deletions(-)

commit 5db534af2f5af7b8811b7f6fbd6a6fe6a15fbf0e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 17:38:10 2011 +0000

    region: Make sure the layouts tree doesn't end up empty
    
    By making the whole panel bigger. Might work-around a GTK+ bug, we
    won't know for now...

 panels/region/gnome-region-panel.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 94507750ce0b0baa3ed744cbf29bce5ba07d6e09
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 17:22:10 2011 +0000

    region: Use an enum for column names

 panels/region/gnome-region-panel-xkblt.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit e7a82d58e423ed6f38fec6c0cb02039b365d5d7a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 17:08:02 2011 +0000

    region: Simplify xkb_layouts_fill_selected_tree()

 panels/region/gnome-region-panel-xkblt.c | 39 ++++++++++++++------------------
 1 file changed, 17 insertions(+), 22 deletions(-)

commit 5299e667b248bfdb8587c12b816ea0a1373e8205
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 17:07:32 2011 +0000

    region: Small style fix

 panels/region/gnome-region-panel-xkblt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 06e04097fde9d5d973c1fd945409ae3313b221fe
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 17:06:44 2011 +0000

    region: GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS can be empty
    
    But non-NULL. Handle that case.

 panels/region/gnome-region-panel-xkblt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5152655a12b69fb39f36987f2cfed4f44afdfe70
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 16:12:57 2011 +0000

    region: Remove "mouse keys" tab
    
    This has nothing to do here.

 panels/region/gnome-region-panel.ui | 298 ------------------------------------
 1 file changed, 298 deletions(-)

commit 781456a36e9cf6ecb85388ad7dc294e523f45c50
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 16:05:40 2011 +0000

    region: Remove unneeded GConf include

 panels/region/gnome-region-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit 66fcbbeb4580cd415101cd9cc3f056a3f127b46f
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 21 16:36:47 2011 +0100

    printers: Add comments for translators to ui
    
    Resolves #640068

 panels/printers/printers.ui | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit 05bef7fba76e03d200c61e3ba5a6d342ccd761ef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 15:11:29 2011 +0000

    user-accounts: Avoid multiple language dialogues
    
    If the changed signal was emitted again before we got a chance
    to create the language dialogue in the idle handler, we'd end up
    with two (or more) dialogues.

 panels/user-accounts/um-user-panel.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 03a31f0fe95b5f3919602c0697ade8d9006d6c17
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 15:06:51 2011 +0000

    user-accounts: Destroy language chooser when switching panels
    
    Otherwise we still have some left-over widgets being parented.

 panels/user-accounts/um-user-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit d3f604d06acfea1d013acec7d0f59d2ef60cd7d4
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 21 16:04:11 2011 +0100

    printers: Add comments for translators
    
    Change printer's state '5' from "Paused" to "Stopped".

 panels/printers/cc-printers-panel.c | 35 +++++++++++++++++++++++++++++++++--
 1 file changed, 33 insertions(+), 2 deletions(-)

commit 21b79f304587f7caff3625f36da1b0f5b199f257
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 14:49:04 2011 +0000

    user-accounts: Fix uninstalled files location
    
    Uninstalled .ui files aren't in ../data/ anymore, but in data/

 panels/user-accounts/um-account-dialog.c     | 2 +-
 panels/user-accounts/um-fingerprint-dialog.c | 2 +-
 panels/user-accounts/um-language-dialog.c    | 2 +-
 panels/user-accounts/um-password-dialog.c    | 2 +-
 panels/user-accounts/um-user-panel.c         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit 3be95176ef509b1c56a76145614142562ba576d6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 14:27:08 2011 +0000

    user-accounts: Fix when GDM isn't installed
    
    When GDM isn't installed, or isn't installed in the correct prefix,
    avoid accessing std_out[-1] of a 0-length std_out.

 panels/user-accounts/um-login-options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2650556c59803279a090b29bee45e8c7a94f5be2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 14:13:30 2011 +0000

    user-accounts: Remove dead code
    
    That wasn't completely removed in:
    http://git.gnome.org/browse/accounts-dialog/commit/?id=9c531fd0af9857d25de9fd4641d3f4ab8c046189

 panels/user-accounts/um-language-dialog.c | 186 ------------------------------
 panels/user-accounts/um-language-dialog.h |   6 -
 2 files changed, 192 deletions(-)

commit 05dd38ce68914067364c56510f621dbe6370be27
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 13:59:30 2011 +0000

    user-accounts: Remove all uses of exit()
    
    We shouldn't use exit() in a panel plugin.

 panels/user-accounts/um-account-dialog.c     | 2 +-
 panels/user-accounts/um-fingerprint-dialog.c | 2 +-
 panels/user-accounts/um-language-dialog.c    | 4 ++--
 panels/user-accounts/um-password-dialog.c    | 2 +-
 panels/user-accounts/um-user-panel.c         | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

commit 0bbdc8727f401fab45d9b0177575b1f25fcdc126
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 21 13:51:00 2011 +0000

    user-accounts: Update gdm-languages.c from GDM
    
    Fixes a number of bugs, and keeps the 2 versions in sync.

 panels/user-accounts/gdm-languages.c | 299 +++++++++++++++++++++++++----------
 1 file changed, 214 insertions(+), 85 deletions(-)

commit fdd13a9f8335733e44a688d1e39dcff969d22ab4
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 21 12:45:17 2011 +0100

    printers: Add ability to add allowed users

 panels/printers/cc-printers-panel.c | 122 +++++++++++++++++++++++++++++++++---
 1 file changed, 115 insertions(+), 7 deletions(-)

commit 0d618405d0ab835fe6ee99443693488a02de76d0
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Jan 21 00:50:13 2011 +0100

    info: cleanup labels to match HIG and be translators friendly
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640127

 panels/info/cc-info-panel.c |  2 +-
 panels/info/info.ui         | 30 +++++++++++++++---------------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit 374ff131c401f9d17444b79ec600d01280f4c894
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 19 16:49:04 2011 +0000

    region: Remove outdated properties
    
    update-policy is gone.

 panels/region/gnome-region-panel.ui | 3 ---
 1 file changed, 3 deletions(-)

commit 110b7fe8a83a43a59e27aad39784f1f3921e258a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 02:03:34 2011 -0500

    Make custom keybinding editing work again
    
    Only allow adding custom bindings in their section.
    Fix up memory management when removing bindings.

 panels/keyboard/keyboard-shortcuts.c | 63 ++++++++++++++++++++----------------
 1 file changed, 36 insertions(+), 27 deletions(-)

commit 8effcb317ca59f4bdbfd3d64d2f442843e37d81d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 21 01:27:23 2011 -0500

    Avoid duplicate entries for custom keybindings
    
    The a11y keybindings live in /desktop/gnome/keybindings as well,
    and we don't want to show them twice. So filter them out.

 panels/keyboard/keyboard-shortcuts.c | 33 ++++++++++++++++++++++++++++++---
 1 file changed, 30 insertions(+), 3 deletions(-)

commit a66d9a5a3533b86f5d444c4c6c231cc01b11a9aa
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 20 20:16:54 2011 -0500

    Remove erroneous quotes in xml content
    
    This was causing the app chooser dialog to be shown for an unknown
    mime type of '"x-content/audio-player"'.

 panels/media/gnome-media-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b374d64e6bfc39dc2f1699b4cb5bb9f4db86cdb9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 20 19:36:29 2011 -0500

    Make the 'Other media' dialog work more than once

 panels/media/cc-media-panel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit adc24a942a7e7207e7a690d176400904554b6570
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Jan 21 02:34:46 2011 +0200

    Updated Arabic translation

 po/ar.po | 476 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 248 insertions(+), 228 deletions(-)

commit a222278f9048a1b9bebcce2e093755a778405d8f
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Fri Jan 21 00:43:30 2011 +0100

    [l10n] info.ui needs glade type

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cff71c11ddb75009b7766c383a96289ffc2dffc7
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 20 18:23:51 2011 -0500

    Make the text size control work
    
    The code was using == to compare float products to doubles.
    Not a recipe for success.

 panels/universal-access/cc-ua-panel.c | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

commit 1a4d551780edc210538c4e675e2a0d99081209c9
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 20 17:32:09 2011 -0500

    display: use the setting for 12/24 time in the panel

 panels/display/xrandr-capplet.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 78d625b5d92e5fce9a05917fd843155eb29699cf
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 20 15:56:54 2011 -0500

    media: use consistent capitalization in the dropdown

 panels/media/cc-media-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3916403df095da3713d04ace5bf92adb477975c9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 20 16:13:20 2011 -0500

    Fix a typo
    
    Terminating a string array with "NULL" does not have the desired
    effect.

 panels/universal-access/cc-ua-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6e848ce81acc2c001e99969119c0a67e780000d6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jan 20 13:38:50 2011 -0500

    Fix up issues with the speaker test dialog
    
    Set a parent on the dialog, and add a close button.
    Also hide the resize grip (even though that should happen automatically).
    https://bugzilla.gnome.org/show_bug.cgi?id=636898

 panels/sound/gvc-mixer-dialog.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 8f9eccbd44104235aa94a2f42160a02e84a8c291
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 19 19:55:53 2011 -0500

    media: remove icons from non app items
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640010

 panels/media/cc-media-panel.c | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

commit 57668c18368de1a2949262adb44800d77a15a215
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Jan 19 19:42:57 2011 -0500

    media: kill evil tabs and trailing whitespace

 panels/media/cc-media-panel.c | 111 +++++++++++++++++++++---------------------
 1 file changed, 56 insertions(+), 55 deletions(-)

commit 5262ae84bbe937bd1bec258774760d416b373ef8
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date:   Wed Jan 19 17:10:34 2011 +0100

    Updated Galician translations

 po/gl.po | 652 ++++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 481 insertions(+), 171 deletions(-)

commit a5e1058b48bc9467a5ed7177a2a7856349be261b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 19 19:46:09 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 593 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 444 insertions(+), 149 deletions(-)

commit 4831bbfa57de5f4f53552fc9465aae7a31217b5d
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Jan 19 19:41:03 2011 +0200

    Updated Arabic translation

 po/ar.po | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit a286740e336518d6719c2398873663adbfe5ea5c
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Jan 19 19:34:57 2011 +0200

    Updated Arabic translation

 po/ar.po | 352 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 147 insertions(+), 205 deletions(-)

commit bde980f6951a07656dd105b89aba1b9aea8a3d28
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Jan 19 18:55:52 2011 +0200

    Updated Arabic translation

 po/ar.po | 734 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 551 insertions(+), 183 deletions(-)

commit 42bf35b0ba8a94dab1c116566e274afd718172b5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 19 15:49:43 2011 +0000

    universal-access: Remove outdated properties
    
    update-policy is gone.

 panels/universal-access/uap.ui | 5 -----
 1 file changed, 5 deletions(-)

commit 8029577fdf0e5d36d1d3731474cb710f720b52d1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 19 15:46:45 2011 +0000

    [l10n] Add printers desktop file to ignore
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639843

 po/POTFILES.skip | 1 +
 1 file changed, 1 insertion(+)

commit 93a2df6be5d65d320d5fcc3e2146c5a5c6b342c2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 19 15:43:39 2011 +0000

    build: Rename cappletname substitution

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d2ceab7be19b9d810ff0bfb93ecef38212dd43fc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 19 15:41:07 2011 +0000

    panels: Add capplet names
    
    So that debug logs are useful, for those panels.

 panels/info/Makefile.am             | 2 ++
 panels/network/Makefile.am          | 2 ++
 panels/power/Makefile.am            | 2 ++
 panels/printers/Makefile.am         | 2 ++
 panels/screen/Makefile.am           | 2 ++
 panels/universal-access/Makefile.am | 2 ++
 6 files changed, 12 insertions(+)

commit 978ae121f2a663710b3c7b53d6d24fefbbd38f06
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 19 14:51:34 2011 +0000

    region: Fix infinite loop when selecting Xkb options
    
    Spotted by Arun Raghavan <arun.raghavan@collabora.co.uk>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639951

 panels/region/gnome-region-panel-xkbot.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit c9ebbd57da229dd7a8553dbdb5cbb9d8443d1a88
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Jan 19 14:05:55 2011 +0100

    printers: Unescape spaces in names of printer supplies
    
    Don't place new line at the end of supply names.

 panels/printers/cc-printers-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit ae50e7cebf57f4d2ff2fb4f0148d0b100710703c
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Jan 19 14:01:24 2011 +0100

    [l10n] screen.ui and power.ui needs glade type

 po/POTFILES.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 24c6038be389d39af78386e3973bcf06c4260288
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Wed Jan 19 12:20:48 2011 +0100

    network: enable translation for proxy methods
    
    And add a translation context in order to avoid mixing with other
    similar messages

 panels/network/network.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit a03eb1664c890e987b13451d137b0c4c9dfff854
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Jan 19 11:11:59 2011 +0100

    printers: Check for CUPS header files
    
    Don't build Printers panel if there are not CUPS header files.

 configure.ac       | 13 +++++++++----
 panels/Makefile.am |  5 ++++-
 2 files changed, 13 insertions(+), 5 deletions(-)

commit 7d7e249627de1321e014c6c89007505ed8dfc1bd
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 21:26:01 2011 -0500

    keyboard: set a size request so the treeviews aren't miniscule

 panels/keyboard/keyboard-shortcuts.c | 2 ++
 1 file changed, 2 insertions(+)

commit fe305ff6feecd8ca606123536a812897be4e5752
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 20:59:04 2011 -0500

    keyboard: add support for system, app, user groups of keybindings

 panels/keyboard/00-multimedia-key.xml.in |   2 +-
 panels/keyboard/01-desktop-key.xml.in    |   2 +-
 panels/keyboard/keyboard-shortcuts.c     | 212 +++++++++++++++++++++++++------
 3 files changed, 175 insertions(+), 41 deletions(-)

commit 882971c368d418dabcf090f4ccb8d56f0165e5c5
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 19:26:37 2011 -0500

    info: use local disk space instead of just root partition
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639376

 configure.ac                |  1 +
 panels/info/cc-info-panel.c | 91 +++++++++++++++++++++++++++++++++++++++++----
 panels/info/info.ui         |  2 +-
 3 files changed, 86 insertions(+), 8 deletions(-)

commit e1d99ef4bd613896c6b1bcbc3973cc777372cc11
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 17:09:39 2011 -0500

    screen: hide at-home location stuff for now
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639785

 panels/screen/screen.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2fb2afdc04c4d8132e1acfa319a6893b436b7399
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 17:04:29 2011 -0500

    mouse: remove a11y tab

 panels/mouse/gnome-mouse-properties.c  |  16 -
 panels/mouse/gnome-mouse-properties.ui | 669 +--------------------------------
 2 files changed, 2 insertions(+), 683 deletions(-)

commit 3198b8d084ce37e4a3dcdf9f42de53f901880e2e
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 17:03:33 2011 -0500

    mouse: change tab label to Mouse
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639787

 panels/mouse/gnome-mouse-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit faace48daa651ad0ac7f4ae634c73f78030e4d92
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 17:00:11 2011 -0500

    info: remove duplicate whitespace from cpu model

 panels/info/cc-info-panel.c | 45 ++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 42 insertions(+), 3 deletions(-)

commit c688a24664f2a995e123607325f61d3526454e1c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 18 16:38:29 2011 -0500

    info: hide device name entry for now
    
    It needs something like http://fedoraproject.org/wiki/Features/BetterHostname

 panels/info/info.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 56902462f5d6d621922a0fdd39669f219b38a3c5
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Tue Jan 18 23:11:14 2011 +0200

    Updated Hebrew translation

 po/he.po | 32 ++++++++++++++++++--------------
 1 file changed, 18 insertions(+), 14 deletions(-)

commit 9915f1e1626ff221dac036a10ada59c7d011db75
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Tue Jan 18 20:11:28 2011 +0200

    Updated Hebrew translation.

 po/he.po | 296 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 234 insertions(+), 62 deletions(-)

commit ef591fdf5cc891ed832a3278c38af10841d226d8
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Jan 18 18:11:35 2011 +0100

    printers: Set search keywords for Printers panel (#639844)

 panels/printers/gnome-printers-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 63ea199fc382aa8c68105babd51154e7827e7d98
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Tue Jan 18 18:07:36 2011 +0200

    Updated Ukrainian translation

 po/uk.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ac967e565ac4999e594d7b6d8d3058b3dfb4359f
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Tue Jan 18 18:05:06 2011 +0200

    Updated Ukrainian translation

 po/uk.po | 5297 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 2387 insertions(+), 2910 deletions(-)

commit deebec140ef0980d3de43fdd6a56799351788b83
Author: Marek Kasik <mkasik@redhat.com>
Date:   Tue Jan 18 16:04:47 2011 +0100

    printers: Make printer's status translatable
    
    Translate printer's status correctly.
    Don't translate maintenance commands.

 panels/printers/cc-printers-panel.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit de981f9254870b686db74d6700c46ef173d7c139
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Jan 18 15:07:55 2011 +0100

    Updated Italian translation

 po/it.po | 5624 ++++++++++++++++++++++++++------------------------------------
 1 file changed, 2359 insertions(+), 3265 deletions(-)

commit 536b31429bbebd7a9998eb58272081b24f387ff5
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Jan 18 14:42:10 2011 +0100

    [l10n] don't translate example panel stuff

 po/POTFILES.in   | 1 -
 po/POTFILES.skip | 2 ++
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 5edb868e1265026c2aea992bda36d3628c5d9986
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Jan 18 14:31:56 2011 +0100

    [l10n] add new printer file to POTFILES.in

 po/POTFILES.in | 3 +++
 1 file changed, 3 insertions(+)

commit de630d0da30eb141bcabe7efc6240e66542da046
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jan 17 14:58:01 2011 +0100

    printers: Implement calling of CUPS maintenance commands
    
    Link corresponding buttons to "PrintSelfTestPage"
    and "Clean" CUPS maintenance commands.

 panels/printers/cc-printers-panel.c | 135 ++++++++++++++++++++++++++++++++++--
 1 file changed, 128 insertions(+), 7 deletions(-)

commit 04d6e36347bffdd29d8bf13c43cc4bd9cbe3f1a6
Author: Marek Kasik <mkasik@redhat.com>
Date:   Sun Jan 16 22:23:19 2011 +0100

    printers: Remove printer add/remove buttons
    
    Add setting of default printer.

 panels/printers/cc-printers-panel.c | 129 +++++++++++++++---------------------
 panels/printers/printers.ui         |  34 +++-------
 2 files changed, 64 insertions(+), 99 deletions(-)

commit 03415e76beaa9974ead5458bbc17cbf5be6f7ed9
Author: Marek Kasik <mkasik@redhat.com>
Date:   Sun Jan 16 19:41:45 2011 +0100

    printers: Make list of printers and list of users scrollable

 panels/printers/printers.ui | 25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)

commit 7595228b19268b095b577e151b5a06f7c8ea3415
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 14 17:28:32 2011 +0100

    printers: Replace toolbar with horizontal box
    
    Due to custom styles, toolbars can look very different
    from the rest of panel. This changes toolbar which
    contains controls for adding/removing allowed users
    to horizontal box.

 panels/printers/cc-printers-panel.c | 16 +++++++---------
 panels/printers/printers.ui         | 37 ++++++++++++++++++++++++++-----------
 2 files changed, 33 insertions(+), 20 deletions(-)

commit 1ea42cc212bc45dd2b1e4e2fc3ecb61a20db7130
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 14 15:43:11 2011 +0100

    printers: Show supply levels
    
    Shows supply levels for printers which return marker-levels,
    marker-colors and marker-names attributes.
    There are 2 things to finish here:
      - set properly background color of the drawing area
      - remove backslashes from names of marker-names

 panels/printers/cc-printers-panel.c | 165 ++++++++++++++++++++++++++++++++++++
 panels/printers/printers.ui         |   5 +-
 2 files changed, 168 insertions(+), 2 deletions(-)

commit b9b2de1e0e0bbdb7b0a2f910fc4f913b514911e9
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Jan 13 13:50:27 2011 +0100

    printers: Rework Printer Jobs panel

 panels/printers/cc-printers-panel.c | 110 +++++++++++++++--------
 panels/printers/printers.ui         | 174 +++++++++++++++++++++++++++---------
 2 files changed, 206 insertions(+), 78 deletions(-)

commit af6e2febc967c922d5ad60d7b8e113e2dc2a1ccb
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Jan 12 14:33:26 2011 +0100

    printers: Remove Printer URI field + little tweak of row spacing

 panels/printers/cc-printers-panel.c | 19 -------------------
 panels/printers/printers.ui         | 35 ++++-------------------------------
 2 files changed, 4 insertions(+), 50 deletions(-)

commit 21c715edd3f60fb77cbf5965357b3ab79b419d30
Author: Marek Kasik <mkasik@redhat.com>
Date:   Wed Jan 12 14:12:03 2011 +0100

    printers: Select the last used printer when Printers panel starts

 panels/printers/cc-printers-panel.c | 55 +++++++++++++++++++++++++++++++------
 1 file changed, 47 insertions(+), 8 deletions(-)

commit 9d61205ef9e464f29df7e588e5b2fec3f646d7de
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Jan 10 17:50:16 2011 +0100

    printers: Add printer's status field

 panels/printers/cc-printers-panel.c | 137 +++++++++++++++++++++++++++++++++---
 panels/printers/printers.ui         |  58 +++++++++++----
 2 files changed, 173 insertions(+), 22 deletions(-)

commit 0b5c0e03dc0dbda5d25a915be4a6a530de99826d
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 7 14:20:35 2011 +0100

    printers: Gray out paused printers in printers list

 panels/printers/cc-printers-panel.c | 43 +++++++++++++++++++++++++++++++++++--
 1 file changed, 41 insertions(+), 2 deletions(-)

commit 23faa29ffd944f6b70d204c988cc6aeb23d49feb
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Jan 7 13:33:53 2011 +0100

    printers: Show printer's description instead of its name

 panels/printers/cc-printers-panel.c | 34 +++++++++++++++++++++-------------
 panels/printers/printers.ui         |  4 ++--
 2 files changed, 23 insertions(+), 15 deletions(-)

commit 22f0ad394e2178a22c5908c121be8cdeeac181b4
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Dec 20 12:48:06 2010 +0100

    Select a printer when panel loads.
    
    Change +/- stock icons to list-add/list-remove icons.

 panels/printers/cc-printers-panel.c | 18 +++++++++++++++---
 panels/printers/printers.ui         |  8 ++++----
 2 files changed, 19 insertions(+), 7 deletions(-)

commit 2abe2c2efc3bbdec0b828383471bbc6026253432
Author: Marek Kasik <mkasik@redhat.com>
Date:   Mon Dec 20 11:40:27 2010 +0100

    Set border style of toolbars to none (plain).

 panels/printers/cc-printers-panel.c | 40 +++++++++++++++++++++++++++++++++++++
 panels/printers/printers.ui         |  6 +++---
 2 files changed, 43 insertions(+), 3 deletions(-)

commit 8c4511b52e292107de932caaa658446f7ce14b0d
Author: Marek Kasik <mkasik@redhat.com>
Date:   Fri Dec 17 13:58:45 2010 +0100

    Initial implementation of Printers panel
    
    Created by Marek Kasik, modified by Jon McCann.
    It has been implemented according to design at:
    http://live.gnome.org/Design/SystemSettings/Printers
    (not fully implemented yet)

 configure.ac                                       |    6 +
 panels/Makefile.am                                 |    1 +
 panels/printers/Makefile.am                        |   33 +
 panels/printers/cc-printers-panel.c                | 1021 ++++++++++++++++++++
 panels/printers/cc-printers-panel.h                |   72 ++
 panels/printers/gnome-printers-panel.desktop.in.in |   14 +
 panels/printers/printers-module.c                  |   39 +
 panels/printers/printers.ui                        |  420 ++++++++
 8 files changed, 1606 insertions(+)

commit 34e473123e0669094874a4994a110c64fb2cdb44
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Tue Jan 18 12:53:26 2011 +0200

    Updated Hebrew translation.

 po/he.po | 36 +++++++++++++++++++++++++-----------
 1 file changed, 25 insertions(+), 11 deletions(-)

commit d014ccc9f9417ed7ca825d0d1fa945a91905a27a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 18 10:46:54 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)

commit adcf2cfc176240ba45ac70fd2644c9aadedebd39
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 17 20:28:31 2011 -0500

    keyboard: rename Desktop shortcuts to Launchers and Actions

 panels/keyboard/01-desktop-key.xml.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f1e85d3e7541d3ddbab9d75da94cbb8d45400a45
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 17 19:53:37 2011 -0500

    keyboard: rename Sound to Sound and Media

 panels/keyboard/00-multimedia-key.xml.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c96851467037764b17fe22976ba06de4f55b45bc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 17 19:41:40 2011 -0500

    keyboard: kill some tabs

 panels/keyboard/keyboard-shortcuts.c | 704 +++++++++++++++++------------------
 1 file changed, 352 insertions(+), 352 deletions(-)

commit 83baa914748e3d8a3b6cf826bb081cdc840038cd
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 17 19:40:11 2011 -0500

    keyboard: make the shortcut dialog a bit more like the mockups
    
     - No horizontal scroll
     - No info icon
     - Use toolbar for add/remove

 panels/keyboard/gnome-keyboard-panel.ui | 124 +++++++++++++++-----------------
 panels/keyboard/keyboard-shortcuts.c    |   8 +--
 2 files changed, 62 insertions(+), 70 deletions(-)

commit b7c658c0646d0fc03086e565a769c55779cb7d89
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 17 18:10:55 2011 -0500

    Add orientation properties to help out glade

 panels/keyboard/gnome-keyboard-panel.ui | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

commit b4810cb1db9d88fc6f6124aa393d59b8643fa4e0
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Jan 17 23:13:04 2011 +0000

    Setting sorting before populating list stores
    
    This is workaround for broken gtk behaviour.
    https://bugzilla.gnome.org/show_bug.cgi?id=639792

 panels/region/gnome-region-panel-xkbltadd.c | 58 +++++++----------------------
 1 file changed, 14 insertions(+), 44 deletions(-)

commit 8618e136d8c081280d7d7e986fa1b7918559ccb0
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Jan 17 22:52:55 2011 +0000

    Adding list stores to layout chooser ui
    
    Eliminating some error messages on output (not critical)

 panels/region/gnome-region-panel-layout-chooser.ui | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

commit e5eb152ff9323ad258224f2e7bdb1be1184df873
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 17 15:42:26 2011 -0500

    Remove a redundant variable

 panels/universal-access/cc-ua-panel.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 27c6c657923feba1034771d8aa1e6ea9563304ac
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jan 17 13:04:19 2011 -0500

    Use the preferences-system-network icon for the network panel
    
    This one has the advantage that it exists in gnome-icon-theme.

 panels/network/gnome-network-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f150fb931715e90ee0156f6a3bec1e6c0858ff60
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sun Jan 16 19:41:04 2011 +0100

    Updated Spanish translation

 po/es.po | 67 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 34 insertions(+), 33 deletions(-)

commit 165dfd3cf195ac55483d27abc0f189ef9fc0ff3b
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Jan 16 19:57:30 2011 +0200

    Updated Hebrew translation.

 po/he.po | 64 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 33 insertions(+), 31 deletions(-)

commit 7ebf9aeab50e6b142294d2171e883912afc6a43e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jan 15 12:15:27 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 72 +++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 39 insertions(+), 33 deletions(-)

commit 3993322df43ec52fdc0981c2d96bc0b67ba04486
Author: Ivar Smolin <okul@linux.ee>
Date:   Fri Jan 14 21:02:20 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 361 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 185 insertions(+), 176 deletions(-)

commit 4b80e080553a62df797a23b1b2d306f7bfa3d513
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 14 17:03:21 2011 +0000

    shell: Reload icons when icon theme changes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639268

 shell/cc-shell-model.c | 100 ++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 73 insertions(+), 27 deletions(-)

commit 310b83ed866ee8b235a94a8859ec9e9e53bb8f7a
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Jan 14 17:36:34 2011 +0200

    Updated Arabic translation

 po/ar.po | 868 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 373 insertions(+), 495 deletions(-)

commit f4cc5b953f8bbef5bc6bab6b063f11692c614726
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Jan 14 16:22:18 2011 +0100

    Updated Galician translations

 po/gl.po | 435 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 196 insertions(+), 239 deletions(-)

commit 55a118f3860644c86899d01085c00e50f53ea938
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Jan 14 14:22:41 2011 +0000

    display: Use text attributes instead of markup
    
    in the UI file.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639184

 panels/display/display-capplet.ui | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 5839a2735c0b568ee967d5247f3107b7acc4da98
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Jan 14 14:21:26 2011 +0000

    background: Use text attributes instead of markup
    
    in the UI file.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639187

 panels/background/background.ui | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 76459723b0d506a7b3fe804a35e43dcc38fae086
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 14 14:14:50 2011 +0000

    info: Make 64-bit detection work on all systems
    
    Check the pointer size as defined by GLib.

 panels/info/cc-info-panel.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 94aeba51e311ce03a3f6cd5e78d8cb45f887267f
Author: Dan Winship <danw@gnome.org>
Date:   Mon Jan 10 18:21:08 2011 -0500

    shell: make the .desktop file pass "--overview"
    
    Opening the shell via the main cinnamon-control-center.desktop file
    should display it in overview mode. In particular, if the shell is
    already open, then "launching" it again via the main .desktop file
    should switch the existing window to the overview rather than just
    raising it but leaving it pointing to whatever panel it was pointing
    to before.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639180

 shell/cinnamon-control-center.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7dde087d47d7a8d6d1a6680b008ec257e4178838
Author: Alban Browaeys <prahal@yahoo.com>
Date:   Wed Jan 12 04:52:40 2011 +0100

    Fix assert in gtkcellrenderer in sound output tab.
    
    Gtk:ERROR:gtkcellrenderer.c:1661:gtk_cell_renderer_get_aligned_area: assertion failed:
     (aligned_area->x >= cell_area->x && aligned_area->x < cell_area->x + cell_area->width)
    Was missing the icon cell content for the output tab.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=639280

 panels/sound/gvc-mixer-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit e815eaed5dbc60dd85835a5eb1820437a87b5149
Author: Aron Xu <aronxu@gnome.org>
Date:   Fri Jan 14 07:21:32 2011 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 1220 +++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 688 insertions(+), 532 deletions(-)

commit 14a4de29c845118126c59ed7f021e1cc02d24b0b
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Jan 13 19:38:57 2011 +0100

    Updated Spanish translation

 po/es.po | 384 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 169 insertions(+), 215 deletions(-)

commit 0bbea3e63bbdccb2878ba560cbd7cf3b30f3eeeb
Author: Theodore Dimitriadis <liakoni@gmail.com>
Date:   Thu Jan 13 12:16:03 2011 +0200

    Updated Greek translation

 po/el.po | 4592 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 2957 insertions(+), 1635 deletions(-)

commit 8606f0259067fc5b682d1430fb4a255f754638a6
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Jan 12 15:34:55 2011 +0200

    Updated Hebrew translation.

 po/he.po | 378 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 165 insertions(+), 213 deletions(-)

commit f99c3a5a043463c9af0949825630ffb5055682b4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 12 10:58:02 2011 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 331 +++++++++++++--------------------------------------------------
 1 file changed, 68 insertions(+), 263 deletions(-)

commit a742bca24ba27642ed23832d63482a591064a124
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 11 19:38:45 2011 -0500

    screen: add padding and use a switch

 panels/screen/screen.ui | 21 +++------------------
 1 file changed, 3 insertions(+), 18 deletions(-)

commit 36ad81f88b17d38a5a42d888f728bd183f030f57
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 11 18:45:40 2011 -0500

    add file for translation

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 6a81ce5bb3362d509a933944cf77ff391f4299a5
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Jan 11 18:30:59 2011 -0500

    Remove default-applications panel
    
    It isn't part of our designs in this form.  Needs rethinking in order
    to fit in and be most useful.

 configure.ac                                       |     6 -
 panels/Makefile.am                                 |     1 -
 panels/default-applications/Makefile.am            |    84 -
 .../cc-default-applications-panel.c                |   145 -
 .../cc-default-applications-panel.h                |    74 -
 .../default-applications-capplet.png               |   Bin 4377 -> 0 bytes
 .../default-applications-module.c                  |    41 -
 .../gnome-at-commandline.in.in                     |   101 -
 .../gnome-at-session.desktop.in.in                 |    15 -
 panels/default-applications/gnome-da-capplet.c     |   454 -
 panels/default-applications/gnome-da-capplet.h     |    70 -
 panels/default-applications/gnome-da-item.c        |   147 -
 panels/default-applications/gnome-da-item.h        |    78 -
 panels/default-applications/gnome-da-xml.c         |   289 -
 panels/default-applications/gnome-da-xml.h         |    27 -
 .../gnome-default-applications-panel.desktop.in.in |    15 -
 .../gnome-default-applications-properties.ui       |   847 --
 .../gnome-default-applications.pc.in               |    10 -
 .../gnome-default-applications.xml.in              |   195 -
 .../16x16/gnome-settings-default-applications.png  |   Bin 748 -> 0 bytes
 .../22x22/gnome-settings-default-applications.png  |   Bin 1310 -> 0 bytes
 .../24x24/gnome-settings-default-applications.png  |   Bin 1340 -> 0 bytes
 .../32x32/gnome-settings-default-applications.png  |   Bin 1727 -> 0 bytes
 .../48x48/gnome-settings-default-applications.png  |   Bin 2825 -> 0 bytes
 .../icons/svg/preferred-applications.svg           | 12680 -------------------
 po/POTFILES.in                                     |     5 -
 po/POTFILES.skip                                   |     2 -
 27 files changed, 15286 deletions(-)

commit 095ce47cd37dea18f2a73506463f837930975017
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 20:20:07 2011 -0500

    info: hide more info button until we have something to show

 panels/info/info.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b31b0e0f58dd5d38808b8b7eb843b95a0d0dfdd6
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 19:42:19 2011 -0500

    info: add primary disk size info

 panels/info/cc-info-panel.c | 30 +++++++++++++++++++++++++++---
 1 file changed, 27 insertions(+), 3 deletions(-)

commit 42732d45fbeca6bdbb49185f1c54dd4c4e130294
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 18:55:38 2011 -0500

    info: add os type info

 panels/info/cc-info-panel.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit a0d7fea8342c09f3459ab41b26d510988140ba98
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 18:30:45 2011 -0500

    info: add processor information

 panels/info/cc-info-panel.c | 64 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

commit 176e072b591e7728253a79bb90099c7615c0733e
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 17:56:52 2011 -0500

    info: add memory info

 configure.ac                |  2 ++
 panels/info/Makefile.am     |  3 ++-
 panels/info/cc-info-panel.c | 14 +++++++++++++-
 3 files changed, 17 insertions(+), 2 deletions(-)

commit 53a2f10a2d43e54011fbc79b4c755d0161352b62
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 17:43:43 2011 -0500

    info: don't show update button by default

 panels/info/info.ui | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit f3a2a0888fbaed114ab820f645bd17e7d8935340
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Jan 10 17:34:13 2011 -0500

    info: read version info from gnome-version.xml

 panels/info/Makefile.am     |   1 +
 panels/info/cc-info-panel.c | 146 +++++++++++++++++++++++++++++++++++++++++---
 2 files changed, 140 insertions(+), 7 deletions(-)

commit 19eae111366bc223f3c78acb28ada3a16d41aabf
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Jan 11 01:38:45 2011 +0200

    Cleanup

 po/ar.po | 2248 +-------------------------------------------------------------
 1 file changed, 5 insertions(+), 2243 deletions(-)

commit f747167b12be5bfbb664a7c3c771bb7c97b5da1b
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Jan 11 01:33:20 2011 +0200

    Updated Arabic translation

 po/ar.po | 4379 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 2793 insertions(+), 1586 deletions(-)

commit 64b7cbea20a074fec7b3d8f675c593526cf0afbc
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 10 17:36:15 2011 +0100

    Release 2.91.5

 NEWS         | 33 +++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 34 insertions(+), 1 deletion(-)

commit 55a2932dfd2e72f1a291ce7b05cde4e8c63a63ba
Author: Nguyen Vu Hung <vuhung16plus@gmail.com>
Date:   Mon Jan 10 16:23:32 2011 +0700

    Updated Vietnamese translation

 po/vi.po | 29 ++++++++++++++---------------
 1 file changed, 14 insertions(+), 15 deletions(-)

commit 450fdefb668ef90b211d1116ce01f70c184517b4
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Mon Jan 10 16:12:25 2011 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 346 ++++++++++++---------------------------------------------------
 1 file changed, 66 insertions(+), 280 deletions(-)

commit baa1a73bd4579df6a92ad206c7d502d0cd50567c
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Jan 9 18:42:56 2011 +0200

    Updated Hebrew translation.

 po/he.po | 88 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 45 insertions(+), 43 deletions(-)

commit 166bb1b69b9f140d1a67fc8a70c8ba37eaab05f2
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jan 9 17:05:31 2011 +0100

    Updated Galician translations

 po/gl.po | 58 ++++++++++++++++++++++++++++++----------------------------
 1 file changed, 30 insertions(+), 28 deletions(-)

commit d1b1bb43ca127e79e50780423b4f8617d6da89fe
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jan 8 12:26:02 2011 +0100

    Updated Spanish translation

 po/es.po | 88 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 44 insertions(+), 44 deletions(-)

commit b3bca36e9a4326a75a26aed4334272dda8f3b456
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Jan 8 08:27:03 2011 +0530

    Translation: update Punjabi

 po/pa.po | 161 +++++++++++++++++++++++----------------------------------------
 1 file changed, 58 insertions(+), 103 deletions(-)

commit d69eba8c17bf7887e94a2ae449d18488af695b0c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 6 18:49:01 2011 -0500

    datetime: don't try to set timezone when initially loading model

 panels/datetime/cc-datetime-panel.c | 121 +++++++++++++++++++++---------------
 panels/datetime/cc-timezone-map.c   |   6 ++
 panels/datetime/cc-timezone-map.h   |   2 +
 3 files changed, 80 insertions(+), 49 deletions(-)

commit 15a0ad5fadda74b9ed1a06273f46baf15dde02eb
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 6 18:18:59 2011 -0500

    datetime: make dialog instant apply

 panels/datetime/cc-datetime-panel.c | 81 +++++++++++++++++++++++++------------
 panels/datetime/datetime.ui         | 24 -----------
 2 files changed, 55 insertions(+), 50 deletions(-)

commit 1d5309973d23a11ec7bba894f53e4034c50a7fa6
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 6 17:44:41 2011 -0500

    datetime: keep the time ticking while the dialog is up

 panels/datetime/cc-datetime-panel.c | 39 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

commit 26a45cafe82e8866e87a9f2d77946cde2f02f059
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 6 17:05:38 2011 -0500

    datetime: use a switch for 24 hour time

 panels/datetime/cc-datetime-panel.c | 31 +++++++++++--------------
 panels/datetime/datetime.ui         | 45 ++++++++++++++++++++-----------------
 2 files changed, 38 insertions(+), 38 deletions(-)

commit f615a21fafc5d269f99188f1e55caa93e085b873
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Jan 6 16:48:14 2011 -0500

    datetime: fix layout and spacing to match mockups

 panels/datetime/datetime.ui | 74 ++++++++++++++++++++++-----------------------
 1 file changed, 37 insertions(+), 37 deletions(-)

commit 6b0cd1d6670b5f9049829332a43454160084482a
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Jan 6 23:43:01 2011 +0100

    Updated Galician translations

 po/gl.po | 786 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 469 insertions(+), 317 deletions(-)

commit de6af5ee29ca9f7de2677053328898a8880db3d8
Merge: d76b70b 66e8e90
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Thu Jan 6 20:45:40 2011 +0100

    Merge branch 'gobject-gnomerr'
    
    Conflicts:
        panels/display/xrandr-capplet.c

commit d76b70b9b35454e33b2b77b568bb5beb8dcee8d7
Author: Ivar Smolin <okul@linux.ee>
Date:   Thu Jan 6 13:59:29 2011 +0200

    [l10n] Updated Estonian translation

 po/et.po | 70 +++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 32 insertions(+), 38 deletions(-)

commit 1dc763da8cd753203192e5fe6b091b4451f04351
Author: Benjamin Otte <otte@redhat.com>
Date:   Wed Jan 5 18:27:13 2011 +0100

    sound: Don't set update policy
    
    Update policies are gone from GTK. It was set to its default value
    anyway, so the call was essentially a no-op.

 panels/sound/gvc-balance-bar.c | 1 -
 panels/sound/gvc-channel-bar.c | 1 -
 2 files changed, 2 deletions(-)

commit f8204f9c186b57df7da9972cbaa2d6e45d6ffa7a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 3 11:56:24 2011 +0100

    Bump libgnomekbd requirement

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cc27612d754610320ec9e82a0bbf3c2ec4cc4591
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 3 11:51:29 2011 +0100

    Require gnome-settings-daemon >= 2.91

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 604226b172debeda2278cdf9d4d4f79f39570a9c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 2 19:03:48 2011 +0100

    Updated Norwegian bokmål translation from Torstein Adolf Winterseth

 po/nb.po | 78 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 45 insertions(+), 33 deletions(-)

commit 83f7b9590c22b58d8e92f05f685fcdca5c07ba78
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sat Jan 1 23:46:42 2011 +0100

    [l10n] Updated German translation

 po/de.po | 5423 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 2453 insertions(+), 2970 deletions(-)

commit 66d9639ef27167f0cb54462632d33732d4eb794c
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jan 1 12:56:20 2011 +0100

    Updated Spanish translation

 po/es.po | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

commit c10a54e122571c7aa32d9eb138d71980f4b5fb1e
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Dec 30 21:35:30 2010 +0100

    Updated Slovenian translation

 po/sl.po | 762 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 436 insertions(+), 326 deletions(-)

commit 56c4d56e286305886d8285308ed3546e0cabd897
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Dec 30 18:23:27 2010 +0200

    Updated Hebrew translation.

 po/he.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 3a9ab034a4b16ad46dc62a970b246fdd5b8c5cce
Author: Andre Klapper <a9016009@gmx.de>
Date:   Thu Dec 30 01:13:38 2010 +0100

    Fix two typos. Fixes bug #637527.

 panels/network/network.ui     | 2 +-
 panels/network/panel-common.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 92a9b068dcc27e82f397c446f774190ec03e553e
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Dec 29 20:43:00 2010 +0100

    Updated Swedish translation

 po/sv.po | 3896 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 2489 insertions(+), 1407 deletions(-)

commit e2d220aa7bd4de8bf91e5e12917482a4d006fb64
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Dec 28 22:33:14 2010 +0100

    Updated Slovenian translation

 po/sl.po | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 0c03ae7e05e8aa2e3cb68aad16e9842a7a8037bc
Author: A S Alam <aalam@users.sf.net>
Date:   Mon Dec 27 07:32:27 2010 +0530

    update Punjabi Translatin for control center

 po/pa.po | 1345 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 741 insertions(+), 604 deletions(-)

commit 39cd721fbf8afc0b60a7f83cd063a96c1ddc494c
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Dec 26 18:54:46 2010 +0200

    Updated Hebrew translation.

 po/he.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 2833b666a6d73767bb2a2acbbde258d4c2a83fef
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Dec 26 18:24:50 2010 +0700

    Updated Vietnamese translation

 po/vi.po | 1187 ++++++++++++++++++++++++++------------------------------------
 1 file changed, 501 insertions(+), 686 deletions(-)

commit de6615a3d3bb5162068bd867bb7b081af6f2c0db
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Sun Dec 26 15:15:21 2010 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 7048 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 4351 insertions(+), 2697 deletions(-)

commit f19005c697a27223088d4f40ebe53f591335d439
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:   Sat Dec 25 13:20:34 2010 +0100

    Updated Spanish translation

 po/es.po | 74 ++++++++++++----------------------------------------------------
 1 file changed, 13 insertions(+), 61 deletions(-)

commit ef78caee860975cf8b7e919ab0035dcca795c1bb
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Dec 23 15:14:41 2010 +0100

    sound: Do not build with $DISABLE_DEPRECATED
    
    This should not be active by default in tarballs, and it's the only
    panel building with this.
    
    If someone wants to use the DISABLE_*_DEPRECATED flags, then please add
    support for this only when building from git.

 panels/sound/Makefile.am | 1 -
 1 file changed, 1 deletion(-)

commit db2a2bce55dbeac85ac6aa924d45113057bc8f5b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Dec 22 11:35:25 2010 -0500

    Update NEWS

 NEWS | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

commit 033e9f60e43c2e0461099277553811d578cdf0bc
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Dec 22 11:24:29 2010 -0500

    Bump version to 2.91.4

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit eb77b474a156412fbae5b86a9fdd3b101f68bb5b
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Dec 22 11:14:34 2010 -0500

    Make the sound panel build against recent GTK+
    
    Switch to use GIO for launching preferences instead of gdk_spawn.

 panels/sound/gvc-stream-status-icon.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 2c2b9d9fde78d721a59798ff8c55db78f02beef9
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Dec 21 14:25:15 2010 +0000

    display: don't use -1 as the minimum width
    
    A valid minimum width must be more than or equal to zero.

 panels/display/scrollarea.c     | 4 ++--
 panels/display/xrandr-capplet.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit d1bac479ef744d224e42c137d83a8243017e0d75
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Tue Dec 21 12:39:40 2010 +0100

    datetime: Use header capitalization in name
    
    Conjunctions like 'and' should not be capitalized.

 panels/datetime/gnome-datetime-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 525851b872c4811abd8300a92288ab81a93708f5
Author: Akom Chotiphantawanon <knight2000@gmail.com>
Date:   Tue Dec 21 17:47:48 2010 +0700

    Updated Thai translation.

 po/th.po | 64 ++++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 38 insertions(+), 26 deletions(-)

commit d50dadc8ac2add0568ac56bcf7963d822f5ef4bd
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 20 21:04:49 2010 +0000

    shell: only include items identified as settings panels in the list
    
    Simplify the category requirements and do not include items that are not
    settings panels.

 .../gnome-background-panel.desktop.in.in           |  2 +-
 panels/power/gnome-power-panel.desktop.in.in       |  2 +-
 panels/region/gnome-region-panel.desktop.in.in     |  2 +-
 panels/screen/gnome-screen-panel.desktop.in.in     |  2 +-
 .../data/gnome-user-accounts-panel.desktop.in.in   |  2 +-
 shell/cinnamon-control-center.c                       | 42 ----------------------
 shell/gnomecc.menu                                 | 24 +++----------
 7 files changed, 10 insertions(+), 66 deletions(-)

commit dfd897496bd46f90187016041c0408856ac9693d
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 20 16:50:26 2010 +0000

    sound: Remove the reconnect timeout during the dispose of GvcMixerControl
    
    Remove the reconnect timeout so that the callback function is not called
    after the object has been destroyed.

 panels/sound/gvc-mixer-control.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 70604ba4588cf2a58b988a45f76128a9ed0836a5
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 20 14:52:15 2010 +0000

    Remove the "Internet and Network" category
    
    Remove this category as there is only one item in it and move the network
    panel to the "Hardware" category.

 panels/network/gnome-network-panel.desktop.in.in |  2 +-
 shell/gnomecc.menu                               | 16 ----------------
 2 files changed, 1 insertion(+), 17 deletions(-)

commit ca7bdc3f7ef9a7fa18d7eaa90bc390d3e88a06d4
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 20 14:46:27 2010 +0000

    build: remove redundant variables
    
    GNOMECC_CAPPLETS_CLEANFILES duplicated existing files to be removed and
    GNOMECC_CAPPLETS_EXTRA_DIST was no longer used anywhere.

 configure.ac                            | 5 -----
 panels/default-applications/Makefile.am | 2 +-
 panels/display/Makefile.am              | 2 +-
 panels/keyboard/Makefile.am             | 1 -
 panels/media/Makefile.am                | 1 -
 panels/mouse/Makefile.am                | 2 +-
 panels/region/Makefile.am               | 2 +-
 7 files changed, 4 insertions(+), 11 deletions(-)

commit 4eb38e621d4ac8057a11821d3afc42ceb7034673
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Dec 20 14:15:03 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 584 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 351 insertions(+), 233 deletions(-)

commit 40ab659c2bfdf07409833b80838255cb4775484d
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Dec 19 13:11:10 2010 +0100

    Updated Spanish translation

 po/es.po | 126 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 49 insertions(+), 77 deletions(-)

commit 15be40d8a9ea71f4af460086418a12befd0427c6
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Dec 19 01:14:24 2010 +0200

    Updated Hebrew translation.

 po/he.po | 725 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 420 insertions(+), 305 deletions(-)

commit a03d07af8a8f684ff2717f6fe4a2a9f0c5a3de0e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Dec 18 19:05:07 2010 +0100

    Updated Spanish translation

 po/es.po | 109 +++++++++++++++++++++++----------------------------------------
 1 file changed, 40 insertions(+), 69 deletions(-)

commit 5cf3ff07e071f8ed2345b9a5cc510f708669319c
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Dec 18 15:40:19 2010 +0100

    Added Spanish translation

 po/es.po | 1265 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 716 insertions(+), 549 deletions(-)

commit f78a9582f74850dc26c318014ddbd3b936bc5fff
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 17 13:53:11 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 544 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 292 insertions(+), 252 deletions(-)

commit 8ec06fc569da4138b6e2e37cdf7d6d1e417b46d2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 16 23:46:56 2010 +0100

    Improve a translation

 po/nb.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1ce24314ad08ec8ab92e38dae6924d82d378d793
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Dec 17 10:58:56 2010 +0000

    network: teach the panel about nameservers and routes

 panels/network/cc-network-panel.c | 305 +++++++++++++++++++++++++++++++++-----
 panels/network/network.ui         | 255 +++++++++++++++++++++++++++++--
 2 files changed, 507 insertions(+), 53 deletions(-)

commit 39d9ed99767bd84b1cccaccb5336f2e829cac977
Author: Akom Chotiphantawanon <knight2000@gmail.com>
Date:   Fri Dec 17 10:25:59 2010 +0700

    Updated Thai translation.

 po/th.po | 538 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 279 insertions(+), 259 deletions(-)

commit c1fc40050afaa9e77dfefe32fd3a61c2482f603d
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 16 20:42:40 2010 +0000

    network: teach the network panel about IPv6

 panels/network/cc-network-panel.c | 354 +++++++++++++++++++++++++++++++++++---
 panels/network/network.ui         | 108 +++++++++++-
 panels/network/panel-common.c     |  58 +++++++
 panels/network/panel-common.h     |   2 +
 4 files changed, 486 insertions(+), 36 deletions(-)

commit 7ca2a8a3e598b49b9becb104747fa09ee10954b3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 19:38:31 2010 +0000

    background: Use g_settings_delay() properly
    
    g_settings_delay() doesn't work like GConf's changesets. Either
    you create a separate GSettings for non-delayed application,
    or you call g_settings_apply() any time you want changes applied.

 panels/background/cc-background-panel.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 7f309202c53127c557e65295ba82c475cf8286b2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 18:37:17 2010 +0000

    po: Update for distchecks

 po/POTFILES.in   | 2 +-
 po/POTFILES.skip | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 3d9f470da2af8af84f4e0580753f24a7556cb765
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 18:37:00 2010 +0000

    datetime: Fix distcheck with parallel build

 panels/datetime/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d9ea76bc4a31c9eefc550f5e5faf52e482f8faab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 18:14:54 2010 +0000

    keyboard: Remove dead file

 panels/keyboard/gnome-keyboard-panel.c | 83 ----------------------------------
 1 file changed, 83 deletions(-)

commit dbdfacc0225351e4c1a620d97cbe6eb83215309c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 15:24:35 2010 +0000

    background: Add icons to the dist

 panels/background/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 30d878cfd5cd720fc1bf090532f77531e9da76da
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 13:07:55 2010 +0000

    background: Try to fix original state

 panels/background/cc-background-panel.c | 27 ++++++++++++++++++++++++---
 1 file changed, 24 insertions(+), 3 deletions(-)

commit 59f84a70888c9e9c368c913fbc12cbfcf927aa56
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 13:04:10 2010 +0000

    background: Avoid the size changing when changing preview
    
    The gnome_wp_item_update_size() code was working off old data.
    We need to copy the height and width as well if we want it to
    match the current background. The next call to _update_size()
    will fill in ->size if it wasn't already set.

 panels/background/cc-background-panel.c | 3 +++
 1 file changed, 3 insertions(+)

commit 391cb338295f07e052c2c61c7d372c16f1ea518d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 15 18:04:27 2010 +0000

    background: Avoid empty screens
    
    When switching from a colour to a picture.

 panels/background/bg-pictures-source.c | 2 ++
 1 file changed, 2 insertions(+)

commit 02e095e26c5941eb0da09480d91e475479e99d4e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 15 17:56:28 2010 +0000

    background: Fix small style issue

 panels/background/gnome-wp-item.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9ece3488c9f9fabedfbe8681340e5fa583bdceb7
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 16 17:00:51 2010 +0000

    network: make the data labels selectable so the user can copy them

 panels/network/network.ui | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 9a3f023e2c440a1fd6e895ee3c88e3f1352ac52d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Dec 16 10:06:46 2010 -0500

    proxy: remove proxy panel
    
    It is replaced by the network panel.

 configure.ac                                       |    2 -
 panels/Makefile.am                                 |    1 -
 panels/proxy/Makefile.am                           |   57 -
 panels/proxy/cc-proxy-panel.c                      |  127 --
 panels/proxy/cc-proxy-panel.h                      |   77 --
 panels/proxy/gnome-proxy-panel.desktop.in.in       |   17 -
 panels/proxy/gnome-proxy-properties.c              | 1306 --------------------
 panels/proxy/gnome-proxy-properties.ui             | 1086 ----------------
 .../proxy/icons/16x16/gnome-proxy-properties.png   |  Bin 824 -> 0 bytes
 .../proxy/icons/22x22/gnome-proxy-properties.png   |  Bin 1081 -> 0 bytes
 .../proxy/icons/24x24/gnome-proxy-properties.png   |  Bin 1081 -> 0 bytes
 .../proxy/icons/32x32/gnome-proxy-properties.png   |  Bin 1855 -> 0 bytes
 .../proxy/icons/48x48/gnome-proxy-properties.png   |  Bin 3191 -> 0 bytes
 .../icons/scalable/gnome-proxy-properties.svg      |  628 ----------
 panels/proxy/proxy-module.c                        |   41 -
 po/POTFILES.in                                     |    3 -
 po/POTFILES.skip                                   |    1 -
 17 files changed, 3346 deletions(-)

commit fe98e4c2ce24d34d78b12d7951bd10878c90b49b
Author: Torstein Adolf Winterseth <kvikende@fsfe.org>
Date:   Thu Dec 16 15:18:47 2010 +0100

    Updated Norwegian Nynorsk translation

 po/nn.po | 6372 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 3499 insertions(+), 2873 deletions(-)

commit d7a8e5670a89f4614a6219357440c006ee745d2f
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 16 10:33:38 2010 +0000

    network: keep the network UI updated as devices are added, removed or changed
    
    Note: I've found some NetworkManager bugs in this, as 'dbus-monitor --system' will
    verify the missing signals from the daemon.

 panels/network/cc-network-panel.c | 344 +++++++++++++++++++++++++-------------
 1 file changed, 225 insertions(+), 119 deletions(-)

commit f9617f57d0699f0c3b10988135e65cf860c2903c
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 16 09:13:23 2010 +0000

    network: sort the wireless AP dropdown entries by name

 panels/network/cc-network-panel.c | 12 +++++++++++-
 panels/network/network.ui         |  2 ++
 2 files changed, 13 insertions(+), 1 deletion(-)

commit be2a4ddca9a289ac9db7fe17b4afbc05b2f22d29
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 16 08:56:41 2010 +0000

    network: properly align the header with the labels below

 panels/network/network.ui | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit 67c97dc5880f561a8b7a3ec127ffe29fb1b41806
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 22:27:53 2010 +0000

    network: do not show a mode icon for infrastructure connections

 panels/network/panel-cell-renderer-mode.c | 2 --
 1 file changed, 2 deletions(-)

commit e8fcdaa2ff176ce6a054599fbcaf2f9b8414b73f
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 22:23:36 2010 +0000

    network: add a space between the amount and the quantity

 panels/network/cc-network-panel.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 816438b24e765702ebdd82564c1519197ec15532
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 22:16:06 2010 +0000

    network: align the device header with the section labels

 panels/network/network.ui | 115 +++++++++++++++++++++++++---------------------
 1 file changed, 63 insertions(+), 52 deletions(-)

commit ebedc3ac94cb35bad83c47b7f011644f46466624
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 21:37:31 2010 +0000

    network: Use a GtkSwitch to control the flight mode

 panels/network/cc-network-panel.c |  2 +-
 panels/network/network.ui         | 34 +++++++++++++++++++++++++++-------
 2 files changed, 28 insertions(+), 8 deletions(-)

commit 84192b4207cc3b94914b5f6da75edd0861cc753f
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 20:58:33 2010 +0000

    network: display the network name and the IMEI for mobile broadband connections

 panels/network/cc-network-panel.c | 161 ++++++++++++++++++++++++++++++++++----
 panels/network/network.ui         |   8 +-
 2 files changed, 150 insertions(+), 19 deletions(-)

commit ed2353bf1281e001a0d22e34ae253af4d8ba8a49
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 19:59:26 2010 +0000

    network: populate some of the data for mobile broadband connections

 panels/network/cc-network-panel.c | 33 +++++++++++++++++++++++++++++++++
 panels/network/network.ui         | 10 +++++-----
 2 files changed, 38 insertions(+), 5 deletions(-)

commit 3e1053c502a54c6690ae02bea4f05acf5b4e461a
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 19:37:52 2010 +0000

    network: list the devices in approximate connection speed order

 panels/network/cc-network-panel.c |  9 ++++++---
 panels/network/network.ui         |  4 +++-
 panels/network/panel-common.c     | 33 +++++++++++++++++++++++++++++++++
 panels/network/panel-common.h     |  1 +
 4 files changed, 43 insertions(+), 4 deletions(-)

commit ad8223c284d6dddabb3a8f057ccbf2a7ed967e16
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 19:23:40 2010 +0000

    network: show the AP mode and signal strength in the wireless dropdown

 panels/network/cc-network-panel.c | 48 +++++++++++++++++++++++++++++++++++++--
 panels/network/network.ui         |  6 ++++-
 2 files changed, 51 insertions(+), 3 deletions(-)

commit a248ecc4d4d274dca2265016f60ca03d379659dc
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 19:22:15 2010 +0000

    network: split out common non-object functionality into its own source file

 panels/network/Makefile.am        |   2 +
 panels/network/cc-network-panel.c | 143 +------------------------------
 panels/network/panel-common.c     | 174 ++++++++++++++++++++++++++++++++++++++
 panels/network/panel-common.h     |  66 +++++++++++++++
 po/POTFILES.in                    |   1 +
 5 files changed, 245 insertions(+), 141 deletions(-)

commit 6b49a205877515b0f64315cfaac2a5ed483b8def
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 19:19:21 2010 +0000

    network: add a cell renderer for displaying the AP signal strength

 panels/network/Makefile.am                  |   2 +
 panels/network/panel-cell-renderer-signal.c | 155 ++++++++++++++++++++++++++++
 panels/network/panel-cell-renderer-signal.h |  60 +++++++++++
 3 files changed, 217 insertions(+)

commit 3ba96656e453a2e81363a73be425a10302e468a2
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 15 19:18:32 2010 +0000

    network: add a cell renderer for displaying the AP mode

 panels/network/Makefile.am                |   2 +
 panels/network/panel-cell-renderer-mode.c | 146 ++++++++++++++++++++++++++++++
 panels/network/panel-cell-renderer-mode.h |  60 ++++++++++++
 3 files changed, 208 insertions(+)

commit 2365e47228441d9518c9429ae019abc24cb3fd5d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 15 16:46:53 2010 +0000

    background: Better handling of colours and gradients
    
    Implement gradients, make sure that selecting one particular
    gradient or solid colour doesn't overwrite the previous one.

 panels/background/background.ui         | 16 +++++-
 panels/background/bg-colors-source.c    | 54 +++++++------------
 panels/background/cc-background-panel.c | 94 ++++++++++++++++++++++++++-------
 3 files changed, 109 insertions(+), 55 deletions(-)

commit f0e4595d9b79d4d8722871368deac36d59de98c8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 15 13:15:07 2010 +0000

    background: Avoid repeating colour names
    
    If there's no files loaded, then there's no size. Left-over from
    s/description/size/ in gnome-wp-item.c

 panels/background/gnome-wp-item.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 06fd58b90b94e7d60b32b843160f95b8cd5f96fb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 15 12:55:14 2010 +0000

    background: Force bigger size for preview rendering
    
    The current code would use the "default" cell renderer size of
    16 before scaling the emblem. Make the default size bigger so that
    the emblems are applied on that bigger size, not on the smaller size.
    
    Fixes tiny emblem for slideshows.

 panels/background/background.ui | 4 +++-
 panels/background/bg-source.h   | 4 ++--
 2 files changed, 5 insertions(+), 3 deletions(-)

commit db3129ef637ddcc6ff09a50b3b7986f8df525d4f
Author: Akom Chotiphantawanon <knight2000@gmail.com>
Date:   Wed Dec 15 16:16:04 2010 +0700

    Updated Thai translation.

 po/th.po | 2648 ++++++++++----------------------------------------------------
 1 file changed, 417 insertions(+), 2231 deletions(-)

commit 035126a970da54711ae0076ccae1e79f84c081f5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 20:29:33 2010 +0000

    background: Add emblem for slideshow previews
    
    Though for some reason the icon ends up being tiny...

 panels/background/Makefile.am                   |   7 +-
 panels/background/background.ui                 |   8 +-
 panels/background/bg-colors-source.c            |   2 +-
 panels/background/bg-source.c                   |   2 +-
 panels/background/bg-wallpapers-source.c        |   4 +-
 panels/background/cc-background-panel.c         |  11 ++-
 panels/background/gnome-wp-item.c               |  56 ++++++-------
 panels/background/gnome-wp-item.h               |  18 ++--
 panels/background/slideshow-emblem-symbolic.svg |  70 ----------------
 panels/background/slideshow-emblem.svg          | 104 ++++++++++++++++++++++++
 panels/background/slideshow-symbolic.svg        |  70 ++++++++++++++++
 11 files changed, 226 insertions(+), 126 deletions(-)

commit f48054ccf1f5cbfa4700f5b369ce302d4e575153
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 19:24:19 2010 +0000

    background: Show wallpaper size on startup
    
    When available. Remove the "px" from the size label.

 panels/background/bg-wallpapers-source.c |  2 +-
 panels/background/cc-background-panel.c  |  4 ++--
 panels/background/gnome-wp-item.c        | 27 +++++++++++++++++----------
 panels/background/gnome-wp-item.h        |  2 +-
 panels/background/gnome-wp-xml.c         |  2 +-
 5 files changed, 22 insertions(+), 15 deletions(-)

commit 933dee47f0cc7743233a42bf3d43e3b7ac9d2394
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 18:58:22 2010 +0000

    background: Simplify the size label

 panels/background/gnome-wp-item.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit ec1704f7990d8e148d1a44804b9e2ddb8b88b245
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 18:50:23 2010 +0000

    background: Right-align the wallpaper size

 panels/background/background.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 26992d1943b6d06864f3c5fc3e677ac20070b45c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 18:33:54 2010 +0000

    background: Add missing SVG file

 panels/background/slideshow-emblem-symbolic.svg | 70 +++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

commit 39f452afee8e127cf38fa419332aff7f4130043c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 17:56:52 2010 +0000

    background: Follow mockups
    
    Add icon to represent slideshows, always show a name for the
    currently set background on startup, show whether a background
    is a slideshow, and its pixel size if available.

 panels/background/Makefile.am            |  2 +
 panels/background/background.ui          | 54 +++++++++++++++++++++----
 panels/background/bg-wallpapers-source.c |  2 +-
 panels/background/cc-background-panel.c  | 15 ++++++-
 panels/background/gnome-wp-item.c        | 68 ++++++--------------------------
 panels/background/gnome-wp-item.h        |  4 +-
 panels/background/gnome-wp-xml.c         |  2 +-
 7 files changed, 79 insertions(+), 68 deletions(-)

commit 855b7830d33f300c7ae125723b0530640147ab3b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 17:44:35 2010 +0000

    background: Make ensure_bg() actually change filenames
    
    Otherwise you might call it as many times as you want, the
    filename won't be changed for it, or its metadata (such as whether
    it is a slideshow) updated.

 panels/background/gnome-wp-item.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit adfe6ef8fc2e873e4de24c25fe322c78702c976e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 14 17:27:09 2010 +0000

    background: Fix broken preview
    
    The style wasn't set properly on startup, and then incorrectly
    applied to the preview because the numbering of the items in
    the style-liststore doesn't match the CDesktopBackgroundStyle
    enum 1-to-1.

 panels/background/cc-background-panel.c | 43 ++++++++++++++++++++++++++++-----
 1 file changed, 37 insertions(+), 6 deletions(-)

commit 98a48ebb6ba71fa3fc77df9c6b20ff000feafb5b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Dec 14 11:44:49 2010 -0500

    screen: use system-lock-screen as icon

 panels/screen/gnome-screen-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5b9efcc24db4a3a2638d0be00d953b252127e033
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Dec 14 14:04:40 2010 +0000

    network: List the available access points for each wireless device
    
    Note: you can't actually assign a access point for a device yet. To come.

 panels/network/cc-network-panel.c | 225 +++++++++++++++++++++++++++++++++-----
 panels/network/network.ui         |  10 +-
 2 files changed, 206 insertions(+), 29 deletions(-)

commit 77e70598d96a9591496f314c35f25b5f6dfe2da3
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Dec 14 13:10:53 2010 +0000

    network: add the manual proxy port spin buttons

 panels/network/cc-network-panel.c | 39 +++++++++++++-----
 panels/network/network.ui         | 84 +++++++++++++++++++++++++++++++++++----
 2 files changed, 106 insertions(+), 17 deletions(-)

commit a134e09848c194ceb81561f724a754756d99e693
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Dec 14 10:23:26 2010 +0000

    network: Add the first version of a simple network panel that uses NetworkManager
    
    This is very much a work in progress, and will be changed quite a bit before GNOME 3.

 configure.ac                                     |    2 +
 panels/Makefile.am                               |    1 +
 panels/network/Makefile.am                       |   31 +
 panels/network/cc-network-panel.c                | 1043 ++++++++++++++++++++++
 panels/network/cc-network-panel.h                |   72 ++
 panels/network/gnome-network-panel.desktop.in.in |   17 +
 panels/network/network-module.c                  |   41 +
 panels/network/network.ui                        |   44 +-
 po/POTFILES.in                                   |    2 +
 po/POTFILES.skip                                 |    1 +
 10 files changed, 1235 insertions(+), 19 deletions(-)

commit 4821672a75c8bb1fac9096eec6074663204aeb35
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Dec 13 23:42:24 2010 +0200

    Updated Hebrew translation.

 po/he.po | 70 +++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 43 insertions(+), 27 deletions(-)

commit 44fbef70a292b7ae049554ffd6949d53e3b66d64
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 13 16:19:58 2010 +0000

    background: Load ~/Pictures asynchronously
    
    Using the new gdk-pixbuf helper functions in 2.23.0.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635601

 configure.ac                           |   2 +
 panels/background/bg-pictures-source.c | 103 +++++++++++++++++++++++++--------
 2 files changed, 82 insertions(+), 23 deletions(-)

commit 9580be8d17d6902632ce1785c25dfb69f60d48ea
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 13 15:30:22 2010 +0000

    background: Avoid re-querying the GFileInfo
    
    If we already have it from enumerating the Pictures directory. Saves
    us from doing sync queries in certain cases.

 panels/background/bg-pictures-source.c |  8 ++++----
 panels/background/gnome-wp-info.c      | 29 +++++++++++++++++++----------
 panels/background/gnome-wp-info.h      |  1 +
 panels/background/gnome-wp-item.c      |  3 ++-
 panels/background/gnome-wp-item.h      |  1 +
 panels/background/gnome-wp-xml.c       |  5 ++---
 6 files changed, 29 insertions(+), 18 deletions(-)

commit a1fa500dc5ca8e7ec65a315c8e08f64464e850ba
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 13 15:29:15 2010 +0000

    background: Make the treeview a little wider
    
    So that we can fit 3 thumbnails side-by-side, even when we use a
    large scrollbar width.

 panels/background/background.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e92fba97a786f72de89df7833d4738022c30cf60
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 13 14:03:10 2010 +0000

    shell: Set wrap mode to "word" for the icon text
    
    https://bugzilla.gnome.org/show_bug.cgi?id=637035

 shell/cc-shell-category-view.c |  1 +
 shell/cc-shell-item-view.c     | 20 ++++++++++++++++++++
 shell/cc-shell-item-view.h     |  2 ++
 3 files changed, 23 insertions(+)

commit 40d882da1c786efef5f442e6200700c8180c0648
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Dec 12 21:55:18 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 71 ++++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 47 insertions(+), 24 deletions(-)

commit ad92153dde5f46b9783f169abc55debc415bba95
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Dec 12 14:08:40 2010 -0500

    info: add stub for system info panel

 configure.ac                               |   2 +
 panels/Makefile.am                         |   1 +
 panels/info/GnomeLogoVerticalMedium.svg    | 132 +++++++++++++
 panels/info/Makefile.am                    |  31 ++++
 panels/info/cc-info-panel.c                | 138 ++++++++++++++
 panels/info/cc-info-panel.h                |  73 ++++++++
 panels/info/gnome-info-panel.desktop.in.in |  17 ++
 panels/info/info-module.c                  |  41 +++++
 panels/info/info.ui                        | 285 +++++++++++++++++++++++++++++
 po/POTFILES.in                             |   4 +-
 po/POTFILES.skip                           |   1 +
 11 files changed, 724 insertions(+), 1 deletion(-)

commit debb923b6bd47543da1e9a0faf7f40fb05d5d1cb
Author: Ivar Smolin <okul@linux.ee>
Date:   Sun Dec 12 21:11:55 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d6421171cc1b296d201c1488caaf735a28d4e87d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Dec 12 12:57:22 2010 -0500

    Change button to Detect Displays
    
    Want to use display consistently instead of mixing with monitor
    and screen.

 panels/display/display-capplet.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 490f95bf6c600148004bf5145bd39e36201aec8d
Author: Ivar Smolin <okul@linux.ee>
Date:   Sun Dec 12 16:26:29 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 212 ++++++++++++++-------------------------------------------------
 1 file changed, 47 insertions(+), 165 deletions(-)

commit bebfc895ea67fd36ec987b924406256fb187d598
Author: Aron Xu <aronxu@gnome.org>
Date:   Sun Dec 12 08:31:29 2010 +0000

    Update Simplified Chinese translation.

 po/zh_CN.po | 1235 ++++++++++++++++++++++++++++-------------------------------
 1 file changed, 584 insertions(+), 651 deletions(-)

commit 953d7db853ef7384508072c9a004603f408dc2fc
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sun Dec 12 00:40:29 2010 +0000

    Making xkb options fill the full popup dlg
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636902

 panels/region/gnome-region-panel-options-dialog.ui |  2 +-
 panels/region/gnome-region-panel-xkbot.c           | 12 ++++++++----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 8bfd70abf09a3c462abb3aa3288949645ff6f55a
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Dec 11 20:56:20 2010 +0100

    Updated Slovenian translation

 po/sl.po | 2311 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 1057 insertions(+), 1254 deletions(-)

commit ee3f130cb68d2f3e1b5f4156d07424755cd721d2
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Dec 10 23:57:42 2010 +0100

    Updated Galician translations

 po/gl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8c858569daa71a9424166275ea6cc89524a2f24b
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Fri Dec 10 23:55:39 2010 +0100

    Updated Galician translations

 po/gl.po | 698 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 366 insertions(+), 332 deletions(-)

commit e79249e5cf3c3f81207bbba904193210e5999456
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 10 19:04:55 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 65 ----------------------------------------------------------------
 1 file changed, 65 deletions(-)

commit adfef5cb3eae0276624490c0c4560b4cab6ef1d2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 10 19:04:44 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 385 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 222 insertions(+), 163 deletions(-)

commit cd8fcd2bbf46b80bc59ef7cbe33692ba13046090
Author: Ivar Smolin <okul@linux.ee>
Date:   Fri Dec 10 17:04:37 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 276 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 104 insertions(+), 172 deletions(-)

commit 8b644331d9f74c657cb0fe1f9d6c17d9e103cd93
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Fri Dec 10 16:15:35 2010 +0200

    Updated Hebrew translation.

 po/he.po | 165 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 73 insertions(+), 92 deletions(-)

commit a5187c3a63c2cef3ea52509f87611b95c690f120
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Dec 10 11:40:04 2010 +0000

    datetime: Fix timezone splitting
    
    Correct the C-version of the UTF-8 characters, so that we don't
    split on spaces as happened with the Italian translations.
    
    Also make sure we remove underscores in both the city and the region
    parts of the timezone name.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636931

 panels/datetime/cc-datetime-panel.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit ed9942b8c3b526e55559b25adc9b048fe9c0e2ab
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Dec 10 11:32:57 2010 +0000

    Actually load the proxy panel if NetworkManager is not available, rather than looping for infinity

 panels/proxy/cc-proxy-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 35cdeea0ace3e0f23a038a4ab97f57c29225e844
Author: Richard Hughes <richard@hughsie.com>
Date:   Fri Dec 10 11:04:33 2010 +0000

    If we're using the proxy fallback panel, ensure we actually open the fallback module

 panels/proxy/gnome-proxy-panel.desktop.in.in | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 9f4ec9fe3db4220b5b7c2bdc94a10d830d8ff27b
Author: Ivar Smolin <okul@linux.ee>
Date:   Fri Dec 10 12:18:14 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 294 +++++++++++++++++++++++----------------------------------------
 1 file changed, 107 insertions(+), 187 deletions(-)

commit de270ce6b4d61ff6c4882cf5a9202018142650eb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 9 17:09:38 2010 +0000

    datetime: Add "Network Time" switch
    
    And disable the date/time switches when turning NTP on/off.

 panels/datetime/cc-datetime-panel.c | 45 ++++++++++++++++++++++++++--
 panels/datetime/datetime.ui         | 59 +++++++++++++++++++++++++------------
 2 files changed, 83 insertions(+), 21 deletions(-)

commit 189766a634ca7381628fb56a6796a5089a64457f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 9 16:23:57 2010 +0000

    datetime: Translate timezone names
    
    Both Cities and Regions need to be translated. Also make sure that
    we sort them properly, and use symbolic names for COLUMNS in the
    region liststore.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630264

 configure.ac                             |    1 +
 panels/datetime/Makefile.am              |    6 +-
 panels/datetime/cc-datetime-panel.c      |   65 +-
 panels/datetime/datetime-module.c        |    5 +
 panels/datetime/datetime.ui              |   12 +-
 panels/datetime/po-timezones/Makefile.am |   25 +
 panels/datetime/po-timezones/README      |    3 +
 panels/datetime/po-timezones/am.po       | 3350 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/ar.po       | 3255 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/as.po       | 3273 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ast.po      | 3250 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/bg.po       | 3275 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/bn.po       | 3340 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/bn_IN.po    | 3259 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/bs.po       | 3283 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ca.po       | 3300 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/cs.po       | 3227 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/cy.po       | 3333 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/da.po       | 3250 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/de.po       | 3722 +++++++++++++++++++++++++++++
 panels/datetime/po-timezones/el.po       | 3272 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/en_GB.po    | 3262 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/es.po       | 3252 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/et.po       | 3351 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/fa.po       | 3304 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/fi.po       | 3272 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/fr.po       | 3263 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/gl.po       | 3348 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/gu.po       | 3241 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/he.po       | 3274 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/hi.po       | 3247 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/hr.po       | 3281 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/hu.po       | 3258 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/id.po       | 3332 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ilo.po      | 3232 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/is.po       | 3251 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/it.po       | 3242 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ja.po       | 3264 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ka.po       | 3280 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/kn.po       | 3244 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ko.po       | 3246 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ku.po       | 3237 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/lo.po       | 3237 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/lt.po       | 3351 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/lv.po       | 3287 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/mai.po      | 3274 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/mk.po       | 3350 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/ml.po       | 3240 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/mr.po       | 3242 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ms.po       | 3277 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/nb.po       | 3234 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/nds.po      | 3725 ++++++++++++++++++++++++++++++
 panels/datetime/po-timezones/nl.po       | 3288 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/nn.po       | 3238 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/no.po       | 3345 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/or.po       | 3250 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/pa.po       | 3239 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/pl.po       | 3257 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/pt.po       | 3298 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/pt_BR.po    | 3252 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ro.po       | 3284 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ru.po       | 3250 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/si.po       | 3283 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/sk.po       | 3293 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/sl.po       | 3350 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/sq.po       | 3278 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/sr.po       | 3255 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/sr@latin.po | 3255 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/sv.po       | 3221 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ta.po       | 3246 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/te.po       | 3245 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/tr.po       | 3246 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/uk.po       | 3239 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/ur.po       | 3237 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/vi.po       | 3349 +++++++++++++++++++++++++++
 panels/datetime/po-timezones/zh_CN.po    | 3244 ++++++++++++++++++++++++++
 panels/datetime/po-timezones/zh_TW.po    | 3243 ++++++++++++++++++++++++++
 77 files changed, 230068 insertions(+), 21 deletions(-)

commit a635c0b646e9ddfd0a0907a7bf0ad6171a435f89
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Dec 9 14:30:50 2010 +0100

    keyboard: Less padding for scrolled windows

 panels/keyboard/gnome-keyboard-panel.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit cc15b73336f4d01aa6997a31accf9644b36e4759
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Dec 9 14:27:54 2010 +0100

    keyboard: Match with previous functionality

 panels/keyboard/gnome-keyboard-panel.c | 1138 --------------------------------
 panels/keyboard/keyboard-shortcuts.c   | 1072 ++++++++++++++++++++++++++++--
 2 files changed, 1024 insertions(+), 1186 deletions(-)

commit f6f580b9ee32107a303b686c4f1d3a0b6699e535
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Dec 9 13:53:39 2010 +0100

    keyboard: Show keybindings for the selected section

 panels/keyboard/gnome-keyboard-panel.c  |  20 -----
 panels/keyboard/gnome-keyboard-panel.ui |   3 +-
 panels/keyboard/keyboard-shortcuts.c    | 129 +++++++++++++++++++++++++-------
 3 files changed, 103 insertions(+), 49 deletions(-)

commit ae26a638bc05a63877ec60ab5d52e938b6eed426
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Dec 9 10:42:33 2010 +0100

    keyboard: Display sections in a separate treeview

 panels/keyboard/gnome-keyboard-panel.c  | 732 +-----------------------------
 panels/keyboard/gnome-keyboard-panel.ui |   5 +-
 panels/keyboard/keyboard-shortcuts.c    | 772 +++++++++++++++++++++++++++++++-
 3 files changed, 773 insertions(+), 736 deletions(-)

commit 974acd358e482d9239e336193c540134cbfb5d3c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Dec 7 16:29:22 2010 +0100

    keyboard: Separate code for tabs in notebooks

 panels/keyboard/Makefile.am            |  6 ++-
 panels/keyboard/cc-keyboard-panel.c    |  9 +++--
 panels/keyboard/gnome-keyboard-panel.c | 41 ++++----------------
 panels/keyboard/keyboard-general.c     | 68 ++++++++++++++++++++++++++++++++++
 panels/keyboard/keyboard-general.h     | 26 +++++++++++++
 panels/keyboard/keyboard-shortcuts.c   | 46 +++++++++++++++++++++++
 panels/keyboard/keyboard-shortcuts.h   | 26 +++++++++++++
 7 files changed, 184 insertions(+), 38 deletions(-)

commit fa9c9818df7684d29588c180ac8b954723e3d92b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Dec 7 14:06:50 2010 +0100

    keyboard: Use the same code formatting everywhere

 panels/keyboard/gnome-keyboard-panel.c | 72 +++++++++++++++++-----------------
 1 file changed, 36 insertions(+), 36 deletions(-)

commit 5e9f57bd9d7baf1afb910d86a7688b71c926f1e1
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Dec 7 13:51:22 2010 +0100

    keyboard: Add new treeview for showing shortcuts' sections

 panels/keyboard/gnome-keyboard-panel.ui | 315 +++++++++++++++++---------------
 1 file changed, 168 insertions(+), 147 deletions(-)

commit 91bf1c6241fc2722d7b0ac80a415774dedf03491
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 9 14:25:34 2010 +0000

    datetime: One step closer to mockups
    
    Push the 12/24 hour switch at the bottom. remove date labels,
    put the date setting widgets side-by-side.

 panels/datetime/datetime.ui | 60 +++++++--------------------------------------
 1 file changed, 9 insertions(+), 51 deletions(-)

commit 9ee79e22154912de2d481f8f4a123f361f141804
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 9 12:48:41 2010 +0000

    datetime: Add "using NTP" helpers

 panels/datetime/set-timezone.c | 104 +++++++++++++++++++++++++++++++++++++++--
 panels/datetime/set-timezone.h |   8 ++++
 2 files changed, 108 insertions(+), 4 deletions(-)

commit 03112a5091da2bc9cab51696cf7c58750bccaf65
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Dec 9 16:03:33 2010 +0200

    Updated Hebrew translation.

 po/he.po | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 75 insertions(+), 15 deletions(-)

commit 01fbd4fee0271571d8d685be124e7c6e7c48dbde
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 9 12:07:48 2010 +0000

    mouse: Use g-s-d helper to detect touchpad

 panels/mouse/gnome-mouse-properties.c | 59 ++---------------------------------
 1 file changed, 2 insertions(+), 57 deletions(-)

commit 741723eaf86d9e68ae979b960eb2da3cf4b331d1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 9 12:05:12 2010 +0000

    mouse: Add g-s-d helper to detect touchpads

 panels/mouse/Makefile.am        |   4 +-
 panels/mouse/gsd-input-helper.c | 109 ++++++++++++++++++++++++++++++++++++++++
 panels/mouse/gsd-input-helper.h |  35 +++++++++++++
 3 files changed, 147 insertions(+), 1 deletion(-)

commit 6e7195571743810c4da4146d7255489fd68218e8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Dec 8 14:30:45 2010 +0000

    datetime: We shouldn't have to know where TZ files live
    
    That's a job for the backend to sort out.

 panels/datetime/cc-datetime-panel.c |  6 +-----
 panels/datetime/set-timezone.c      | 15 +++++++--------
 panels/datetime/set-timezone.h      | 10 +---------
 3 files changed, 9 insertions(+), 22 deletions(-)

commit 06573b2970164e6d2050f20781efd2b682956e2e
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 8 12:47:15 2010 +0000

    Add the new network.ui to POTFILES.in so the translators can give feedback

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 2523ced8599595bed465b4e04f14c77b6a9f2bf2
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Dec 8 12:45:52 2010 +0000

    Correct a trivial bug where the network->proxy rename was missed in POTFILES.skip

 po/POTFILES.skip | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e565c107616bc08e255f43bfa72405683c16a33
Author: Ivar Smolin <okul@linux.ee>
Date:   Wed Dec 8 10:32:18 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 544 +++++++++++++++++++++------------------------------------------
 1 file changed, 177 insertions(+), 367 deletions(-)

commit c25a572d95ca19cb3fef5289da97ec9dad398ef1
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Dec 8 01:14:12 2010 +0200

    Updated Hebrew translation

 po/he.po | 95 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 49 insertions(+), 46 deletions(-)

commit cd151175fc3ea6db1b426c9bfef410cbb83e738f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 7 17:42:34 2010 +0000

    mouse: Add "trackball" as a keyword

 panels/mouse/gnome-mouse-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a941601b7c527c316ef4044f3fc4c6cb6ea37e62
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 7 17:11:59 2010 +0000

    display: Mark "Mirror displays" as a verb
    
    Add a translator comment to make sure "Mirror displays" in the main
    panel UI gets translated properly.

 panels/display/display-capplet.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7667671ab172817796b515c1e1d3f18733205cc7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 7 16:57:09 2010 +0000

    display: Use "display" instead of "screen"
    
    Use "display" consistently instead of "screen" in some portions
    of the UI.

 panels/display/display-capplet.ui |  2 +-
 panels/display/xrandr-capplet.c   | 29 +++++++++++++++++------------
 2 files changed, 18 insertions(+), 13 deletions(-)

commit b644270689a2493a6352af6933603ccd5885ec1e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 7 15:57:04 2010 +0000

    user-accounts: Fix warnings with special chars in user name
    
    https://bugzilla.gnome.org/show_bug.cgi?id=626282

 panels/user-accounts/um-user-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 1444bc8928db32e1f74d026d31be7d8b0dcb9e57
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Tue Dec 7 17:32:25 2010 +0200

    Updated Hebrew translation

 po/he.po | 60 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

commit e62c6f7e950f95bdd18018a7f48c2a2cdb291422
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Tue Dec 7 15:17:43 2010 +0000

    display: Title versus Sentences Capitalization
    
    Fix a few labels.

 panels/display/display-capplet.ui | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 96a726f20bcaaf4f66825b1a0584fba223b0e0a9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 7 15:13:46 2010 +0000

    user-accounts: Don't crash when apg is missing
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635808

 panels/user-accounts/um-password-dialog.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit 102a0d65e2304b5021454d187326e388b7f6fc66
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Dec 7 18:00:39 2010 +0700

    Updated Thai translation.

 po/th.po | 757 +++++++++++++++++++++------------------------------------------
 1 file changed, 254 insertions(+), 503 deletions(-)

commit 70d422069e6454760c14e33bb7e9c11527e55d91
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Dec 6 18:55:03 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 365 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 136 insertions(+), 229 deletions(-)

commit 9ec373f645f253185452cd864b01e80e4ebd3f87
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Dec 6 23:26:17 2010 +0700

    Updated Thai translation.

 po/th.po | 913 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 353 insertions(+), 560 deletions(-)

commit 5d7ad665ecb3bf780dfcff3c3efec73a4351810a
Author: Owen W. Taylor <otaylor@fishsoup.net>
Date:   Mon Dec 6 08:37:00 2010 -0500

    xandr-capplet: Remove depth argument from gdk_window_get_geometry()
    
    Make compile again with the latest GTK+ 2.9x API changes.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636581

 panels/display/xrandr-capplet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 33a73ceac029fd2e80c19d8a25af5facf01a0aa7
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Dec 6 14:49:55 2010 +0200

    Updated Hebrew translation.

 po/he.po | 429 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 246 insertions(+), 183 deletions(-)

commit 978c916e2ebd5ee027ab418a53bf16c6f2b60011
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Dec 5 19:12:11 2010 -0500

    Update POTFILES.in for media panel

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit 94c13b0b4db14d09b2b1ba60d2a03655b449a838
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Dec 6 01:39:56 2010 +0200

    [l10n] Updated Estonian translation

 po/et.po | 5240 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 3238 insertions(+), 2002 deletions(-)

commit cc51522f564c14ed6b3facea883730c4922abd5b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Dec 5 18:47:55 2010 +0100

    Updated Spanish translation

 po/es.po | 1388 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 835 insertions(+), 553 deletions(-)

commit c895a0634ae8a2850a593639ed6b1d9620c9ab89
Author: Akom Chotiphantawanon <knight2000@gmail.com>
Date:   Sun Dec 5 18:50:17 2010 +0700

    Updated Thai translation.

 po/th.po | 8253 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 4314 insertions(+), 3939 deletions(-)

commit 01f8f489d23fec0ee62b005af8fd902846732f22
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Dec 3 21:22:26 2010 -0500

    Shell: fix initial window size
    
    The code is setting the min-content-height out of a ::size-allocate
    handler, so the resulting size request is ignored. Doing a separate
    size request in an idle has the desired effect.

 shell/cinnamon-control-center.c | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

commit fbbb9c35a925010af25e428ece6a16ea22d667db
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 2 19:17:38 2010 +0000

    shell: Add -o parameter to show the overview
    
    Instead of just presenting the main window.

 shell/control-center.c       | 63 +++++++++++++++++++++++++++++++++++++++-----
 shell/cinnamon-control-center.c |  6 +++++
 shell/cinnamon-control-center.h |  2 ++
 3 files changed, 64 insertions(+), 7 deletions(-)

commit dc9f8114dcf841854cca760c5de0bf1866239a2f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 2 18:06:08 2010 +0000

    datetime: Implement 12h time setting
    
    So AM/PM are shown when the clock format is 12h.
    
    Use the new GSettings schema key for the preference.
    
    Also make sure that the day spinner always falls within the
    number of days of the month available (and make the 31st selectable
    for months that have that many days).

 panels/datetime/cc-datetime-panel.c | 242 ++++++++++++++++++++----------------
 panels/datetime/datetime.ui         |  56 ++++++++-
 2 files changed, 188 insertions(+), 110 deletions(-)

commit 4db6e4d0600faee124441ef6407f57a44feb6ecc
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Dec 2 18:04:22 2010 +0100

    Require gsettings-desktop-schemas >= 0.1.3

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 07aceaf5385453b3d18eadae7a36a8fff8514bea
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 2 16:03:53 2010 +0000

    Add a mockup of the future network panel, code to follow in the next few days

 panels/network/network.ui | 1407 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1407 insertions(+)

commit 28746145ec16438e8d6dbf1f3b0a44cdfb2cd9a9
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Dec 2 16:02:50 2010 +0000

    Rename the network panel to 'proxy' so we can work on a true network panel that uses NetworkManager

 configure.ac                                       |    4 +-
 panels/Makefile.am                                 |    2 +-
 panels/network/Makefile.am                         |   57 -
 panels/network/cc-network-panel.c                  |  127 --
 panels/network/cc-network-panel.h                  |   77 --
 panels/network/gnome-network-panel.desktop.in.in   |   17 -
 panels/network/gnome-network-properties.c          | 1306 --------------------
 panels/network/gnome-network-properties.ui         | 1086 ----------------
 .../icons/16x16/gnome-network-properties.png       |  Bin 824 -> 0 bytes
 .../icons/22x22/gnome-network-properties.png       |  Bin 1081 -> 0 bytes
 .../icons/24x24/gnome-network-properties.png       |  Bin 1081 -> 0 bytes
 .../icons/32x32/gnome-network-properties.png       |  Bin 1855 -> 0 bytes
 .../icons/48x48/gnome-network-properties.png       |  Bin 3191 -> 0 bytes
 .../icons/scalable/gnome-network-properties.svg    |  628 ----------
 panels/network/network-module.c                    |   41 -
 panels/proxy/Makefile.am                           |   57 +
 panels/proxy/cc-proxy-panel.c                      |  127 ++
 panels/proxy/cc-proxy-panel.h                      |   77 ++
 panels/proxy/gnome-proxy-panel.desktop.in.in       |   17 +
 panels/proxy/gnome-proxy-properties.c              | 1306 ++++++++++++++++++++
 panels/proxy/gnome-proxy-properties.ui             | 1086 ++++++++++++++++
 .../proxy/icons/16x16/gnome-proxy-properties.png   |  Bin 0 -> 824 bytes
 .../proxy/icons/22x22/gnome-proxy-properties.png   |  Bin 0 -> 1081 bytes
 .../proxy/icons/24x24/gnome-proxy-properties.png   |  Bin 0 -> 1081 bytes
 .../proxy/icons/32x32/gnome-proxy-properties.png   |  Bin 0 -> 1855 bytes
 .../proxy/icons/48x48/gnome-proxy-properties.png   |  Bin 0 -> 3191 bytes
 .../icons/scalable/gnome-proxy-properties.svg      |  628 ++++++++++
 panels/proxy/proxy-module.c                        |   41 +
 po/POTFILES.in                                     |    6 +-
 29 files changed, 3345 insertions(+), 3345 deletions(-)

commit 6de52cfb9728d4ae9fe8e5cd8e51325240eb0886
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 2 15:37:47 2010 +0000

    datetime: Don't depend on gnome-shell for the clock format
    
    We really don't want to depend on a module that might not be
    installed for this setting. Use the one in gsettings-desktop-schemas
    instead.

 panels/datetime/cc-datetime-panel.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

commit ccfde295f21d8da0a1da6b218c80377b8803330b
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Thu Dec 2 21:29:00 2010 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 4255 ++++++++++++++++++++++++++++++++++++----------------------
 po/zh_TW.po | 4259 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 5380 insertions(+), 3134 deletions(-)

commit ebfaa486784535613c1f343c4f7136190c599424
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Dec 1 20:18:37 2010 +0100

    media: re-add accidentally removed code

 panels/media/cc-media-panel.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 3bb23fef60b08edcbbff9ebc93fe09ee01092cae
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Dec 1 17:07:10 2010 +0100

    build: bump required GTK+ version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 55435ac0f237166f5d6f5cb7b43a39a01bda34e9
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Dec 1 13:54:38 2010 +0100

    media: remove NautilusOpenWithDialog
    
    It's not used anymore now that the widgets are in GTK+.

 panels/media/Makefile.am                 |    4 +-
 panels/media/nautilus-open-with-dialog.c | 1092 ------------------------------
 panels/media/nautilus-open-with-dialog.h |   64 --
 3 files changed, 1 insertion(+), 1159 deletions(-)

commit 0b4c4e05bf505801a78b314998549e0fa9bf60c0
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Dec 1 13:53:58 2010 +0100

    media: port to GtkAppChooserButton
    
    Use the new GTK+ widget instead of our homebrew comboboxes.

 panels/media/cc-media-panel.c          | 632 +++++++++------------------------
 panels/media/gnome-media-properties.ui |  19 +-
 2 files changed, 184 insertions(+), 467 deletions(-)

commit 5b7132bacf0682c383a60f19d10b8205e2f6f208
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 29 14:56:31 2010 +0000

    display: Use new GtkSwitch for display switching
    
    Instead of 2 radio buttons.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=636065

 configure.ac                      |  2 +-
 panels/display/display-capplet.ui | 21 +-----------------
 panels/display/xrandr-capplet.c   | 46 +++++++++++++++------------------------
 3 files changed, 19 insertions(+), 50 deletions(-)

commit 85b23fff9f70f86102e8ab6777a43de9f9feb84b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Dec 1 11:28:06 2010 +0100

    build: bumop required gsettings-desktop-schemas version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3fe7ff72c32551fdbd15c09aaf6c9fbc7a346683
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 30 14:27:45 2010 +0100

    universal access: Re-add gconf_on_off_editor stuff for the metacity settings

 panels/universal-access/cc-ua-panel.c | 77 ++++++++++++++++++++++++++++-------
 1 file changed, 62 insertions(+), 15 deletions(-)

commit 979fc705c3931f2efa6bc6426360098bfd185097
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 30 14:18:41 2010 +0100

    universal access: Use DPI settings from GSettings

 panels/universal-access/cc-ua-panel.c | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

commit 10d65280f655f968848eda5e19dc08d42b59047d
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 30 14:09:20 2010 +0100

    universal-access: Migrate mouse settings to GSettings

 panels/universal-access/cc-ua-panel.c | 89 +++++++++--------------------------
 1 file changed, 21 insertions(+), 68 deletions(-)

commit 71c6f13575a0cc45bb7e3d591d185baabdbb9182
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 30 13:47:50 2010 +0100

    universal access: Migrate keyboard settings to GSettings

 panels/universal-access/cc-ua-panel.c | 67 +++++++++++++++++++----------------
 1 file changed, 36 insertions(+), 31 deletions(-)

commit ee2c77b27732a078005b7b56072baac356ef3348
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Nov 30 01:12:12 2010 +0100

    media: add use_underline property to Other button

 panels/media/gnome-media-properties.ui | 1 +
 1 file changed, 1 insertion(+)

commit 6c04751f397d2a7fc3547cdf02d65a9162ecf688
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 23:53:25 2010 +0100

    Release 2.91.3.1

 NEWS         | 13 +++++++++++++
 configure.ac |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit d237476df539be84ca52604097eb7cb260b71de1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 29 20:16:06 2010 +0100

    media: use the correct schema name

 panels/media/cc-media-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a396a872bdb9344ffbac49acd6e79a5a220f33f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 16:50:53 2010 +0100

    Add missing libraries for linking

 panels/media/Makefile.am  | 3 ++-
 panels/power/Makefile.am  | 2 +-
 panels/screen/Makefile.am | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

commit affc2ca923d1fc41d229d829f1e9a477b0912d70
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 29 14:43:07 2010 +0000

    display: Fix run-time warning
    
    If the viewport changed before we're realised, don't care too much.

 panels/display/scrollarea.c | 3 +++
 1 file changed, 3 insertions(+)

commit cab4c66ec653b4ed968308de2f0271f9429fdfd8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 14:37:31 2010 +0100

    Release 2.91.3

 NEWS         | 1 +
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 94a4924b3da1c1d51374343347d1a64c019ea7e5
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 14:37:18 2010 +0100

    i18n: Add non-translatable files to POTFILES.skip

 po/POTFILES.skip | 1 +
 1 file changed, 1 insertion(+)

commit 5758cc07e69cfccf842e18520e6b8aa4232e560a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 14:32:04 2010 +0100

    sound: Add 'devices' icons dir to build

 panels/sound/data/icons/48x48/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fea8fc045e43a2ae2b25a6b79bb1925a587b1cc0
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 14:27:42 2010 +0100

    sound: Add 'devices' icons dir to build

 panels/sound/data/icons/32x32/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1e128627c3fc8c24401a8697552b710438606301
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 14:25:05 2010 +0100

    sound: Add 'devices' icons dir to build

 panels/sound/data/icons/24x24/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9efcba5bf3e32a93dac37f6827e6e2752267d9ce
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 14:22:12 2010 +0100

    sound: Add 'devices' icons dir to build

 panels/sound/data/icons/16x16/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cff53d1afbd5092407067da1f513bad8192632d2
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 12:39:15 2010 +0100

    user-accounts: Link against missing libraries

 panels/user-accounts/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit c76fa00d67404119bf3aafae411037a6c8cc75b8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 29 12:30:44 2010 +0100

    Prepare NEWS

 NEWS | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 108 insertions(+)

commit 66e8e903be8ad25fe3b1386d1fbda75359959e97
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Sun Nov 28 17:07:24 2010 +0100

    Adapt to API changes in GnomeRRScreen
    
    gnome_rr_screen_new does not accept a callback anymore, we need
    to use the "screen-changed" signal

 panels/display/xrandr-capplet.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3eb3ca4506624fb537c55796d1397eb5f9b8da4b
Author: Giovanni Campagna <gcampagna@src.gnome.org>
Date:   Thu Nov 4 23:15:58 2010 +0100

    Adapt to GnomeDesktop API changes
    
    GnomeRRScreen, GnomeRRConfig and GnomeRROutputInfo (formerly
    GnomeOutputInfo) have turned into opaque GObjects. Use accessors
    for modifying them, and allocate/free them as GObjects.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=634091

 panels/display/xrandr-capplet.c | 658 ++++++++++++++++++++--------------------
 1 file changed, 324 insertions(+), 334 deletions(-)

commit f95f885385d44ec31dd01633b1aa780e654cf458
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Nov 27 01:56:19 2010 +0100

    Updated Galician translations

 po/gl.po | 788 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 505 insertions(+), 283 deletions(-)

commit 37b775baa3a32c5c2e8ae08b135397547bbdea72
Author: Cătălin Bălan <laserbeam333@gmail.com>
Date:   Fri Nov 26 00:11:00 2010 +0200

    Updated Romanian translation

 po/ro.po | 3840 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 2618 insertions(+), 1222 deletions(-)

commit ab1cc55ae963d8c60b02fea3ddeda0ca2a923f33
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Thu Nov 25 16:33:52 2010 +0100

    media: fix capitalization and missing accelerator

 panels/media/gnome-media-properties.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit c894a599cf4bc79ed623a667c96e3b17f0f0bfa0
Author: Dr.T.Vasudevan <agnihot3@gmail.com>
Date:   Thu Nov 25 19:04:14 2010 +0530

    Updated Tamil translation

 po/ta.po | 3871 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 2434 insertions(+), 1437 deletions(-)

commit 0c8dfbba952da40f757e36fbd0993d2a62955c44
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Nov 25 00:51:52 2010 -0500

    ua: remove an unused frame that added a few extra px of spacing

 panels/universal-access/uap.ui | 4968 ++++++++++++++++++++--------------------
 1 file changed, 2475 insertions(+), 2493 deletions(-)

commit d6be55ec4135c8fadba93721dcf54cad6f50a817
Author: A S Alam <aalam@users.sf.net>
Date:   Thu Nov 25 09:17:52 2010 +0530

    update for Punjabi by A S Alam

 po/pa.po | 2053 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1114 insertions(+), 939 deletions(-)

commit 0936862719fc3307a92c838f347e6c39298fd76f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Nov 24 19:47:00 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 470 ++++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 327 insertions(+), 143 deletions(-)

commit c6f4bd18469cb52c6ad060218170e8f02bd0224a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Nov 24 10:40:29 2010 -0500

    media: remove browse checkbutton
    
    Each individual media type already has the option to open
    in the file browser so we don't need a separate option.  It
    doesn't appear to have been hooked up so just remove from the ui.

 panels/media/gnome-media-properties.ui | 15 ---------------
 1 file changed, 15 deletions(-)

commit f5a1751a96fe0c01efa05edccd62ba76e45365e6
Author: William Jon McCann <jmccann@redhat.com>
Date:   Wed Nov 24 08:52:50 2010 -0500

    media: expand combo box to fill parent
    
    Now that parent isn't the full width of window.

 panels/media/gnome-media-properties.ui | 1 -
 1 file changed, 1 deletion(-)

commit f71bb4a524e306d35dd855adbf0a279b07fadedf
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 17:46:41 2010 -0500

    media: remove spurious debug

 panels/media/cc-media-panel.c | 1 -
 1 file changed, 1 deletion(-)

commit a9908912bd210cc0bff066272cd85ec22b3bff41
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 17:40:46 2010 -0500

    media: streamline the dialog a bit
    
    Simplify the layout and move the "extra" options off the main page.

 panels/media/cc-media-panel.c          |  33 +++
 panels/media/gnome-media-properties.ui | 520 +++++++++++++++++++--------------
 2 files changed, 340 insertions(+), 213 deletions(-)

commit bb211c67e56a67504b95908613b09f22ed1ec93d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 16:10:47 2010 -0500

    media: remove redundant label

 panels/media/gnome-media-properties.ui | 14 --------------
 1 file changed, 14 deletions(-)

commit 8c4d35ec17d165a9bd7c9a174c5e0b7db689e54f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 16:04:57 2010 -0500

    media: some spacing fixes

 panels/media/gnome-media-properties.ui | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit 502bbf45f5faec3b72d275321f813e6e447a7a07
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 15:58:37 2010 -0500

    media: Change name and category

 panels/media/gnome-media-panel.desktop.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d1b93565d82041c1e30519febb3d96a6f5c040b6
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Nov 23 10:24:52 2010 -0500

    Use a different cursor for bar dragging

 panels/display/xrandr-capplet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 29c7dd38a819039e40a7eff44e4fd8dd939a1550
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 09:43:05 2010 -0500

    display: add a save/restore to ensure the labels don't mess up top bar
    
    By setting a scale...

 panels/display/xrandr-capplet.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 281d37713e0bd301968d650e2119155771bf6c91
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 15:24:19 2010 +0100

    i18n: update POTFILES for media panel

 po/POTFILES.in   | 4 ++++
 po/POTFILES.skip | 1 +
 2 files changed, 5 insertions(+)

commit 4985ac36b2b2e64273fae0216cf212c41b2ed803
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 11:42:36 2010 +0100

    media: whitespace fixes

 panels/media/nautilus-open-with-dialog.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 23d0dac079a65caad67cad86693567faf9a505f5
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 11:42:14 2010 +0100

    media: don't support running uninstalled, it's not possible now.

 panels/media/cc-media-panel.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

commit 6d968179c360e2c595643a3c4af10ad5c5ff31b3
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 11:39:47 2010 +0100

    media: use a struct to associate GtkBuilder names and content types

 panels/media/cc-media-panel.c | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

commit c18b77f75ffd4dc97da0f2b8b944e4f5f9f106a5
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 11:39:09 2010 +0100

    media: define an enum for combobox positions

 panels/media/cc-media-panel.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit 8b87acc6cf4dfc4cd4d45e1e6404518aff347891
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 11:38:48 2010 +0100

    media: don't use eel prefix for functions

 panels/media/cc-media-panel.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 9cef81b8095b347c32e279bcbf2932ce57ca5c59
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Tue Nov 23 10:56:12 2010 +0100

    media: use GPtrArray to add/remove elements from strv

 panels/media/cc-media-panel.c | 63 ++++++++++++++++++++++++-------------------
 1 file changed, 36 insertions(+), 27 deletions(-)

commit 5f0d76071241e0da9bebee788ae404932eab0253
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 15 16:44:18 2010 +0100

    media: make the "Add application" dialog modal
    
    To get the sticky effect from gnome-shell (if it's running). It makes
    sense for that dialog to be modal anyway, as choosing more than one
    default application at the same time is just confusing.

 panels/media/cc-media-panel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 25e932c7c448174138ea09629efc29a47e2ddbed
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 15 13:05:12 2010 +0100

    media: credit original author of the code, and some cosmetic changes

 panels/media/cc-media-panel.c | 44 ++++++++++++++++++++++---------------------
 1 file changed, 23 insertions(+), 21 deletions(-)

commit d074821db8a852adac939171208ca164119bff31
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 15 13:04:49 2010 +0100

    media: hook up the open with dialog in the autorun panel

 panels/media/cc-media-panel.c | 49 +++++++++++++++++++++++++++++++++++++------
 1 file changed, 43 insertions(+), 6 deletions(-)

commit 230edc2f1216cd94d9db51073b9dbcc16afbf92a
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Mon Nov 15 13:03:56 2010 +0100

    media: copy-paste NautilusOpenWithDialog here

 panels/media/Makefile.am                 |    4 +-
 panels/media/nautilus-open-with-dialog.c | 1093 ++++++++++++++++++++++++++++++
 panels/media/nautilus-open-with-dialog.h |   64 ++
 3 files changed, 1160 insertions(+), 1 deletion(-)

commit 5f6c1d2b5032bbf737115e74408de6fc4ba3bde1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Sun Nov 14 14:38:27 2010 +0100

    media: use GIcons instead of rendering pixbufs ourselves
    
    This simplifies the code a bit, and avoid unnecesary work.

 panels/media/cc-media-panel.c | 146 ++++++++++++++----------------------------
 1 file changed, 48 insertions(+), 98 deletions(-)

commit b70172e707781492a10e37711144753c5ec571b1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Sun Nov 14 13:04:40 2010 +0100

    media: initial port of Nautilus capplet code.

 configure.ac                                 |   2 +
 panels/Makefile.am                           |   1 +
 panels/media/Makefile.am                     |  36 ++
 panels/media/cc-media-panel.c                | 808 +++++++++++++++++++++++++++
 panels/media/cc-media-panel.h                |  73 +++
 panels/media/gnome-media-panel.desktop.in.in |  15 +
 panels/media/gnome-media-properties.ui       | 384 +++++++++++++
 panels/media/media-module.c                  |  41 ++
 8 files changed, 1360 insertions(+)

commit f490da1cb5461177ec086273add37b7e7157b79f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 08:29:59 2010 -0500

    display: use a better color shading
    
    So the displays don't look black when off.  We should avoid using
    black since that is used for the top bar.

 panels/display/xrandr-capplet.c | 30 ++++++++++++++++++++++++++----
 1 file changed, 26 insertions(+), 4 deletions(-)

commit 49e0499e3b760bb639e9759356cc645198099698
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 23 08:02:19 2010 -0500

    display: update primary when turning displays off

 panels/display/xrandr-capplet.c | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit 17a7b0d404207e6b319b9fefdf184d7daddd8d9b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 22 22:01:30 2010 -0500

    display: only set primary when dragging top bar

 panels/display/xrandr-capplet.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 3f054a856e474319eb30008868bef8a523efd467
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 22 21:54:51 2010 -0500

    display: don't allow setting primary on off displays

 panels/display/xrandr-capplet.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9cd6ecac9f499b104e952855741464bfed664e3a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 22 21:40:34 2010 -0500

    display: ensure primary display is set in config
    
    https://bugzilla.gnome.org/show_bug.cgi?id=635455

 panels/display/xrandr-capplet.c | 2 ++
 1 file changed, 2 insertions(+)

commit 325747abcc6cc4745f05945d09091b0266ea3c2c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 22 13:34:57 2010 +0000

    sound: Fix copy/paste error
    
    When setting the default output programmitically.

 panels/sound/gvc-mixer-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d5642cf221e6eb2bf73dbb938dabf04f0f5a1d80
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 21 22:06:26 2010 -0500

    background: load wallpapers in an idle
    
    So we don't block the construction.

 panels/background/bg-wallpapers-source.c | 36 ++++++++++++++++++++++++--------
 1 file changed, 27 insertions(+), 9 deletions(-)

commit 4c06652dfc55488a0542fc7aa7a3d5d88a1a2c58
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 21 21:35:52 2010 -0500

    sound: remove window and button sounds checkbox

 panels/sound/gvc-sound-theme-chooser.c | 37 ----------------------------------
 1 file changed, 37 deletions(-)

commit d2bacbfa59138bb92eebb3e6832313aa90338443
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 21 21:33:02 2010 -0500

    sound: remove theme selection
    
    Like appearance themes this is something that should move to
    a tweakers paradise app.

 panels/sound/gvc-sound-theme-chooser.c | 459 ++++++++-------------------------
 1 file changed, 109 insertions(+), 350 deletions(-)

commit d51d16fddf400843d4a15ca736c59ccf71f07f64
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 21 19:33:34 2010 -0500

    various: use a consistent and slightly larger border width for panels

 panels/background/background.ui                    |  7 +++
 panels/datetime/datetime.ui                        |  6 ++-
 .../gnome-default-applications-properties.ui       |  2 +-
 panels/keyboard/gnome-keyboard-panel.ui            |  1 +
 panels/mouse/gnome-mouse-properties.ui             |  2 +-
 panels/region/gnome-region-panel.ui                |  1 +
 panels/universal-access/uap.ui                     | 11 +---
 panels/user-accounts/data/user-accounts-dialog.ui  |  2 +-
 shell/shell.ui                                     | 62 ++++++++++++----------
 9 files changed, 52 insertions(+), 42 deletions(-)

commit e658b6341b44de3990d6bd25a3c4387d05bb4ae7
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 21 18:48:10 2010 -0500

    display: add some border padding

 panels/display/display-capplet.ui | 1 +
 1 file changed, 1 insertion(+)

commit ba0971fa6ae9e0c8464edfce405f162b60f812bc
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sun Nov 21 13:29:26 2010 +0200

    Updated Hebrew translation.

 po/he.po | 984 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 530 insertions(+), 454 deletions(-)

commit 747f48beb41a0e7e28f8788425f5490a7a97b4d1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Nov 21 03:14:37 2010 +0000

    user-accounts: Add "Disable icon" menu item
    
    When the faces/ directory cannot be loaded.

 panels/user-accounts/um-photo-dialog.c | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

commit e2c486f979857b2dd6951de62b74cf7521e5cc51
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 21:28:55 2010 -0500

    display: use a smaller top bar size

 panels/display/xrandr-capplet.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 254513f75d040778f72372743541cd8adc12f797
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Nov 21 02:15:59 2010 +0000

    user-accounts: Don't allow opening non-images
    
    We need to be able to load it, otherwise it's not something
    we'll support, and can use.

 panels/user-accounts/um-photo-dialog.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 7e5aecdf9837d318aba6d17ef381ab37aa444bef
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 20:38:04 2010 -0500

    display: allow dragging top bar to set primary display

 panels/display/scrollarea.c     | 28 ++++++++----
 panels/display/scrollarea.h     |  5 ++-
 panels/display/xrandr-capplet.c | 97 ++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 118 insertions(+), 12 deletions(-)

commit 3337e01c00ee67a790c80bac40c43e8d0201e939
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 19:37:16 2010 -0500

    display: identify primary display with a black top bar and clock

 panels/display/xrandr-capplet.c | 56 +++++++++++++++++++++++++++++++++++++----
 1 file changed, 51 insertions(+), 5 deletions(-)

commit a4ac7717daff914902a91156d3290bee404ed8c7
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 18:35:02 2010 -0500

    display: clean up declarations

 panels/display/xrandr-capplet.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 88df7df3a93920e62b6a2441e92513f0bc9004b0
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 18:30:40 2010 -0500

    display: use consistent indentation and spacing

 panels/display/scrollarea.c     | 1420 ++++++++++-----------
 panels/display/scrollarea.h     |   42 +-
 panels/display/xrandr-capplet.c | 2660 +++++++++++++++++++--------------------
 3 files changed, 2061 insertions(+), 2061 deletions(-)

commit e9804b5adceed3ce9c870edc0e4792f5301f140a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 18:28:10 2010 -0500

    display: Just say no to tabs and trailing whitespace

 panels/display/scrollarea.c     |  856 +++++++++++++-------------
 panels/display/scrollarea.h     |   90 +--
 panels/display/xrandr-capplet.c | 1274 +++++++++++++++++++--------------------
 3 files changed, 1109 insertions(+), 1111 deletions(-)

commit e3367c92f0c43199a229d6285d8afa212aec515e
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 20 13:30:52 2010 -0500

    Don't assume that get_preferred_* arguments can't be NULL
    
    Fixes a crash introduced by f5f5aac5c065e5be0d5c080ffa1c075423c4cef7

 libcinnamon-control-center/cc-panel.c | 12 ++++++++++--
 panels/datetime/cc-timezone-map.c  | 17 +++++++++++++++--
 panels/display/scrollarea.c        | 14 ++++++++++++--
 panels/sound/gvc-level-bar.c       | 14 ++++++++++++--
 4 files changed, 49 insertions(+), 8 deletions(-)

commit aac24399f847df62708d77cb5a0cff025a7ff30d
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Nov 20 16:31:11 2010 +0000

    shell: ensure the background and foreground colours are consistent
    
    Modify the colours of the viewport and category view widgets so that
    they are consistent with the icon view.

 shell/cc-shell-category-view.c | 51 ++++++++++++++++++++++++++++++++++++++++++
 shell/cinnamon-control-center.c   | 25 +++++++++++++++++++++
 shell/shell.ui                 |  2 +-
 3 files changed, 77 insertions(+), 1 deletion(-)

commit 907b0904b401e7f7c945a7327f901e7568c8afe9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Nov 20 17:45:28 2010 +0100

    Remove generated file

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit 6f3e7a569dc481fa68d76c8e90f454e442927647
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Nov 20 14:32:59 2010 +0100

    Fix this up a bit

 po/POTFILES.in | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 096749a8d094523a707516116e1284e873c8f8a4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Nov 20 14:09:36 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 3241 +++++++++++++++++++++++++++-----------------------------------
 1 file changed, 1423 insertions(+), 1818 deletions(-)

commit ba7018331ad169bb0769eb597915500002026211
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:   Sat Nov 20 11:33:24 2010 +0100

    Added UG translation

 po/ug.po | 729 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 295 insertions(+), 434 deletions(-)

commit 4ab3d15e2a11300748d6842f7a01d0e16eb1e796
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Nov 20 01:40:27 2010 +0100

    Updated Galician translations

 po/gl.po | 562 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 292 insertions(+), 270 deletions(-)

commit d7b2e3144d488101c31ec8d6c83f05f7a77a8f46
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Nov 19 15:08:23 2010 -0500

    shell: start in the right size
    
    When starting up with a single panel, we don't want to show the full-height
    window initially.

 shell/control-center.c       | 10 ++++++++--
 shell/cinnamon-control-center.c |  2 +-
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 1865429130f02f586543b59bd59f917a8cea8b01
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Nov 19 14:06:59 2010 -0500

    sound: avoid initial resizing
    
    The initial small size is due to a 'Connecting to sound system..."
    label that is shown for a split second before the real UI comes in.
    Better to just not do that, I think.

 panels/sound/cc-sound-panel.c | 29 +++--------------------------
 1 file changed, 3 insertions(+), 26 deletions(-)

commit 5c53a050f802e017c84100c4c461285749c73f47
Author: Javier Jardón <jjardon@gnome.org>
Date:   Fri Nov 19 16:48:21 2010 +0100

    gvc-sound-theme-chooser: Replace size_request signal
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=635117

 panels/sound/gvc-sound-theme-chooser.c | 18 ++++--------------
 1 file changed, 4 insertions(+), 14 deletions(-)

commit 342112ad51f89aa0bf2e3e8a824aebabba3f0170
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 19 17:03:34 2010 +0000

    sound: Remove radio buttons
    
    I hate them, and they made switching the default input or output
    too complicated, and probably very unaccessible.

 panels/sound/gvc-mixer-dialog.c | 91 +++++++++++++++++++++++------------------
 1 file changed, 51 insertions(+), 40 deletions(-)

commit f61bf9fa919358d5d3f5e3c9f717c88b59550b37
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Nov 19 11:32:02 2010 -0500

    power: Fix sizing issues in the power panel

 panels/power/power.ui | 2 ++
 1 file changed, 2 insertions(+)

commit e6fc259fb0e4a27ae1adff0c6de148c736b8ce37
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 19 16:20:13 2010 +0000

    Add headset icon
    
    Icon from Hylke Bons, and Andreas Nilsson:
    https://bugzilla.gnome.org/show_bug.cgi?id=581917

 configure.ac                                       |   4 +
 panels/sound/data/icons/16x16/devices/Makefile.am  |  18 +
 .../data/icons/16x16/devices/audio-headset.svg     | 916 ++++++++++++++++++++
 panels/sound/data/icons/24x24/devices/Makefile.am  |  18 +
 .../data/icons/24x24/devices/audio-headset.svg     | 776 +++++++++++++++++
 panels/sound/data/icons/32x32/devices/Makefile.am  |  18 +
 .../data/icons/32x32/devices/audio-headset.svg     | 964 +++++++++++++++++++++
 panels/sound/data/icons/48x48/devices/Makefile.am  |  18 +
 .../data/icons/48x48/devices/audio-headset.svg     | 730 ++++++++++++++++
 9 files changed, 3462 insertions(+)

commit 744871943ab0b60fbf4b2192951b2dec05dd887f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 13 13:34:15 2009 +0100

    Show icons for devices
    
    Show device icons in the stream treeviews. Use GIcon
    to get automatic fallback.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=581917

 panels/sound/gvc-mixer-control.c | 104 ++++++++++++++++++++-------------------
 panels/sound/gvc-mixer-dialog.c  |  32 ++++++++++--
 panels/sound/gvc-mixer-stream.c  |   9 ++++
 panels/sound/gvc-mixer-stream.h  |   2 +
 4 files changed, 93 insertions(+), 54 deletions(-)

commit 06a5844bab6795ce1fe3924d2f98a4f566c071f7
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Nov 18 19:41:44 2010 +0000

    --amend

 panels/power/cc-power-panel.c | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

commit 0ce60e84cb2ff1895401104fb5b218d87bf1eb1d
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Nov 18 17:23:50 2010 +0000

    Add a 'Power' panel that matches the mockups

 configure.ac                                 |   3 +
 panels/Makefile.am                           |   1 +
 panels/power/Makefile.am                     |  31 ++
 panels/power/cc-power-panel.c                | 638 +++++++++++++++++++++++++++
 panels/power/cc-power-panel.h                |  73 +++
 panels/power/gnome-power-panel.desktop.in.in |  17 +
 panels/power/power-module.c                  |  41 ++
 panels/power/power.ui                        | 132 +++++-
 po/POTFILES.in                               |   2 +
 9 files changed, 926 insertions(+), 12 deletions(-)

commit d08cfeae5c48055e6ad14d36b187c0b09096ec66
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 18 16:09:26 2010 +0000

    sound: Make the level bar draw correctly again
    
    The patch in
    http://git.gnome.org/browse/gnome-media/commit/?id=5b71e80a54faf7bc8172bddccd74e2688435e571
    was broken, as it didn't remove the translation that used to be
    necessary when using ->expose_event, but not with ->draw.

 panels/sound/gvc-level-bar.c | 8 --------
 1 file changed, 8 deletions(-)

commit 799b49908250a27a0adb5c0efd1be9b041c223eb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 18 16:08:09 2010 +0000

    sound: Make level bar descend from GtkWidget
    
    As there's no need for it to descend from GtkHBox (it doesn't
    actually contain anything).

 panels/sound/gvc-level-bar.c | 2 +-
 panels/sound/gvc-level-bar.h | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 968d4210831ebecda8bb64ed0423d95550d38dc6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 18 16:06:53 2010 +0000

    sound: Simplify check_rectangle() macro
    
    As the x and y never change.

 panels/sound/gvc-level-bar.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit adc34ac019fead968d0a5e391615c003d26ed759
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 18 15:20:23 2010 +0000

    sound: Avoid second warning when no theme
    
    When the freedesktop sound theme isn't installed, avoid warnings
    on startup above and beyond the existing one.

 panels/sound/gvc-level-bar.c           | 2 ++
 panels/sound/gvc-sound-theme-chooser.c | 5 +++++
 2 files changed, 7 insertions(+)

commit 1444735b6e7e6a11ded106639f1f38f1d3b5a385
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Nov 18 14:37:30 2010 +0000

    Add the first cut of the UI of the power panel, based on a mockup by Alan Day

 panels/power/power.ui | 421 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 421 insertions(+)

commit 4d81619414eb61412803e8ae6454bd116ed2f032
Author: Richard Hughes <richard@hughsie.com>
Date:   Thu Nov 18 11:32:44 2010 +0000

    Connect up the screen dpms off combobox with the new keys in g-s-d

 panels/screen/cc-screen-panel.c | 62 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

commit c3926dbc0329e24f7f6d305025729986b827695c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 18 14:41:15 2010 +0000

    sound: Remove dead code
    
    The sound theme editor wasn't used, and wasn't going to be used.

 panels/sound/Makefile.am              |    2 -
 panels/sound/gvc-sound-theme-editor.c | 1397 ---------------------------------
 panels/sound/gvc-sound-theme-editor.h |   54 --
 3 files changed, 1453 deletions(-)

commit 9aa37efb15567796c1fa0c3ffb0a3957c0d0f857
Author: Javier Jardón <jjardon@gnome.org>
Date:   Wed Nov 17 22:22:01 2010 +0100

    gvc-level-bar: Replace size_request by get_preferred_width/height
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=635117

 panels/sound/gvc-level-bar.c | 34 +++++++++++++++++++++++++++-------
 1 file changed, 27 insertions(+), 7 deletions(-)

commit 9b1176aefc85cdf1c55473b85f2a01284e2803d7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 18 03:02:49 2010 +0000

    network: Avoid run-time warnings
    
    As the GPtrArray for the ignored_hosts is never actually created,
    and a use-after-free as we didn't dup the strings into the array,
    and freed the array.

 panels/network/gnome-network-properties.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 3b8ae693d552a3a87984aa27e6b4b7b19346d75f
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Nov 17 16:56:09 2010 +0000

    Connect up the brightness slider and the dim checkbox with gnome-power-manager

 panels/screen/cc-screen-panel.c | 192 ++++++++++++++++++++++++++++++++++++++--
 1 file changed, 184 insertions(+), 8 deletions(-)

commit 032d6326d5965f02c60949adb52cf82558a1ae86
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 17 15:55:58 2010 +0000

    panels: Add keywords to all the panels we ship
    
    https://bugzilla.gnome.org/show_bug.cgi?id=399754

 examples/gnome-example-panel.desktop.in.in                         | 5 ++++-
 panels/background/gnome-background-panel.desktop.in.in             | 2 ++
 panels/datetime/gnome-datetime-panel.desktop.in.in                 | 2 ++
 panels/display/gnome-display-panel.desktop.in.in                   | 2 +-
 panels/keyboard/gnome-keyboard-panel.desktop.in.in                 | 2 ++
 panels/mouse/gnome-mouse-panel.desktop.in.in                       | 2 ++
 panels/network/gnome-network-panel.desktop.in.in                   | 2 ++
 panels/region/gnome-region-panel.desktop.in.in                     | 2 ++
 panels/screen/gnome-screen-panel.desktop.in.in                     | 2 ++
 panels/sound/data/gnome-sound-panel.desktop.in.in                  | 2 ++
 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 2 ++
 panels/user-accounts/data/gnome-user-accounts-panel.desktop.in.in  | 2 ++
 12 files changed, 25 insertions(+), 2 deletions(-)

commit ad98fd751b3839894ad09e9fce439e0d1d47d319
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 17 15:42:37 2010 +0000

    display: Fix keywords
    
    And add a translator comment.

 panels/display/gnome-display-panel.desktop.in.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit c1d3b1b49c342622b5669da650238ae4c06a9d58
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 17 15:40:32 2010 +0000

    po: Update for removed and added files

 po/POTFILES.in   | 4 ++--
 po/POTFILES.skip | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 4ff4204304ee414a352050062c6aa277e46d9e32
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 16 23:01:13 2010 +0000

    ua: Remove relation with inexistant widget
    
    There's no labels for that widget, so it's not labelled by anything.
    Fixes a run-time warning.

 panels/universal-access/uap.ui | 3 ---
 1 file changed, 3 deletions(-)

commit f052f0ad168d853a613cca6a556b4713b67eb03a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 16 18:02:25 2010 +0000

    sound: Don't allow long profile names to resize toplevel
    
    When profile names were overly long, the whole panel was wider than
    before. This allows us to clip the combobox when not popped up, but
    show the full text when it is, thus avoiding problems with some
    profile names looking the same because of the missing end.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=613040

 panels/sound/gvc-combo-box.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 368f348079121493ccb308cee39f764031f32758
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 16 12:23:36 2010 -0500

    screen: improve label for dim checkbox

 panels/screen/screen.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d4cabf4998a7415d1f6e1a9b6322a05790908f22
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Nov 16 14:04:47 2010 +0000

    datetime: Implement 12/24 hour preferences for the gnome-shell clock
    
    Implement the radio buttons that change the format of the clock displayed
    in gnome-shell.

 panels/datetime/cc-datetime-panel.c | 72 +++++++++++++++++++++++++++++++++++++
 panels/datetime/datetime.ui         |  2 ++
 2 files changed, 74 insertions(+)

commit 4f95d6355520b3208d05d134b381268dc2b467b6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 16 12:13:01 2010 +0000

    keyboard: Fix possible accel blocking
    
    Use a constructor so that the "shell" property is already set.
    This allows use to block accels from working when capturing a key,
    as well as parent dialogues properly for the toplevel.

 panels/keyboard/cc-keyboard-panel.c    | 66 +++++++++++++++++++++-------------
 panels/keyboard/gnome-keyboard-panel.c | 63 +++++++++++++++++++-------------
 panels/keyboard/gnome-keyboard-panel.h |  5 +--
 3 files changed, 83 insertions(+), 51 deletions(-)

commit ab72b37318ff7afab167833b56105094981be316
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 16 11:06:02 2010 +0000

    mouse: Remove dead a11y code
    
    That code is broken, and wasn't used anyway, as all of this
    should be available in the UA panel.

 panels/mouse/Makefile.am                 |   4 +-
 panels/mouse/gnome-mouse-accessibility.c | 239 -------------------------------
 panels/mouse/gnome-mouse-accessibility.h |  29 ----
 panels/mouse/gnome-mouse-properties.c    |  27 ----
 4 files changed, 1 insertion(+), 298 deletions(-)

commit 07543ce008d4c4910b22e28418187df6722b1018
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 18:17:00 2010 -0500

    display: Add some keywords to the desktop file
    
    This is mainly to demonstrate how keyword search operates. After
    this patch, typing "xrandr" in the search entry will find the
    display panel.

 panels/display/gnome-display-panel.desktop.in.in | 1 +
 1 file changed, 1 insertion(+)

commit aef85137520d6f45a8696b613d887c7ebce051c9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 13:16:25 2010 -0500

    shell: Add keyword search
    
    This commit makes search look at the X-GNOME-Keywords key. The key
    is expected to hold a list of strings, and is translatable.
    
    http://bugzilla.gnome.org/show_bug.cgi?id=634926

 shell/cc-shell-model.c       | 10 +++++++++-
 shell/cc-shell-model.h       |  1 +
 shell/cinnamon-control-center.c | 20 +++++++++++++++++++-
 3 files changed, 29 insertions(+), 2 deletions(-)

commit b85950d8073b742a812af700a553f8380307398f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 12:43:54 2010 -0500

    shell: Don't change casedness when displaying matches
    
    While we do want to match case-insensitively, we don't want to
    display the search result in all-lowercase. This patch is probably
    not quite utf8-ly correct.
    
    http://bugzilla.gnome.org/show_bug.cgi?id=634923

 shell/shell-search-renderer.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit 24b5fb73c193328e500de7e9b9053e9b20ce8693
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 14:59:31 2010 -0500

    Reinstate popup arrows

 panels/user-accounts/um-password-dialog.c |  9 +++------
 panels/user-accounts/um-photo-dialog.c    | 13 +++++--------
 2 files changed, 8 insertions(+), 14 deletions(-)

commit 9d3811e67034c633a37cc59167c3838ca80baa8a
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 14:23:44 2010 -0500

    Fix packing of the language dialog

 panels/user-accounts/data/language-chooser.ui | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 1786c5949f1b8e94a98a46fe8ee4387dd3f6d9ea
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 14:18:38 2010 -0500

    Don't show parental controls for now
    
    This is not wired up, and will not be in place for 3.0, so hide
    it for now.

 panels/user-accounts/data/user-accounts-dialog.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 8cffbc0a4c978689e6318189c30c4fb020cdbdf9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 14:13:44 2010 -0500

    Fix a little annoyance with combo boxes
    
    Pop up the menu right away, instead of requiring the user to click
    again after the button turned into a combobox.

 panels/user-accounts/um-editable-combo.c | 1 +
 1 file changed, 1 insertion(+)

commit 1607beaea206d88c186455cfcea71d58ffe9d6ad
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 14:02:27 2010 -0500

    Listen for permission changes
    
    Since the lockbutton doesn't have a changed signal, connecting to
    it doesn't help... directly listen for changes of the permission
    object instead.

 panels/user-accounts/um-login-options.c | 11 ++++++-----
 panels/user-accounts/um-user-panel.c    | 35 +++++++++++++++++----------------
 2 files changed, 24 insertions(+), 22 deletions(-)

commit bd7cd034a4955e639781019a9c883dfe3a1da061
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 15 14:01:24 2010 -0500

    Update to GTK+ api changes
    
    Implement get_preferred_width/height instead of size_request.
    Also, don't pretend that we have a changed signal when we don't.

 panels/user-accounts/um-lockbutton.c | 30 ++++++++++++++++--------------
 panels/user-accounts/um-lockbutton.h |  2 --
 2 files changed, 16 insertions(+), 16 deletions(-)

commit d14cc5c0b0cb63af73c009e0b50216c30245101c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 15 11:28:01 2010 +0100

    Fix conflicts

 panels/display/xrandr-capplet.c | 415 ++++++++++++++++++++--------------------
 1 file changed, 206 insertions(+), 209 deletions(-)

commit b844ac1e1845c727388cf5e580f17b2a6c52a347
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Nov 11 16:06:44 2010 +0100

    datetime: Add missing libraries to libdate_time_la_LIBADD

 panels/datetime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 047f48e8509652cfd7e9cf03f4fc1adf0b6e3826
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Nov 11 14:28:08 2010 +0100

    Some build fixes

 panels/default-applications/Makefile.am   | 3 ++-
 panels/keyboard/Makefile.am               | 2 +-
 panels/mouse/Makefile.am                  | 2 +-
 panels/network/Makefile.am                | 2 +-
 panels/network/gnome-network-properties.c | 2 +-
 panels/region/Makefile.am                 | 2 +-
 panels/sound/Makefile.am                  | 2 ++
 panels/universal-access/Makefile.am       | 2 +-
 8 files changed, 10 insertions(+), 7 deletions(-)

commit 89669e136b7f2fd75813fc8a7f4922cbb231961b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Nov 11 13:12:03 2010 +0100

    default applications: Remove web browsers and mail readers from XML file
    
    We use g_app_info API to retrieve those now

 .../gnome-default-applications.xml.in              | 229 ---------------------
 1 file changed, 229 deletions(-)

commit f6bf9efd672a22b5b0a2c4153c3ee6328087dc51
Author: Didier Roche <didier.roche@canonical.com>
Date:   Wed Nov 10 17:06:53 2010 +0100

    region: Link against libxklavier also

 configure.ac              | 4 +---
 panels/region/Makefile.am | 4 ++--
 2 files changed, 3 insertions(+), 5 deletions(-)

commit 7c87dce1dc99cf2bab83ee08664da4fe22654a57
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 15 10:35:25 2010 +0100

    Fix conflicts

 panels/display/xrandr-capplet.c | 415 ++++++++++++++++++++--------------------
 1 file changed, 209 insertions(+), 206 deletions(-)

commit 32f59e6df5589952233c2b573a83065b0048adb0
Author: Andreas Proschofsky <suka@gentoo.org>
Date:   Sun Nov 14 22:12:59 2010 +0000

    all: Fix build for latest gnome-desktop changes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=634859

 panels/background/bg-pictures-source.c   | 2 +-
 panels/background/bg-wallpapers-source.c | 2 +-
 panels/background/gnome-wp-info.h        | 2 +-
 panels/background/gnome-wp-item.h        | 4 ++--
 panels/background/gnome-wp-xml.h         | 2 +-
 panels/display/xrandr-capplet.c          | 6 +++---
 panels/user-accounts/um-photo-dialog.c   | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

commit 16f45eb8a79e4aa380d152b5352e19a258af463c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 15:44:36 2010 -0500

    display: remove the primary display checkbox
    
    We'll add a graphical representation instead.

 panels/display/display-capplet.ui | 93 ++++++++++++++++++---------------------
 panels/display/xrandr-capplet.c   |  6 ---
 2 files changed, 42 insertions(+), 57 deletions(-)

commit ad13352fbc2e95e3e574f763e855b392af9f6862
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 15:38:17 2010 -0500

    display: make layout not jump around when selecting monitors
    
    Add a bit of spacing for breathing room as well.

 panels/display/display-capplet.ui | 227 +++++++++++++++++++++-----------------
 1 file changed, 125 insertions(+), 102 deletions(-)

commit 25b198a814b12f5f0c4f0c14da6690e67bf2adfb
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 15:15:54 2010 -0500

    display: remove unhelpful Monitor: label
    
    It is somewhat redundant, misleading for projectors, and adds
    noise.  Remove it.

 panels/display/xrandr-capplet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ebf1ced0aeb9e1f8038443a9eee5f3a73fb59b1b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 14:56:07 2010 -0500

    display: indicate the selected display using an outside stroke
    
    And use the selection color from the widget style.  This helps
    uncrowd the inner part of the box and will allow more room to
    fit a primary display selector.

 panels/display/xrandr-capplet.c | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)

commit 3cc5c705466eb6b0bdc0244867ef6840e1d560cb
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 14:10:15 2010 -0500

    display: don't list the resolution in the arrangement box
    
    It doesn't directly relate to the monitor arrangement and significantly
    clutters the view.  We have designs to add a primary display arrangement
    and this unnecessarily complicates things.

 panels/display/xrandr-capplet.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 368849afe5750c28dda619812ab979d06aff0e1c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 13:22:04 2010 -0500

    display: remove refresh rate setting
    
    This setting isn't really something that the user has enough information
    to set appropriately.  And something the system should be able to figure
    out on its own.

 panels/display/display-capplet.ui | 45 +++++-----------------
 panels/display/xrandr-capplet.c   | 78 +--------------------------------------
 2 files changed, 10 insertions(+), 113 deletions(-)

commit b14cd82bf51795bc6ac2de36d67a5c2c65fab17a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 12:52:35 2010 -0500

    mouse: don't force wrapping the label at 180px

 panels/mouse/gnome-mouse-properties.ui | 1 -
 1 file changed, 1 deletion(-)

commit 2f4e88b4a3f9ad10848465ec9cbfb5e2573e0ccb
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Nov 14 12:34:37 2010 -0500

    mouse: use a smiley face instead of old ugly lightbulb to test click

 panels/mouse/Makefile.am               |   4 +-
 panels/mouse/capplet-stock-icons.c     | 101 ---------------------------------
 panels/mouse/capplet-stock-icons.h     |  62 --------------------
 panels/mouse/gnome-mouse-properties.c  |  22 +++----
 panels/mouse/gnome-mouse-properties.ui |   2 +-
 5 files changed, 9 insertions(+), 182 deletions(-)

commit f00488476fa0d285be6996ccb33ce0370e9010dd
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:   Sat Nov 13 22:14:17 2010 +0100

    Added UG translation

 po/ug.po | 6536 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 3705 insertions(+), 2831 deletions(-)

commit cb44acd659394a6cf11498b4673b18bdccd15f56
Author: Aron Xu <aronxu@gnome.org>
Date:   Sun Nov 14 04:04:46 2010 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 4085 +++++++++++++++++++++++++----------------------------------
 1 file changed, 1719 insertions(+), 2366 deletions(-)

commit 93f6035425bb9267ba383e2de80ade8a0ff63306
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Nov 13 11:46:41 2010 -0500

    shell: subtract a hacky constant from the screen height for dialog height
    
    Since the window also has a titlebar and toolbar.  Should probably
    try to get the size of those somehow.

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e673c682f42bfd7833c0f086a31c0dc6ab4b7261
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Nov 13 01:37:53 2010 +0100

    Updated Galician translations

 po/gl.po | 641 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 280 insertions(+), 361 deletions(-)

commit b721dabdae60826f3921677e3dbe77efc5540e7e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Nov 11 17:23:03 2010 +0100

    Updated Spanish translation

 po/es.po | 669 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 291 insertions(+), 378 deletions(-)

commit e5d7c6fc325083f081c6de0632dc4113d511b60a
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Nov 11 08:07:49 2010 +0200

    Updated Hebrew translation

 po/he.po | 2280 ++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 1611 insertions(+), 669 deletions(-)

commit 4e0acb27ced4d29498584ee3dac1687de3ca6fdf
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Wed Nov 10 10:59:54 2010 +0100

    sound: Explicit link to libxml
    
    https://bugzilla.gnome.org/show_bug.cgi?id=634467

 panels/sound/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 2deff133ff1f301edd5e4110c037d3ca65bd6ee8
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Wed Nov 10 10:49:44 2010 +0100

    background: one last old gnome_bg remnant

 panels/background/bg-flickr-source.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a6e64f1aa34a7571b3e9c717b19075eb40a43510
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Nov 9 22:12:26 2010 -0500

    [screen] Add screen brightness and lock panel
    
    Not yet wired up.

 configure.ac                                   |   2 +
 panels/Makefile.am                             |   1 +
 panels/screen/Makefile.am                      |  31 +++
 panels/screen/cc-screen-panel.c                | 153 +++++++++++
 panels/screen/cc-screen-panel.h                |  73 ++++++
 panels/screen/gnome-screen-panel.desktop.in.in |  15 ++
 panels/screen/screen-module.c                  |  41 +++
 panels/screen/screen.ui                        | 350 +++++++++++++++++++++++++
 8 files changed, 666 insertions(+)

commit c09c82b2aa7af979fe5572124287c71c96488964
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 9 19:54:44 2010 +0100

    Release 2.91.2

 NEWS         | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |   2 +-
 2 files changed, 108 insertions(+), 1 deletion(-)

commit a19d15237b7923b4e45c24aa6008f0819f3333f4
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 9 19:46:10 2010 +0100

    Add missing translatable files

 po/POTFILES.in | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

commit aca18d8e2b1600c70be4a03dd2f0378217b3991f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 9 19:37:48 2010 +0100

    Remove non-existing files from translations

 po/POTFILES.in | 6 ------
 1 file changed, 6 deletions(-)

commit 8f7274baa383d2d113dc0c22821fd72d3b327ea6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 9 18:20:35 2010 +0100

    display: Use C comments, not C++

 panels/display/xrandr-capplet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5472040227a7a4feabf142827174e0a614e3e646
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 9 17:12:58 2010 +0000

    shell: Actually set the shell variable when switching panels

 libcinnamon-control-center/cc-shell.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 2f9a05a21032ff5a4ef9a4bbf21428140b609064
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 9 17:12:23 2010 +0000

    user-accounts: Require newer polkit for GPermission support

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2a55c61ce1a0ff0871270e17c9e875123fe020cb
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 9 17:11:40 2010 +0000

    user-accounts: Fix compile-time warning

 panels/user-accounts/um-login-options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 520598e7625e14e5cda691553bd0e0d54b41736f
Author: Kees Cook <kees@outflux.net>
Date:   Tue Nov 9 14:02:57 2010 +0100

    display: Show aspect ratios with resolutions

 panels/display/xrandr-capplet.c | 40 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 39 insertions(+), 1 deletion(-)

commit 628e280243fe0922f03b8a0561dae32c1404511a
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Tue Nov 9 13:36:43 2010 +0100

    region: keyboard_dialog -> region_dialog
            gnome-keyboard-properties -> gnome-region-panel
            has-separator is gone

 panels/region/gnome-region-panel-layout-chooser.ui | 1 -
 panels/region/gnome-region-panel-model-chooser.ui  | 1 -
 panels/region/gnome-region-panel-options-dialog.ui | 1 -
 panels/region/gnome-region-panel-xkb.c             | 4 ++--
 panels/region/gnome-region-panel-xkb.h             | 2 +-
 panels/region/gnome-region-panel-xkblt.c           | 4 ++--
 panels/region/gnome-region-panel-xkbltadd.c        | 6 +++---
 panels/region/gnome-region-panel-xkbmc.c           | 6 +++---
 panels/region/gnome-region-panel-xkbot.c           | 6 +++---
 panels/region/gnome-region-panel-xkbpv.c           | 2 +-
 panels/region/gnome-region-panel.c                 | 2 +-
 11 files changed, 16 insertions(+), 19 deletions(-)

commit f5f5aac5c065e5be0d5c080ffa1c075423c4cef7
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Nov 8 14:07:47 2010 +0100

    Prepare for size_request removal in GTK3
    
    https://bugzilla.gnome.org/show_bug.cgi?id=633321

 libcinnamon-control-center/cc-panel.c | 41 +++++++++++++++++++-------------------
 panels/datetime/cc-timezone-map.c  | 24 +++++++++++++++-------
 panels/display/scrollarea.c        | 35 +++++++++++++++++++++-----------
 3 files changed, 61 insertions(+), 39 deletions(-)

commit 55a02383f2790f432db8bcd00e2dd630db75d3b9
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Nov 8 13:48:16 2010 +0100

    background: Last bits of new gnome_bg API porting
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625899

 panels/background/bg-colors-source.c | 2 +-
 panels/background/bg-flickr-source.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 36e9b3b4c28a294f3006b5b89e42d24f93cf7b2c
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Nov 5 15:03:36 2010 +0100

    Updated Slovenian translation

 po/sl.po | 6608 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 3458 insertions(+), 3150 deletions(-)

commit 7ac8765b2b5b60b97223aec7719ce5648068a3b5
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Nov 5 13:41:51 2010 +0100

    datetime: Link test program against common libs

 panels/datetime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9b985450f1c29ed59965e394df8a265a882c72f4
Author: Gerd Kohlberger <gerdk@src.gnome.org>
Date:   Sat Oct 16 15:26:35 2010 +0200

    Add a get_toplevel accessor to CcShell
    
    Can be used to parent dialogs in CcPanel implementations.
    https://bugzilla.gnome.org/show_bug.cgi?id=621940

 libcinnamon-control-center/cc-shell.c | 28 ++++++++++++++++++++++++++++
 libcinnamon-control-center/cc-shell.h | 24 +++++++++++++-----------
 shell/cinnamon-control-center.c       |  8 ++++++--
 3 files changed, 47 insertions(+), 13 deletions(-)

commit e8b52610496818a214cf8b12d955cc4fca40f085
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Nov 4 17:29:09 2010 -0400

    [displays] Change panel name to Displays
    
    Monitors aren't the only use of this panel.  Projectors and tablet screens
    don't involve monitors at all.

 panels/display/gnome-display-panel.desktop.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 49bb52174274f65ffd3e3598657b3316a533f822
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Nov 3 14:12:41 2010 +0100

    network: Spin buttons are not GtkRange's

 panels/network/gnome-network-properties.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit d5dffc50dbb73df2122707c6d9c3713787e93e82
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Nov 3 14:10:55 2010 +0100

    network: Don't try to populate the model before it is created

 panels/network/gnome-network-properties.c | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

commit 527043d960674d7655877575f3bed12e1794f7c6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Nov 3 14:04:26 2010 +0100

    network: Spin buttons are not GtkRange's

 panels/network/gnome-network-properties.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 1066bae58302ed1da76dd96582d8c42544b7ccc3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 2 12:45:14 2010 +0100

    network: Comment out locations-code until we have support for 'subsections' in GSettings

 panels/network/gnome-network-properties.c | 652 ++++++++++++++----------------
 1 file changed, 314 insertions(+), 338 deletions(-)

commit 31de119ab3fa9b1827637c1b87e52e46e86f69fd
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 28 15:41:08 2010 +0200

    network: Port everything to GSettings but the locations stuff

 panels/network/gnome-network-properties.c | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit d8b9c42623ffa1560cdf44f98e3f9ed8573fb7be
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 27 21:19:16 2010 +0200

    network: Use GSettings for proxies' host/port

 panels/network/gnome-network-properties.c | 70 +++++++++++--------------------
 1 file changed, 24 insertions(+), 46 deletions(-)

commit 2a5eca505ddf0b7023d18f0b96efb811c1532c3d
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 27 15:19:31 2010 +0200

    network: Use proxy settings in GSettings

 panels/network/cc-network-panel.c         |  12 +-
 panels/network/cc-network-panel.h         |   4 +-
 panels/network/gnome-network-properties.c | 239 +++++++++++-------------------
 3 files changed, 92 insertions(+), 163 deletions(-)

commit fb530f83f8a41faef99f35044cd54055f3109dff
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Nov 2 11:26:51 2010 +0100

    Updated Spanish translation

 po/es.po | 101 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 44 insertions(+), 57 deletions(-)

commit 4271fd168b974fdba091c5494497773d7bc662bb
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Nov 2 10:55:58 2010 +0100

    Updated Spanish translation

 po/es.po | 175 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 86 insertions(+), 89 deletions(-)

commit 7ecc6029ccfa40a5f9665048d2e9748298deca01
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 1 19:07:03 2010 -0400

    [background] Don't use iter if you didn't get one

 panels/background/cc-background-panel.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 7d50b3787c467873ef74e772339418682e7927f3
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 1 16:58:40 2010 -0400

    [shell] Don't use window before it is realized

 shell/cinnamon-control-center.c | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

commit c0fdba46c4937e022599bbb4bee3f131a49e2f11
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 1 16:25:44 2010 -0400

    Bump gtk3 dep to 2.91.3 for box, etc changes

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 39cea1da8eb46f6a0d4f98ca5cc73e04ab160fa5
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Nov 1 20:25:04 2010 +0100

    Updated Spanish translation

 po/es.po | 386 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 177 insertions(+), 209 deletions(-)

commit 2cd2e1bf139e54e0978fd215039371bd27b51553
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Nov 1 18:53:40 2010 +0100

    Updated Spanish translation

 po/es.po | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2c4aa7b8b9b2404f0a6e679f6311264fe06fc56e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Nov 1 18:50:55 2010 +0100

    Updated Spanish translation

 po/es.po | 1725 +++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 1364 insertions(+), 361 deletions(-)

commit 3a9039576c7e866037caf93438d229e600861d18
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 1 17:38:23 2010 +0000

    default-applications: Simplify load_url_handlers
    
    When what you want is just a new list...

 panels/default-applications/gnome-da-xml.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

commit 95ea5d6b23a6d955d1f3c09f90d9eaf5d4d0d369
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Mon Nov 1 19:22:38 2010 +0200

    user-accounts: Fix endless loop in load_url_handlers

 panels/default-applications/gnome-da-xml.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit 1ea452d8315f33bf20700a07f07cc7f061be33bc
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Mon Nov 1 19:23:00 2010 +0200

    user-accounts: Adapt for gtk_box_new() API changes

 panels/user-accounts/um-lockbutton.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e242da7ad162441edd1078e61c17d0f7cd0be494
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 1 11:42:21 2010 +0000

    user-accounts: Remove unused variables
    
    And declarations.

 panels/user-accounts/um-crop-area.c  | 1 -
 panels/user-accounts/um-lockbutton.c | 2 --
 2 files changed, 3 deletions(-)

commit faf34618fbdd41a21afaf890a147e728c0096abe
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Nov 1 16:23:24 2010 +0100

    Updated Galician translations

 po/gl.po | 2230 +++++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 1692 insertions(+), 538 deletions(-)

commit 109b36919921d757b93b91e8082620078608967e
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Mon Nov 1 11:28:22 2010 +0000

    mouse: Enable 2-finger scrolling through emulation
    
    Also enable 2-finger scrolling if the device supports reporting
    finger-width, not only when it supports actual 2-finger scrolling.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=625163

 panels/mouse/gnome-mouse-properties.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 821ed8f8704738ad77acab353c62c133fcbfa2ea
Author: William Jon McCann <jmccann@redhat.com>
Date:   Mon Nov 1 00:40:52 2010 -0400

    [keyboard] move general settings into keyboard panel

 panels/keyboard/cc-keyboard-panel.c     |   2 +-
 panels/keyboard/gnome-keyboard-panel.c  |  32 ++
 panels/keyboard/gnome-keyboard-panel.ui | 511 ++++++++++++++++++++++++++++----
 panels/region/gnome-region-panel.c      |  61 +---
 panels/region/gnome-region-panel.ui     | 407 +------------------------
 5 files changed, 496 insertions(+), 517 deletions(-)

commit 728331f3061ac68e410a0aa9cfca2103a6d8c862
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 23:58:35 2010 -0400

    [keyboard] Rename keybindings to keyboard

 configure.ac                                       |    6 +-
 panels/Makefile.am                                 |    2 +-
 panels/keybindings/00-multimedia-key.xml.in        |   35 -
 panels/keybindings/01-desktop-key.xml.in           |   29 -
 panels/keybindings/Makefile.am                     |   56 -
 panels/keybindings/cc-keybindings-panel.c          |  131 --
 panels/keybindings/cc-keybindings-panel.h          |   74 -
 panels/keybindings/eggaccelerators.c               |  632 -------
 panels/keybindings/eggaccelerators.h               |   95 -
 panels/keybindings/eggcellrendererkeys.c           |  697 -------
 panels/keybindings/eggcellrendererkeys.h           |   89 -
 panels/keybindings/gnome-keybinding-properties.c   | 1949 --------------------
 panels/keybindings/gnome-keybinding-properties.h   |    8 -
 panels/keybindings/gnome-keybinding-properties.ui  |  319 ----
 .../gnome-keybindings-panel.desktop.in.in          |   15 -
 panels/keybindings/gnome-keybindings.pc.in         |   10 -
 panels/keybindings/keybindings-module.c            |   41 -
 panels/keybindings/wm-common.c                     |  184 --
 panels/keybindings/wm-common.h                     |   17 -
 panels/keyboard/00-multimedia-key.xml.in           |   35 +
 panels/keyboard/01-desktop-key.xml.in              |   29 +
 panels/keyboard/Makefile.am                        |   56 +
 panels/keyboard/cc-keyboard-panel.c                |  131 ++
 panels/keyboard/cc-keyboard-panel.h                |   74 +
 panels/keyboard/eggaccelerators.c                  |  632 +++++++
 panels/keyboard/eggaccelerators.h                  |   95 +
 panels/keyboard/eggcellrendererkeys.c              |  697 +++++++
 panels/keyboard/eggcellrendererkeys.h              |   89 +
 panels/keyboard/gnome-keybindings.pc.in            |   10 +
 panels/keyboard/gnome-keyboard-panel.c             | 1949 ++++++++++++++++++++
 panels/keyboard/gnome-keyboard-panel.desktop.in.in |   15 +
 panels/keyboard/gnome-keyboard-panel.h             |    8 +
 panels/keyboard/gnome-keyboard-panel.ui            |  319 ++++
 panels/keyboard/keyboard-module.c                  |   41 +
 panels/keyboard/wm-common.c                        |  184 ++
 panels/keyboard/wm-common.h                        |   17 +
 po/POTFILES.in                                     |   12 +-
 po/POTFILES.skip                                   |    2 +-
 38 files changed, 4392 insertions(+), 4392 deletions(-)

commit 733f0ce3e2d8dfa7f1d18c9e0dfb2f69edaa8958
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 23:24:40 2010 -0400

    [region] Rename old Keyboard panel to Region
    
    Will make keybindings the new keyboard panel

 configure.ac                                       |    6 +-
 panels/Makefile.am                                 |    2 +-
 panels/keyboard/.indent.pro                        |    2 -
 panels/keyboard/Makefile.am                        |   51 -
 panels/keyboard/cc-keyboard-panel.c                |  131 ---
 panels/keyboard/cc-keyboard-panel.h                |   74 --
 panels/keyboard/gnome-keyboard-panel.desktop.in.in |   15 -
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 1165 --------------------
 .../gnome-keyboard-properties-layout-chooser.ui    |  315 ------
 .../gnome-keyboard-properties-model-chooser.ui     |  142 ---
 .../gnome-keyboard-properties-options-dialog.ui    |   94 --
 panels/keyboard/gnome-keyboard-properties-xkb.c    |  250 -----
 panels/keyboard/gnome-keyboard-properties-xkb.h    |   99 --
 panels/keyboard/gnome-keyboard-properties-xkblt.c  |  440 --------
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  563 ----------
 panels/keyboard/gnome-keyboard-properties-xkbmc.c  |  339 ------
 panels/keyboard/gnome-keyboard-properties-xkbot.c  |  511 ---------
 panels/keyboard/gnome-keyboard-properties-xkbpv.c  |  135 ---
 panels/keyboard/gnome-keyboard-properties.c        |  140 ---
 panels/keyboard/gnome-keyboard-properties.h        |   30 -
 panels/keyboard/keyboard-module.c                  |   41 -
 panels/keyboard/use_cases.txt                      |   42 -
 panels/region/.indent.pro                          |    2 +
 panels/region/Makefile.am                          |   51 +
 panels/region/cc-region-panel.c                    |  131 +++
 panels/region/cc-region-panel.h                    |   74 ++
 panels/region/gnome-region-panel-layout-chooser.ui |  315 ++++++
 panels/region/gnome-region-panel-model-chooser.ui  |  142 +++
 panels/region/gnome-region-panel-options-dialog.ui |   94 ++
 panels/region/gnome-region-panel-xkb.c             |  248 +++++
 panels/region/gnome-region-panel-xkb.h             |   97 ++
 panels/region/gnome-region-panel-xkblt.c           |  438 ++++++++
 panels/region/gnome-region-panel-xkbltadd.c        |  561 ++++++++++
 panels/region/gnome-region-panel-xkbmc.c           |  337 ++++++
 panels/region/gnome-region-panel-xkbot.c           |  509 +++++++++
 panels/region/gnome-region-panel-xkbpv.c           |  133 +++
 panels/region/gnome-region-panel.c                 |  138 +++
 panels/region/gnome-region-panel.desktop.in.in     |   15 +
 panels/region/gnome-region-panel.h                 |   28 +
 panels/region/gnome-region-panel.ui                | 1165 ++++++++++++++++++++
 panels/region/region-module.c                      |   41 +
 panels/region/use_cases.txt                        |   42 +
 po/POTFILES.in                                     |   24 +-
 po/POTFILES.skip                                   |    2 +-
 44 files changed, 4578 insertions(+), 4596 deletions(-)

commit f68a097c5036dd3f28c4e37f8a56a4d53f5389fc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 22:55:27 2010 -0400

    [keyboard] Remove a11y stuff

 panels/keyboard/Makefile.am                        |  36 +-
 ...gnome-keyboard-properties-a11y-notifications.ui | 526 ---------------------
 panels/keyboard/gnome-keyboard-properties-a11y.c   | 325 -------------
 panels/keyboard/gnome-keyboard-properties-a11y.h   |  32 --
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 493 +------------------
 panels/keyboard/gnome-keyboard-properties.c        |   4 +-
 po/POTFILES.in                                     |   1 -
 7 files changed, 21 insertions(+), 1396 deletions(-)

commit 2dc9c8074915c0787cf75a53ea6c7dd00e38abdc
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 22:44:20 2010 -0400

    [keyboard] Don't expand vertically on general tab

 .../keyboard/gnome-keyboard-properties-dialog.ui   | 367 ++++++++++-----------
 1 file changed, 178 insertions(+), 189 deletions(-)

commit c1a80988cc7b21527126245a1eac9b393040b04c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 22:25:22 2010 -0400

    [universal-access] Dial down the font size on Seeing a bit

 panels/universal-access/uap.ui | 65 +++++++++++++++++++++++-------------------
 1 file changed, 35 insertions(+), 30 deletions(-)

commit ced070982aa6dfe35626ec11c2dd3b758d413970
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 21:54:24 2010 -0400

    [universal-access] Use the UI dir set in the Makefile.am

 panels/universal-access/Makefile.am   | 1 +
 panels/universal-access/cc-ua-panel.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 3c843ca3ac7436024ee19d48e394131db7aefb01
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 21:51:43 2010 -0400

    [universal-access] Tweak the design of the panel
    
    Make sure to not expand vertically.  Tighten up the layout.

 panels/universal-access/uap.ui | 3472 ++++++++++++++++++++++------------------
 1 file changed, 1888 insertions(+), 1584 deletions(-)

commit 7908a4359f57b6d48da1051456b0d63271ccbc6a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 18:09:41 2010 -0400

    Don't expand Mouse notebook vertically
    
    Causes weird spacing issues.

 panels/mouse/gnome-mouse-properties.ui | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

commit b2dc1dffa10b2de4e396d1d012e03dbbc0b838cf
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Oct 31 17:55:20 2010 -0400

    Do a better job of automatically sizing the window to fit contents
    
    Try our best to avoid scrollbars.

 shell/cinnamon-control-center.c | 108 +++++++++++++++++--------------------------
 shell/shell.ui               |   2 -
 2 files changed, 43 insertions(+), 67 deletions(-)

commit b9b2767d3325af779351470d99df8075a0167779
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 23:40:32 2010 -0400

    Tighten up the spacing of the category views

 shell/cc-shell-category-view.c | 65 +++++++++++-------------------------------
 shell/cinnamon-control-center.c   |  3 +-
 2 files changed, 19 insertions(+), 49 deletions(-)

commit aa11bf827f7f156e4a802e6816a2d725939fba02
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 23:02:17 2010 -0400

    Set alignment property so glade renders .ui correctly

 panels/mouse/gnome-mouse-properties.ui | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

commit 27656667e0c017a109afa4be241c018ff1152dca
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 22:19:44 2010 -0400

    Move date and universal access to system
    
    They change the behavior or settings of the system.

 panels/datetime/gnome-datetime-panel.desktop.in.in                 | 2 +-
 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit de87abee85abd4f0086de844f651c080bc4ca6d7
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Oct 31 08:12:16 2010 +0530

    update translation and completed

 po/pa.po | 1709 ++++++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 1318 insertions(+), 391 deletions(-)

commit 17005998446555192db44ec7827662357a7bd185
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 20:03:33 2010 -0400

    Use the the full name without spaces as the default username

 panels/user-accounts/um-account-dialog.c | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

commit 27dd815e8ab1547861199b5bdf919d852dcc1773
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 19:24:03 2010 -0400

    Handle NULL usernames without crashing

 panels/user-accounts/um-account-dialog.c | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

commit e9e3eafe7e4373cdd9f9017821ae219719152e6d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 19:13:37 2010 -0400

    More GtkComboBoxText changes

 panels/user-accounts/um-account-dialog.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 5023fb16d8c5dc47ee0d81e46fd0943f95f63577
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 18:38:56 2010 -0400

    GtkComboBoxEntry has been removed from GTK3

 panels/user-accounts/data/account-dialog.ui | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 2874efc7f1ae88283d75c07cf734909f855f24a1
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 18:04:48 2010 -0400

    Don't crash if accounts service policy is not available

 panels/user-accounts/um-login-options.c | 18 ++++++++++--------
 panels/user-accounts/um-user-panel.c    | 25 +++++++++++++++----------
 2 files changed, 25 insertions(+), 18 deletions(-)

commit bf5cb4401669f4881bb7191ecbbcc957ef456950
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 16:14:30 2010 -0400

    Add user-accounts dialog
    
    Copied from the accounts-dialog git module.

 configure.ac                                       |   16 +-
 panels/Makefile.am                                 |    1 +
 panels/user-accounts/Makefile.am                   |  102 ++
 panels/user-accounts/data/Makefile.am              |   29 +
 panels/user-accounts/data/account-dialog.ui        |  268 ++++
 panels/user-accounts/data/account-fingerprint.ui   |  278 +++++
 .../data/gnome-user-accounts-panel.desktop.in.in   |   15 +
 panels/user-accounts/data/icons/Makefile.am        |   31 +
 .../data/icons/gnome-about-me-lock-open.png        |  Bin 0 -> 2913 bytes
 .../data/icons/gnome-about-me-lock.png             |  Bin 0 -> 2978 bytes
 .../user-accounts/data/icons/left-index-finger.png |  Bin 0 -> 1515 bytes
 .../user-accounts/data/icons/left-index-finger.svg |  177 +++
 .../data/icons/left-little-finger.png              |  Bin 0 -> 1500 bytes
 .../data/icons/left-little-finger.svg              |  180 +++
 .../data/icons/left-middle-finger.png              |  Bin 0 -> 1483 bytes
 .../data/icons/left-middle-finger.svg              |  180 +++
 .../user-accounts/data/icons/left-ring-finger.png  |  Bin 0 -> 1512 bytes
 .../user-accounts/data/icons/left-ring-finger.svg  |  180 +++
 panels/user-accounts/data/icons/left-thumb.png     |  Bin 0 -> 1512 bytes
 panels/user-accounts/data/icons/left-thumb.svg     |  180 +++
 panels/user-accounts/data/icons/print_error.png    |  Bin 0 -> 4160 bytes
 panels/user-accounts/data/icons/print_error.svg    |  525 ++++++++
 panels/user-accounts/data/icons/print_ok.png       |  Bin 0 -> 3677 bytes
 panels/user-accounts/data/icons/print_ok.svg       |  310 +++++
 .../data/icons/right-index-finger.png              |  Bin 0 -> 1506 bytes
 .../data/icons/right-index-finger.svg              |  179 +++
 .../data/icons/right-little-finger.png             |  Bin 0 -> 1479 bytes
 .../data/icons/right-little-finger.svg             |  182 +++
 .../data/icons/right-middle-finger.png             |  Bin 0 -> 1468 bytes
 .../data/icons/right-middle-finger.svg             |  182 +++
 .../user-accounts/data/icons/right-ring-finger.png |  Bin 0 -> 1506 bytes
 .../user-accounts/data/icons/right-ring-finger.svg |  182 +++
 panels/user-accounts/data/icons/right-thumb.png    |  Bin 0 -> 1486 bytes
 panels/user-accounts/data/icons/right-thumb.svg    |  182 +++
 panels/user-accounts/data/language-chooser.ui      |   90 ++
 panels/user-accounts/data/password-dialog.ui       |  531 ++++++++
 panels/user-accounts/data/photo-dialog.ui          |  304 +++++
 panels/user-accounts/data/user-accounts-dialog.ui  |  726 +++++++++++
 panels/user-accounts/fingerprint-strings.h         |  111 ++
 panels/user-accounts/fprintd-marshal.list          |    1 +
 panels/user-accounts/gdm-languages.c               | 1003 +++++++++++++++
 panels/user-accounts/gdm-languages.h               |   41 +
 panels/user-accounts/locarchive.h                  |   97 ++
 panels/user-accounts/run-passwd.c                  |  772 ++++++++++++
 panels/user-accounts/run-passwd.h                  |   58 +
 panels/user-accounts/um-account-dialog.c           |  493 ++++++++
 panels/user-accounts/um-account-dialog.h           |   43 +
 panels/user-accounts/um-account-type.c             |   43 +
 panels/user-accounts/um-account-type.h             |   37 +
 panels/user-accounts/um-crop-area.c                |  817 +++++++++++++
 panels/user-accounts/um-crop-area.h                |   65 +
 panels/user-accounts/um-editable-button.c          |  403 ++++++
 panels/user-accounts/um-editable-button.h          |   72 ++
 panels/user-accounts/um-editable-combo.c           |  439 +++++++
 panels/user-accounts/um-editable-combo.h           |   76 ++
 panels/user-accounts/um-editable-entry.c           |  489 ++++++++
 panels/user-accounts/um-editable-entry.h           |   72 ++
 panels/user-accounts/um-fingerprint-dialog.c       |  674 ++++++++++
 panels/user-accounts/um-fingerprint-dialog.h       |   28 +
 panels/user-accounts/um-language-dialog.c          |  555 +++++++++
 panels/user-accounts/um-language-dialog.h          |   49 +
 panels/user-accounts/um-lockbutton.c               |  637 ++++++++++
 panels/user-accounts/um-lockbutton.h               |   70 ++
 panels/user-accounts/um-login-options.c            |  433 +++++++
 panels/user-accounts/um-login-options.h            |   34 +
 panels/user-accounts/um-password-dialog.c          |  834 +++++++++++++
 panels/user-accounts/um-password-dialog.h          |   43 +
 panels/user-accounts/um-photo-dialog.c             |  693 +++++++++++
 panels/user-accounts/um-photo-dialog.h             |   39 +
 panels/user-accounts/um-strength-bar.c             |  261 ++++
 panels/user-accounts/um-strength-bar.h             |   62 +
 panels/user-accounts/um-user-manager.c             |  624 ++++++++++
 panels/user-accounts/um-user-manager.h             |  112 ++
 panels/user-accounts/um-user-module.c              |   41 +
 panels/user-accounts/um-user-panel.c               | 1286 ++++++++++++++++++++
 panels/user-accounts/um-user-panel.h               |   59 +
 panels/user-accounts/um-user.c                     | 1093 +++++++++++++++++
 panels/user-accounts/um-user.h                     |  107 ++
 panels/user-accounts/um-utils.c                    |  382 ++++++
 panels/user-accounts/um-utils.h                    |   56 +
 po/POTFILES.in                                     |   19 +
 po/POTFILES.skip                                   |    2 +
 82 files changed, 18354 insertions(+), 1 deletion(-)

commit 6638e984ca743a7da842617346425b162bc1bb5d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 30 12:16:58 2010 -0400

    Initial import of sound panel
    
    Copied from gnome-media.  See that module for git history.

 configure.ac                                       |    45 +-
 panels/Makefile.am                                 |     1 +
 panels/sound/Makefile.am                           |   120 +
 panels/sound/applet-main.c                         |   110 +
 panels/sound/cc-sound-panel.c                      |   136 +
 panels/sound/cc-sound-panel.h                      |    60 +
 panels/sound/data/Makefile.am                      |    44 +
 panels/sound/data/cinnamon-sound-applet.desktop.in    |    16 +
 panels/sound/data/gnome-sound-panel.desktop.in.in  |    15 +
 panels/sound/data/icons/16x16/Makefile.am          |     4 +
 panels/sound/data/icons/16x16/apps/Makefile.am     |    19 +
 .../icons/16x16/apps/multimedia-volume-control.png |   Bin 0 -> 917 bytes
 .../icons/16x16/apps/multimedia-volume-control.svg |   585 +
 panels/sound/data/icons/16x16/status/Makefile.am   |    21 +
 .../16x16/status/audio-input-microphone-high.png   |   Bin 0 -> 1015 bytes
 .../16x16/status/audio-input-microphone-low.png    |   Bin 0 -> 1031 bytes
 .../16x16/status/audio-input-microphone-medium.png |   Bin 0 -> 1040 bytes
 .../16x16/status/audio-input-microphone-muted.png  |   Bin 0 -> 855 bytes
 panels/sound/data/icons/22x22/Makefile.am          |     4 +
 panels/sound/data/icons/22x22/apps/Makefile.am     |    19 +
 .../icons/22x22/apps/multimedia-volume-control.png |   Bin 0 -> 1424 bytes
 .../icons/22x22/apps/multimedia-volume-control.svg |   595 +
 panels/sound/data/icons/22x22/status/Makefile.am   |    21 +
 .../22x22/status/audio-input-microphone-high.png   |   Bin 0 -> 1411 bytes
 .../22x22/status/audio-input-microphone-low.png    |   Bin 0 -> 1336 bytes
 .../22x22/status/audio-input-microphone-medium.png |   Bin 0 -> 1342 bytes
 .../22x22/status/audio-input-microphone-muted.png  |   Bin 0 -> 1284 bytes
 panels/sound/data/icons/24x24/Makefile.am          |     4 +
 panels/sound/data/icons/24x24/apps/Makefile.am     |    18 +
 .../icons/24x24/apps/multimedia-volume-control.png |   Bin 0 -> 1431 bytes
 panels/sound/data/icons/24x24/status/Makefile.am   |    21 +
 .../24x24/status/audio-input-microphone-high.png   |   Bin 0 -> 1441 bytes
 .../24x24/status/audio-input-microphone-low.png    |   Bin 0 -> 1365 bytes
 .../24x24/status/audio-input-microphone-medium.png |   Bin 0 -> 1369 bytes
 .../24x24/status/audio-input-microphone-muted.png  |   Bin 0 -> 1349 bytes
 panels/sound/data/icons/32x32/Makefile.am          |     4 +
 panels/sound/data/icons/32x32/apps/Makefile.am     |    19 +
 .../icons/32x32/apps/multimedia-volume-control.png |   Bin 0 -> 2308 bytes
 .../icons/32x32/apps/multimedia-volume-control.svg |   633 +
 panels/sound/data/icons/32x32/status/Makefile.am   |    21 +
 .../32x32/status/audio-input-microphone-high.png   |   Bin 0 -> 1906 bytes
 .../32x32/status/audio-input-microphone-low.png    |   Bin 0 -> 2002 bytes
 .../32x32/status/audio-input-microphone-medium.png |   Bin 0 -> 2011 bytes
 .../32x32/status/audio-input-microphone-muted.png  |   Bin 0 -> 1998 bytes
 panels/sound/data/icons/48x48/Makefile.am          |     4 +
 panels/sound/data/icons/48x48/apps/Makefile.am     |    18 +
 .../icons/48x48/apps/multimedia-volume-control.png |   Bin 0 -> 3755 bytes
 .../48x48/status/audio-input-microphone-high.png   |   Bin 0 -> 3261 bytes
 .../48x48/status/audio-input-microphone-low.png    |   Bin 0 -> 3388 bytes
 .../48x48/status/audio-input-microphone-medium.png |   Bin 0 -> 3406 bytes
 .../48x48/status/audio-input-microphone-muted.png  |   Bin 0 -> 3135 bytes
 panels/sound/data/icons/Makefile.am                |    12 +
 panels/sound/data/icons/render-icon-theme.py       |   169 +
 panels/sound/data/icons/scalable/Makefile.am       |     4 +
 panels/sound/data/icons/scalable/apps/Makefile.am  |    18 +
 .../scalable/apps/multimedia-volume-control.svg    |   554 +
 .../sound/data/icons/scalable/devices/Makefile.am  |    35 +
 .../devices/audio-speaker-center-back-testing.svg  |   539 +
 .../scalable/devices/audio-speaker-center-back.svg |   506 +
 .../devices/audio-speaker-center-testing.svg       |   537 +
 .../scalable/devices/audio-speaker-center.svg      |   504 +
 .../devices/audio-speaker-left-back-testing.svg    |   537 +
 .../scalable/devices/audio-speaker-left-back.svg   |   504 +
 .../devices/audio-speaker-left-side-testing.svg    |   537 +
 .../scalable/devices/audio-speaker-left-side.svg   |   504 +
 .../devices/audio-speaker-left-testing.svg         |   537 +
 .../icons/scalable/devices/audio-speaker-left.svg  |   504 +
 .../devices/audio-speaker-right-back-testing.svg   |   537 +
 .../scalable/devices/audio-speaker-right-back.svg  |   504 +
 .../devices/audio-speaker-right-side-testing.svg   |   537 +
 .../scalable/devices/audio-speaker-right-side.svg  |   504 +
 .../devices/audio-speaker-right-testing.svg        |   913 ++
 .../icons/scalable/devices/audio-speaker-right.svg |   504 +
 .../scalable/devices/audio-speaker-testing.svg     |   913 ++
 .../scalable/devices/audio-subwoofer-testing.svg   |   240 +
 .../icons/scalable/devices/audio-subwoofer.svg     |   325 +
 panels/sound/data/icons/src/microphone-levels.svg  | 11448 +++++++++++++++++++
 panels/sound/data/sounds/Makefile.am               |    29 +
 panels/sound/data/sounds/bark.ogg                  |   Bin 0 -> 13322 bytes
 panels/sound/data/sounds/drip.ogg                  |   Bin 0 -> 8495 bytes
 panels/sound/data/sounds/glass.ogg                 |   Bin 0 -> 18999 bytes
 .../data/sounds/gnome-sounds-default.xml.in.in     |    27 +
 panels/sound/data/sounds/sonar.ogg                 |   Bin 0 -> 20011 bytes
 panels/sound/data/symbolic-icons/Makefile.am       |    10 +
 panels/sound/data/symbolic-icons/r.rb              |    73 +
 .../sound/data/symbolic-icons/scalable/Makefile.am |     3 +
 .../symbolic-icons/scalable/status/Makefile.am     |    14 +
 .../audio-input-microphone-high-symbolic.svg       |    37 +
 .../status/audio-input-microphone-low-symbolic.svg |    37 +
 .../audio-input-microphone-medium-symbolic.svg     |    37 +
 .../audio-input-microphone-muted-symbolic.svg      |    37 +
 .../sound/data/symbolic-icons/src/gnome-media.svg  |   990 ++
 panels/sound/gvc-applet.c                          |   311 +
 panels/sound/gvc-applet.h                          |    55 +
 panels/sound/gvc-balance-bar.c                     |   550 +
 panels/sound/gvc-balance-bar.h                     |    69 +
 panels/sound/gvc-channel-bar.c                     |   963 ++
 panels/sound/gvc-channel-bar.h                     |    89 +
 panels/sound/gvc-channel-map-private.h             |    39 +
 panels/sound/gvc-channel-map.c                     |   254 +
 panels/sound/gvc-channel-map.h                     |    73 +
 panels/sound/gvc-combo-box.c                       |   395 +
 panels/sound/gvc-combo-box.h                       |    67 +
 panels/sound/gvc-level-bar.c                       |   747 ++
 panels/sound/gvc-level-bar.h                       |    75 +
 panels/sound/gvc-log.c                             |    62 +
 panels/sound/gvc-log.h                             |    35 +
 panels/sound/gvc-mixer-card-private.h              |    35 +
 panels/sound/gvc-mixer-card.c                      |   506 +
 panels/sound/gvc-mixer-card.h                      |    83 +
 panels/sound/gvc-mixer-control-private.h           |    35 +
 panels/sound/gvc-mixer-control.c                   |  2232 ++++
 panels/sound/gvc-mixer-control.h                   |    96 +
 panels/sound/gvc-mixer-dialog.c                    |  2091 ++++
 panels/sound/gvc-mixer-dialog.h                    |    56 +
 panels/sound/gvc-mixer-event-role.c                |   250 +
 panels/sound/gvc-mixer-event-role.h                |    57 +
 panels/sound/gvc-mixer-sink-input.c                |   199 +
 panels/sound/gvc-mixer-sink-input.h                |    57 +
 panels/sound/gvc-mixer-sink.c                      |   231 +
 panels/sound/gvc-mixer-sink.h                      |    57 +
 panels/sound/gvc-mixer-source-output.c             |   137 +
 panels/sound/gvc-mixer-source-output.h             |    57 +
 panels/sound/gvc-mixer-source.c                    |   231 +
 panels/sound/gvc-mixer-source.h                    |    57 +
 panels/sound/gvc-mixer-stream-private.h            |    34 +
 panels/sound/gvc-mixer-stream.c                    |   944 ++
 panels/sound/gvc-mixer-stream.h                    |   125 +
 panels/sound/gvc-pulseaudio-fake.h                 |    34 +
 panels/sound/gvc-sound-theme-chooser.c             |  1145 ++
 panels/sound/gvc-sound-theme-chooser.h             |    54 +
 panels/sound/gvc-sound-theme-editor.c              |  1397 +++
 panels/sound/gvc-sound-theme-editor.h              |    54 +
 panels/sound/gvc-speaker-test.c                    |   500 +
 panels/sound/gvc-speaker-test.h                    |    57 +
 panels/sound/gvc-stream-status-icon.c              |   822 ++
 panels/sound/gvc-stream-status-icon.h              |    63 +
 panels/sound/sound-theme-file-utils.c              |   305 +
 panels/sound/sound-theme-file-utils.h              |    37 +
 po/POTFILES.in                                     |    16 +
 po/POTFILES.skip                                   |     2 +
 141 files changed, 42114 insertions(+), 3 deletions(-)

commit d0d96529f2bf7042c9394e637ef65bfbc62ce524
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 29 15:55:40 2010 +0100

    shell: Correct "command-line" callback retval

 shell/control-center.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 869dd7396a16499234d85596777714ba6bbda3ea
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Fri Oct 29 00:56:17 2010 +0100

    Updated Catalan (Valencian) translation

 po/ca@valencia.po | 789 ++++++++++++++++++++++++++++++++----------------------
 1 file changed, 465 insertions(+), 324 deletions(-)

commit 3bfe95c94e8793a5f517065832308c420da95842
Author: A S Alam <aalam@users.sf.net>
Date:   Thu Oct 28 21:56:36 2010 +0530

    update translation and completed

 po/pa.po | 5561 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 2593 insertions(+), 2968 deletions(-)

commit 3591685c16e7264ef1a788b66f7d4e939acb82b6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 26 16:34:20 2010 +0100

    default-applications: Fix run-time warning
    
    An inexistant widget referenced in the UI file.

 panels/default-applications/gnome-default-applications-properties.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 63957d9aef36df97c803c0ceea900317ab6ffd22
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Sat Oct 23 00:18:25 2010 +0200

    universal access: Adjust for removal of GtkComboBoxEntry

 panels/universal-access/uap.ui | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 4361892d300528ffa06d07311931ba7832cd9209
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 15:57:57 2010 +0100

    network: has-separator is gone from GTK+ 3.x

 panels/network/gnome-network-properties.ui | 3 ---
 1 file changed, 3 deletions(-)

commit 830e540aad9322c99c29425dd7d498278878e0a7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 15:57:09 2010 +0100

    network: Fix for GtkCombo text changes

 panels/network/gnome-network-properties.c | 25 ++++++++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

commit 07552b5d7f2f8128b6a16110cf7678da49abbc47
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 15:16:52 2010 +0100

    shell: Fix warning in search renderer

 shell/shell-search-renderer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ebc7a9ef72caa033ae2deeeb4159c03c5c686a3a
Author: Florian Müllner <fmuellner@gnome.org>
Date:   Fri Oct 22 16:09:36 2010 +0200

    shell: Adjust to API change in GApplicationCommandLine

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9278a5173029dfd97669c8a64fdffd98ae2b8bc9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 15:13:04 2010 +0100

    keybindings: Fix warnings with cell renderer changes

 panels/keybindings/eggcellrendererkeys.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit c5c400f7a52dcab6decd039b0f8129d8e4e31255
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 15:09:03 2010 +0100

    keyboard: gtk_widget_hide_all() is deprecated

 panels/keyboard/gnome-keyboard-properties-xkbltadd.c | 2 +-
 panels/keyboard/gnome-keyboard-properties-xkbmc.c    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit a5f8ef0dc8492e1c7636169507c4830bdee2853d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 14:42:23 2010 +0100

    display: Port FooScrollArea to GtkScrollable iface

 panels/display/scrollarea.c | 91 ++++++++++++++++++++++++++++++++++-----------
 1 file changed, 69 insertions(+), 22 deletions(-)

commit 93ee44fe43cd132110fb0a066f1bac3c7f2ecd88
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 22 14:08:11 2010 +0100

    shell: Make it build and work against new GApplication

 shell/control-center.c       | 72 ++++++++++++++++++++------------------------
 shell/cinnamon-control-center.c | 15 +++++----
 shell/cinnamon-control-center.h |  2 ++
 3 files changed, 43 insertions(+), 46 deletions(-)

commit 59e2bc5c636d2fe9448d6d094376bba77ed0f4f6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 21 22:35:52 2010 +0200

    Require gsettings-desktop-schemas >= 0.0.2

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e0335f7d9b5374dd92a49f052b9b846be4929f2a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 21 22:29:54 2010 +0200

    mouse: Use non-cryptic key names from last change in gsettings-desktop-schemas

 panels/mouse/gnome-mouse-accessibility.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit f829b5504cd69f697b102345a54c75d80f3e1a97
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:   Thu Oct 21 18:36:30 2010 +0200

    Added UG translation

 po/ug.po | 7743 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3851 insertions(+), 3892 deletions(-)

commit 4ac3e3c7ba7956da64d2c8cf4047047b996d71e0
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 21 18:11:03 2010 +0200

    mouse: Migrate A11Y settings to GSettings

 panels/mouse/gnome-mouse-accessibility.c | 143 ++++++++++++++++---------------
 1 file changed, 72 insertions(+), 71 deletions(-)

commit 7805e273c0321d63582f7b2446ce086dcc9e9b2b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 20 18:05:14 2010 +0200

    mouse: Remove left over comment

 panels/mouse/gnome-mouse-properties.c | 5 -----
 1 file changed, 5 deletions(-)

commit 2ac5447315668ff4a99673a70d8d0f17f5efdd00
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Fri Oct 22 00:57:48 2010 +0900

    Updated Japanese translation

 po/ja.po | 980 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 444 insertions(+), 536 deletions(-)

commit aae8373349bf7f5db98ff388019fdb983793e993
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Oct 20 23:42:58 2010 +0200

    Updated Hebrew translation.

 po/he.po | 758 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 351 insertions(+), 407 deletions(-)

commit 59248ed8ba5ff58248f63c0e208c133de538d046
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 20 16:07:56 2010 +0200

    mouse: Add motion acceleration and threshold UI for touchpad settings

 panels/mouse/gnome-mouse-properties.c  |  13 +-
 panels/mouse/gnome-mouse-properties.ui | 347 ++++++++++++++++++++++++---------
 2 files changed, 256 insertions(+), 104 deletions(-)

commit aaf65402360d04b7a60e61ba0cb09fdee17a719a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 20 15:59:16 2010 +0200

    mouse: Remove GConf usage in cc-mouse-panel.c

 panels/mouse/cc-mouse-panel.c | 17 ++++-------------
 1 file changed, 4 insertions(+), 13 deletions(-)

commit d17eb7d050e11f006e4aff0eda7a5ac7328a841e
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 20 15:54:11 2010 +0200

    mouse: Bind motion acceleration and threshold for both mouse and touchpad settings

 panels/mouse/gnome-mouse-properties.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit a069811b5ee608fce0c6ab0058aadd6dd6f8df04
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 20 15:50:01 2010 +0200

    default applications: Remove unneeded header

 panels/default-applications/gnome-da-capplet.c | 1 -
 1 file changed, 1 deletion(-)

commit 54b38f03ca289a909f8cefc0acd82da9bc22c530
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 20 13:06:20 2010 +0200

    mouse: Port mouse and touchpad settings to GSettings

 panels/mouse/Makefile.am                 |   3 +-
 panels/mouse/gnome-mouse-accessibility.c |   6 +-
 panels/mouse/gnome-mouse-accessibility.h |   4 +-
 panels/mouse/gnome-mouse-properties.c    | 242 ++++++++-----------------------
 panels/mouse/gnome-mouse-properties.h    |   2 +-
 5 files changed, 68 insertions(+), 189 deletions(-)

commit a64aba1c7ebcb5d0025691e96f7f3c5ba30d8125
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Wed Oct 20 17:12:05 2010 +0900

    Updated Japanese translation

 po/ja.po | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 6aaa37a02b1cdf964b5357cb8f8932e80bf07f8f
Author: krishnababu k <kkrothap@redhat.ocm>
Date:   Tue Oct 19 16:19:53 2010 +0530

    Updated Telugu Translations

 po/te.po | 6012 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 3119 insertions(+), 2893 deletions(-)

commit 896ca3d76f7e85c0f5298c11eec1e2720904773b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Oct 18 11:10:47 2010 +0200

    Updated Spanish translation

 po/es.po | 719 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 321 insertions(+), 398 deletions(-)

commit b0e1957d50f34a25a9b7f44bbcc110b840f592df
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 16 20:28:30 2010 +0200

    Remove non-existing files

 po/POTFILES.in | 5 -----
 1 file changed, 5 deletions(-)

commit cd091275b3440c3ff9b9a9e1d8175a6b878559b2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 16 20:23:34 2010 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1329 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 668 insertions(+), 661 deletions(-)

commit 08867e90f891c6c23d4f3e7e84ffe8e1aceb8e89
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Oct 15 11:02:42 2010 +0200

    Check for gsettings-desktop-schemas in configure.ac

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 7ad2854d97a5662501e42342ca404bab674bb998
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Oct 15 11:00:55 2010 +0200

    Push forgotten change in Makefile.am for the removal of cc-setting-editor.[ch]

 libcinnamon-control-center/Makefile.am | 11 -----------
 1 file changed, 11 deletions(-)

commit 67580699a5769af2afbcb187b0d6b7dbeab92d0c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 16:44:15 2010 +0200

    Remove useless CcSettingEditor object and test program

 libcinnamon-control-center/cc-setting-editor.c   | 334 --------------------------
 libcinnamon-control-center/cc-setting-editor.h   |  80 ------
 libcinnamon-control-center/test-setting-editor.c |  47 ----
 3 files changed, 461 deletions(-)

commit e5ce5e97ed1bd00b0b9037e4dd0b9b284240b380
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 16:34:07 2010 +0200

    universal access: Remove a leftover call to gconf_client_add_dir

 panels/universal-access/cc-ua-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit 427e42f7e574ce239e01adf99cd9a9b89e9bbdec
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 16:31:28 2010 +0200

    universal access: Use GSettings for GTK and icon theme settings

 panels/universal-access/cc-ua-panel.c | 113 ++++++++++++++++++----------------
 1 file changed, 60 insertions(+), 53 deletions(-)

commit 14d6a2c5ee38989d937f31711aee6e1a5b0787a6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 16:12:08 2010 +0200

    keyboard: Port /desktop/gnome/interface settings to use org.cinnamon.desktop.interface GSettings path

 panels/keyboard/gnome-keyboard-properties.c | 56 ++++++-----------------------
 1 file changed, 11 insertions(+), 45 deletions(-)

commit 12c22f11565dd06b17f9501f7e7658d5e8449ccc
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 15:24:00 2010 +0200

    background: Convert by hand the enum values to their strings

 panels/background/gnome-wp-item.c | 58 +++++++++++++++++++++++++++++----------
 panels/background/gnome-wp-item.h |  8 +++---
 2 files changed, 47 insertions(+), 19 deletions(-)

commit bb26cd2e5150c195b2372054513c8d1fedc6278b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 14:57:35 2010 +0200

    background: Use gdesktop-settings-schemas enums all over

 panels/background/bg-wallpapers-source.c |  4 ++--
 panels/background/gnome-wp-item.c        | 37 ++++++++++++++------------------
 panels/background/gnome-wp-xml.c         | 14 ++++--------
 panels/background/gnome-wp-xml.h         |  3 +--
 4 files changed, 23 insertions(+), 35 deletions(-)

commit 7cc99ddc874d7c28db4823a416615f2fd36b6b00
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 13:30:29 2010 +0200

    background: Use g_settings_get/_set_enum for background options and shading

 panels/background/background.ui         | 74 ++++++++++++++++-----------------
 panels/background/cc-background-panel.c | 16 ++++---
 panels/background/gnome-wp-item.h       |  5 ++-
 3 files changed, 46 insertions(+), 49 deletions(-)

commit 2b5a938d269c96f266cf00699fed8cf5bd0ffc14
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 14 13:01:31 2010 +0200

    background: Port to GSettings

 panels/background/cc-background-panel.c | 58 +++++++++++++--------------------
 panels/background/gnome-wp-item.h       | 12 +++----
 2 files changed, 29 insertions(+), 41 deletions(-)

commit a533ac968c1aa82feb0f6511a2c9f224c2d676a2
Author: Javier Jardón <jjardon@gnome.org>
Date:   Thu Oct 14 04:37:57 2010 +0200

    Use GSourceFunc() instead GtkFunction() in g_timeout_add()

 panels/mouse/gnome-mouse-properties.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8edc0f01904a843b0f3b7b22022f4342ce26e154
Author: Javier Jardón <jjardon@gnome.org>
Date:   Thu Oct 14 04:29:09 2010 +0200

    autogen.sh: Remove unnneded lines in autogen.sh
    
    gtkdocize and autopoint are already called in gnome-autogen

 autogen.sh | 4 ----
 1 file changed, 4 deletions(-)

commit e5afc6579432d12bee72f4ecfe4447b07ad53189
Author: Yasumichi Akahoshi <yasumichi@vinelinux.org>
Date:   Thu Oct 14 00:03:35 2010 +0900

    Updated Japanese translation

 po/ja.po | 5726 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 2946 insertions(+), 2780 deletions(-)

commit 1b2abc48addf6369238329dba7c5b68587dbe1f0
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 13 16:09:32 2010 +0200

    default applications: Use GSettings from gsettings-desktop-schemas for default Terminal and A11Y applications

 .../cc-default-applications-panel.c                |   8 +-
 panels/default-applications/gnome-da-capplet.c     | 216 ++++-----------------
 panels/default-applications/gnome-da-capplet.h     |  20 +-
 3 files changed, 48 insertions(+), 196 deletions(-)

commit 556e483cf0a8263433d94f12c72568ddaf2ee8a8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 13 15:28:33 2010 +0200

    default applications: Remove selection of media player
    
    This was only used to start the default media player on gnome-settings-daemon,
    when the user presses the Media key. We just open the default for audio/ogg
    there, so no need to ask the user for a default media player

 panels/default-applications/gnome-da-capplet.c     |  46 ---
 panels/default-applications/gnome-da-capplet.h     |  36 +-
 panels/default-applications/gnome-da-xml.c         |  42 +--
 .../gnome-default-applications-properties.ui       | 369 ---------------------
 4 files changed, 10 insertions(+), 483 deletions(-)

commit d7b59d3929eb0f2fb7dabb6a47630286831f12b1
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 13 13:06:57 2010 +0200

    keyboard: Bind scale widgets also via their GtkAdjustment

 panels/keyboard/gnome-keyboard-properties-xkb.c   |  4 +-
 panels/keyboard/gnome-keyboard-properties-xkb.h   |  7 +---
 panels/keyboard/gnome-keyboard-properties-xkblt.c |  3 +-
 panels/keyboard/gnome-keyboard-properties.c       | 48 ++++-------------------
 4 files changed, 12 insertions(+), 50 deletions(-)

commit 6f4a2e7e1451c236a39724a309afb55597d768c3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 13 12:53:49 2010 +0200

    keyboard: Use GSettings for the settings in g-s-d schemas

 panels/keyboard/cc-keyboard-panel.c         | 12 +---
 panels/keyboard/gnome-keyboard-properties.c | 86 +++++++++++++++++++----------
 panels/keyboard/gnome-keyboard-properties.h |  2 +-
 3 files changed, 61 insertions(+), 39 deletions(-)

commit f80b6b28628f03b16cfd6ecb8bf7c667c3ddeef7
Author: Richard Hughes <richard@hughsie.com>
Date:   Wed Oct 13 10:20:10 2010 +0100

    Fix 'make distcheck' by correcting 54ef13e76eff8e417b0996de7ea889bb5b0a9b2b

 panels/display/Makefile.am | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit eb742ed14d831a2461860eac3e5a67cabf58a0bf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 12 19:43:32 2010 +0100

    mouse: Require libXInput
    
    As it's pretty much required for a modern desktop system.

 configure.ac                          | 7 +------
 panels/mouse/gnome-mouse-properties.c | 8 ++------
 2 files changed, 3 insertions(+), 12 deletions(-)

commit b314072bacfdb159a80d5d3d428a89e3e3fc8712
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Oct 12 14:01:28 2010 +0200

    Updated Galician translations

 po/gl.po | 885 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 550 insertions(+), 335 deletions(-)

commit 611cd87af0a0746ff188a19c26b5a8736e88ed6d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 11 18:41:33 2010 +0100

    lib: Fix parallel building
    
    The library lives in the same build directory, so point it at that,
    rather than in a round-about way.

 libcinnamon-control-center/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 865744496c30e70d73a3e321d80f276ec86e4893
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Oct 11 15:40:43 2010 +0200

    default applications: Set the selected browser to handle HTTPS urls also

 panels/default-applications/gnome-da-capplet.c | 3 ++-
 panels/default-applications/gnome-da-xml.c     | 5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)

commit 5af8da53d1649f644261d5677c04f7d9731cc0b7
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Mon Oct 11 14:49:57 2010 +0200

    Updated Slovenian translation

 po/sl.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 0bebacbc0c910fb1a8e127137c399f5bbd2459b1
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Oct 11 13:55:43 2010 +0200

    Updated Hebrew translation

 po/he.po | 98 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 47 insertions(+), 51 deletions(-)

commit df484db37e6e246cd396cbfcd90eaec2dd06280a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Oct 11 13:35:21 2010 +0200

    [default applications] Use URL handlers for browser and mailer applications

 panels/default-applications/gnome-da-capplet.c     | 403 +++------------------
 panels/default-applications/gnome-da-capplet.h     |  11 -
 panels/default-applications/gnome-da-item.c        |  13 +-
 panels/default-applications/gnome-da-item.h        |  15 +-
 panels/default-applications/gnome-da-xml.c         | 105 +++---
 .../gnome-default-applications-properties.ui       | 172 +--------
 6 files changed, 101 insertions(+), 618 deletions(-)

commit 5ca286593a5d50a9b6d19309f495eb814901cc49
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Oct 11 11:48:40 2010 +0200

    [display] Remove last GConf leftovers

 panels/display/xrandr-capplet.c | 5 -----
 1 file changed, 5 deletions(-)

commit 20ff4db1ba29e487178a7354266bd0e45c4b1d6e
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Oct 11 10:50:06 2010 +0200

    Add cc_setting_editor_new_string

 libcinnamon-control-center/cc-setting-editor.c | 31 +++++++++++++++++++++++++++++
 libcinnamon-control-center/cc-setting-editor.h |  2 ++
 2 files changed, 33 insertions(+)

commit dbbe3c072646090204c922b4ff2627a9640c334f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Sun Oct 10 19:19:27 2010 +0200

    Use g_settings_bind instead of listening to GtkToggleButton's signals

 libcinnamon-control-center/cc-setting-editor.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

commit 03a2ddc15876c46cae6e063845b464d418141c46
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Oct 8 17:51:10 2010 +0200

    Convert CcSettingEditor object to a widget, to simplify a lot of the code in the panels

 libcinnamon-control-center/Makefile.am           |  1 -
 libcinnamon-control-center/cc-setting-editor.c   | 96 ++++++++++++++++++++++++---
 libcinnamon-control-center/cc-setting-editor.h   | 15 +++--
 libcinnamon-control-center/test-setting-editor.c |  9 ++-
 4 files changed, 101 insertions(+), 20 deletions(-)

commit b7972bc1cbb49a212556ae4c1b18e9a9a113e081
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Oct 8 17:17:12 2010 +0200

    Use the same marshaller for both GConfPropertyEditor and CcSettingEditor

 libcinnamon-control-center/Makefile.am                |  4 +--
 libcinnamon-control-center/cc-marshal.c               | 41 ++++++++++++++++++++++
 libcinnamon-control-center/cc-marshal.h               | 15 ++++++++
 libcinnamon-control-center/cc-setting-editor.c        | 37 ++++++++++++++-----
 .../gconf-property-editor-marshal.c                | 41 ----------------------
 .../gconf-property-editor-marshal.h                | 15 --------
 libcinnamon-control-center/gconf-property-editor.c    |  4 +--
 7 files changed, 88 insertions(+), 69 deletions(-)

commit 7ebaaf64c971f98890b3c70c9949769fa87649fe
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Oct 8 11:59:43 2010 +0200

    Set the model sooner, so that we can select the default application

 libcinnamon-control-center/cc-setting-editor.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 95057c5edbcd953c34e643e8fd5b5b8d86f18a04
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Oct 8 11:57:10 2010 +0200

    Add CcSettingEditor widget

 libcinnamon-control-center/Makefile.am           |  11 ++
 libcinnamon-control-center/cc-setting-editor.c   | 213 ++++++++++++++++++++++++++
 libcinnamon-control-center/cc-setting-editor.h   |  75 +++++++++
 libcinnamon-control-center/test-setting-editor.c |  48 ++++++
 4 files changed, 347 insertions(+)

commit f6de09dcf498e7b8f9cc84f7bbae53f754213c6e
Author: Yasumichi Akahoshi <yasumichi@vinelinux.org>
Date:   Mon Oct 11 13:02:00 2010 +0900

    Updated Japanese translation.

 po/ja.po | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

commit 477a720d5607320e00e63c2de0ebf1d5335ec424
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sun Oct 10 16:14:00 2010 +0900

    Updated Korean translation

 po/ko.po | 1392 +-------------------------------------------------------------
 1 file changed, 6 insertions(+), 1386 deletions(-)

commit af45ac562be048d155f2c05bc466a08d450835dd
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Oct 9 22:28:52 2010 +0100

    Using G_CALLBACK macro instead of casting

 panels/keyboard/gnome-keyboard-properties-xkblt.c | 2 +-
 panels/keyboard/gnome-keyboard-properties-xkbot.c | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

commit aa6f5455f7fa6752951bdd419b60f9e47076ab0c
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Oct 9 22:25:00 2010 +0100

    More changes from gconf-client to GSettings
    
    Getting rid of obsolete and broken gconf-property-editor in favor of gsettings.

 panels/keyboard/gnome-keyboard-properties-xkb.c | 35 ++++++++++++++-----------
 1 file changed, 19 insertions(+), 16 deletions(-)

commit 0f92fdad5601fae7e2f28c2a3e6e0302d8376f66
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat Oct 9 17:15:13 2010 +0100

    typing-break removed from DIST_SUBDIRS

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fd51bbcf9a9b6803468514aa45508591a39eb2a0
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Oct 9 15:56:34 2010 +0200

    Updated Spanish translation

 po/es.po | 952 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 547 insertions(+), 405 deletions(-)

commit 712a72c30195f9d9e3ce1b36870c264ffb30156f
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 9 02:55:21 2010 -0400

    Remove typing break

 Makefile.am                                        |   4 -
 configure.ac                                       |  45 -
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 246 +-----
 panels/keyboard/gnome-keyboard-properties.c        |  37 -
 typing-break/Makefile.am                           |  58 --
 typing-break/bar-disabled.png                      | Bin 496 -> 0 bytes
 typing-break/bar-green.png                         | Bin 286 -> 0 bytes
 typing-break/bar-red.png                           | Bin 277 -> 0 bytes
 typing-break/bar.png                               | Bin 362 -> 0 bytes
 typing-break/drw-break-window.c                    | 587 --------------
 typing-break/drw-break-window.h                    |  55 --
 typing-break/drw-monitor.c                         | 196 -----
 typing-break/drw-monitor.h                         |  51 --
 typing-break/drw-selection.c                       | 190 -----
 typing-break/drw-selection.h                       |  33 -
 typing-break/drw-timer.c                           |  52 --
 typing-break/drw-timer.h                           |  42 -
 typing-break/drw-utils.c                           | 224 -----
 typing-break/drw-utils.h                           |  29 -
 typing-break/drwright.c                            | 903 ---------------------
 typing-break/drwright.h                            |  30 -
 typing-break/main.c                                | 125 ---
 typing-break/ocean-stripes.png                     | Bin 274 -> 0 bytes
 typing-break/stock_stop.png                        | Bin 1451 -> 0 bytes
 typing-break/typing-monitor.png                    | Bin 3292 -> 0 bytes
 typing-break/typing-monitor.svg                    | 336 --------
 26 files changed, 28 insertions(+), 3215 deletions(-)

commit 5fe473db1c9af6c84fbdda698aaf806dbd6b7495
Author: Colin Walters <walters@verbum.org>
Date:   Fri Oct 8 15:46:10 2010 -0400

    m4: Add stub directory so gnome-autogen.sh doens't blow up
    
    It requires this directory.

 m4/empty | 1 +
 1 file changed, 1 insertion(+)

commit 8b1e28012c06a1e69665e03a03a5fc77594136fe
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Oct 9 04:31:23 2010 +0900

    Updated Korean translation

 po/ko.po | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit 4eb81a67b38053e0b5014b48c66f2942a84e8aa4
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sun Sep 26 03:24:34 2010 +0900

    Updated Korean translation

 po/ko.po | 805 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 471 insertions(+), 334 deletions(-)

commit cb052e13b96f255b30b6dd127b200970cdb6905c
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Oct 7 20:28:26 2010 -0400

    display: make the canvas background color a bit more neutral (tasteful)

 panels/display/xrandr-capplet.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 54ef13e76eff8e417b0996de7ea889bb5b0a9b2b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Oct 7 20:20:02 2010 -0400

    display: also remove the system-wide setting helper

 panels/display/Makefile.am                         |  12 -
 .../gnome-display-properties-install-systemwide.c  | 272 ---------------------
 panels/display/org.gnome.randr.policy.in           |  29 ---
 3 files changed, 313 deletions(-)

commit 75a7dbfed01a5582263d81b2748753bc6e71c8ae
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Oct 7 20:18:09 2010 -0400

    Readd the checkbox to set primary display
    
    It doesn't currently seem to do anything however.

 panels/display/display-capplet.ui | 5 +++--
 panels/display/xrandr-capplet.c   | 6 ++++++
 2 files changed, 9 insertions(+), 2 deletions(-)

commit c06d1fa19a09b8c5d614ee53676c872e97bb2056
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Oct 7 19:44:17 2010 -0400

    display: Simplify the layout of the display panel
    
    Move the detect displays button to the left.
    Remove make default.
    Remove the show in panel item because it doesn't work in GNOME 3.

 panels/display/display-capplet.ui |  62 ++++++---------------
 panels/display/xrandr-capplet.c   | 110 --------------------------------------
 2 files changed, 16 insertions(+), 156 deletions(-)

commit ab3c66ecdd7e62df820d7255acb15517197f3913
Author: Benjamin Otte <otte@redhat.com>
Date:   Thu Oct 7 23:40:04 2010 +0200

    display: Remove excess cairo_save() call

 panels/display/xrandr-capplet.c | 2 --
 1 file changed, 2 deletions(-)

commit a7e91dc1da86883c76eb25997e9ecde8a31e37ea
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Oct 7 17:13:30 2010 -0400

    Add missing CFLAGS to fix build

 panels/background/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit f3b74b019b0937e2fc1579a5723dcad06780ab49
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 7 18:06:04 2010 +0100

    shell: Make sure the shell doesn't show up in itself
    
    Spotted by Matthias Clasen <mclasen@redhat.com>

 shell/gnomecc.menu | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 2083f0a045d488b5d7efef8ee3a80eacd6a3d101
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Oct 7 12:54:28 2010 -0400

    Link against libxml where appropriate
    
    The default-applications and background capplets use libxml,
    so link against it.

 configure.ac                            | 1 +
 panels/background/Makefile.am           | 9 +++++++--
 panels/default-applications/Makefile.am | 7 +++++--
 3 files changed, 13 insertions(+), 4 deletions(-)

commit 7d1246f3061f6cbe3e7bab2d22da5142c45fb577
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 7 12:12:34 2010 +0200

    Fixed grammar on comments

 libcinnamon-control-center/cc-panel.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b61ff3331ce8cb56c61ccde1d1b5c7c0aca4fb49
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Oct 7 09:16:08 2010 +0200

    Updated Hebrew translation.

 po/he.po | 1053 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 593 insertions(+), 460 deletions(-)

commit e22c847f196332150d4715c11a09a7230163252f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 6 16:24:19 2010 +0100

    display: Show the resolution in the canvas area

 panels/display/xrandr-capplet.c | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

commit a77dfb1c3cc4acd0358fffe7d65cbbd046ae1a31
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 6 15:59:58 2010 +0100

    display: Reorganise according to mockups
    
    Reorganise the widgets in the display panel to be a little bit
    less of a mess of widgets. Global options are now separate from
    per-monitor ones.

 panels/display/display-capplet.ui | 389 +++++++++++++++++---------------------
 1 file changed, 175 insertions(+), 214 deletions(-)

commit 792e8cb20e1f6cabb335989a5b0f5b0475930454
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 6 12:10:30 2010 +0100

    capplets: Remove capplets, they're not built

 capplets/Makefile.am                               |   16 -
 capplets/about-me/AUTHORS                          |    2 -
 capplets/about-me/Makefile.am                      |   59 -
 capplets/about-me/e-image-chooser.c                |  455 ----
 capplets/about-me/e-image-chooser.h                |   64 -
 capplets/about-me/e-util-marshal.list              |    3 -
 capplets/about-me/eel-alert-dialog.c               |  466 ----
 capplets/about-me/eel-alert-dialog.h               |   61 -
 capplets/about-me/eel-gtk-macros.h                 |  178 --
 capplets/about-me/fingerprint-strings.h            |  111 -
 capplets/about-me/fprintd-marshal.list             |    1 -
 capplets/about-me/gnome-about-me-dialog.ui         | 1622 ------------
 capplets/about-me/gnome-about-me-fingerprint.c     |  618 -----
 capplets/about-me/gnome-about-me-fingerprint.h     |   27 -
 capplets/about-me/gnome-about-me-fingerprint.ui    |  276 ---
 capplets/about-me/gnome-about-me-password.c        | 1136 ---------
 capplets/about-me/gnome-about-me-password.h        |    9 -
 capplets/about-me/gnome-about-me-password.ui       |  319 ---
 capplets/about-me/gnome-about-me.c                 | 1005 --------
 capplets/about-me/gnome-about-me.desktop.in.in     |   14 -
 capplets/about-me/icons/Makefile.am                |   30 -
 capplets/about-me/icons/left-index-finger.png      |  Bin 1515 -> 0 bytes
 capplets/about-me/icons/left-index-finger.svg      |  177 --
 capplets/about-me/icons/left-little-finger.png     |  Bin 1500 -> 0 bytes
 capplets/about-me/icons/left-little-finger.svg     |  180 --
 capplets/about-me/icons/left-middle-finger.png     |  Bin 1483 -> 0 bytes
 capplets/about-me/icons/left-middle-finger.svg     |  180 --
 capplets/about-me/icons/left-ring-finger.png       |  Bin 1512 -> 0 bytes
 capplets/about-me/icons/left-ring-finger.svg       |  180 --
 capplets/about-me/icons/left-thumb.png             |  Bin 1512 -> 0 bytes
 capplets/about-me/icons/left-thumb.svg             |  180 --
 capplets/about-me/icons/print_error.png            |  Bin 4160 -> 0 bytes
 capplets/about-me/icons/print_error.svg            |  525 ----
 capplets/about-me/icons/print_ok.png               |  Bin 3677 -> 0 bytes
 capplets/about-me/icons/print_ok.svg               |  310 ---
 capplets/about-me/icons/right-index-finger.png     |  Bin 1506 -> 0 bytes
 capplets/about-me/icons/right-index-finger.svg     |  179 --
 capplets/about-me/icons/right-little-finger.png    |  Bin 1479 -> 0 bytes
 capplets/about-me/icons/right-little-finger.svg    |  182 --
 capplets/about-me/icons/right-middle-finger.png    |  Bin 1468 -> 0 bytes
 capplets/about-me/icons/right-middle-finger.svg    |  182 --
 capplets/about-me/icons/right-ring-finger.png      |  Bin 1506 -> 0 bytes
 capplets/about-me/icons/right-ring-finger.svg      |  182 --
 capplets/about-me/icons/right-thumb.png            |  Bin 1486 -> 0 bytes
 capplets/about-me/icons/right-thumb.svg            |  182 --
 capplets/accessibility/Makefile.am                 |    3 -
 capplets/accessibility/at-properties/Makefile.am   |   31 -
 .../at-properties/at-enable-capplet.png            |  Bin 2879 -> 0 bytes
 .../at-properties/at-enable-dialog.ui              |  351 ---
 .../at-properties/at-properties.desktop.in.in      |   14 -
 .../accessibility/at-properties/at-startup.png     |  Bin 2879 -> 0 bytes
 .../accessibility/at-properties/at-support.png     |  Bin 2991 -> 0 bytes
 capplets/accessibility/at-properties/main.c        |  293 ---
 capplets/appearance/Makefile.am                    |   58 -
 capplets/appearance/appearance-desktop.c           | 1404 -----------
 capplets/appearance/appearance-desktop.h           |   22 -
 capplets/appearance/appearance-font.c              |  989 --------
 capplets/appearance/appearance-font.h              |   22 -
 capplets/appearance/appearance-main.c              |  218 --
 capplets/appearance/appearance-style.c             | 1068 --------
 capplets/appearance/appearance-style.h             |   22 -
 capplets/appearance/appearance-themes.c            | 1190 ---------
 capplets/appearance/appearance-themes.h            |   22 -
 capplets/appearance/appearance.h                   |   91 -
 capplets/appearance/data/Makefile.am               |   62 -
 capplets/appearance/data/appearance.ui             | 2603 --------------------
 capplets/appearance/data/cursor-large-white.pcf    |  Bin 18636 -> 0 bytes
 capplets/appearance/data/cursor-large.pcf          |  Bin 17432 -> 0 bytes
 capplets/appearance/data/cursor-white.pcf          |  Bin 13848 -> 0 bytes
 .../data/gnome-appearance-properties.desktop.in.in |   14 -
 .../data/gnome-theme-installer.desktop.in.in       |   16 -
 .../appearance/data/gnome-theme-package.xml.in     |    9 -
 .../appearance/data/gtk-theme-thumbnailing.png     |  Bin 1764 -> 0 bytes
 .../appearance/data/icon-theme-thumbnailing.png    |  Bin 1167 -> 0 bytes
 .../appearance/data/mouse-cursor-normal-large.png  |  Bin 251 -> 0 bytes
 capplets/appearance/data/mouse-cursor-normal.png   |  Bin 241 -> 0 bytes
 .../appearance/data/mouse-cursor-white-large.png   |  Bin 268 -> 0 bytes
 capplets/appearance/data/mouse-cursor-white.png    |  Bin 221 -> 0 bytes
 capplets/appearance/data/subpixel-bgr.png          |  Bin 125 -> 0 bytes
 capplets/appearance/data/subpixel-rgb.png          |  Bin 125 -> 0 bytes
 capplets/appearance/data/subpixel-vbgr.png         |  Bin 138 -> 0 bytes
 capplets/appearance/data/subpixel-vrgb.png         |  Bin 138 -> 0 bytes
 capplets/appearance/data/theme-thumbnailing.png    |  Bin 4482 -> 0 bytes
 .../appearance/data/window-theme-thumbnailing.png  |  Bin 2183 -> 0 bytes
 capplets/appearance/gnome-wp-info.c                |   87 -
 capplets/appearance/gnome-wp-info.h                |   45 -
 capplets/appearance/gnome-wp-item.c                |  307 ---
 capplets/appearance/gnome-wp-item.h                |   91 -
 capplets/appearance/gnome-wp-xml.c                 |  451 ----
 capplets/appearance/gnome-wp-xml.h                 |   28 -
 capplets/appearance/theme-installer.c              |  801 ------
 capplets/appearance/theme-installer.h              |   28 -
 capplets/appearance/theme-save.c                   |  381 ---
 capplets/appearance/theme-save.h                   |   22 -
 capplets/appearance/theme-util.c                   |  260 --
 capplets/appearance/theme-util.h                   |   64 -
 capplets/common/Makefile.am                        |   63 -
 capplets/common/activate-settings-daemon.c         |   60 -
 capplets/common/activate-settings-daemon.h         |    9 -
 capplets/common/capplet-stock-icons.c              |  101 -
 capplets/common/capplet-stock-icons.h              |   62 -
 capplets/common/capplet-util.c                     |  205 --
 capplets/common/capplet-util.h                     |   46 -
 capplets/common/file-transfer-dialog.c             |  608 -----
 capplets/common/file-transfer-dialog.h             |   69 -
 capplets/common/gconf-property-editor-marshal.c    |   41 -
 capplets/common/gconf-property-editor-marshal.h    |   15 -
 capplets/common/gconf-property-editor.c            | 1801 --------------
 capplets/common/gconf-property-editor.h            |  158 --
 capplets/common/gnome-theme-apply.c                |  136 -
 capplets/common/gnome-theme-apply.h                |   33 -
 capplets/common/gnome-theme-info.c                 | 1898 --------------
 capplets/common/gnome-theme-info.h                 |  194 --
 capplets/common/gnome-theme-test.c                 |  134 -
 capplets/common/gtkrc-utils.c                      |  251 --
 capplets/common/gtkrc-utils.h                      |   25 -
 capplets/common/theme-thumbnail.c                  | 1164 ---------
 capplets/common/theme-thumbnail.h                  |   37 -
 capplets/common/wm-common.c                        |  184 --
 capplets/common/wm-common.h                        |   17 -
 capplets/windows/Makefile.am                       |   32 -
 capplets/windows/gnome-window-properties.c         |  636 -----
 capplets/windows/gnome-window-properties.ui        |  387 ---
 capplets/windows/window-properties.desktop.in.in   |   14 -
 124 files changed, 28558 deletions(-)

commit 78b5f0ee2dcfb9c57e91b2f509c89e620745fddf
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Oct 6 12:52:45 2010 +0200

    mouse: use new GDK error trap API

 panels/mouse/gnome-mouse-properties.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 611ed2ffcfe4a4837e716aa1bb64c2e9e624f491
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 6 11:49:12 2010 +0100

    shell: Fix compile time warning
    
    And make the arguments match the expect ones.

 shell/shell-search-renderer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 266cf23848a961284ece68bd0018def717e77d46
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 6 11:14:24 2010 +0100

    keyboard: Fix compile-time warning
    
    With function missing its prototype

 panels/keyboard/gnome-keyboard-properties.c | 1 +
 1 file changed, 1 insertion(+)

commit cdffa4f46b52b53fe04b960f2ab3d034e8be82d4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Oct 6 10:37:08 2010 +0100

    shell: handle GtkSizeRequest removal

 shell/cinnamon-control-center.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 6dfc24e3e67668102e36495415a36489038c3bf1
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Wed Oct 6 12:31:03 2010 +0200

    Make flickr background setting not segfault.

 panels/background/background.ui         |  4 +++-
 panels/background/cc-background-panel.c | 28 +++++++++++++++-------------
 2 files changed, 18 insertions(+), 14 deletions(-)

commit 45218a79918ec554cd666272fc738ebfcebc3fbc
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Oct 5 10:35:35 2010 +0100

    datetime: Start implementing new UI designs
    
    New UI design from Jakub Steiner and Hylke Bons

 panels/datetime/Makefile.am         |   1 +
 panels/datetime/cc-datetime-panel.c | 158 ++++++----
 panels/datetime/cc-timezone-map.c   |  95 ++----
 panels/datetime/data/pin.png        | Bin 0 -> 561 bytes
 panels/datetime/datetime.ui         | 558 +++++++++++++++++++++++++-----------
 5 files changed, 517 insertions(+), 295 deletions(-)

commit ac72f765435f96ee6d40df58a9e7d01f328d11ab
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Oct 5 10:42:07 2010 +0200

    Release 2.91.0

 NEWS             | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac     |  2 +-
 po/POTFILES.in   |  8 +++-----
 po/POTFILES.skip |  2 +-
 4 files changed, 51 insertions(+), 7 deletions(-)

commit e3f42c6af9cefb55909b99711c07fe2aafad94ac
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Oct 5 10:32:43 2010 +0200

    Add background panel files for translation

 po/POTFILES.in | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 33dcf04a7aeeba6ade5f02a8a9404192529a2b43
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Oct 5 10:30:07 2010 +0200

    Remove font viewer files from translations

 po/POTFILES.in | 4 ----
 1 file changed, 4 deletions(-)

commit b4acce05ff57f25aeac30bc95e4b4b2b3e483f1b
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Oct 4 11:23:56 2010 +0100

    Small code cleanup
    
    Using shared gkbd_strv_* utility functions, reducing the code

 panels/keyboard/gnome-keyboard-properties-xkb.h      |  1 +
 panels/keyboard/gnome-keyboard-properties-xkblt.c    | 18 +++++++++---------
 panels/keyboard/gnome-keyboard-properties-xkbltadd.c | 19 +++++++++----------
 panels/keyboard/gnome-keyboard-properties-xkbot.c    | 15 +++------------
 4 files changed, 22 insertions(+), 31 deletions(-)

commit 3e27315e0db9c4e6fff16ed22768404435243a5b
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sun Oct 3 23:52:32 2010 +0100

    Updated for the latest libgnomekbd API

 panels/keyboard/gnome-keyboard-properties-xkb.c    |  86 +++++-----
 panels/keyboard/gnome-keyboard-properties-xkb.h    |  21 ++-
 panels/keyboard/gnome-keyboard-properties-xkblt.c  | 181 +++++++++------------
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  24 +--
 panels/keyboard/gnome-keyboard-properties-xkbmc.c  |  10 +-
 panels/keyboard/gnome-keyboard-properties-xkbot.c  | 179 ++++++++++----------
 6 files changed, 232 insertions(+), 269 deletions(-)

commit 533b044dc9e0f3f198250b00cf8fcce3be50b4b3
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 2 17:45:40 2010 -0400

    A couple more updates use the GTK3 drawing APIs

 panels/background/cc-background-panel.c | 12 ++++--------
 shell/shell-search-renderer.c           |  8 +-------
 2 files changed, 5 insertions(+), 15 deletions(-)

commit 4828b97c793d2afc8c2ade3933edb598e384fe39
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Oct 2 17:29:14 2010 -0400

    Fix .desktop file to work correctly in gnome-shell
    
    NoDisplay=true makes the shell ignore it.  Also fix the application name and icon.

 shell/cinnamon-control-center.desktop.in.in | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 81065b9b7439d4ada0530ee49472cb0a202976f8
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Sep 30 10:57:55 2010 -0400

    Update for new GTK3 drawing APIs
    
    https://bugzilla.gnome.org/show_bug.cgi?id=631051

 panels/datetime/cc-timezone-map.c |  12 +-
 panels/display/scrollarea.c       | 314 ++++++--------------------------------
 panels/display/xrandr-capplet.c   |   4 -
 typing-break/drw-utils.c          |  79 ++++------
 4 files changed, 83 insertions(+), 326 deletions(-)

commit 5117d2b2cb5df0744f1350693d68ab44a09d8c2d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Sep 30 18:38:59 2010 -0400

    Wait until the toplevel is realized before using it
    
    https://bugzilla.gnome.org/show_bug.cgi?id=631051

 panels/display/xrandr-capplet.c | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)

commit ec8aed3b20f33b813cfab0c4c1fb54009aac7187
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu Sep 30 13:52:59 2010 -0400

    Drop font-viewer
    
    Will be moved to another module

 Makefile.am                                 |   4 +-
 configure.ac                                |   3 -
 font-viewer/Makefile.am                     |  48 ---
 font-viewer/font-thumbnailer.c              | 399 ------------------
 font-viewer/font-view.c                     | 609 ----------------------------
 font-viewer/fontilus.schemas.in             | 109 -----
 font-viewer/ftstream-vfs.c                  | 156 -------
 font-viewer/ftstream-vfs.h                  |  28 --
 font-viewer/gnome-font-viewer.desktop.in.in |  14 -
 font-viewer/totem-resources.c               | 123 ------
 font-viewer/totem-resources.h               |  33 --
 typing-break/drw-break-window.c             |  29 +-
 12 files changed, 12 insertions(+), 1543 deletions(-)

commit f925a6a538e1ea6480b2e85c51dcef121fc0e810
Author: Javier Jardón <jjardon@gnome.org>
Date:   Fri Oct 1 08:02:27 2010 +0200

    Update autotools configuration
    
    New requirements:
    automake >= 1.10
    libtool >= 2.2

 Makefile.am  |  4 ++--
 autogen.sh   |  2 +-
 configure.ac | 29 ++++++++++++++++-------------
 3 files changed, 19 insertions(+), 16 deletions(-)

commit 33c4011a549c4fc5d9dcceffee5a40d740e8b62c
Author: Javier Jardón <jjardon@gnome.org>
Date:   Fri Oct 1 07:51:36 2010 +0200

    Use upstream gettext insstead the Glib one

 autogen.sh   | 2 ++
 configure.ac | 7 ++++---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 0df3b0324770d9eede0842959c443b70ecbd758e
Author: Javier Jardón <jjardon@gnome.org>
Date:   Thu Sep 30 19:42:23 2010 +0200

    Use gtk_widget_get_preferred_size() instead gtk_size_request_get_size()
    
    As GtkSizeRequest was moved into GtkWidget

 shell/cinnamon-control-center.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit f6eebfb5680c6bef381a9b8ab1470d94fecc9587
Author: Javier Jardón <jjardon@gnome.org>
Date:   Thu Sep 30 19:14:54 2010 +0200

    Adapt to GtkObject removal in GTK3

 capplets/about-me/e-image-chooser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4ec7801cbb264ab7a56449291704d8946fc1ed84
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 30 13:29:23 2010 +0100

    shell: Show settings without a panel in Other
    
    Add the X-GNOME-Settings-Panel category. You need a control-center
    panel to add this to your desktop file. Desktop entries with this
    category but that aren't actually panels will be ignored (no cheating).
    
    If the desktop file for your settings isn't a panel, it will show in the
    "Other" section of the control-center shell
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630998

 .../gnome-background-panel.desktop.in.in           |  2 +-
 panels/datetime/gnome-datetime-panel.desktop.in.in |  2 +-
 .../gnome-default-applications-panel.desktop.in.in |  2 +-
 panels/display/gnome-display-panel.desktop.in.in   |  2 +-
 .../gnome-keybindings-panel.desktop.in.in          |  2 +-
 panels/keyboard/gnome-keyboard-panel.desktop.in.in |  2 +-
 panels/mouse/gnome-mouse-panel.desktop.in.in       |  2 +-
 panels/network/gnome-network-panel.desktop.in.in   |  2 +-
 .../gnome-universal-access-panel.desktop.in.in     |  2 +-
 shell/cc-shell-model.c                             | 51 ++++++++++++++++++++--
 shell/gnomecc.menu                                 | 26 +++++++++--
 11 files changed, 80 insertions(+), 15 deletions(-)

commit e0e25a0264a3d3a3c4323a3e01648514211594b8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 17:16:50 2010 +0100

    mouse: Remove unneeded XCursor include

 panels/mouse/gnome-mouse-properties.c | 4 ----
 1 file changed, 4 deletions(-)

commit c1271e7ed5a6e87b9a8db5e7691bd3c99512a04d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 17:15:39 2010 +0100

    build: Remove unneeded dependency check for XCursor

 configure.ac | 26 --------------------------
 1 file changed, 26 deletions(-)

commit 24c622d55ea384de470f1b99e87c7d84a897159a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 15:55:13 2010 +0100

    datetime: Fix automake warning

 panels/datetime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2baa0fcfd023fa4de69b913a06d250c9664f801b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 13:28:17 2010 +0100

    datetime: Add test application for missing TZ pixmaps
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630261

 panels/datetime/Makefile.am     | 12 +++++++++++
 panels/datetime/test-timezone.c | 47 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

commit c955a729b3cd3c8cf50db4774bc2812cef1559b0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 13:14:18 2010 +0100

    datetime: Add required includes to tz.h

 panels/datetime/tz.h | 1 +
 1 file changed, 1 insertion(+)

commit c55ec39f818a36cc020df09597c6b933b2ba7073
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Thu Sep 23 20:48:20 2010 +0300

    background: Come up with 'Wallpapers' selected and displayed
    
    https://bugzilla.gnome.org/show_bug.cgi?id=630417

 panels/background/background.ui         | 1 -
 panels/background/cc-background-panel.c | 3 +++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 96bf6098fcfe32e22351efaf551009fc4ebb7e71
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 12:21:08 2010 +0100

    universal-access: Fix desktop file

 panels/universal-access/gnome-universal-access-panel.desktop.in.in | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 7b0d3f01a0303eb189eeecd06818a28e3a84f595
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Wed Sep 29 01:09:38 2010 +0300

    Updated Romanian translation

 po/ro.po | 347 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 175 insertions(+), 172 deletions(-)

commit 3a12ad84ac7b3c7f4e25e0ea25379e791a83236e
Author: Joan Duran <jodufi@gmail.com>
Date:   Wed Sep 29 00:04:24 2010 +0200

    Updated Catalan translation

 po/ca.po | 781 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 460 insertions(+), 321 deletions(-)

commit 85b92c883fa53d55b0f783c8b3101460056ed559
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Wed Sep 29 01:07:44 2010 +0300

    Updated Romanian translation

 po/ro.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 620950c08953ce84862cbc36d37f425749f83dd0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 28 16:51:04 2010 +0100

    mouse: Rename to "Mouse and Touchpad"

 panels/mouse/gnome-mouse-panel.desktop.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0ae5a7b8cc51efa8238304e4cc231dbaa1258418
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 28 16:49:17 2010 +0100

    shell: Make search entry single-iconed
    
    As per Jakub's request.

 shell/cinnamon-control-center.c | 10 ++++++++++
 shell/shell.ui               |  5 +----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 255195617b86328ea273dcb615ad6f52318ed26f
Author: Petr Kovar <pknbe@volny.cz>
Date:   Mon Sep 27 15:23:24 2010 +0200

    Update Czech translation

 po/cs.po | 691 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 376 insertions(+), 315 deletions(-)

commit 045dba932d5ff00cc558e6b1521cfb034ccd8afe
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Mon Sep 27 11:58:58 2010 +0200

    Updated Basque language

 po/eu.po | 703 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 382 insertions(+), 321 deletions(-)

commit b1250e03d6d4d09affbbf0326d90c913c149104d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Sep 23 18:45:42 2010 +0100

    Remove Opera from default browser choices
    
    Not free, and we can't ship the icon for copyright reasons.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627733

 panels/default-applications/gnome-default-applications.xml.in | 10 ----------
 1 file changed, 10 deletions(-)

commit 852af20f1bc2f20091a2697676c9053f3109b863
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 22 12:07:17 2010 +0100

    2.90.1

 NEWS         | 31 +++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 32 insertions(+), 1 deletion(-)

commit e3bbc6eedb1df9e2c973fc7dfe7ffd1da9259d36
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 16:08:53 2010 +0100

    background: use symbolic name for columns
    
    Rather than hard-code numbers.

 panels/background/cc-background-panel.c | 46 +++++++++++++++++++--------------
 1 file changed, 27 insertions(+), 19 deletions(-)

commit a205fc79b4f7d2b00d3fea940d345a0d2244026c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 15:22:43 2010 +0100

    default-apps: Fix illegal memory access
    
    gnome_da_xml_free() frees priv->capplet, so we shouldn't be
    accessing it afterwards.

 panels/default-applications/cc-default-applications-panel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 720065c1838eaa94fd0153e37e1b4a2559f69aa5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 15:15:43 2010 +0100

    default-apps: Fix run-time warning with newer GTK+

 panels/default-applications/gnome-default-applications-properties.ui | 1 -
 1 file changed, 1 deletion(-)

commit c1ebfb8ce92ae36416939b2fb0bcb28b3c6e3496
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 14:31:31 2010 +0100

    datetime: Make map visible again

 panels/datetime/cc-timezone-map.c | 2 --
 1 file changed, 2 deletions(-)

commit 7fa7ed9c8d6d1709265dca907b0c0ba68720ea00
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 14:05:48 2010 +0100

    datetime: make s/_/ / simpler
    
    By using the same code as in the main panel code.

 panels/datetime/cc-timezone-map.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 573179ce118a6987d97143db127589a094c88eb9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 11:55:00 2010 +0100

    datetime: Make sorting cities store faster
    
    By sorting the filtered version, rather than the original and
    then hiding items.

 panels/datetime/cc-datetime-panel.c | 35 +++++++++++++++++++++++------------
 panels/datetime/datetime.ui         |  5 ++++-
 2 files changed, 27 insertions(+), 13 deletions(-)

commit a3b899160dea546f8515aff1a442b549476d6db5
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Sep 21 11:04:11 2010 +0100

    datetime: Check the retval of GtkBuilder function
    
    And don't just check the error itself.

 panels/datetime/cc-datetime-panel.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit a4eb4f1ba3176f9ed184724363350875c6134056
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:24:14 2010 +0100

    font-viewer: Fix a compile-time warning
    
    Due to an undeclared function.

 font-viewer/Makefile.am    |  4 ++--
 font-viewer/ftstream-vfs.c |  2 ++
 font-viewer/ftstream-vfs.h | 28 ++++++++++++++++++++++++++++
 3 files changed, 32 insertions(+), 2 deletions(-)

commit 1bac073929eb75196e6476eaa5817dee3cf82a22
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:21:03 2010 +0100

    datetime: Fix compile-time warning

 panels/datetime/tz.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d1e7dad2df241c6a2c9800f78c9af97ea8292ab8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:19:19 2010 +0100

    keybindings: Fix a few more compilation warnings

 panels/keybindings/eggcellrendererkeys.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 98c95e857d343f65c8b6d846c538a4d288113b40
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:16:10 2010 +0100

    keybindings: Fix some compile-time warnings
    
    Including missing function declaration and deprecated GDK_DISPLAY use.

 panels/keybindings/Makefile.am                   |  1 +
 panels/keybindings/cc-keybindings-panel.c        |  1 +
 panels/keybindings/eggaccelerators.c             |  2 +-
 panels/keybindings/gnome-keybinding-properties.c |  1 +
 panels/keybindings/gnome-keybinding-properties.h |  8 ++++++++
 panels/keybindings/wm-common.c                   | 26 ++++++++++++------------
 6 files changed, 25 insertions(+), 14 deletions(-)

commit 892e513996f3c49cda4573b2f3385942ebd12ee7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:12:09 2010 +0100

    network: Fix compile-time warning
    
    gnome-network-properties.c:667:22: warning: pointer of type ‘void *’ used in arithmetic
    gnome-network-properties.c:667:46: warning: pointer of type ‘void *’ used in arithmetic

 panels/network/gnome-network-properties.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d863154fcb109412494032540b5d0d3d4381d83d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:09:52 2010 +0100

    keyboard: Fix compile-time warnings
    
    Including an undeclared function, and deprecated use of GDK_DISPLAY.

 panels/keyboard/Makefile.am                     |  1 +
 panels/keyboard/gnome-keyboard-properties-xkb.c |  2 +-
 panels/keyboard/gnome-keyboard-properties.h     | 30 +++++++++++++++++++++++++
 3 files changed, 32 insertions(+), 1 deletion(-)

commit 383882a4c58a8a6ae6d66c36a0d112566879d695
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:06:41 2010 +0100

    mouse: Fix compile-time warnings
    
    Including missing declarations, and deprecated use of GDK_DISPLAY.

 panels/mouse/Makefile.am              |  1 +
 panels/mouse/gnome-mouse-properties.c | 33 ++++++++++++++++++---------------
 panels/mouse/gnome-mouse-properties.h | 29 +++++++++++++++++++++++++++++
 3 files changed, 48 insertions(+), 15 deletions(-)

commit 4a95303baa673e7dacfaeabb6fcf4024f25a84e6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:02:36 2010 +0100

    mouse: Fix warning about missing declaration

 panels/mouse/gnome-mouse-accessibility.c | 1 +
 1 file changed, 1 insertion(+)

commit 7854262a93b001883de95170d3f8e1cd642f7500
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:01:27 2010 +0100

    background: add FIXME for unused function

 panels/background/bg-wallpapers-source.c | 1 +
 1 file changed, 1 insertion(+)

commit 2db5695c9f1569260f7f08baa0ec19649cb844e8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 18:00:19 2010 +0100

    background: remove unused variables

 panels/background/cc-background-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit 6e7b3774c0c771792fd9c5d8e5db1af0602d4eec
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 17:56:23 2010 +0100

    Only link the panels that require it to gnome-desktop
    
    Only the display and background panels use gnome-desktop,
    the shell shouldn't need to require it.

 configure.ac                  | 13 ++++++-------
 panels/background/Makefile.am |  5 +++--
 panels/display/Makefile.am    |  3 ++-
 3 files changed, 11 insertions(+), 10 deletions(-)

commit 9c8da4525f5a5d2bf5e7bc3c8ba2dae60d752444
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 20 17:44:43 2010 +0100

    shell: Fix compile-time warning

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c84e79f94d921475f89fa5ce67f099b5f2ce25f3
Author: Ivar Smolin <okul@linux.ee>
Date:   Sun Sep 19 12:03:13 2010 +0300

    [l10n] Updated Estonian translation

 po/et.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d54d9de85775e088920be5f568471a65da2b9ee6
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Sep 18 12:25:06 2010 +0200

    display: Add missing include to fix build

 panels/display/xrandr-capplet.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 9af57dbb75223d63b5b4027c48a013f9ccd0e96d
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Sep 18 00:38:54 2010 +0200

    Updated Polish translation

 po/pl.po | 798 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 467 insertions(+), 331 deletions(-)

commit 66dec5155ccc8d0356b50b4bcbd49799303f6f08
Author: Timo Jyrinki <timo.jyrinki@iki.fi>
Date:   Fri Sep 17 18:30:07 2010 +0300

    Updated Finnish translation.

 po/fi.po | 1072 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 568 insertions(+), 504 deletions(-)

commit 8a786a44facbbbeba1ebdfec3bc970f498412fee
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:   Thu Sep 16 22:34:16 2010 +0300

    Updated Lithuanian translation (thanks Aurimas Cernius).

 po/lt.po | 5692 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2849 insertions(+), 2843 deletions(-)

commit dee5a1ca28d7260d818307f28d896a4ae161b1fe
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date:   Thu Sep 16 15:51:45 2010 +0600

    Initial translation to Kazakh

 po/LINGUAS |    1 +
 po/kk.po   | 3558 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3559 insertions(+)

commit 859f067321114c30a27356854f44c103c2f6ac3d
Author: Kenneth Nielsen <k.nielsen81@gmail.com>
Date:   Wed Sep 15 21:35:28 2010 +0200

    Updated Danish translation

 po/da.po | 242 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 127 insertions(+), 115 deletions(-)

commit 99b0f39dff89a1bf93ec09f3a071166aa58465f1
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Sep 12 21:12:52 2010 +0200

    [i18n] Updated German translation

 po/de.po | 1966 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 938 insertions(+), 1028 deletions(-)

commit 290cd358ce64f366026e6a8f6dd6c9fc67bc67f1
Author: Wouter Bolsterlee <wbolster@gnome.org>
Date:   Sun Sep 12 16:38:55 2010 +0200

    Updated Dutch translation by Mario Blätterman

 po/nl.po | 3661 +++++++++++++++++++++++++++-----------------------------------
 1 file changed, 1575 insertions(+), 2086 deletions(-)

commit a5f3d364f2cfbce0278e7858d212b267ccf9862f
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun Sep 12 12:59:23 2010 +0100

    Updated Portuguese translation

 po/pt.po | 5686 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2843 insertions(+), 2843 deletions(-)

commit 4859ae9b30c1cfc2536945c2a76198e1dbfc3e3b
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Fri Sep 10 19:09:48 2010 +0300

    bgo#629299 - Prefix key constants with _KEY
    
    In GTK+ 3 key constants have gained _KEY prefix.

 panels/keybindings/eggaccelerators.c             | 18 ++++-----
 panels/keybindings/eggcellrendererkeys.c         |  8 ++--
 panels/keybindings/gnome-keybinding-properties.c | 48 ++++++++++++------------
 shell/cinnamon-control-center.c                     |  4 +-
 typing-break/drw-break-window.c                  |  2 +-
 5 files changed, 40 insertions(+), 40 deletions(-)

commit af28fbb0bd64534e91a9893935953ad940058cd7
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Fri Sep 10 19:08:15 2010 +0300

    bgo#629299 - Remove deprecated use of gtk_icon_view_set_orientation
    
    gtk_icon_view_set_orientation() was deprecated in GTK+ 2.22 and removed
    in GTK+ 3 in favour of gtk_icon_view_set_item_orientation().

 shell/cinnamon-control-center.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit cd8a0ecbe2cd6c46aa28224f5a14c3cd2c8a12a3
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Fri Sep 10 19:03:09 2010 +0300

    bgo#629299 - Use gdk_display_get_default instead of GDK_DISPLAY
    
    GDK_DISPLAY() was deprecated in GTK+ 2.22 and removed in GTK+ 3.

 panels/keybindings/eggcellrendererkeys.c | 2 +-
 typing-break/drw-monitor.c               | 7 +++++--
 typing-break/drw-selection.c             | 4 ++--
 typing-break/main.c                      | 2 +-
 4 files changed, 9 insertions(+), 6 deletions(-)

commit bfb92ffe9ba87c51450630ce1cdf727fa685f784
Author: Kalev Lember <kalev@smartlink.ee>
Date:   Fri Sep 10 14:46:29 2010 -0500

    bgo#627861 - [randr] Don't silengly ignore errors when pkexec(1) fails
    
    Now we present a proper error dialog if the 'Make Default' configuration
    cannot be set due to a pkexec error.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 panels/display/xrandr-capplet.c | 23 ++++++++++++++++++++---
 1 file changed, 20 insertions(+), 3 deletions(-)

commit bc65958e72e0b9e17243a5498194f79ff920f15a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 10 17:04:10 2010 +0100

    shell: Fix build from previous build changes
    
    Thanks to Kjartan for the notice

 shell/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit eadf35bf48bf0e54413e8b1df4bd885452190b91
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 10 11:58:34 2010 +0100

    shell: Use $(AM_V_GEN) when generating marshal files
    
    And remove outdated use of $(NULL)

 shell/Makefile.am | 23 ++++++++---------------
 1 file changed, 8 insertions(+), 15 deletions(-)

commit eb1e75ec6e6e40a5ab0d98eb42babdda0117368f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 10 11:56:09 2010 +0100

    display: Generate marshal files properly
    
    Instead of having generated files in the repo.

 panels/display/Makefile.am      |  15 ++-
 panels/display/foo-marshal.c    | 279 ----------------------------------------
 panels/display/foo-marshal.h    |  63 ---------
 panels/display/foo-marshal.list |   6 +
 4 files changed, 17 insertions(+), 346 deletions(-)

commit 5b45a61320c2bd37b36ceb802012bd51c4d91352
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Sep 10 11:49:58 2010 +0100

    Fix drw_timer_new() prototype
    
    To not generate a warning when compiling.

 typing-break/drw-timer.c | 8 ++++----
 typing-break/drw-timer.h | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 110010bb65c818cf33bef9c138545f02d3f961bf
Author: Gabriel Burt <gabriel.burt@gmail.com>
Date:   Thu Sep 9 14:46:00 2010 -0500

    bnc#600599 - [randr] Label to warn that 'Same image in all monitors' may limit the resolution options
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 panels/display/display-capplet.ui | 36 ++++++++++++++++++++++++++++++------
 panels/display/xrandr-capplet.c   |  4 ++++
 2 files changed, 34 insertions(+), 6 deletions(-)

commit c4ce026c313c94e13e6e4caf0de0d6f802bd48ee
Author: Ivar Smolin <okul@linux.ee>
Date:   Wed Sep 8 09:05:07 2010 +0300

    [l10n] Updated Estonian translation

 po/et.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 25d3afeecca6b57c316f3f3deb8e740285a7a276
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Tue Sep 7 00:17:30 2010 +0200

    Updated Italian translation

 po/it.po | 582 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 392 insertions(+), 190 deletions(-)

commit 26731425740e863bfebf0b55391818c1e3e0a8dd
Author: Dirgita <dirgitadevina@yahoo.co.id>
Date:   Fri Sep 3 20:51:55 2010 +0700

    Updated Indonesian translation

 po/id.po | 1979 +++++++-------------------------------------------------------
 1 file changed, 196 insertions(+), 1783 deletions(-)

commit dbdf9963c66e37f667a4b12818e2c28dbb8dd70c
Author: drtv <vasudeven@git.gnome.org>
Date:   Fri Sep 3 17:18:31 2010 +0530

    Updated Tamil translation

 po/ta.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1d7e6432717cb6cf868dc6f66d13a136cb8bb555
Author: noch <norayr@arnet.am>
Date:   Thu Sep 2 14:58:05 2010 +0500

    Modified Armenian translation - po file

 po/hy.po | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit d4d8e8762d12649d07d16de6f7539632b5a730d6
Author: noch <norayr@arnet.am>
Date:   Thu Sep 2 11:32:28 2010 +0500

    Added Armenian translation - po file. Modified LINGUAS.

 po/LINGUAS |    1 -
 po/hy.po   | 3085 +++++++++++++++++-------------------------------------------
 2 files changed, 880 insertions(+), 2206 deletions(-)

commit cf241ff26e302fe09c4554980703c4a0234a0b05
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Sep 1 09:47:22 2010 +0100

    Update British English translation

 po/en_GB.po | 5748 ++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2749 insertions(+), 2999 deletions(-)

commit c580a756c1e54f538ab0b39c48df0efdd9e91337
Author: noch <norayr@arnet.am>
Date:   Wed Sep 1 10:59:07 2010 +0500

    Modified LINGUAS. Added new empty line, just because of web-site shows some incorrect status on LINGUAS file. It says that LINGUAS doesn't contain hy.

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 7aef5f9ab4f8d9c1baae3f43ea1844ea8700552e
Author: Bruce Cowan <bruce@bcowan.me.uk>
Date:   Tue Aug 31 16:51:35 2010 +0100

    Updated British English translation

 po/en_GB.po | 557 ++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 373 insertions(+), 184 deletions(-)

commit 7f93c7062652be58d7faed3280dc496d63d498fb
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Aug 29 10:59:58 2010 +0200

    Updated Hungarian translation

 po/hu.po | 272 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 120 insertions(+), 152 deletions(-)

commit 7d9fe2e8bbb3ff8f2549ed355a03c31d3369f1c9
Author: Gheyret Kenji <gheyret@hotmail.com>
Date:   Sat Aug 28 13:11:41 2010 +0200

    Added UG translation

 po/ug.po | 7784 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3892 insertions(+), 3892 deletions(-)

commit 5867773ca7b789f697878843afb22959909ae9d8
Author: Alexander Shopov <ash@contact.bg>
Date:   Sat Aug 28 10:11:26 2010 +0300

    Updated Bulgarian translation

 po/bg.po | 5664 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2839 insertions(+), 2825 deletions(-)

commit ffad9852842b8bc819e9d65903f519973fa173c3
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Fri Aug 27 21:03:44 2010 +0200

    Updated French translation

 po/fr.po | 317 ++++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 220 insertions(+), 97 deletions(-)

commit 7a1babab46c4ed9fbe0c26e5faad818959a1dd04
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Aug 27 03:20:58 2010 +0200

    Updated Arabic translation

 po/ar.po | 5644 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2781 insertions(+), 2863 deletions(-)

commit 31dab0416b654bcb7a9a697eab29af9819745c71
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Aug 25 19:18:48 2010 +0100

    shell: change the fixed width to 675 pixels

 shell/cinnamon-control-center.c | 2 +-
 shell/shell.ui               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit ce8cd977542527b22dbe42765aaa015e0db494dc
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Aug 25 19:18:05 2010 +0100

    background: implement new UI design from Jakub Steiner

 panels/background/Makefile.am            |   4 +-
 panels/background/background.ui          |  95 +++++++++++++-----------------
 panels/background/bg-colors-source.c     |   2 +-
 panels/background/bg-flickr-source.c     |   3 +-
 panels/background/bg-pictures-source.c   |   3 +-
 panels/background/bg-source.h            |   3 +
 panels/background/bg-wallpapers-source.c |   6 +-
 panels/background/cc-background-panel.c  |  96 ++++++++++++++++++++++++-------
 panels/background/display-base.png       | Bin 0 -> 22374 bytes
 panels/background/display-overlay.png    | Bin 0 -> 9549 bytes
 10 files changed, 128 insertions(+), 84 deletions(-)

commit 45954bdeb5b1207ec95c323e0e6bc0fc2192918c
Author: Michael Kotsarinis <mk73628@gmail.com>
Date:   Wed Aug 25 14:29:22 2010 +0300

    l10n: Updated Greek translation for cinnamon-control-center

 po/el.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 032bef196d5f18e640612ad5f5668ea215bbef4f
Author: Michael Kotsarinis <mk73628@gmail.com>
Date:   Wed Aug 25 14:28:31 2010 +0300

    l10n: Updated Greek translation for cinnamon-control-center

 po/el.po | 5730 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2881 insertions(+), 2849 deletions(-)

commit 341dfaa879507c9d3f1d950ac0e2a82b929385fd
Author: Benjamin Otte <otte@redhat.com>
Date:   Tue Aug 24 10:24:22 2010 +0200

    Call gtk_widget_set_allocation() during size_allocate
    
    Fixes panels not drawing themselves with GTK 3.

 libcinnamon-control-center/cc-panel.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit a0974d0e13f1d1f2ed03bce732f30ad42e04937b
Author: Милош Поповић <gpopac@gmail.com>
Date:   Mon Aug 23 01:07:04 2010 +0200

    Updated Serbian translation

 po/sr.po       | 695 +++++++++++++++++++++++++++++++++------------------------
 po/sr@latin.po | 695 +++++++++++++++++++++++++++++++++------------------------
 2 files changed, 806 insertions(+), 584 deletions(-)

commit fade72a2880b4d4856a64d25458bd9da51a7b01e
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Sun Aug 22 13:19:56 2010 +0200

    Updated Danish translation

 po/da.po | 5699 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2843 insertions(+), 2856 deletions(-)

commit c1b95ff43f9b828aaebc64a12657f78931b8bc27
Author: Benjamin Otte <otte@redhat.com>
Date:   Sat Aug 21 04:05:33 2010 +0200

    display: Copy background setter code from mutter
    
    This code uses the new GDK API to set the window background.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=626870

 panels/display/scrollarea.c | 45 ++++++++++++++++-----------------------------
 1 file changed, 16 insertions(+), 29 deletions(-)

commit 6c990cd60c7d5b86294e5b42b33d5df0327353ea
Author: Benjamin Otte <otte@redhat.com>
Date:   Fri Aug 13 21:14:16 2010 +0200

    typing-break: use gtk API to determine label layout location
    
    The previous code tried to imitate GtkLabel, but failed to account for
    changes to its API. The new code uses gtk_label_get_layout_offsets()
    which is exactly doing the same thing, but compatibly.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=626870

 typing-break/drw-break-window.c | 43 +----------------------------------------
 1 file changed, 1 insertion(+), 42 deletions(-)

commit 7ea3249a4a0fa9a176a120257355a4ca75593386
Author: Benjamin Otte <otte@redhat.com>
Date:   Sun Jul 25 14:31:49 2010 +0200

    Replace Gdk drawing with Cairo
    
    https://bugzilla.gnome.org/show_bug.cgi?id=626870

 font-viewer/font-view.c         | 27 +++++++++++------
 panels/display/scrollarea.c     | 67 +++++++++++++++++++++--------------------
 typing-break/drw-break-window.c | 41 ++++++++++++-------------
 typing-break/drw-utils.c        | 17 +++--------
 4 files changed, 75 insertions(+), 77 deletions(-)

commit 58a4b4a252e46d8ca350e9159f7758cc5692d484
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Aug 18 11:42:33 2010 +0100

    Fix enrolling with Upek Eikon II fingerprint reader
    
    The upeke2 driver in libfprint (and the device) requires 5
    enrollment stages, but the UI has a hard-coded maximum of 3.
    Increase the maximum to 5.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=627249

 capplets/about-me/gnome-about-me-fingerprint.c  |  2 +-
 capplets/about-me/gnome-about-me-fingerprint.ui | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

commit e578202ab28abb9fcae3ca8c17af39370ead23ac
Author: Andre Klapper <a9016009@gmx.de>
Date:   Wed Aug 18 00:10:21 2010 +0200

    Remove non-existing file from POTFILES.in to make l10n.gnome.org happier

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit f41e3268df0dfd3a2ee8a5edc6a9bb54e9a198a8
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Aug 13 16:54:49 2010 +0100

    background: hide the placement options only when a background is selected
    
    Only update the visibility of the placement options when a background is
    selected, not when the source is selected.

 panels/background/cc-background-panel.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 93042f08350f1d96d5e081007500b097f0ee0712
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Aug 13 16:13:01 2010 +0100

    background: prefix the cache filename to avoid conflicts

 panels/background/cc-background-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit eaa2c5f3d371e695cbdd087fdbf7ff014b99712c
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Aug 13 15:27:43 2010 +0100

    shell: remove redundant GConf schema
    
    Remove the GConf schema since the GConf keys are no longer used by the
    shell application.

 shell/Makefile.am               | 16 +---------
 shell/control-center.schemas.in | 71 -----------------------------------------
 2 files changed, 1 insertion(+), 86 deletions(-)

commit 1c05309906987dc02ef256fce38a0da8f95c3697
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Aug 13 14:47:33 2010 +0100

    keybindings: ensure the keybindings panel is build with the correct flags
    
    Add PANEL_CFLAGS, PANEL_LIBS and PANEL_LDFLAGS to libkeybinding-properties.

 panels/keybindings/Makefile.am | 4 ++++
 1 file changed, 4 insertions(+)

commit 64f8450459470620c92290aa21b75aaa4473207d
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Aug 13 11:48:11 2010 +0100

    Remove libwindow-settings

 libwindow-settings/Makefile.am                     |  55 ---
 libwindow-settings/gnome-window-manager.c          | 273 -----------
 libwindow-settings/gnome-window-manager.h          | 164 -------
 libwindow-settings/gnome-window-settings-2.0.pc.in |  11 -
 libwindow-settings/gnome-wm-manager.c              | 320 -------------
 libwindow-settings/gnome-wm-manager.h              |  16 -
 libwindow-settings/metacity-window-manager.c       | 520 ---------------------
 libwindow-settings/metacity-window-manager.h       |  29 --
 8 files changed, 1388 deletions(-)

commit 2b56a5ea0fd856e3a70684fa83e9dc8f938145e2
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Aug 12 11:23:55 2010 +0100

    background: fix various leaks
    
    Fix various leaks found by valgrind.

 panels/background/bg-colors-source.c    | 2 ++
 panels/background/bg-flickr-source.c    | 1 +
 panels/background/bg-pictures-source.c  | 1 +
 panels/background/cc-background-panel.c | 2 +-
 panels/background/gnome-wp-info.c       | 2 ++
 panels/background/gnome-wp-item.c       | 9 ++++++---
 panels/background/gnome-wp-xml.c        | 1 +
 7 files changed, 14 insertions(+), 4 deletions(-)

commit 1418445e13064e483b7091de380db0037835797c
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Aug 12 10:42:03 2010 +0100

    background: ensure the panel object is still valid when file copy finishes
    
    Take a reference on the panel object when the asynchronous copy is started
    so that it is still valid in the callback when the panel is being
    destroyed.

 panels/background/cc-background-panel.c | 38 +++++++++++++++++++++++++++------
 1 file changed, 32 insertions(+), 6 deletions(-)

commit 764f69e8525f8eb81f0457134c6d0b2e5ecc955a
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Aug 11 15:37:41 2010 +0100

    background: make sure the GnomeWPItems are freed.
    
    Free the GnomeWPItems in the source liststore when the source is destroyed.

 panels/background/bg-source.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit 0af7b539e1aad7f17541a5114019f95d569b033c
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:   Wed Aug 11 18:06:31 2010 +0200

    Added UG translation

 po/ug.po | 7781 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3892 insertions(+), 3889 deletions(-)

commit 8d834a1ce500b203afff1d41d63d8725c712a7df
Author: Gheyret T.Kenji <gheyret@gmail.com>
Date:   Wed Aug 11 18:01:44 2010 +0200

    Added UG translation

 po/LINGUAS |    1 +
 po/ug.po   | 3894 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3895 insertions(+)

commit abdb42e9e2d5c862e4cc1a2a6951b513d4419038
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Aug 10 17:01:15 2010 +0100

    background: derive background sources from a common source object
    
    Add the BgSource object to define the common aspects of background sources
    and make sure the existing sources inherit from it.

 panels/background/Makefile.am            |   2 +
 panels/background/background.ui          |   2 +
 panels/background/bg-colors-source.c     |  48 +-----------
 panels/background/bg-colors-source.h     |   9 +--
 panels/background/bg-flickr-source.c     |  26 ++-----
 panels/background/bg-flickr-source.h     |   6 +-
 panels/background/bg-pictures-source.c   |  28 ++-----
 panels/background/bg-pictures-source.h   |   6 +-
 panels/background/bg-source.c            | 129 +++++++++++++++++++++++++++++++
 panels/background/bg-source.h            |  73 +++++++++++++++++
 panels/background/bg-wallpapers-source.c |  37 +++------
 panels/background/bg-wallpapers-source.h |   5 +-
 panels/background/cc-background-panel.c  |  45 +++++------
 13 files changed, 265 insertions(+), 151 deletions(-)

commit ef9afe4830c38e8668be4d52b3d550f6a6f12690
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Aug 10 15:29:31 2010 +0100

    Update gitignore

 Makefile.am        | 2 +-
 panels/Makefile.am | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit e721f417adfadbe6c7a913b9721fc860433ce165
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Aug 10 15:26:07 2010 +0100

    Add initial implementation of "background" panel
    
    The background settings panel provides a way for users to change the
    desktop background by selecting an image and/or colour.

 configure.ac                                       |  19 +
 panels/Makefile.am                                 |   4 +-
 panels/background/Makefile.am                      |  53 ++
 panels/background/background-module.c              |  41 ++
 panels/background/background.ui                    | 216 +++++++
 panels/background/bg-colors-source.c               | 158 +++++
 panels/background/bg-colors-source.h               |  75 +++
 panels/background/bg-flickr-source.c               | 183 ++++++
 panels/background/bg-flickr-source.h               |  75 +++
 panels/background/bg-pictures-source.c             | 280 +++++++++
 panels/background/bg-pictures-source.h             |  76 +++
 panels/background/bg-wallpapers-source.c           | 237 ++++++++
 panels/background/bg-wallpapers-source.h           |  76 +++
 panels/background/cc-background-panel.c            | 647 +++++++++++++++++++++
 panels/background/cc-background-panel.h            |  74 +++
 .../gnome-background-panel.desktop.in.in           |  11 +
 panels/background/gnome-wp-info.c                  |  87 +++
 panels/background/gnome-wp-info.h                  |  45 ++
 panels/background/gnome-wp-item.c                  | 315 ++++++++++
 panels/background/gnome-wp-item.h                  |  92 +++
 panels/background/gnome-wp-xml.c                   | 449 ++++++++++++++
 panels/background/gnome-wp-xml.h                   |  43 ++
 22 files changed, 3255 insertions(+), 1 deletion(-)

commit d662b23f57b9076358dbba5d013c164e3bc17819
Author: drtv <vasudeven@git.gnome.org>
Date:   Mon Aug 9 08:40:16 2010 +0530

    Updated Tamil translation

 po/ta.po | 44 ++++++++++++++++++++++++++++----------------
 1 file changed, 28 insertions(+), 16 deletions(-)

commit 96a0f0addd0276ef61ad80c02d22f77105338ba1
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Tue Aug 3 18:47:51 2010 +0300

    Updated Romanian translation

 po/ro.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a9216f95f8339bc0f2c2504d1d60b509910cae62
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Tue Aug 3 18:46:02 2010 +0300

    Updated Romanian translation

 po/ro.po | 3427 ++++++++++++++++++++++----------------------------------------
 1 file changed, 1228 insertions(+), 2199 deletions(-)

commit 588e97f5947966f7f2b711a4b60d51c897f97135
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Jul 3 07:12:12 2010 +0530

    update for Punjabi by A S Alam

 po/pa.po | 71 ++++++++++------------------------------------------------------
 1 file changed, 11 insertions(+), 60 deletions(-)

commit 55e8929e53937c20e44b5526bda21fa76c183cf5
Author: drtv <vasudeven@git.gnome.org>
Date:   Mon Aug 2 17:42:52 2010 +0530

    Updated Tamil translation

 po/ta.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d20655de5e87b82ede8ab45d226018e39bf7346e
Author: drtv <vasudeven@git.gnome.org>
Date:   Mon Aug 2 17:41:11 2010 +0530

    Updated Tamil translation

 po/ta.po | 5383 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 2474 insertions(+), 2909 deletions(-)

commit e319591eb24f2eca655ba4b3068f1de0505d0939
Author: drtv <vasudeven@git.gnome.org>
Date:   Mon Aug 2 17:06:08 2010 +0530

    Updated Tamil translation

 po/ta.po | 1873 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1153 insertions(+), 720 deletions(-)

commit 26d6fff4826e76d1aa243b76dabda2438d2ea143
Author: Ivar Smolin <okul@linux.ee>
Date:   Sat Jul 31 09:34:35 2010 +0300

    [l10n] Updated Estonian translation

 po/et.po | 644 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 258 insertions(+), 386 deletions(-)

commit a52fcec589212114a36cda4d14d16987cce4d7ae
Author: Yaron Shaharbani <sh.yaron@gmail.com>
Date:   Thu Jul 29 19:30:23 2010 +0300

    Updated Hebrew translation.

 po/he.po | 5378 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 2463 insertions(+), 2915 deletions(-)

commit 0cb4a00e222c1aea45988bab68134096dc11761c
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Jul 29 17:05:56 2010 +0200

    Updated Hungarian translation

 po/hu.po | 3193 +++++++++++++++++++-------------------------------------------
 1 file changed, 943 insertions(+), 2250 deletions(-)

commit 24ff9c1aced469e7b10d114cc8a933394423feb8
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Jul 27 10:33:20 2010 +0200

    Updated Swedish translation

 po/sv.po | 3989 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 1809 insertions(+), 2180 deletions(-)

commit c38f1efe39a4409c2e1dabcc8277c8960b620182
Author: Aron Xu <aronxu@gnome.org>
Date:   Sat Jul 24 13:55:20 2010 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit c396120acca7d08efe7c75560607bdb4fcf85387
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Jul 23 18:33:09 2010 +0200

    Updated Slovenian translation

 po/sl.po | 500 ++++++++++++++++++++-------------------------------------------
 1 file changed, 155 insertions(+), 345 deletions(-)

commit b760bf312c748ef7b721fd14bef56c7a4e5d5b7d
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jul 22 17:50:00 2010 +0100

    datetime: ensure the panel does not need the shell to resize horizontally
    
    Reduce the width and height required for the timezone map so that the
    panel fits into the shell window without needing it to resize
    horizontally.

 panels/datetime/cc-timezone-map.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 84d07fee7a3369757ae3be12395f8239966ae0b9
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jul 22 17:48:18 2010 +0100

    shell: use a fixed width for the main window
    
    Use a fixed width for the shell, since resizing horizontally is more
    awkward for the user than resizing vertically.

 shell/cinnamon-control-center.c | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

commit b7ab940c783aa965514905d97de3d07a5767f3db
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jul 22 17:29:47 2010 +0100

    shell: make sure the background colours are updated if the style changes
    
    Make sure the background of the main vbox uses base/text colour
    combinations and is updated if the style changes

 shell/cinnamon-control-center.c | 30 ++++++++++++++++++++++--------
 1 file changed, 22 insertions(+), 8 deletions(-)

commit f5c0b73214c471320cc2dd0d318723523f5a2a09
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jul 22 15:55:13 2010 +0100

    panels: Use gi18n-lib.h in the panel libraries

 panels/datetime/datetime-module.c                         | 2 +-
 panels/default-applications/default-applications-module.c | 2 +-
 panels/display/display-module.c                           | 2 +-
 panels/keybindings/keybindings-module.c                   | 2 +-
 panels/keyboard/keyboard-module.c                         | 2 +-
 panels/mouse/mouse-module.c                               | 2 +-
 panels/network/network-module.c                           | 2 +-
 panels/universal-access/universal-access-module.c         | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

commit 016b81dee837f390111f8764cd8504b1dd565be4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 22 15:58:22 2010 +0100

    Fix compile-time warning
    
    cc-default-applications-panel.c: In function ‘cc_default_applications_panel_dispose’:
    cc-default-applications-panel.c:73:7: warning: implicit declaration of function ‘gnome_da_xml_free’
    cc-default-applications-panel.c:73:7: warning: nested extern declaration of ‘gnome_da_xml_free’

 panels/default-applications/cc-default-applications-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit b8e36d565815441e75ecb41234740be6bc66b7ef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 22 15:56:26 2010 +0100

    Fix possible crasher when theme changes
    
    When the theme or screen changes, we need to make sure that
    the previous handler for the theme-changed signal is disconnected
    to avoid the callback being called when the panel has been unloaded.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=610289

 panels/default-applications/cc-default-applications-panel.c | 7 +++++++
 panels/default-applications/gnome-da-capplet.c              | 2 +-
 panels/default-applications/gnome-da-capplet.h              | 2 ++
 3 files changed, 10 insertions(+), 1 deletion(-)

commit 576f3895f71b5e89a5cb6c1f2c79d0479769a8b2
Author: Colin Walters <walters@verbum.org>
Date:   Tue Jul 20 17:23:45 2010 -0400

    [display] Needs to be linked against dbus-glib
    
    Would be a lot better to port this to GDBus, but in the
    interest of correctness we should do this fix now.

 panels/display/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8cc523c579726e4a22fc61d32bcf258fa5889372
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Jul 20 10:48:13 2010 +0200

    Updated Galician translations

 po/gl.po | 1989 +++-----------------------------------------------------------
 1 file changed, 95 insertions(+), 1894 deletions(-)

commit 87167db22fc83673b89620d0078852acfdecd89c
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Tue Jul 20 15:57:36 2010 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 5445 +++++++++++++++++++++++++++++-----------------------------
 po/zh_TW.po | 5467 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 5403 insertions(+), 5509 deletions(-)

commit 7c1e4cf52642c36a73df3f67881d01b25dc68131
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 18 22:36:35 2010 +0100

    font-viewer: create the preview pixmap after the drawing area is realized
    
    The drawing area needs to be realized before the preview pixmap is created
    to ensure the X resources are available to create the font information.

 font-viewer/font-view.c | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

commit 175ed06b949cbef1bb0a92fb54fa2c7e5b767fa2
Author: Emmanouel Kapernaros <manolis@kapcom.gr>
Date:   Sun Jul 18 18:01:22 2010 +0300

    Updated Greek translation for pitivi

 po/el.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 900e165483402e56d81b549509f54b7debb70dc7
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Jul 18 12:36:04 2010 +0200

    Updated Spanish translation

 po/es.po | 5519 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 2534 insertions(+), 2985 deletions(-)

commit de166928c1a9ea1f5cf499af373ee25b95cc8428
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jul 16 16:38:29 2010 +0100

    configure: update minimum required glib version
    
    Fixes bug 624322 - control-center.c: g_variant_get_bytestring_array is not
    a valid API call

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5147efce71b30ee7c15b321bef273daf6fcd3257
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jul 16 16:04:11 2010 +0100

    shell: use the icon naming specification icon names
    
    Fixes bug 616049  - Use correct icon names from the spec

 shell/cinnamon-control-center.desktop.in.in | 2 +-
 shell/shell.ui                           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 554e23aaf2330a7814efbb689e16fdfbab83c8eb
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jul 16 15:18:07 2010 +0100

    shell: allow the shell to shrink smaller than it's initial size
    
    Reset the size request when opening a panel so that the new size can be
    smaller than the size of the main view.

 shell/cinnamon-control-center.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 2e47f04fc9b5abc802f2b2ed3e30b208131e5df1
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jul 16 14:44:14 2010 +0100

    shell: free the menu directory contents list

 shell/cinnamon-control-center.c | 2 ++
 1 file changed, 2 insertions(+)

commit 20a5421543fe7830a48587fc97075550c6951b6b
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jul 16 13:53:34 2010 +0100

    datetime: fix various memory leaks
    
    - Add a function to free the timezone database
    - Use setenv rather than putenv
    - Add various missing free() calls

 panels/datetime/cc-datetime-panel.c | 15 ++++++++++-----
 panels/datetime/cc-timezone-map.c   |  5 ++++-
 panels/datetime/datetime.ui         |  4 ++--
 panels/datetime/tz.c                | 26 ++++++++++++++++++++------
 panels/datetime/tz.h                |  1 +
 5 files changed, 37 insertions(+), 14 deletions(-)

commit 939fb9c16a4515afc21956eb2e519058c50427bc
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jul 15 17:33:28 2010 +0100

    datetime: add region and city comboboxes
    
    Add region and city comboboxes to allow the user to select the timezone
    without using the map.

 panels/datetime/cc-datetime-panel.c | 231 ++++++++++++++++++++++++++++++++----
 panels/datetime/cc-timezone-map.c   |   9 +-
 panels/datetime/datetime.ui         |  96 +++++++++++----
 3 files changed, 292 insertions(+), 44 deletions(-)

commit 93cd5dae5e3d21446441621bfa8546263191e716
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jul 14 17:29:06 2010 +0100

    datetime: Draw a label to indicate the current location
    
    Draw a label on the timezone map to indicate the name and position of the
    current location.

 panels/datetime/cc-timezone-map.c | 81 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 79 insertions(+), 2 deletions(-)

commit a1bf960a7519f9d8a33a769c0845dc92d743c3cb
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jul 14 16:22:06 2010 +0100

    shell: resize the window to the size of the panel being opened
    
    Resize the shell window when a panel is activated so that it is at the
    natural size of the panel.

 shell/cinnamon-control-center.c | 31 +++++++++++++++++++++++++++++--
 shell/shell.ui               |  5 +++--
 2 files changed, 32 insertions(+), 4 deletions(-)

commit ce2f25082abdf2adf4fba7bbe67733ae880409bf
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jul 14 12:02:03 2010 +0100

    shell: Fix build with recent GTK+ deprecations
    
    GtkNotebookPage has been deprecated and the prototype of the
    GtkNotebook::switch-page signal has changed.

 shell/cinnamon-control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0802b8f1b3706c6672d7cae43b8bc82b09f0cd35
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jul 13 15:00:35 2010 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 5379 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 2466 insertions(+), 2913 deletions(-)

commit 566ff0f93b316d574e78645967870bb592690cf4
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 18:43:47 2010 +0100

    Release 2.31.5

 NEWS         | 31 +++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 32 insertions(+), 1 deletion(-)

commit 1204832568425d20a29ae16f6fe33992d8a1b3bf
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 18:07:47 2010 +0100

    shell: use the correct command line argument during panel activation
    
    Use the second argument from the argv list in the activation callback to
    make sure the correct panel is loaded, since the first argument is the
    application binary name.

 shell/control-center.c | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

commit 844a957ade350b1971cb49902eb0685b5098c65c
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 16:46:15 2010 +0100

    display: hide and unref the screen label when destroyed
    
    Make sure the screen label is not left visible after the panel has been
    destroyed.

 panels/display/xrandr-capplet.c | 4 +++-
 panels/display/xrandr-capplet.h | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit eb52e24f6c359beb35adbcbf603a77c433d0a5e3
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 15:33:02 2010 +0100

    Add icons for the Date and Time settings panel
    
    Add icons drawn by Lapo Calamandrei <calamandrei@gmail.com>

 panels/datetime/Makefile.am                        |  14 +
 panels/datetime/gnome-datetime-panel.desktop.in.in |   2 +-
 .../icons/16x16/preferences-system-time.png        | Bin 0 -> 999 bytes
 .../icons/22x22/preferences-system-time.png        | Bin 0 -> 1633 bytes
 .../icons/256x256/preferences-system-time.png      | Bin 0 -> 41392 bytes
 .../icons/32x32/preferences-system-time.png        | Bin 0 -> 2481 bytes
 .../icons/48x48/preferences-system-time.png        | Bin 0 -> 4656 bytes
 .../icons/scalable/preferences-system-time.svg     | 861 +++++++++++++++++++++
 8 files changed, 876 insertions(+), 1 deletion(-)

commit 309676e9f3c94c1b301180a2f1c35f7bd978c864
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 13:05:39 2010 +0100

    Clean up configure.ac
    
    Remove redundant checks and sort output files alphabetically. Also
    remove unnecessary AC_SUBST of pkg-config variables.

 configure.ac | 57 ++++++++++++++-------------------------------------------
 1 file changed, 14 insertions(+), 43 deletions(-)

commit 9c1fd5dbd3e9a963de20eb068ab7179a73c3f5f5
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 11:34:31 2010 +0100

    Don't include libwindow-settings
    
    Remove libwindow-settings from the build since it is no longer used by
    control center.

 Makefile.am    | 4 ++--
 configure.ac   | 2 --
 po/POTFILES.in | 2 --
 3 files changed, 2 insertions(+), 6 deletions(-)

commit 5f94333b899974f3ea6de22f41b5cd0f9a308015
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 12 11:33:31 2010 +0100

    po: remove old files from POTFILES.in

 po/POTFILES.in | 30 ------------------------------
 1 file changed, 30 deletions(-)

commit 9089857a89045fb56b61b30a7dff060f2c540ed9
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jul 7 11:58:31 2010 +0100

    Completely remove dependency on capplets/common directory
    
    The capplets directory is no longer built or distributed, so the panels
    cannot depend on files in it.

 configure.ac                                         |  7 ++-----
 panels/default-applications/gnome-da-capplet.c       |  3 +--
 panels/keybindings/gnome-keybinding-properties.c     |  1 -
 panels/keyboard/gnome-keyboard-properties-a11y.c     |  2 +-
 panels/keyboard/gnome-keyboard-properties-xkb.c      |  1 -
 panels/keyboard/gnome-keyboard-properties-xkb.h      |  2 ++
 panels/keyboard/gnome-keyboard-properties-xkblt.c    |  1 -
 panels/keyboard/gnome-keyboard-properties-xkbltadd.c |  1 -
 panels/keyboard/gnome-keyboard-properties-xkbmc.c    |  2 --
 panels/keyboard/gnome-keyboard-properties-xkbot.c    |  6 ++----
 panels/keyboard/gnome-keyboard-properties-xkbpv.c    |  1 -
 panels/keyboard/gnome-keyboard-properties.c          |  1 -
 panels/mouse/gnome-mouse-accessibility.c             |  3 ++-
 panels/mouse/gnome-mouse-properties.c                |  3 ++-
 panels/network/gnome-network-properties.c            | 15 +++++++--------
 15 files changed, 19 insertions(+), 30 deletions(-)

commit f765955508ee515dcf9c051b8ebc92d30f74279d
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Thu Jul 8 17:08:39 2010 +0200

    Added galician translations for help

 help/Makefile.am |   2 +-
 help/gl/gl.po    | 140 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/gl.po         |   2 +-
 3 files changed, 142 insertions(+), 2 deletions(-)

commit c3c00a7b4a35756d3e8bfb4e49308fa60cf1d215
Author: Ryan Lortie <desrt@desrt.ca>
Date:   Wed Jul 7 22:38:53 2010 -0400

    GVariant API adjustment: byte_array -> bytestring

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a582fd4d75f6b9ed7665125b01d34b630c9ab259
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Jul 7 22:45:05 2010 +0100

    datetime: remove "seconds" spin button
    
    It is not necessary to be able to set the "seconds" of the current time.
    Resetting the seconds to zero is appropriate for most users.

 panels/datetime/cc-datetime-panel.c | 10 ++--------
 panels/datetime/datetime.ui         | 16 +++++-----------
 2 files changed, 7 insertions(+), 19 deletions(-)

commit 40232421bf84258efe8afef42b9ca79b3e891e19
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jul 6 16:49:39 2010 +0100

    universal-access: add size groups to the lists of objects to create
    
    Create the size groups from the GtkBuilder file so that widgets can be
    aligned correctly.

 panels/universal-access/cc-ua-panel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 3d9ada13f0e771ad8a4faf42b6c3f8779d94484f
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jul 6 14:13:26 2010 +0100

    CcPanel: derive from GtkBin, rather than GtkAlignment
    
    CcPanel does not require any features of GtkAlignment, so derive from
    GtkBin directly.

 libcinnamon-control-center/cc-panel.c | 47 +++++++++++++++++++++++++++++++++++++-
 libcinnamon-control-center/cc-panel.h |  4 ++--
 2 files changed, 48 insertions(+), 3 deletions(-)

commit 59920f88a0ebfa4d4bb9b19029a99c108989e583
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 5 17:57:24 2010 +0100

    display: replace the use of GdkRegion with cairo_region_t
    
    GdkRegion has been removed in Gtk+ 3 and replaced with cairo_region_t.

 panels/display/scrollarea.c     | 437 ++++++++--------------------------------
 panels/display/scrollarea.h     |  12 +-
 panels/display/xrandr-capplet.c |  10 +-
 3 files changed, 97 insertions(+), 362 deletions(-)

commit a5b092326dc03375df3966f11a6008f9af161a06
Author: Javier Jardón <jjardon@gnome.org>
Date:   Wed Jun 30 16:07:30 2010 +0200

    Use single GDK includes
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=615292

 panels/display/scrollarea.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 8dc34e8695197a36eb4817e0cfc9d8d0e9cef45e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jul 5 12:18:23 2010 +0100

    Disable the capplets directory
    
    The capplets directory does not currently build due to changes in GTK+ and
    should be replaced by appropriate settings panels.

 Makefile.am  | 4 ++--
 configure.ac | 9 ---------
 2 files changed, 2 insertions(+), 11 deletions(-)

commit 8b103e75fe9715458816bc8b35f84271e2ab2bec
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Jul 4 23:07:03 2010 +0200

    Updated Spanish translation

 po/es.po | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

commit de73bfe60b52d2d700019e63d1750ea5a54d9fe0
Author: Gan Lu <rhythm.gan@gmail.com>
Date:   Sun Jul 4 17:26:50 2010 +0200

    Updated zh_CN translation.

 po/zh_CN.po | 2058 +++++++++++++++++++++++++----------------------------------
 1 file changed, 861 insertions(+), 1197 deletions(-)

commit b0e027fae0d5e7fda3d3fe21b054b2719dbd6adb
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Jul 1 09:01:42 2010 +0200

    Updated Spanish translation

 po/es.po | 36 +++++++++++++-----------------------
 1 file changed, 13 insertions(+), 23 deletions(-)

commit a26d7b56795c6c00f13696cf1c9d4967586c9907
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 30 17:34:45 2010 +0100

    Release 2.31.4.2

 NEWS         | 18 +++++++++++++++++-
 configure.ac |  2 +-
 2 files changed, 18 insertions(+), 2 deletions(-)

commit 07968e54abe059c96a48377e05a602712c46c865
Author: Richard Hughes <richard@hughsie.com>
Date:   Tue Jun 29 22:16:37 2010 +0100

    Fix compile with recent GTK versions

 panels/datetime/cc-timezone-map.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a1cd0f90c5e29885970a7d594cbdcf45b045423f
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Jun 30 18:44:42 2010 +0300

    Updated Hebrew translation.

 po/he.po | 123 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 65 insertions(+), 58 deletions(-)

commit 74077861edcf8c7ef7e5853a67468508a010ed34
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 30 15:55:48 2010 +0100

    datetime: work around a cairo bug
    
    Add an alpha channel to the background map to work around a drawing issue
    with cairo.

 panels/datetime/data/bg.png | Bin 177324 -> 213448 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 91c5e26bcfea3e7fff024ca24065cf05981a9058
Author: Jonh Wendell <jwendell@gnome.org>
Date:   Fri Jun 25 10:31:34 2010 -0300

    Make build works with GSEAL

 capplets/appearance/appearance-font.c |  2 +-
 capplets/common/theme-thumbnail.c     |  2 +-
 panels/display/scrollarea.c           | 30 +++++++++++++++++++-----------
 shell/cc-shell-category-view.c        |  9 +++++----
 shell/cinnamon-control-center.c          | 13 ++++++++-----
 5 files changed, 34 insertions(+), 22 deletions(-)

commit 59f894bf1b518b26dbafb9fa08702b0a605602f9
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 30 13:34:54 2010 +0100

    datetime: install the UI files into the correct directory

 panels/datetime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4e89f75dd5008d6eadac1796784da0f0e3c8daac
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue Jun 29 23:55:17 2010 +0200

    Updated Galician translations

 po/gl.po | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

commit 3c92ef843e8e3ba88f908678a58c8ee089aede41
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 19:42:42 2010 +0100

    Release 2.31.4.1

 NEWS         | 9 +++++++++
 configure.ac | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 4915df9724539e9981aa85bbb5c6b33b07bfef32
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 19:16:25 2010 +0100

    datetime: don't try to set the timezone if the current location is unknown

 panels/datetime/cc-datetime-panel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit b9d7114c2aee5fdbd85f66fa4f35ea427aa49da5
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 18:16:29 2010 +0100

    datetime: be sure to unref the old map and color map

 panels/datetime/cc-timezone-map.c | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

commit 3776c0fd07f1b47e3b4c0a1706e10977344656f2
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 18:09:17 2010 +0100

    datetime: use X-GNOME-Settings-Panel flag and correct Exec line
    
    Fix the Exec line in the .desktop file and use the X-GNOME-Settings-Panel
    property to identify the panel.

 panels/datetime/cc-datetime-panel.c                | 2 +-
 panels/datetime/gnome-datetime-panel.desktop.in.in | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit ae9bb70c5e59a12eb620a2ac3061d3548202087a
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 17:48:57 2010 +0100

    datetime: add the dbus cflags and libraries

 panels/datetime/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit a8588291eb735fd4239b3d16c7a01f0affff45fe
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 17:06:58 2010 +0100

    Release 2.31.4

 NEWS         | 27 +++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 28 insertions(+), 1 deletion(-)

commit 0cbbf01710e3a4bd7f644622e859ba848b773ffd
Merge: 4916f35 8c6eba7
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 14:41:48 2010 +0100

    Merge branch 'wip/datetime-panel'

commit 8c6eba7878bf8ba8bf2224c52c5d3e060c3e7ee7
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 14:31:33 2010 +0100

    datetime: fix issues with distcheck
    
    Add translatable files to POTFILES.in or POTFILES.skip and make sure the
    data files are included in the distribution.

 panels/datetime/Makefile.am | 2 +-
 po/POTFILES.in              | 2 ++
 po/POTFILES.skip            | 1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

commit bb229f1491aa5841f5d8043c3ef1819a01b8501e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 13:29:30 2010 +0100

    datetime: define capplet name for GNOMECC_CAPPLETS_CFLAGS

 panels/datetime/Makefile.am | 3 +++
 1 file changed, 3 insertions(+)

commit 2e2b70fab0935a650c1d34268b5c564acb786293
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 12:52:17 2010 +0100

    datetime: remove default value for the location label
    
    The location label should be blank until the current location information
    is available.

 panels/datetime/datetime.ui | 1 -
 1 file changed, 1 deletion(-)

commit 12e1151128c7d9d16bd6ea549bc6d60d4a365356
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 29 12:51:17 2010 +0100

    datetime: propagate dbus errors
    
    Make sure that any dbus errors can be presented in the UI if needed.

 panels/datetime/set-timezone.c | 33 +++++++++++++++++++++++----------
 1 file changed, 23 insertions(+), 10 deletions(-)

commit 89e778c362cdb1ed0a2f6ece855fd9d1e03ba043
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 28 18:06:33 2010 +0100

    datetime: get the current system timezone and show it on the map at startup

 panels/datetime/cc-datetime-panel.c | 41 +++++++++++++++++++++++++++++++++----
 1 file changed, 37 insertions(+), 4 deletions(-)

commit 5ed92c674ee3edd09569cc1f50aa50336cc93869
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 28 17:59:27 2010 +0100

    datetime: add a function to set the current location on CcTimezoneMap
    
    Add cc_timezone_map_set_timezone function to set the current location on
    the map.

 panels/datetime/cc-timezone-map.c | 53 +++++++++++++++++++++++++++++++--------
 panels/datetime/cc-timezone-map.h |  2 ++
 2 files changed, 44 insertions(+), 11 deletions(-)

commit 8174f22fe744e33817aa20546cf7c04b8b582ae3
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 28 17:48:47 2010 +0100

    datetime: add a function to retrieve current timezone from dbus
    
    Add get_system_timezone_async function to request the current timezone from
    the SettingsDaemon.DateTimeMechanism dbus object.

 panels/datetime/set-timezone.c | 82 ++++++++++++++++++++++++++++++++++++++++++
 panels/datetime/set-timezone.h | 17 +++++++++
 2 files changed, 99 insertions(+)

commit 8db6536da9fafc7ad61e0bec13d0239bd55235c1
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 28 11:41:37 2010 +0100

    datetime: update the time labels when the location is changed
    
    Update the time labels so that the time is changed accordingly with the
    timezone.

 panels/datetime/cc-datetime-panel.c | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

commit 402d7dce0391a5895f12750fe6c37fd5940f2d01
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 28 11:15:18 2010 +0100

    datetime: replace underscores with spaces for location display name

 panels/datetime/cc-datetime-panel.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

commit 26ae0134cfd6b2b002309f408811c44dbb5ad778
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jun 25 17:36:14 2010 +0100

    datetime: add detection of location from map clicks

 panels/datetime/Makefile.am         |   3 +-
 panels/datetime/cc-datetime-panel.c |  14 ++
 panels/datetime/cc-timezone-map.c   | 157 ++++++++++++++++-
 panels/datetime/cc-timezone-map.h   |   1 +
 panels/datetime/tz.c                | 336 ++++++++++++++++++++++++++++++++++++
 panels/datetime/tz.h                |  84 +++++++++
 6 files changed, 587 insertions(+), 8 deletions(-)

commit 1d60affa617ad4a18814382aefc0538fc74747cd
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 24 15:20:45 2010 +0100

    datetime: use the SettingsDaemon dbus service to set the system time
    
    Use the org.gnome.SettingsDaemon.DateTimeMechanism interface to set the
    current system time.

 panels/datetime/Makefile.am         |   4 +-
 panels/datetime/cc-datetime-panel.c |  51 +++++++
 panels/datetime/datetime.ui         |   8 +-
 panels/datetime/set-timezone.c      | 291 ++++++++++++++++++++++++++++++++++++
 panels/datetime/set-timezone.h      |  40 +++++
 5 files changed, 386 insertions(+), 8 deletions(-)

commit 12083b85b5351d42fcec5043793083db41d8cb48
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 10 11:41:40 2010 +0100

    datetime: set spin buttons to the current time at startup

 panels/datetime/cc-datetime-panel.c | 15 ++++++++++++++-
 panels/datetime/datetime.ui         | 21 +++++++++++++++++++++
 2 files changed, 35 insertions(+), 1 deletion(-)

commit 3c39f562c602b09468d35b38006f7bbe064a551f
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 9 18:42:42 2010 +0100

    datetime: Set the correct date and time in the UI
    
    Set the current date in the calendar and keep the current time label
    updated.

 panels/datetime/cc-datetime-panel.c | 48 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 47 insertions(+), 1 deletion(-)

commit 2208f28618b389be97d56c5a3dc1169f3f6a1152
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 9 16:03:09 2010 +0100

    datetime: Add names to the widgets

 panels/datetime/datetime.ui | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 72a7d5e0a677c70e9505537b39f1a3b15474543e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 9 16:00:14 2010 +0100

    datetime: Simplify the UI
    
    Remove the multiple locations feature and add current time
    labels.

 panels/datetime/datetime.ui | 297 +++++++++++++++++++++-----------------------
 1 file changed, 139 insertions(+), 158 deletions(-)

commit 4916f35dcfcf3f2ad5a0d3d11f44cecf4377ad22
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Jun 28 04:35:41 2010 +0200

    Updated Spanish translation

 po/es.po | 94 ++++++++++++++++++++--------------------------------------------
 1 file changed, 29 insertions(+), 65 deletions(-)

commit 77a46c8bfeb524301e4aa3fc1d46928ba2e0a50e
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jun 27 12:28:48 2010 +0200

    Updated Hungarian translation

 po/hu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 23bce8fd0b8aa88806b63743668db7acc7ae0579
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jun 26 10:39:20 2010 +0200

    Updated Spanish translation

 po/es.po | 667 ++++++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 516 insertions(+), 151 deletions(-)

commit 59a4d44b3543f16aabd55e00943f1fce7430cdff
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jun 24 16:16:29 2010 +0200

    Add .so version information to libcinnamon-control-center

 configure.ac                        | 8 ++++++++
 libcinnamon-control-center/Makefile.am | 1 +
 2 files changed, 9 insertions(+)

commit e7d581c9ffa5a41f7ba46342d9658659bac003ae
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 23 21:44:09 2010 +0100

    Make about-me compile with GTK+ 3.x
    
    With plenty of warnings still, but it compiles.

 capplets/about-me/e-image-chooser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit de11d12d5233795d6ced8602c49e466b7bdda10b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jun 23 20:30:03 2010 +0100

    Use gnome-desktop 3.0, not 2.0
    
    As we compile against GTK+ 3.x now.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8c1127384a31fc5786d1009d6ff80fd10639b886
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 21 16:36:32 2010 +0100

    CcPanel: remove redundant properties
    
    Remove properties that are not used or not useful.
    
    The "id" property is implemented by the desktop entry
    X-GNOME-Settings-Panel value and the extension point implementation name.
    
    The "display-name" property is not used because the Name value from the
    desktop entry file is read instead.
    
    The "active" property is no longer needed, since the objects are not kept
    alive when the panel is inactive.

 libcinnamon-control-center/cc-panel.c | 138 +------------------------------------
 libcinnamon-control-center/cc-panel.h |   8 ---
 libcinnamon-control-center/cc-shell.c |   6 +-
 3 files changed, 2 insertions(+), 150 deletions(-)

commit ae7944a0c8e3e6b516073dd8484b774a5ad191a6
Author: Richard Hughes <richard@hughsie.com>
Date:   Sun Jun 20 22:07:05 2010 +0100

    Convert from libunique to GtkApplication to remove the final gtk-2.0 library

 configure.ac           |  2 +-
 shell/control-center.c | 75 ++++++++++++--------------------------------------
 2 files changed, 18 insertions(+), 59 deletions(-)

commit f4ef1914628de1c9853834cffdaee61ad3cff4cb
Author: Richard Hughes <richard@hughsie.com>
Date:   Sat Jun 19 21:13:10 2010 +0100

    You can't mix GTK2 and GTK3, so depend on gtk-3.0 versions of libraries

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 93009261bb8b46d93a8b1849c53a15ff014f8be4
Author: Kristjan Schmidt <kristjan.schmidt@googlemail.com>
Date:   Mon Jun 21 17:29:00 2010 +0200

    Add Esperanto translation

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 717cd745cc5d6806d58f1969f9b5c3b8910cb4bb
Author: Kristjan Schmidt <kristjan.schmidt@googlemail.com>
Date:   Mon Jun 21 17:28:58 2010 +0200

    Add Esperanto translation

 po/eo.po | 3933 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3933 insertions(+)

commit 0b88b6cfa34f914db28dd0656b994c1dfb962966
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Jun 20 20:26:26 2010 +0200

    [i18n] Updated German translation

 po/de.po | 1661 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 869 insertions(+), 792 deletions(-)

commit 192ad71a792effd0cb75db64e6fd1e33d30c88a2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jun 20 12:41:21 2010 +0200

    Added Norwegian bokmål translation

 po/nb.po | 259 ++++-----------------------------------------------------------
 1 file changed, 14 insertions(+), 245 deletions(-)

commit 8897a196d62a3b59eb1112d18a82c1df128a2cbd
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 18 14:04:34 2010 +0200

    Use gtk+-3.0 also on the .pc file

 libcinnamon-control-center/libcinnamon-control-center.pc.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 15560a924ca015168b5eadc47686424e7c030ca7
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 9 12:34:36 2010 +0100

    datetime: ensure the map is shown

 panels/datetime/cc-datetime-panel.c | 1 +
 1 file changed, 1 insertion(+)

commit 3c863ae37922c4bc90ad3c57a1a6123199697b8e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue May 25 16:49:41 2010 +0100

    datetime: update .desktop file name and comment fields

 panels/datetime/gnome-datetime-panel.desktop.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 29e221e6994cf2011103d686ae12d12dd6d05622
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue May 25 16:31:48 2010 +0100

    datetime: add a GtkBuilder file to define the user interface

 panels/datetime/Makefile.am         |   6 +-
 panels/datetime/cc-datetime-panel.c |  37 +++++-
 panels/datetime/datetime.ui         | 247 ++++++++++++++++++++++++++++++++++++
 3 files changed, 283 insertions(+), 7 deletions(-)

commit e35b73abb52190b173a74e6c37ead41b75869f1c
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri May 21 17:36:27 2010 +0100

    Add initial implementation of date/time panel

 configure.ac                                       |   2 +
 panels/Makefile.am                                 |   3 +-
 panels/datetime/Makefile.am                        |  73 ++++
 panels/datetime/cc-datetime-panel.c                | 113 ++++++
 panels/datetime/cc-datetime-panel.h                |  74 ++++
 panels/datetime/cc-timezone-map.c                  | 384 +++++++++++++++++++++
 panels/datetime/cc-timezone-map.h                  |  74 ++++
 panels/datetime/data/bg.png                        | Bin 0 -> 177324 bytes
 panels/datetime/data/cc.png                        | Bin 0 -> 53948 bytes
 panels/datetime/data/timezone_-1.png               | Bin 0 -> 8012 bytes
 panels/datetime/data/timezone_-10.png              | Bin 0 -> 7783 bytes
 panels/datetime/data/timezone_-11.png              | Bin 0 -> 7406 bytes
 panels/datetime/data/timezone_-2.png               | Bin 0 -> 4333 bytes
 panels/datetime/data/timezone_-3.5.png             | Bin 0 -> 740 bytes
 panels/datetime/data/timezone_-3.png               | Bin 0 -> 13615 bytes
 panels/datetime/data/timezone_-4.5.png             | Bin 0 -> 1900 bytes
 panels/datetime/data/timezone_-4.png               | Bin 0 -> 15084 bytes
 panels/datetime/data/timezone_-5.5.png             | Bin 0 -> 437 bytes
 panels/datetime/data/timezone_-5.png               | Bin 0 -> 19166 bytes
 panels/datetime/data/timezone_-6.png               | Bin 0 -> 13764 bytes
 panels/datetime/data/timezone_-7.png               | Bin 0 -> 11977 bytes
 panels/datetime/data/timezone_-8.png               | Bin 0 -> 6801 bytes
 panels/datetime/data/timezone_-9.5.png             | Bin 0 -> 437 bytes
 panels/datetime/data/timezone_-9.png               | Bin 0 -> 7908 bytes
 panels/datetime/data/timezone_0.png                | Bin 0 -> 11074 bytes
 panels/datetime/data/timezone_1.png                | Bin 0 -> 15458 bytes
 panels/datetime/data/timezone_10.5.png             | Bin 0 -> 421 bytes
 panels/datetime/data/timezone_10.png               | Bin 0 -> 12829 bytes
 panels/datetime/data/timezone_11.5.png             | Bin 0 -> 446 bytes
 panels/datetime/data/timezone_11.png               | Bin 0 -> 12113 bytes
 panels/datetime/data/timezone_12.75.png            | Bin 0 -> 409 bytes
 panels/datetime/data/timezone_12.png               | Bin 0 -> 7130 bytes
 panels/datetime/data/timezone_13.png               | Bin 0 -> 621 bytes
 panels/datetime/data/timezone_2.png                | Bin 0 -> 12854 bytes
 panels/datetime/data/timezone_3.5.png              | Bin 0 -> 2142 bytes
 panels/datetime/data/timezone_3.png                | Bin 0 -> 17475 bytes
 panels/datetime/data/timezone_4.5.png              | Bin 0 -> 1773 bytes
 panels/datetime/data/timezone_4.png                | Bin 0 -> 4954 bytes
 panels/datetime/data/timezone_5.5.png              | Bin 0 -> 6099 bytes
 panels/datetime/data/timezone_5.75.png             | Bin 0 -> 2885 bytes
 panels/datetime/data/timezone_5.png                | Bin 0 -> 14539 bytes
 panels/datetime/data/timezone_6.5.png              | Bin 0 -> 1609 bytes
 panels/datetime/data/timezone_6.png                | Bin 0 -> 8441 bytes
 panels/datetime/data/timezone_7.png                | Bin 0 -> 14412 bytes
 panels/datetime/data/timezone_8.png                | Bin 0 -> 16725 bytes
 panels/datetime/data/timezone_9.5.png              | Bin 0 -> 1959 bytes
 panels/datetime/data/timezone_9.png                | Bin 0 -> 12608 bytes
 panels/datetime/datetime-module.c                  |  41 +++
 panels/datetime/gnome-datetime-panel.desktop.in.in |  11 +
 49 files changed, 774 insertions(+), 1 deletion(-)

commit ecc47a6ed80dfd891c789534b807c8ae152cd819
Author: A S Alam <aalam@users.sf.net>
Date:   Mon Jun 14 07:36:00 2010 +0530

    update Punjabi Translation

 po/pa.po | 2004 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 1226 insertions(+), 778 deletions(-)

commit 163fe926f599f1bdbe4b8684cc4c42cc0e99a5e0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jun 14 00:47:12 2010 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 1621 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 933 insertions(+), 688 deletions(-)

commit 9466f6ef6c544f4128fa4d014bfb4101a5ed0394
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jun 13 18:51:10 2010 +0200

    Updated Galician translations

 po/gl.po | 37 ++++++++++++++++++-------------------
 1 file changed, 18 insertions(+), 19 deletions(-)

commit 332988909c97d1e6eb530f5f667201f04e98e912
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jun 13 17:45:02 2010 +0200

    Updated Galician translations

 po/gl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3571778d5e1efc0edeb8eb3f3dce9415c3a42e2e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Jun 12 17:09:38 2010 +0200

    Created Galician translations

 po/gl.po | 131 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 64 insertions(+), 67 deletions(-)

commit e42594cd0c8d57ba34a054e82cebd6a825dfbca5
Author: Andika Triwidada <andika@gmail.com>
Date:   Fri Jun 11 16:21:20 2010 +0700

    Updated Indonesian translation

 po/id.po | 1917 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1101 insertions(+), 816 deletions(-)

commit c09f693575b5559d0c72af71fbe1c5626f802df8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jun 10 23:06:11 2010 +0200

    Use gtk+-3.0

 configure.ac | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 12b27dcbad8bab53ebd17aec9e92475fa3a7d9ea
Author: Ivar Smolin <okul@linux.ee>
Date:   Wed Jun 9 11:15:50 2010 +0300

    Estonian translation updated

 po/et.po | 433 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 291 insertions(+), 142 deletions(-)

commit 4b64b669ef48c96fc42c3cf1bf8145b6183d8c4e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 7 18:04:02 2010 +0100

    Release 2.31.3

 NEWS         | 35 +++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 36 insertions(+), 1 deletion(-)

commit 0bab4d746a71b7f300735df19f562f7b151c8d70
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 7 17:58:58 2010 +0100

    examples: make sure the label is shown when the panel is created

 examples/cc-example-panel.c | 2 ++
 1 file changed, 2 insertions(+)

commit 8836316161e4bbdc3b353183a439bda074aa8eeb
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 7 16:51:11 2010 +0100

    display: convert display capplet to a settings panel
    
    Add CcPanel and module implmenetation for the display settings.

 capplets/Makefile.am                               |    5 +-
 capplets/display/Makefile.am                       |   78 -
 capplets/display/TODO                              |  837 -------
 capplets/display/build.sh                          |    1 -
 capplets/display/display-capplet.ui                |  437 ----
 capplets/display/display-properties.desktop.in.in  |   14 -
 capplets/display/foo-marshal.c                     |  279 ---
 capplets/display/foo-marshal.h                     |   63 -
 .../gnome-display-properties-install-systemwide.c  |  272 ---
 .../icons/16x16/preferences-desktop-display.png    |  Bin 613 -> 0 bytes
 .../icons/22x22/preferences-desktop-display.png    |  Bin 866 -> 0 bytes
 .../icons/24x24/preferences-desktop-display.png    |  Bin 909 -> 0 bytes
 .../icons/32x32/preferences-desktop-display.png    |  Bin 1602 -> 0 bytes
 .../icons/scalable/preferences-desktop-display.svg |  470 ----
 capplets/display/org.gnome.randr.policy.in         |   29 -
 capplets/display/scrollarea.c                      | 1944 ---------------
 capplets/display/scrollarea.h                      |  124 -
 capplets/display/xrandr-capplet.c                  | 2552 --------------------
 configure.ac                                       |    4 +-
 panels/Makefile.am                                 |    8 +-
 panels/display/Makefile.am                         |   81 +
 panels/display/TODO                                |  837 +++++++
 panels/display/cc-display-panel.c                  |  114 +
 panels/display/cc-display-panel.h                  |   74 +
 panels/display/display-capplet.ui                  |  397 +++
 panels/display/display-module.c                    |   41 +
 panels/display/foo-marshal.c                       |  279 +++
 panels/display/foo-marshal.h                       |   63 +
 panels/display/gnome-display-panel.desktop.in.in   |   15 +
 .../gnome-display-properties-install-systemwide.c  |  272 +++
 .../icons/16x16/preferences-desktop-display.png    |  Bin 0 -> 613 bytes
 .../icons/22x22/preferences-desktop-display.png    |  Bin 0 -> 866 bytes
 .../icons/24x24/preferences-desktop-display.png    |  Bin 0 -> 909 bytes
 .../icons/32x32/preferences-desktop-display.png    |  Bin 0 -> 1602 bytes
 .../icons/scalable/preferences-desktop-display.svg |  470 ++++
 panels/display/org.gnome.randr.policy.in           |   29 +
 panels/display/scrollarea.c                        | 1944 +++++++++++++++
 panels/display/scrollarea.h                        |  124 +
 panels/display/xrandr-capplet.c                    | 2516 +++++++++++++++++++
 panels/display/xrandr-capplet.h                    |    3 +
 po/POTFILES.in                                     |   10 +-
 po/POTFILES.skip                                   |    2 +-
 42 files changed, 7276 insertions(+), 7112 deletions(-)

commit b3530ea2511603cbd8a1eddc0586cf188701e5e2
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon Jun 7 10:33:45 2010 +0100

    mouse/keyboard: hide accessibility preferences now in universal-access
    
    Temporarily hide the mouse and keyboard accessibility preferences that are
    now implemented in the universal-access panel.

 panels/keyboard/gnome-keyboard-properties-dialog.ui | 2 --
 panels/mouse/gnome-mouse-properties.ui              | 1 -
 2 files changed, 3 deletions(-)

commit 86b80431934fb75ef85b2321a91215577ec3d149
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jun 6 17:55:27 2010 +0200

    Updated Galician translations

 po/gl.po | 522 +++++++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 424 insertions(+), 98 deletions(-)

commit 1e615fafda464d2a615c8d86d427bf25bd13a066
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat Jun 5 10:04:37 2010 +0300

    Updated Hebrew translation.

 po/he.po | 530 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 420 insertions(+), 110 deletions(-)

commit b6e436acda24bc61196ccf291b8f76a0ba98f3b8
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jun 4 17:59:03 2010 +0100

    Remove accessibility capplet from the build
    
    The accessibility capplet is now superseded by the unviversal-access panel.

 capplets/Makefile.am | 2 --
 configure.ac         | 3 ---
 po/POTFILES.in       | 3 ---
 po/POTFILES.skip     | 2 --
 4 files changed, 10 deletions(-)

commit 54127b805e48b46662907a86a06c8c3a52b19c37
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jun 4 17:45:54 2010 +0100

    build: Make sure distcheck passes
    
    Rename files in POTFILES to match new names. Rename the universal access
    .desktop file to be consistent with the other desktop files.

 configure.ac                                                |  2 +-
 panels/universal-access/Makefile.am                         |  4 ++--
 .../gnome-universal-access-panel.desktop.in.in              | 11 +++++++++++
 .../universal-access/gnome-universal-access.desktop.in.in   | 11 -----------
 po/POTFILES.in                                              | 13 +++++++------
 po/POTFILES.skip                                            | 12 ++++++------
 6 files changed, 27 insertions(+), 26 deletions(-)

commit 18443d9c647df3f788e1c2d44a225f7aa8e9c848
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jun 4 16:31:22 2010 +0100

    universal-access: set unimplemented UI as insensitive, rather than hidden

 panels/universal-access/uap.ui | 9 +++++++++
 1 file changed, 9 insertions(+)

commit c2721d23a67e6463db0c13631b1ce843a49086d5
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jun 4 15:54:03 2010 +0100

    universal-access: hook toggle keys beep option into the correct setting

 panels/universal-access/cc-ua-panel.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 3b5d9f079105771dff337ced91c9c285d4c16ba1
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri Jun 4 15:27:21 2010 +0100

    universal-access: add implementation of text size option
    
    Implement scaling the text size by adjusting the DPI, as currently
    implemented in gsd-a11y-preferences-dialog.c from gnome-settings-daemon.

 panels/universal-access/cc-ua-panel.c | 200 ++++++++++++++++++++++++++++++++--
 1 file changed, 193 insertions(+), 7 deletions(-)

commit 56b90b9fd4d4255946fb8a58026861c0ac1b1f70
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 18:08:50 2010 +0100

    universal-access: implement contrast option combo box
    
    The "Contrast" combo box sets and reads the GTK+ theme and icon theme
    values. The known contrast themes are stored in the combo box model; any
    other values are treated as "Normal" contrast.

 panels/universal-access/cc-ua-panel.c | 99 +++++++++++++++++++++++++++++++++++
 panels/universal-access/uap.ui        |  6 +++
 2 files changed, 105 insertions(+)

commit 4f3104ff8a7a46c06b75e4a37b76e34f3b5915fa
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 15:05:40 2010 +0100

    universal-access: set the default contrast selection to "Normal"

 panels/universal-access/uap.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e21b42eaaef51a8b68e8796e528f3f4d392a8acd
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 15:05:15 2010 +0100

    universal-access: hide unimplemented sections
    
    These sections are not yet implemented, so hide them from the user.

 panels/universal-access/uap.ui | 5 -----
 1 file changed, 5 deletions(-)

commit 628448e6b41bbfc8f85b138b45f1c0fabc1789ee
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 15:04:28 2010 +0100

    universal-access: connect mouse and keyboard preference buttons
    
    The mouse preferences button and keyboard preferences button should open
    the appropriate panel within the shell.

 panels/universal-access/cc-ua-panel.c | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

commit 9832c976752eabdf5de7baf3124a7bbe10bf0b73
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 15:02:48 2010 +0100

    universal-access: set pointer sections insensitive by default
    
    The section is "off" by default, so the section widgets should be marked
    insensitive.

 panels/universal-access/uap.ui | 3 +++
 1 file changed, 3 insertions(+)

commit e092e55306981da4935d19601d0e96fd785bcbf6
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 15:01:43 2010 +0100

    universal-access: Add a utility function to set up on/off toggle switches
    
    The universal-access settings panel contains several on/off radio button
    pairs that require special setup to work correctly with
    GConfPropertyEditor.

 panels/universal-access/cc-ua-panel.c | 89 ++++++++++++++++-------------------
 1 file changed, 40 insertions(+), 49 deletions(-)

commit 6609f63c97874d1fb0bcd555b6490ca4ed12d6c6
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 14:57:08 2010 +0100

    universal-access: Add formatting modelines for emacs users

 panels/universal-access/cc-ua-panel.c             | 3 ++-
 panels/universal-access/cc-ua-panel.h             | 3 ++-
 panels/universal-access/universal-access-module.c | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

commit 2ae31184993acb29a422f165aa899a3842f6c189
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 11:28:05 2010 +0100

    universal-access: add panel ID to .desktop file and extension point name
    
    Panels are now loaded using the identifier specified in the .desktop file

 panels/universal-access/cc-ua-panel.c                        | 2 +-
 panels/universal-access/gnome-universal-access.desktop.in.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit d8ae738efe63b733083ff40478333eab20105bfe
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jun 1 11:53:25 2010 +0100

    universal-access: Add hearing section implementation
    
    Connect the hearing section widgets to the corresponding gconf keys.

 panels/universal-access/cc-ua-panel.c | 163 ++++++++++++++++++++++++++++++----
 panels/universal-access/uap.ui        |  87 +++++++++---------
 2 files changed, 189 insertions(+), 61 deletions(-)

commit 6b40d1f89fc2fda66fbbcbd0c3e3a8a9863435f7
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed May 26 13:39:43 2010 +0100

    universal-access: implement main mouse settings
    
    Connect the main mouse settings to the corresponding gconf keys.

 panels/universal-access/cc-ua-panel.c | 122 +++++++++++++++++++++++-----------
 panels/universal-access/uap.ui        |   6 +-
 2 files changed, 85 insertions(+), 43 deletions(-)

commit 0171c05880070eefc19cf2f660a0a3b08a25d008
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed May 26 12:42:15 2010 +0100

    universal-access: implement main keyboard settings
    
    Connect the main keyboard settings to the corresponding gconf keys.

 panels/universal-access/cc-ua-panel.c | 160 +++++++++++++++++++++++++++++++++-
 panels/universal-access/uap.ui        |  21 ++---
 2 files changed, 170 insertions(+), 11 deletions(-)

commit 98ffb24bf14a793be81495d79c0b2ed3a41c6cef
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue May 25 11:17:03 2010 +0100

    Add initial universal-access module and UI

 configure.ac                                       |    2 +
 panels/Makefile.am                                 |    2 +-
 panels/universal-access/Makefile.am                |   31 +
 panels/universal-access/cc-ua-panel.c              |  142 +
 panels/universal-access/cc-ua-panel.h              |   74 +
 .../gnome-universal-access.desktop.in.in           |   11 +
 panels/universal-access/uap.ui                     | 2813 ++++++++++++++++++++
 panels/universal-access/universal-access-module.c  |   41 +
 8 files changed, 3115 insertions(+), 1 deletion(-)

commit 6f7d9d93640e52f622aa047c50c39b976a882fde
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 11:56:28 2010 +0100

    shell: don't call gtk_widget_show_all on the new panel
    
    Don't call gtk_widget_show_all when loading a panel as there may be widgets
    that the panel does not want to be visible initially.

 panels/network/gnome-network-properties.ui | 1 +
 shell/cinnamon-control-center.c               | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit b8d094cad7ace3b1750cd37c9332923896d36567
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu Jun 3 11:47:36 2010 +0100

    shell: load the X-GNOME-Settings-Panel ID into the data model
    
    Load the panel id from the .desktop file into the model so that it does not
    need to be loaded again later.

 shell/cc-shell-model.c       | 23 +++++++++++++++++++++--
 shell/cinnamon-control-center.c | 42 ++++++++----------------------------------
 2 files changed, 29 insertions(+), 36 deletions(-)

commit 3f06cc6fbbad2aa2fc40681210788279e8126176
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Thu Jun 3 13:22:00 2010 +0300

    Updated Hebrew translation.

 po/he.po | 44 +++++++++++++++++++++++++-------------------
 1 file changed, 25 insertions(+), 19 deletions(-)

commit eae240a3cf318c5506b3c1e96090591451a1e390
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Jun 3 11:31:03 2010 +0200

    Updated Spanish translation

 po/es.po | 43 ++++++++++++++++++++++++-------------------
 1 file changed, 24 insertions(+), 19 deletions(-)

commit 130843187f22611d471cdb0ddc2b82315e53cdc2
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 2 17:57:03 2010 +0100

    panels: make sure the Exec line is valid
    
    Allow the panel desktop files to launch the control center shell started
    with the relevant panel.

 .../default-applications/gnome-default-applications-panel.desktop.in.in | 2 +-
 panels/keybindings/gnome-keybindings-panel.desktop.in.in                | 2 +-
 panels/keyboard/gnome-keyboard-panel.desktop.in.in                      | 2 +-
 panels/mouse/gnome-mouse-panel.desktop.in.in                            | 2 +-
 panels/network/gnome-network-panel.desktop.in.in                        | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit d36df5e3e43f071c83f4c01b523e5407356c14fd
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 2 17:53:42 2010 +0100

    shell: Use X-GNOME-Settings-Panel key value for the command line parameter
    
    Read the X-GNOME-Settings-Panel key from the desktop file to start the
    correct panel from the command line parameter.

 shell/cinnamon-control-center.c | 21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)

commit 847bbba2b88179f30416819b78941b34fb9cc749
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 2 16:54:26 2010 +0100

    panels: make .desktop file naming more consistent
    
    Give the .desktop files for settings panels a more consistent naming
    scheme.

 configure.ac                                              | 10 +++++-----
 panels/default-applications/Makefile.am                   |  2 +-
 .../default-applications.desktop.in.in                    | 15 ---------------
 .../gnome-default-applications-panel.desktop.in.in        | 15 +++++++++++++++
 panels/keybindings/Makefile.am                            |  2 +-
 panels/keybindings/gnome-keybindings-panel.desktop.in.in  | 15 +++++++++++++++
 panels/keybindings/keybinding.desktop.in.in               | 15 ---------------
 panels/keyboard/Makefile.am                               |  2 +-
 panels/keyboard/gnome-keyboard-panel.desktop.in.in        | 15 +++++++++++++++
 panels/keyboard/keyboard.desktop.in.in                    | 15 ---------------
 panels/mouse/Makefile.am                                  |  2 +-
 panels/mouse/gnome-mouse-panel.desktop.in.in              | 15 +++++++++++++++
 panels/mouse/gnome-settings-mouse.desktop.in.in           | 15 ---------------
 panels/network/Makefile.am                                |  2 +-
 panels/network/gnome-network-panel.desktop.in.in          | 15 +++++++++++++++
 panels/network/gnome-network-properties.desktop.in.in     | 15 ---------------
 16 files changed, 85 insertions(+), 85 deletions(-)

commit d91e466f93456c056d6afff6619e39fa66cc8177
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 2 16:20:45 2010 +0100

    shell: Use the X-GNOME-Settings-Panel value to identify panels
    
    Use the custom .desktop file field to identify panels and make sure the
    panel implementations use the name to identify themselves.

 examples/cc-example-panel.c                        |  2 +-
 .../cc-default-applications-panel.c                |  2 +-
 panels/keybindings/cc-keybindings-panel.c          |  2 +-
 panels/keyboard/cc-keyboard-panel.c                |  2 +-
 panels/mouse/cc-mouse-panel.c                      |  2 +-
 panels/network/cc-network-panel.c                  |  2 +-
 shell/cinnamon-control-center.c                       | 91 +++++++++++++---------
 7 files changed, 59 insertions(+), 44 deletions(-)

commit 8aa419dabc70f872bb8f856988d019865edd5c8f
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed Jun 2 16:18:27 2010 +0100

    Add X-GNOME-Settings-Panel key to panel desktop files
    
    Add a key to identify the name of the extension that implements the panel.
    This can then be used in the shell to launch the appropriate panel.

 examples/gnome-example-panel.desktop.in.in                     | 2 +-
 panels/default-applications/default-applications.desktop.in.in | 1 +
 panels/keybindings/keybinding.desktop.in.in                    | 1 +
 panels/keyboard/keyboard.desktop.in.in                         | 1 +
 panels/mouse/gnome-settings-mouse.desktop.in.in                | 1 +
 panels/network/gnome-network-properties.desktop.in.in          | 1 +
 6 files changed, 6 insertions(+), 1 deletion(-)

commit e14803b391276260d25bf5cab506a898f9f3c4ff
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jun 1 08:38:34 2010 -0400

    shell: Improve keyboard navigation
    
    When using keynav in the category views, the fact that the categories are
    separate icon views leads to confusion, because each category will end up
    with its own selected icon, so that you can end up with multiple selected
    items (and the difference between focused/non-focused is not visually
    obvious here). Also, since the category views appear visually as a single
    unit, it is irritating that arrow keynav stops at category borders.
    
    This commit arranges things so that only one category will ever have a
    selected item by unselecting on focus-out. Furthermore, it uses the
    keynav-failed signal and some new GTK+ api to make arrow up/down work across
    category borders, in the expected way.

 configure.ac                 |   2 +-
 shell/cinnamon-control-center.c | 168 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 169 insertions(+), 1 deletion(-)

commit b754e8f6573264abb405b4da11a33801bf541119
Author: Bin Li <libin.charles@gmail.com>
Date:   Mon May 31 21:28:20 2010 +0200

    Catch yet another new error message from passwd
    
    Also deal with "it is too simplistic/systematic". Closes bug

 capplets/about-me/gnome-about-me-password.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0c30e688372a2d4245e9a069c7dcac5c423d95e2
Author: Bin Li <libin.charles@gmail.com>
Date:   Mon May 31 21:25:56 2010 +0200

    Catch "password too recent" error message
    
    Closes bug #620135.

 capplets/about-me/gnome-about-me-password.c | 3 +++
 1 file changed, 3 insertions(+)

commit e37945e29854c9603b7712a5c613cb09b8c3c847
Author: Ivar Smolin <okul@linux.ee>
Date:   Sun May 30 09:36:58 2010 +0300

    Estonian translation updated

 po/et.po | 454 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 263 insertions(+), 191 deletions(-)

commit c4ac0fcb086caaf1ac01945dc322ec50fdfb7df7
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Sat May 29 12:56:09 2010 +0300

    Updated Hebrew translation.

 po/he.po | 1472 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 795 insertions(+), 677 deletions(-)

commit 186a999d6e82eea5b908d3a040871e02ff470c36
Author: Andre Klapper <a9016009@gmx.de>
Date:   Thu May 27 20:57:18 2010 +0200

    Replace deprecated GTK+ symbols. See bug 572325.

 capplets/common/theme-thumbnail.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 46cd0b40f9350204b2907c773445f1f0f2c46ab4
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Wed May 26 01:04:46 2010 +0100

    Changing Print layout to Show layout
    
    Using new shared function from libgnomekbd

 configure.ac                                       |  2 +-
 .../keyboard/gnome-keyboard-properties-dialog.ui   |  6 ++---
 panels/keyboard/gnome-keyboard-properties-xkblt.c  | 28 ++++++++--------------
 3 files changed, 14 insertions(+), 22 deletions(-)

commit 27bf283683914d63296f9e95776e52093511aead
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue May 25 14:38:36 2010 +0100

    shell: set the window name and icon when opening an embedded settings panel
    
    This involves storing the default window title and icon name and resetting
    the title and icon name when an embedded settings panel is closed.
    
    The icon name and title for each panel is retrieved from the desktop file
    information and stored in the CcShellModel.

 shell/cc-shell-model.c       |  3 ++-
 shell/cc-shell-model.h       |  1 +
 shell/cinnamon-control-center.c | 43 ++++++++++++++++++++++++++++++++++++++++---
 3 files changed, 43 insertions(+), 4 deletions(-)

commit 4fcc633a36680573fb20f1a2db3bdb903e0c462d
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue May 25 14:22:25 2010 +0100

    shell: remove unused title label and ensure padding around each panel
    
    Make sure there is always 6 pixels padding around the embedded settings
    panel.
    
    Remove the unused title label and alignment.

 shell/cinnamon-control-center.c | 23 ++++++++++-------------
 shell/shell.ui               | 25 ++-----------------------
 2 files changed, 12 insertions(+), 36 deletions(-)

commit a2665e9f01a70326caac63052ad0d8e3ea5999f0
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue May 25 11:41:45 2010 +0200

    Fixed little typo in NEWS

 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6dfe986044dc403b4806c933e738ccf6fc6b8d66
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Jan 16 21:17:35 2010 -0500

    shell: Don't include both Personal and Look & Feel
    
    It isn't really clear what the distinction is.

 shell/gnomecc.menu | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

commit 6fd962552f828c0c26339af26e6e5428790c87ba
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Tue May 25 09:36:56 2010 +0200

    Updated Galician translations

 po/gl.po | 390 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 188 insertions(+), 202 deletions(-)

commit 83bedf633ceb3d3fc937ac366277fda1c61229e2
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue May 25 08:48:13 2010 +0200

    Updated Spanish translation

 po/es.po | 1132 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 540 insertions(+), 592 deletions(-)

commit 45c5eeb522b0da8146811d9690228c055f2afe5e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon May 24 23:09:36 2010 +0100

    Release 2.31.2

 NEWS         | 40 ++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 41 insertions(+), 1 deletion(-)

commit 465d0bb7d9960bc891b3c738f87b36e4a9d4e925
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon May 24 23:03:38 2010 +0100

    keyboard: consolidate multiple INCLUDES definitions into one

 panels/keyboard/Makefile.am | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

commit 8a9c632975afbe64ffdabc20c43a2b356724415b
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon May 24 22:48:34 2010 +0100

    shell: ensure translations are enabled
    
    Make sure gettext is initialised correctly and make sure strings in the
    GtkBuilder file are marked for translation.

 shell/control-center.c | 8 ++++++++
 shell/shell.ui         | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 8aedeff4caa817de053888b606cb7710baba5987
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon May 24 18:24:41 2010 +0100

    Disable Window settings from the build
    
    Window settings are not planned to be included in the next release, so
    remove the window settings capplet from the build.

 capplets/Makefile.am | 4 +---
 configure.ac         | 2 --
 po/POTFILES.in       | 3 ---
 po/POTFILES.skip     | 1 -
 4 files changed, 1 insertion(+), 9 deletions(-)

commit 19b7502f5efb35a133119df43520496ccfb9c8b3
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon May 24 17:42:52 2010 +0100

    keybindings: convert capplet to a settings panel
    
    Add a module and CcPanel implementation for keyboard shortcuts settings.

 capplets/Makefile.am                               |    2 -
 capplets/keybindings/00-multimedia-key.xml.in      |   35 -
 capplets/keybindings/01-desktop-key.xml.in         |   29 -
 capplets/keybindings/Makefile.am                   |   46 -
 capplets/keybindings/eggaccelerators.c             |  632 -------
 capplets/keybindings/eggaccelerators.h             |   95 -
 capplets/keybindings/eggcellrendererkeys.c         |  695 -------
 capplets/keybindings/eggcellrendererkeys.h         |   89 -
 capplets/keybindings/gnome-keybinding-properties.c | 1948 -------------------
 .../keybindings/gnome-keybinding-properties.ui     |  301 ---
 capplets/keybindings/gnome-keybindings.pc.in       |   10 -
 capplets/keybindings/keybinding.desktop.in.in      |   14 -
 configure.ac                                       |    6 +-
 panels/Makefile.am                                 |    2 +-
 panels/keybindings/00-multimedia-key.xml.in        |   35 +
 panels/keybindings/01-desktop-key.xml.in           |   29 +
 panels/keybindings/Makefile.am                     |   51 +
 panels/keybindings/cc-keybindings-panel.c          |  130 ++
 panels/keybindings/cc-keybindings-panel.h          |   74 +
 panels/keybindings/eggaccelerators.c               |  632 +++++++
 panels/keybindings/eggaccelerators.h               |   95 +
 panels/keybindings/eggcellrendererkeys.c           |  695 +++++++
 panels/keybindings/eggcellrendererkeys.h           |   89 +
 panels/keybindings/gnome-keybinding-properties.c   | 1949 ++++++++++++++++++++
 panels/keybindings/gnome-keybinding-properties.ui  |  319 ++++
 panels/keybindings/gnome-keybindings.pc.in         |   10 +
 panels/keybindings/keybinding.desktop.in.in        |   14 +
 panels/keybindings/keybindings-module.c            |   41 +
 panels/keybindings/wm-common.c                     |  184 ++
 panels/keybindings/wm-common.h                     |   17 +
 po/POTFILES.in                                     |   12 +-
 po/POTFILES.skip                                   |    2 +-
 32 files changed, 4375 insertions(+), 3907 deletions(-)

commit f112fc3a8edcf68c6c8f4cc8af575f978deb2bc4
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Mon May 24 11:17:04 2010 +0100

    default-applications: convert capplet to a settings panel
    
    Add a module and CcPanel implementation for default applications settings.

 capplets/Makefile.am                               |     2 -
 capplets/default-applications/Makefile.am          |    75 -
 .../default-applications-capplet.png               |   Bin 4377 -> 0 bytes
 .../default-applications.desktop.in.in             |    14 -
 .../gnome-at-commandline.in.in                     |   101 -
 .../gnome-at-session.desktop.in.in                 |    15 -
 capplets/default-applications/gnome-da-capplet.c   |   989 --
 capplets/default-applications/gnome-da-capplet.h   |   126 -
 capplets/default-applications/gnome-da-item.c      |   148 -
 capplets/default-applications/gnome-da-item.h      |    81 -
 capplets/default-applications/gnome-da-xml.c       |   323 -
 capplets/default-applications/gnome-da-xml.h       |    27 -
 .../gnome-default-applications-properties.ui       |  1383 --
 .../gnome-default-applications.pc.in               |    10 -
 .../gnome-default-applications.xml.in              |   434 -
 .../16x16/gnome-settings-default-applications.png  |   Bin 748 -> 0 bytes
 .../22x22/gnome-settings-default-applications.png  |   Bin 1310 -> 0 bytes
 .../24x24/gnome-settings-default-applications.png  |   Bin 1340 -> 0 bytes
 .../32x32/gnome-settings-default-applications.png  |   Bin 1727 -> 0 bytes
 .../48x48/gnome-settings-default-applications.png  |   Bin 2825 -> 0 bytes
 .../icons/svg/preferred-applications.svg           | 12680 -------------------
 configure.ac                                       |    10 +-
 panels/Makefile.am                                 |     2 +-
 panels/default-applications/Makefile.am            |    80 +
 .../cc-default-applications-panel.c                |   132 +
 .../cc-default-applications-panel.h                |    74 +
 .../default-applications-capplet.png               |   Bin 0 -> 4377 bytes
 .../default-applications-module.c                  |    41 +
 .../default-applications.desktop.in.in             |    14 +
 .../gnome-at-commandline.in.in                     |   101 +
 .../gnome-at-session.desktop.in.in                 |    15 +
 panels/default-applications/gnome-da-capplet.c     |   956 ++
 panels/default-applications/gnome-da-capplet.h     |   127 +
 panels/default-applications/gnome-da-item.c        |   148 +
 panels/default-applications/gnome-da-item.h        |    81 +
 panels/default-applications/gnome-da-xml.c         |   323 +
 panels/default-applications/gnome-da-xml.h         |    27 +
 .../gnome-default-applications-properties.ui       |  1383 ++
 .../gnome-default-applications.pc.in               |    10 +
 .../gnome-default-applications.xml.in              |   434 +
 .../16x16/gnome-settings-default-applications.png  |   Bin 0 -> 748 bytes
 .../22x22/gnome-settings-default-applications.png  |   Bin 0 -> 1310 bytes
 .../24x24/gnome-settings-default-applications.png  |   Bin 0 -> 1340 bytes
 .../32x32/gnome-settings-default-applications.png  |   Bin 0 -> 1727 bytes
 .../48x48/gnome-settings-default-applications.png  |   Bin 0 -> 2825 bytes
 .../icons/svg/preferred-applications.svg           | 12680 +++++++++++++++++++
 po/POTFILES.in                                     |    10 +-
 po/POTFILES.skip                                   |     4 +-
 48 files changed, 16639 insertions(+), 16421 deletions(-)

commit f67bdb711bba2ec700c662688a8772e544a39752
Author: noch <norayr@arnet.am>
Date:   Mon May 24 16:25:41 2010 +0500

    Modified LINGUAG.

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 91b82e4e0485e9b79963188797041fa6d776c498
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat May 22 23:59:10 2010 +0200

    Updated Galician translations

 po/gl.po | 726 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 346 insertions(+), 380 deletions(-)

commit 5e24f0464dc807b1bb7af1e866d7d14454fbf7f1
Author: Thomas Wood <thos@gnome.org>
Date:   Sat May 22 14:52:24 2010 +0100

    network: convert network capplet to a settings panel
    
    Add a module and CcPanel implementation for network proxy settings

 capplets/Makefile.am                               |    2 -
 capplets/network/Makefile.am                       |   50 -
 capplets/network/gnome-network-properties.c        | 1397 --------------------
 .../network/gnome-network-properties.desktop.in.in |   14 -
 capplets/network/gnome-network-properties.ui       | 1056 ---------------
 .../icons/16x16/gnome-network-properties.png       |  Bin 824 -> 0 bytes
 .../icons/16x16/gnome-network-properties.svg       |  364 -----
 .../icons/22x22/gnome-network-properties.png       |  Bin 1081 -> 0 bytes
 .../icons/22x22/gnome-network-properties.svg       |  452 -------
 .../icons/24x24/gnome-network-properties.png       |  Bin 1081 -> 0 bytes
 .../icons/32x32/gnome-network-properties.png       |  Bin 1855 -> 0 bytes
 .../icons/32x32/gnome-network-properties.svg       |  518 --------
 .../icons/48x48/gnome-network-properties.png       |  Bin 3191 -> 0 bytes
 .../icons/scalable/gnome-network-properties.svg    |  628 ---------
 configure.ac                                       |    4 +-
 panels/Makefile.am                                 |    2 +-
 panels/network/Makefile.am                         |   57 +
 panels/network/cc-network-panel.c                  |  137 ++
 panels/network/cc-network-panel.h                  |   79 ++
 panels/network/gnome-network-properties.c          | 1389 +++++++++++++++++++
 .../network/gnome-network-properties.desktop.in.in |   14 +
 panels/network/gnome-network-properties.ui         | 1088 +++++++++++++++
 .../icons/16x16/gnome-network-properties.png       |  Bin 0 -> 824 bytes
 .../icons/22x22/gnome-network-properties.png       |  Bin 0 -> 1081 bytes
 .../icons/24x24/gnome-network-properties.png       |  Bin 0 -> 1081 bytes
 .../icons/32x32/gnome-network-properties.png       |  Bin 0 -> 1855 bytes
 .../icons/48x48/gnome-network-properties.png       |  Bin 0 -> 3191 bytes
 .../icons/scalable/gnome-network-properties.svg    |  628 +++++++++
 panels/network/network-module.c                    |   41 +
 po/POTFILES.in                                     |    6 +-
 po/POTFILES.skip                                   |    2 +-
 31 files changed, 3440 insertions(+), 4488 deletions(-)

commit 9b78f236c19dc9c9f9bd13ff5bb96db26c20e117
Author: Thomas Wood <thos@gnome.org>
Date:   Sat May 22 12:35:25 2010 +0100

    Fix various issues raised by distcheck

 panels/keyboard/Makefile.am |  1 +
 po/POTFILES.in              | 28 +++++++++++++++-------------
 po/POTFILES.skip            |  2 +-
 3 files changed, 17 insertions(+), 14 deletions(-)

commit ad938356da20f08897952c5c6814fa677fd2a813
Author: Thomas Wood <thos@gnome.org>
Date:   Sat May 22 12:02:52 2010 +0100

    Make sure panels do not need to link against libcommon.la
    
    libcommon.la defines several new GTypes, so it cannot be loaded into the
    same process multiple times.
    
    Copy gconf-property-editor to libcinnamon-control-center as this is useful
    for all panels. However, it will need to be converted to GSettings in the
    near future.
    
    Copy capplet-stock-icons to the mouse panel, as it is not used in any other
    panels.
    
    Remove references to functions not yet implemented for panels (help,
    window icon, etc).

 libcinnamon-control-center/Makefile.am                |    6 +
 .../gconf-property-editor-marshal.c                |   41 +
 .../gconf-property-editor-marshal.h                |   15 +
 libcinnamon-control-center/gconf-property-editor.c    | 1801 ++++++++++++++++++++
 libcinnamon-control-center/gconf-property-editor.h    |  158 ++
 panels/keyboard/Makefile.am                        |    3 +-
 panels/keyboard/gnome-keyboard-properties.c        |    7 +-
 panels/mouse/Makefile.am                           |   10 +-
 panels/mouse/capplet-stock-icons.c                 |  101 ++
 panels/mouse/capplet-stock-icons.h                 |   62 +
 panels/mouse/gnome-mouse-properties.c              |    6 +-
 11 files changed, 2195 insertions(+), 15 deletions(-)

commit 538670298ef3302cc40347c92f91ef23b996ab0e
Author: Milan Bouchet-Valat <nalimilan@club.fr>
Date:   Sat May 22 12:10:05 2010 +0200

    [about-me] Don't hang when new and old password are too similar
    
    If new password is really close to the old one, 'passwd' says: "Bad: new password must be different than the old one". Handle this case too, instead of hanging.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=619354

 capplets/about-me/gnome-about-me-password.c | 2 ++
 1 file changed, 2 insertions(+)

commit 0b6a13e046eb2777a2f2842fa05d992fa9d88c38
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sat May 22 12:13:24 2010 +0100

    copyright lines fixed

 panels/keyboard/cc-keyboard-panel.c | 2 +-
 panels/keyboard/cc-keyboard-panel.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 7840afd7a1db92c1339f5a1ff78f110f561db0be
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Fri May 21 23:22:29 2010 +0100

    Converted keyboard capplet to panel

 capplets/Makefile.am                               |    2 -
 capplets/keyboard/.indent.pro                      |    2 -
 capplets/keyboard/Makefile.am                      |   42 -
 ...gnome-keyboard-properties-a11y-notifications.ui |  526 ------
 capplets/keyboard/gnome-keyboard-properties-a11y.c |  325 ----
 capplets/keyboard/gnome-keyboard-properties-a11y.h |   32 -
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 1857 --------------------
 .../gnome-keyboard-properties-layout-chooser.ui    |  315 ----
 .../gnome-keyboard-properties-model-chooser.ui     |  142 --
 .../gnome-keyboard-properties-options-dialog.ui    |   94 -
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  254 ---
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  100 --
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  483 -----
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  561 ------
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |  347 ----
 .../keyboard/gnome-keyboard-properties-xkbot.c     |  516 ------
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |  136 --
 capplets/keyboard/gnome-keyboard-properties.c      |  265 ---
 capplets/keyboard/keyboard.desktop.in.in           |   14 -
 capplets/keyboard/use_cases.txt                    |   42 -
 configure.ac                                       |    4 +-
 panels/Makefile.am                                 |    2 +-
 panels/keyboard/.indent.pro                        |    2 +
 panels/keyboard/Makefile.am                        |   58 +
 panels/keyboard/cc-keyboard-panel.c                |  139 ++
 panels/keyboard/cc-keyboard-panel.h                |   74 +
 ...gnome-keyboard-properties-a11y-notifications.ui |  526 ++++++
 panels/keyboard/gnome-keyboard-properties-a11y.c   |  325 ++++
 panels/keyboard/gnome-keyboard-properties-a11y.h   |   32 +
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 1857 ++++++++++++++++++++
 .../gnome-keyboard-properties-layout-chooser.ui    |  315 ++++
 .../gnome-keyboard-properties-model-chooser.ui     |  142 ++
 .../gnome-keyboard-properties-options-dialog.ui    |   94 +
 panels/keyboard/gnome-keyboard-properties-xkb.c    |  254 +++
 panels/keyboard/gnome-keyboard-properties-xkb.h    |  100 ++
 panels/keyboard/gnome-keyboard-properties-xkblt.c  |  483 +++++
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  561 ++++++
 panels/keyboard/gnome-keyboard-properties-xkbmc.c  |  347 ++++
 panels/keyboard/gnome-keyboard-properties-xkbot.c  |  516 ++++++
 panels/keyboard/gnome-keyboard-properties-xkbpv.c  |  136 ++
 panels/keyboard/gnome-keyboard-properties.c        |  218 +++
 panels/keyboard/keyboard-module.c                  |   41 +
 panels/keyboard/keyboard.desktop.in.in             |   14 +
 panels/keyboard/use_cases.txt                      |   42 +
 44 files changed, 6279 insertions(+), 6058 deletions(-)

commit a4c7d59ec4641accb9894a38c7c4d1a480ccb68d
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri May 21 21:47:00 2010 +0200

    Added sl for Slovenian translation

 help/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5dc6639148663e9bc2b7af506074d17d0309250d
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri May 21 21:46:21 2010 +0200

    Updated Slovenian translation

 help/sl/sl.po | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

commit 6a9537875863a8a56198c0ddae1246df53df0133
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Jan 16 00:15:39 2010 -0500

    Add more warnings to the build

 configure.ac | 57 ++++++++++++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 48 insertions(+), 9 deletions(-)

commit f24983504068553c02d182f3c19968c1428406b3
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri May 21 17:48:57 2010 +0100

    Remove capplets/localization directory
    
    The localization capplet was never implemented and is not planned for the
    next release of cinnamon-control-center.

 capplets/localization/Makefile.am                |  27 ---
 capplets/localization/localization.desktop.in.in |  14 --
 capplets/localization/localization.ui            | 250 -----------------------
 capplets/localization/main.c                     |  54 -----
 4 files changed, 345 deletions(-)

commit 95143ad4c789712a0ce207eecaddff08baeb8d55
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Fri May 21 14:48:34 2010 +0100

    Fix various issues raised by running distcheck

 Makefile.am                                        |  4 ++--
 configure.ac                                       |  1 -
 docs/reference/libcinnamon-control-center/Makefile.am |  2 +-
 po/POTFILES.in                                     | 22 ++++++++++------------
 po/POTFILES.skip                                   |  7 +++++++
 shell/Makefile.am                                  |  1 -
 6 files changed, 20 insertions(+), 17 deletions(-)

commit abfb0b96dcf075aaab60430eba6932d23746095c
Author: Thomas Thurman <tthurman@gnome.org>
Date:   Thu May 20 19:54:21 2010 -0400

    Updated Shavian translation

 po/en@shaw.po | 307 ++++++++++++++++++++++++----------------------------------
 1 file changed, 124 insertions(+), 183 deletions(-)

commit 8bb88eb18b36132a43a35747859fe0133b3c713e
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu May 20 17:50:56 2010 +0100

    mouse: convert the mouse capplet into a settings panel
    
    Add a module and CcPanel implementation for the mouse settings.

 Makefile.am                                       |    2 +-
 capplets/Makefile.am                              |    2 -
 capplets/mouse/Makefile.am                        |   35 -
 capplets/mouse/double-click-maybe.png             |  Bin 4643 -> 0 bytes
 capplets/mouse/double-click-off.png               |  Bin 4751 -> 0 bytes
 capplets/mouse/double-click-on.png                |  Bin 6360 -> 0 bytes
 capplets/mouse/gnome-mouse-accessibility.c        |  232 ---
 capplets/mouse/gnome-mouse-accessibility.h        |   29 -
 capplets/mouse/gnome-mouse-properties.c           |  647 --------
 capplets/mouse/gnome-mouse-properties.ui          | 1707 ---------------------
 capplets/mouse/gnome-settings-mouse.desktop.in.in |   14 -
 configure.ac                                      |    5 +-
 panels/Makefile.am                                |    1 +
 panels/mouse/Makefile.am                          |   46 +
 panels/mouse/cc-mouse-panel.c                     |  147 ++
 panels/mouse/cc-mouse-panel.h                     |   74 +
 panels/mouse/double-click-maybe.png               |  Bin 0 -> 4643 bytes
 panels/mouse/double-click-off.png                 |  Bin 0 -> 4751 bytes
 panels/mouse/double-click-on.png                  |  Bin 0 -> 6360 bytes
 panels/mouse/gnome-mouse-accessibility.c          |  232 +++
 panels/mouse/gnome-mouse-accessibility.h          |   29 +
 panels/mouse/gnome-mouse-properties.c             |  613 ++++++++
 panels/mouse/gnome-mouse-properties.ui            | 1707 +++++++++++++++++++++
 panels/mouse/gnome-settings-mouse.desktop.in.in   |   14 +
 panels/mouse/mouse-module.c                       |   41 +
 25 files changed, 2908 insertions(+), 2669 deletions(-)

commit 3748173b42305194642a918382f835e85f0682ca
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Thu May 20 10:01:13 2010 +0100

    Add an example implementation of a settings panel
    
    The example panel implements CcPanel and registers itself as extending the
    panel extension point. It provides a simple "Hello World" message. The
    example panel is not build by default, but enabled through a configure option.

 Makefile.am                                |   6 +-
 configure.ac                               |  15 ++++
 examples/Makefile.am                       |  27 +++++++
 examples/cc-example-panel.c                | 111 +++++++++++++++++++++++++++++
 examples/cc-example-panel.h                |  74 +++++++++++++++++++
 examples/example-module.c                  |  41 +++++++++++
 examples/gnome-example-panel.desktop.in.in |  11 +++
 7 files changed, 284 insertions(+), 1 deletion(-)

commit a4073bdb8e0972976d0221d0a9d13498dc8d33ec
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed May 19 16:53:15 2010 +0100

    shell: initialise the panel extension point
    
    Set up the extension point and load plugins that are available. If a plugin
    implements a particular panel, then load the CcPanel implementation instead
    of executing the application.

 shell/Makefile.am            |  1 +
 shell/cinnamon-control-center.c | 72 ++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 70 insertions(+), 3 deletions(-)

commit 65aea316b8b286d82f84dee4bc1a40bb43345a6d
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed May 19 16:51:40 2010 +0100

    Define the extension point name and support variables for panels
    
    The extension point name is used to identify modules that implement
    new settings panels using CcPanel.
    
    Also add various libtool flags that will be good practice for new panels.

 configure.ac                       | 19 +++++++++++++++++++
 libcinnamon-control-center/cc-shell.h |  3 +++
 2 files changed, 22 insertions(+)

commit 799134a7babf46d5d759e90f1051e84ad7c99c19
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed May 19 11:19:34 2010 +0100

    Remove libslab requirement and the internal copy of libslab
    
    libslab is no longer required since the new shell does not use it.

 Makefile.am                        |   14 +-
 configure.ac                       |   27 -
 libslab/.gitignore                 |   15 -
 libslab/Makefile.am                |   98 ---
 libslab/app-resizer.c              |  315 --------
 libslab/app-resizer.h              |   72 --
 libslab/app-shell.c                | 1409 ------------------------------------
 libslab/app-shell.h                |  141 ----
 libslab/application-tile.c         |  886 -----------------------
 libslab/application-tile.h         |   66 --
 libslab/bookmark-agent.c           | 1238 -------------------------------
 libslab/bookmark-agent.h           |   89 ---
 libslab/directory-tile.c           |  669 -----------------
 libslab/directory-tile.h           |   57 --
 libslab/document-tile.c            | 1099 ----------------------------
 libslab/document-tile.h            |   63 --
 libslab/double-click-detector.c    |   85 ---
 libslab/double-click-detector.h    |   58 --
 libslab/gnome-utils.c              |  346 ---------
 libslab/gnome-utils.h              |   40 -
 libslab/libslab-utils.c            |  716 ------------------
 libslab/libslab-utils.h            |   42 --
 libslab/nameplate-tile.c           |  290 --------
 libslab/nameplate-tile.h           |   55 --
 libslab/nld-marshal.list           |    1 -
 libslab/recent-files.c             |  294 --------
 libslab/recent-files.h             |   80 --
 libslab/search-bar.c               |  361 ---------
 libslab/search-bar.h               |   72 --
 libslab/search-context-picker.c    |  196 -----
 libslab/search-context-picker.h    |   58 --
 libslab/search-entry-watermark.svg |   58 --
 libslab/search-entry.c             |  145 ----
 libslab/search-entry.h             |   50 --
 libslab/shell-window.c             |  148 ----
 libslab/shell-window.h             |   65 --
 libslab/slab-gnome-util.c          |  471 ------------
 libslab/slab-gnome-util.h          |   76 --
 libslab/slab-section.c             |  194 -----
 libslab/slab-section.h             |   71 --
 libslab/slab.h                     |   45 --
 libslab/system-tile.c              |  285 --------
 libslab/system-tile.h              |   53 --
 libslab/themed-icon.c              |  165 -----
 libslab/themed-icon.h              |   53 --
 libslab/tile-action.c              |  108 ---
 libslab/tile.c                     |  621 ----------------
 libslab/tile.h                     |  143 ----
 48 files changed, 3 insertions(+), 11700 deletions(-)

commit 4ea04c81dc1a1a61c4f117ac6a4af8d39eadceb5
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Wed May 19 11:11:26 2010 +0100

    shell: add a new settings shell
    
    The new shell provides an implementation of CcShell and also removes the
    dependency on libslab.

 configure.ac                             |   4 +-
 shell/Makefile.am                        |  79 ++--
 shell/cc-shell-category-view.c           | 245 ++++++++++++
 shell/cc-shell-category-view.h           |  76 ++++
 shell/cc-shell-item-view.c               | 194 +++++++++
 shell/cc-shell-item-view.h               |  72 ++++
 shell/cc-shell-marshal.list              |   1 +
 shell/cc-shell-model.c                   | 101 +++++
 shell/cc-shell-model.h                   |  88 +++++
 shell/control-center.c                   | 289 ++++++--------
 shell/cinnamon-control-center.c             | 660 +++++++++++++++++++++++++++++++
 shell/cinnamon-control-center.desktop.in.in |  15 +
 shell/cinnamon-control-center.h             |  75 ++++
 shell/gnomecc.desktop.in.in              |  15 -
 shell/shell-search-renderer.c            | 299 ++++++++++++++
 shell/shell-search-renderer.h            |  74 ++++
 shell/shell.ui                           | 169 ++++++++
 17 files changed, 2243 insertions(+), 213 deletions(-)

commit b4fdb6db4ff7a0a261947ad7b350122e9ba7890b
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue May 18 16:09:26 2010 +0100

    Add libcinnamon-control-center with two new classes: CcShell and CcPanel
    
    CcShell is an abstract class that represents an instance of a control
    center shell. It provides access to some of the properties of the shell
    that panels will need to read or change. When a panel is created it has an
    instance of CcShell available that represents the current shell.
    
    CcPanel is an abstract class used to implement panels for the shell. A
    panel contains a collection of related settings that are displayed within
    the shell window.

 Makefile.am                                        |   5 +-
 autogen.sh                                         |   2 +
 configure.ac                                       |  15 +-
 docs/Makefile.am                                   |   3 +
 docs/reference/Makefile.am                         |   3 +
 docs/reference/libcinnamon-control-center/Makefile.am | 102 +++++++
 .../libcinnamon-control-center-docs.sgml              |  35 +++
 .../libcinnamon-control-center-sections.txt           |  43 +++
 .../libcinnamon-control-center/version.xml.in         |   1 +
 libcinnamon-control-center/Makefile.am                |  47 ++++
 libcinnamon-control-center/cc-panel.c                 | 303 +++++++++++++++++++++
 libcinnamon-control-center/cc-panel.h                 |  86 ++++++
 libcinnamon-control-center/cc-shell.c                 | 211 ++++++++++++++
 libcinnamon-control-center/cc-shell.h                 | 100 +++++++
 .../libcinnamon-control-center.pc.in                  |  12 +
 15 files changed, 965 insertions(+), 3 deletions(-)

commit eb0e3e77858895b8336d2b5196c4e9a3575f4c04
Author: Thomas Thurman <tthurman@gnome.org>
Date:   Wed May 12 18:41:40 2010 -0400

    Updated Shavian transliteration

 po/en@shaw.po | 1899 ++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 1412 insertions(+), 487 deletions(-)

commit 5f4189f17c8df0be344b422277045e8f69c99123
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Wed May 12 12:00:34 2010 +0530

    Updated Oriya Translation

 po/or.po | 220 ++++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 156 insertions(+), 64 deletions(-)

commit e1d7e956e90590674646d0c21d2065e96f2ea71e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon May 10 09:50:22 2010 +0200

    Updated Galician translation

 po/gl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 16fad4785d3b47376a3f4c52512e9ae7586c1717
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed May 5 12:34:01 2010 +0200

    Release 2.31.1

 NEWS         | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 56 insertions(+), 1 deletion(-)

commit 3778c03311fec2ac49905acc2ac57efa11aff00e
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Tue May 4 06:57:00 2010 +0300

    Estonian translation updated

 po/et.po | 174 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 90 insertions(+), 84 deletions(-)

commit c1906859ab15a578c568a87d4a06627d099ca7b5
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun May 2 14:04:17 2010 +0200

    Updated German translation

 po/de.po | 568 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 364 insertions(+), 204 deletions(-)

commit 1d10e4082781a1370362ee241551840488823cbc
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun May 2 11:04:11 2010 +0200

    Updated Spanish translation

 po/es.po | 207 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 156 insertions(+), 51 deletions(-)

commit cf5778fc4e440bf11afee63c99c3f65b56b3ec11
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat May 1 23:38:08 2010 +0200

    Updated Galician translation

 po/gl.po | 189 ++++++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 146 insertions(+), 43 deletions(-)

commit ab59c2a78f33c5e8a6b7a2614366f89f80901ded
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat May 1 21:53:25 2010 +0200

    Updated Norwegian bokmål translation

 po/POTFILES.in | 2 ++
 po/nb.po       | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 015bd8d46af29e437d9e943922626971b372cb44
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat May 1 21:53:09 2010 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 482 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 320 insertions(+), 162 deletions(-)

commit 65ab7d7270618d4918d6ff7bc9043998e83b415a
Author: Scott Reeves <sreeves@novell.com>
Date:   Fri Apr 30 15:15:51 2010 -0600

    Fix issue with g-c-c shell and YaST shell having same unique identifier

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fd1da29c0c748444a176a69b74c2cc917d4a2ba8
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:   Thu Apr 29 11:30:04 2010 +0200

    Remove trailing space in Malaysan translation, causing GConf error

 po/ml.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9f6155bff4b83d15e7f1ded53045c085ccbdf58e
Author: Norayr Chilingaryan <norayr@arnet.am>
Date:   Wed Apr 28 05:30:36 2010 -0700

    Updated Armenian translation.

 po/hy.po | 3421 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3421 insertions(+)

commit 05c1f574d52478cd679e105915a4c33c11f7ed5e
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Tue Apr 27 21:12:58 2010 +0100

    Proper response id for the help button
    
    https://bugzilla.gnome.org/show_bug.cgi?id=616917

 capplets/keyboard/gnome-keyboard-properties-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 99cb6a328a5c3df737aab8874b9d028e9c29dc18
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Mon Apr 26 08:03:21 2010 +0300

    Estonian translation updated

 po/et.po | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 61 insertions(+), 10 deletions(-)

commit c69631c5484c0b64fdd9f72c11c358e755a23b20
Author: Peteris Krisjanis <pecisk@gmail.com>
Date:   Sat Apr 24 21:15:16 2010 +0300

    Updated Latvian translation.

 po/lv.po | 3647 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1922 insertions(+), 1725 deletions(-)

commit c529ec11045cf61a71e42949a3d476dc5f435fef
Author: Andika Triwidada <andika@gmail.com>
Date:   Sat Apr 24 12:16:39 2010 +0700

    Updated Indonesian translation

 po/id.po | 605 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 284 insertions(+), 321 deletions(-)

commit 08fb04c5de6541e9557488519871dba7820a4c60
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Fri Apr 23 16:33:06 2010 +0530

    Updated Oriya Translation

 po/or.po | 952 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 506 insertions(+), 446 deletions(-)

commit d6e3a46d975b0b6c7ef96a045bdf8d58a5a275eb
Author: Ahmed Noor Kader Mustajir Md Eusoff <sir.ade@gmail.com>
Date:   Thu Apr 22 19:55:47 2010 +0300

    Updated Malay translation for cinnamon-control-center

 po/ms.po | 6422 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3788 insertions(+), 2634 deletions(-)

commit c2211ffe0b4f3404c83721e4f9f2ce22a7e33858
Author: Maxim Ermilov <zaspire@rambler.ru>
Date:   Tue Apr 20 03:14:48 2010 +0400

    Use accessor functions instead direct access
    
    https://bugzilla.gnome.org/show_bug.cgi?id=597888

 capplets/about-me/e-image-chooser.c                |  10 +-
 capplets/about-me/eel-alert-dialog.c               |  46 +++---
 capplets/about-me/gnome-about-me-fingerprint.c     |   2 +-
 capplets/about-me/gnome-about-me-password.c        |   2 +-
 capplets/appearance/appearance-desktop.c           |   9 +-
 capplets/appearance/appearance-font.c              |  29 ++--
 capplets/appearance/appearance-themes.c            |   2 +-
 capplets/appearance/theme-installer.c              |   2 +-
 capplets/common/file-transfer-dialog.c             |  13 +-
 capplets/common/gconf-property-editor.c            |  11 +-
 capplets/common/theme-thumbnail.c                  | 147 ++++++-----------
 capplets/display/scrollarea.c                      | 180 +++++++++++----------
 capplets/display/xrandr-capplet.c                  |  18 ++-
 capplets/keybindings/eggcellrendererkeys.c         |  16 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     |   7 +-
 capplets/mouse/gnome-mouse-accessibility.c         |   3 +-
 capplets/network/gnome-network-properties.c        |   9 +-
 capplets/network/gnome-network-properties.ui       |  37 ++++-
 capplets/windows/gnome-window-properties.c         |   3 +-
 font-viewer/font-view.c                            |  15 +-
 typing-break/drw-break-window.c                    |  48 +++---
 typing-break/drw-utils.c                           |   6 +-
 typing-break/drwright.c                            |   2 +-
 23 files changed, 314 insertions(+), 303 deletions(-)

commit 133fce3ac2d8a6b409de537431ad554b399387d2
Author: Shankar Prasad <sprasad@git.gnome.org>
Date:   Thu Apr 22 14:13:23 2010 +0530

    Updated Kannada translations

 po/kn.po | 1031 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 580 insertions(+), 451 deletions(-)

commit 50bd6a1cf0eee1bc0dffd521a9a59e0887c5eeaf
Author: Xandru Armesto <xandru@softastur.org>
Date:   Thu Apr 22 07:38:19 2010 +0200

    Updated asturian language

 po/ast.po | 3294 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1613 insertions(+), 1681 deletions(-)

commit a1ded0bc6424ebacf7c58853f67bac4bc0bcc6ac
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Wed Apr 21 23:45:57 2010 +0200

    Updated Catalan (Valencian) translation

 po/ca@valencia.po | 1002 ++++++++++++++++++++++++++++-------------------------
 1 file changed, 528 insertions(+), 474 deletions(-)

commit 56e8bc90d536a0809e91ddd29d9c25c8037305f7
Author: Claude Paroz <claude@2xlibre.net>
Date:   Wed Apr 21 23:30:30 2010 +0200

    Fixed French translation (Home)
    
    Fixes bug #616397

 po/fr.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4a55ed645271ad18b74442c705cfe0002bfb507c
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Apr 20 20:57:50 2010 +0200

    Updated Arabic translation

 po/ar.po | 326 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 200 insertions(+), 126 deletions(-)

commit 06b2ed09ad16186328f20bd0799b1d118b60aef1
Author: Laurent Coudeur <laurentc@iol.ie>
Date:   Mon Apr 19 18:14:34 2010 +0200

    Updated French translation

 po/fr.po | 326 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 195 insertions(+), 131 deletions(-)

commit 6b449a3a040aa78efc96987739154cf72c0518c0
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Apr 19 00:42:28 2010 +0100

    use new libgnomekbd function for default group switcher
    
    https://bugzilla.gnome.org/show_bug.cgi?id=603806

 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 70 +++++++---------------
 configure.ac                                       |  4 +-
 2 files changed, 24 insertions(+), 50 deletions(-)

commit 19ded6eb9b28383a3419e056c29e056d71748746
Author: Funda Wang <fwang@kenobi.mandriva.com>
Date:   Sat Apr 17 18:39:38 2010 +0200

    Updated zh_CN translation.

 po/zh_CN.po | 813 ++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 465 insertions(+), 348 deletions(-)

commit dd210c80ea06471c2bc07043621e48c887e60b3b
Author: Francisco Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Apr 17 16:46:03 2010 +0200

    Updated Galician translations

 po/gl.po | 136 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 91 insertions(+), 45 deletions(-)

commit 35facb9ee966cd9a10f6b348f427c62a6b3459cc
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Fri Apr 16 18:44:58 2010 +0200

    Updated Spanish translation

 po/es.po | 186 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 118 insertions(+), 68 deletions(-)

commit c13aaa0f638b94c034a45dcac5b5317e25a652a0
Author: Andreas Proschofsky <suka@gentoo.org>
Date:   Fri Apr 16 17:16:45 2010 +0200

    Use changes-prevent and changes-allow icons from the icon-them instead of
    the outdated lock-icons
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=408585

 capplets/about-me/gnome-about-me-password.c          |   4 ++--
 capplets/about-me/icons/Makefile.am                  |   2 --
 capplets/about-me/icons/gnome-about-me-lock-open.png | Bin 2913 -> 0 bytes
 capplets/about-me/icons/gnome-about-me-lock.png      | Bin 2978 -> 0 bytes
 4 files changed, 2 insertions(+), 4 deletions(-)

commit a0317f49fe7bd410a8deb30a8409553098fa1dee
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 16 17:07:48 2010 +0200

    Remove warning when compiling with app indicator

 typing-break/main.c | 2 ++
 1 file changed, 2 insertions(+)

commit 7cfd35fe844c974a16f1e5d36c513953bac1b06d
Author: Travis B. Hartwell <nafai@travishartwell.net>
Date:   Fri Apr 16 17:03:47 2010 +0200

    [typing-break] Add support for Ubuntu's app indicator instead of GtkStatusIcon

 configure.ac             |  25 +++++++
 typing-break/Makefile.am |   5 ++
 typing-break/drwright.c  | 167 +++++++++++++++++++++++++++++++++++++++++------
 typing-break/main.c      |   2 +
 4 files changed, 179 insertions(+), 20 deletions(-)

commit 95657cac93a84607eb0c37d5fa7a76425e789447
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Thu Apr 15 21:21:55 2010 +0100

    Added tooltips
    
    https://bugzilla.gnome.org/show_bug.cgi?id=615521

 .../keyboard/gnome-keyboard-properties-dialog.ui   | 44 +++++-----------------
 1 file changed, 9 insertions(+), 35 deletions(-)

commit c7ae2080a33c5429f5e2db50f4a1f3baa6f9ca11
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Wed Apr 14 23:48:22 2010 -0500

    Minor update for Crimean Tatar/Turkish translation

 po/crh.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c2d32853f4efc6a7dd23baaa7b30b70a333ec899
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Wed Apr 14 20:41:00 2010 -0500

    Minor update for Crimean Tatar/Turkish translation

 po/crh.po | 41 +++++++++++++++--------------------------
 1 file changed, 15 insertions(+), 26 deletions(-)

commit a73c9c2881bafcf65195d0fd0f50be3088b14b08
Author: Yannig Marchegay <yannig@marchegay.org>
Date:   Wed Apr 14 16:26:20 2010 +0200

    Occitan translation update

 po/oc.po | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit fbd2986fdfd0b2af2ef5ab20eb1d6e6b04b60da7
Author: Yannig Marchegay <yannig@marchegay.org>
Date:   Wed Apr 14 16:24:40 2010 +0200

    Occitan translation update

 po/oc.po | 3800 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 2070 insertions(+), 1730 deletions(-)

commit af55a7dedd8e7e68395cb87dd513afdcc807cbed
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Wed Apr 14 13:37:11 2010 +0200

    Added Galician translations

 po/gl.po | 169 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 93 insertions(+), 76 deletions(-)

commit 825434bbcd53285cc2f6101309fad3869b041b12
Author: Javier Jardón <jjardon@gnome.org>
Date:   Tue Apr 13 19:34:04 2010 +0200

    Remove GTK+ deprecated symbols
    
    https://bugzilla.gnome.org/show_bug.cgi?id=572325

 capplets/common/theme-thumbnail.c                  |  2 +-
 capplets/display/scrollarea.c                      | 28 ++++++++++++++--------
 capplets/display/xrandr-capplet.c                  |  4 ++--
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  2 +-
 configure.ac                                       |  2 +-
 font-viewer/font-view.c                            |  2 +-
 typing-break/drw-break-window.c                    |  4 ++--
 7 files changed, 26 insertions(+), 18 deletions(-)

commit 6012559536a7144b85571ffad6b69e0c6e0df646
Author: Javier Jardón <jjardon@gnome.org>
Date:   Sun Apr 11 18:16:59 2010 +0200

    Use only single GTK+ includes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=615292

 capplets/about-me/e-image-chooser.h         |  2 +-
 capplets/about-me/eel-alert-dialog.c        | 10 +++-------
 capplets/about-me/eel-alert-dialog.h        |  2 +-
 capplets/about-me/gnome-about-me-password.h |  2 +-
 4 files changed, 6 insertions(+), 10 deletions(-)

commit 4d7994841a221e53a446789b932caa31c851374d
Author: Liu Aleaxander <Aleaxander@gmail.com>
Date:   Tue Apr 13 15:19:01 2010 +0800

    Update Simplified Chinese translation for "_Detect Monitors"
    
    Update it, since it is translated to 'Delete Monitors".
    
    Signed-off-by: Liu Aleaxander <Aleaxander@gmail.com>

 po/zh_CN.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f5766ff5b7779d7a99ea22eb321d0adb2aa29ded
Author: Sandeep Shedmake <sshedmak@redhat.com>
Date:   Tue Apr 13 11:05:03 2010 +0530

    Updated Marathi Translations

 po/mr.po | 268 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 93 insertions(+), 175 deletions(-)

commit 260765e9da1619a1e30963bd27a2fe2425191c47
Author: Marios Zindilis <m.zindilis@dmajor.org>
Date:   Sat Apr 10 19:55:00 2010 +0300

    Updated Greek translation for cinnamon-control-center

 po/el.po | 872 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 382 insertions(+), 490 deletions(-)

commit bfb60ced57c7143c4fa9b30e863a318d9c9ec417
Author: Leonid Kanter <leon@asplinux.ru>
Date:   Fri Apr 9 23:45:48 2010 +0300

    Fixed https://bugzilla.gnome.org/show_bug.cgi?id=614921

 po/ru.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 945be99300771dc2eaa2a2891ff32a41212f803b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Apr 9 19:10:21 2010 +0200

    [about-me] Minor string updates
    
    Closes bug #615283.

 capplets/about-me/gnome-about-me-dialog.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 39bad922dd1b2765f9f3ff36574edf7bcba7cf65
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Apr 9 18:55:24 2010 +0200

    [display] Change icon name to preferences-desktop-display
    
    Use preferences-desktop-display instead of gnome-display-properties.
    Closes bug #614912.

 capplets/display/Makefile.am                       |  10 +-
 capplets/display/display-properties.desktop.in.in  |   2 +-
 .../icons/16x16/gnome-display-properties.png       | Bin 613 -> 0 bytes
 .../icons/16x16/preferences-desktop-display.png    | Bin 0 -> 613 bytes
 .../icons/22x22/gnome-display-properties.png       | Bin 866 -> 0 bytes
 .../icons/22x22/preferences-desktop-display.png    | Bin 0 -> 866 bytes
 .../icons/24x24/gnome-display-properties.png       | Bin 909 -> 0 bytes
 .../icons/24x24/preferences-desktop-display.png    | Bin 0 -> 909 bytes
 .../icons/32x32/gnome-display-properties.png       | Bin 1602 -> 0 bytes
 .../icons/32x32/preferences-desktop-display.png    | Bin 0 -> 1602 bytes
 .../icons/scalable/gnome-display-properties.svg    | 470 ---------------------
 .../icons/scalable/preferences-desktop-display.svg | 470 +++++++++++++++++++++
 capplets/display/xrandr-capplet.c                  |   4 +-
 13 files changed, 478 insertions(+), 478 deletions(-)

commit ea306a8307b1f96c3f5bcadb263dc13e03006f3e
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Wed Apr 7 12:13:56 2010 +0200

    Updated Slovenian translation

 po/sl.po | 338 +++++++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 274 insertions(+), 64 deletions(-)

commit 31b93bf8b095f660b4ee196dca6529b060d3a5d9
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Wed Apr 7 07:50:07 2010 +0200

    Updated Spanish translation

 po/es.po | 126 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 73 insertions(+), 53 deletions(-)

commit 5180a99017661d988010d4ad82bd365a1373c45b
Merge: 8a31bf8 c30ff27
Author: Federico Mena Quintero <federico@novell.com>
Date:   Tue Apr 6 18:31:07 2010 -0500

    Merge branch 'randr-set-as-default'
    
    This adds a "Make Default" button in gnome-display-properties, which is used
    to set up a systemwide default RANDR configuration.  For users which don't have
    a personal ~/.config/monitors.xml, then that systemwide configuration will
    be used instead.
    
    There is a PolicyKit helper program, gnome-display-properties-install-systemwide,
    which is used to create the file
    
      /etc/gnome-settings-daemon/xrandr/monitors.xml
    
    in a secure fashion.

commit 8a31bf892c69cbb04b82c06b7f23154cbc7b34a5
Author: Milan Bouchet-Valat <nalimilan@club.fr>
Date:   Tue Mar 23 20:43:16 2010 +0100

    [about-me] Don't hang when new and old password only differ in case
    
    'passwd' returns an error when the new and the old passwords only differ in case. If we don't handle this (unlikely) case, users-admin hangs. Assimilate this error to "passwords are too similar".

 capplets/about-me/gnome-about-me-password.c | 2 ++
 1 file changed, 2 insertions(+)

commit 4b3d1c8043da77d32f93673eccdd1e50146e111a
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Sat Apr 3 15:04:33 2010 -0500

    Minor update for Crimean Tatar/Turkish translation

 po/crh.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0fdf1a8ec8bec8ab8aa01f233bf4d0ac6380ddbe
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Sat Apr 3 13:47:52 2010 -0500

    Minor update for Crimean Tatar/Turkish translation

 po/crh.po | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 41058e1e77c46deae75c942e206c3d1c91ce4ce1
Author: Andika Triwidada <andika@gmail.com>
Date:   Sat Apr 3 18:25:56 2010 +0700

    Updated Indonesian translation

 po/id.po | 968 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 451 insertions(+), 517 deletions(-)

commit 904fb57e4400c947a55a4338ccdb2cf50d34b27f
Author: Ani Peter <apeter@redhat.com>
Date:   Wed Mar 31 14:37:20 2010 +0530

    Updated Malayalam Translation

 po/ml.po | 934 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 422 insertions(+), 512 deletions(-)

commit 4508f040cb3bc5435d80315b474cc2a91da227ee
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Wed Mar 31 11:18:20 2010 +0530

    Updated Gujarati Translations

 po/gu.po | 786 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 404 insertions(+), 382 deletions(-)

commit 1bbf9e7f2ff0a97ff80bc0f4a4eac1726a2a7b11
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Tue Mar 30 00:41:34 2010 -0500

    Updated Crimean Tatar (Crimean Turkish) translation

 po/crh.po | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit e9b7e0a11c12546040baaa9ea36f4a67ab1ade7a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Mar 29 16:42:20 2010 +0200

    Release 2.30.0

 NEWS         | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 54 insertions(+), 1 deletion(-)

commit 881512de6c45dd0c3abfa508beecbee3b6359c8f
Author: Jonh Wendell <jwendell@gnome.org>
Date:   Mon Mar 29 09:31:08 2010 -0300

    Given credits to pt_BR translator Antonio Fernandes

 po/pt_BR.po | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 24deaad0419741d88e24fd09dec9a613390cafe6
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Sat Mar 27 17:03:46 2010 +0100

    Updated Basque language

 po/eu.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 60fac22392234eece4bc69390c68dee4f87e5a5c
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Sat Mar 27 17:14:15 2010 +0200

    Updated Greek translation

 po/el.po | 647 ++++++++++++++++-----------------------------------------------
 1 file changed, 159 insertions(+), 488 deletions(-)

commit e0f2561c5c13cbc8d0f004a544545929abb33f26
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Sat Mar 27 16:15:39 2010 +0100

    Updated Danish translation

 po/da.po | 846 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 448 insertions(+), 398 deletions(-)

commit a48bad057b5f91442083c44cd7c099c082702236
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Sat Mar 27 20:28:22 2010 +0600

    Updated Bengali translation

 po/bn.po | 566 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 299 insertions(+), 267 deletions(-)

commit 1959edf6a2d1e346668191684fca50143a49b092
Author: Ivar Smolin <okul@linux.ee>
Date:   Sat Mar 27 15:44:22 2010 +0200

    Estonian translation updated

 po/et.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 11b2ca885c77e5476ddde4214af32a50d5170f9c
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Mar 27 14:18:36 2010 +0100

    Updated Spanish translation

 po/es.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 46090c0cb2cd19da00b64eb98132c9f642e849c1
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Mar 27 20:52:58 2010 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 56 +++++++++++++++++++++++++++++++-------------------------
 po/zh_TW.po | 56 +++++++++++++++++++++++++++++++-------------------------
 2 files changed, 62 insertions(+), 50 deletions(-)

commit a95472c2d5d52eb49d96d415f7c555021845e779
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Sat Mar 27 00:33:00 2010 +0200

    Updated Lithuanian translation.

 po/lt.po | 860 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 467 insertions(+), 393 deletions(-)

commit eb84897d4353eb161ad5d9727a6c6c2e425324b8
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Fri Mar 26 18:26:32 2010 +0200

    Updated Ukrainian translation

 po/uk.po | 568 ++++++++++++++++++++-------------------------------------------
 1 file changed, 181 insertions(+), 387 deletions(-)

commit 1ac3b9a802a9c2222a2a9d6369d6a6310168fb5f
Author: Miloš Popović <mpopovic@src.gnome.org>
Date:   Wed Mar 24 00:25:12 2010 +0100

    Updated Serbian translations

 po/sr.po       | 873 ++++++++++++++++++++++++++++++---------------------------
 po/sr@latin.po | 873 ++++++++++++++++++++++++++++++---------------------------
 2 files changed, 930 insertions(+), 816 deletions(-)

commit 314ab51f6f4402e55f8d179b8a8e94785d69d5e4
Author: Michal Schmidt <mschmidt@redhat.com>
Date:   Tue Mar 23 19:28:42 2010 +0100

    I noticed that gnome-about-me silently forgets all information I put
    into it and on the next run all fields are empty again.
    
    The GTK+ 2.19.2 release notes say:
    * Bugs fixed:
      ...
      591085 GtkBuilder object ID bounded to GtkWidget "name" property
    
    Apparently gtk_widget_get_name() was never supposed to return the ID of
    the widget, so about_me_focus_out() worked only by mistake until GTK+
    fixed the "bug".

 capplets/about-me/gnome-about-me.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 41586c16b9672d26f54d465d6571df39a8aee8c8
Author: Michal Schmidt <mschmidt@redhat.com>
Date:   Tue Mar 23 19:28:37 2010 +0100

    about_me_destroy() frees the whole data structure and it tries to do the
    right thing by setting "me = NULL" afterwards, but "me" in this case is
    not the global variable, but the local one which shadows it. So the
    global "me" remains non-NULL and when later about_me_focus_out() is
    called, it cannot know it should return early.
    
    It only makes sense for about_me_destroy() to operate on the global
    "me", so there's no point in passing it as a parameter.

 capplets/about-me/gnome-about-me.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 601c160350f35f1f83a3eef18f480258bb750419
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Tue Mar 23 12:25:06 2010 +0100

    Updated Basque language

 po/eu.po | 84 +++++++++++++++++++++++-----------------------------------------
 1 file changed, 30 insertions(+), 54 deletions(-)

commit 8a271cb64c045b7ff289fd9721603b64c947bd37
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Tue Mar 23 14:55:07 2010 +0530

    Updated Gujarati Translations

 po/gu.po | 200 +++++++++++++++++++--------------------------------------------
 1 file changed, 59 insertions(+), 141 deletions(-)

commit ec9a25f37841d1efb5fabf5f8459f42f468ea83e
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Tue Mar 23 10:09:05 2010 +0200

    Estonian translation updated

 po/et.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 3c093f5cf9d29bc5125a85673bd70c0455a6c01f
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Mon Mar 22 19:28:18 2010 +0200

    Estonian translation updated

 po/et.po | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit 681a19d55c12555710ba223fccf14f204e812ed7
Author: Adi Roiban <adi@roiban.ro>
Date:   Mon Mar 22 01:23:14 2010 +0200

    Update Romanian translation

 po/ro.po | 651 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 249 insertions(+), 402 deletions(-)

commit 877774ee8cf94a0fef1659b87313551f33519200
Author: Thanos Lefteris <alefteris@gmail.com>
Date:   Sun Mar 21 00:09:46 2010 +0200

    Updated Greek translation for cinnamon-control-center

 po/el.po | 1435 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 899 insertions(+), 536 deletions(-)

commit 8d7991990c3521ecf620dde5f6a4d3716bbfcc2e
Author: A S Alam <aalam@users.sf.net>
Date:   Sat Mar 20 18:42:51 2010 +0530

    update Punjabi Translation

 po/pa.po | 454 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 241 insertions(+), 213 deletions(-)

commit 64f1ab990e70a178ba472f6476e484b3d141fa25
Author: vasudeven <agnihot3@gmail.com>
Date:   Sat Mar 20 17:21:41 2010 +0530

    updated Tamil translation

 po/ta.po | 163 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 89 insertions(+), 74 deletions(-)

commit 637c82ce8e00762abb69118b0d45883926b2ef29
Author: Leonid Kanter <leon@asplinux.ru>
Date:   Sat Mar 20 11:21:10 2010 +0200

    Update Russian translation from Юрий Козлов

 po/ru.po | 40 +++++++++++++++++++++-------------------
 1 file changed, 21 insertions(+), 19 deletions(-)

commit 4778d66745b91605883eb4b6f87e0d2e28547611
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sat Mar 20 00:08:05 2010 +0100

    Update Czech translation

 po/cs.po | 776 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 388 insertions(+), 388 deletions(-)

commit c30ff27d1f0d8ea5ad17a3699ef57c027dcad9d8
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Mar 19 16:44:01 2010 -0600

    Show a success dialog when the configuration is saved
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit 54391e5713b1cc20f082ba1be8940c920bb6c880
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Mar 19 15:10:24 2010 -0600

    Oops, open the temp file for writing
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/gnome-display-properties-install-systemwide.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 95089f7762b723dcddea7a04dbf3adf0c18a22b6
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Mar 19 15:09:19 2010 -0600

    Fix missing newlines in error messages
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/gnome-display-properties-install-systemwide.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 518b8879377934116fd80a5be0bb039b622c7211
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 11 17:34:17 2010 -0600

    Actually call pkexec(1) to set the systemwide configuration
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/Makefile.am      |  1 +
 capplets/display/xrandr-capplet.c | 40 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

commit f5195114456e5f0014b520461b90e374727654da
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Thu Mar 18 23:53:17 2010 -0500

    Updated Crimean Tatar (Crimean Turkish) translation

 po/crh.po | 927 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 478 insertions(+), 449 deletions(-)

commit 514610cee0da5335b4c6715943d99f1d343d3269
Author: Tommi Vainikainen <thv@iki.fi>
Date:   Thu Mar 18 15:02:14 2010 +0200

    Updated Finnish translation

 po/fi.po | 928 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 485 insertions(+), 443 deletions(-)

commit 1665cdbed5e5cbfa3c3b387bfc35b2b5f668b33e
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Mar 17 13:39:06 2010 -0600

    RANDR - Don't show a tooltip while a monitor is being dragged
    
    Otherwise the tooltip obscures what you are dragging.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

commit 74faa4859bf258a4487d9ad79f7c5c99de69d21c
Author: Bruce Cowan <bcowan@fastmail.co.uk>
Date:   Wed Mar 17 22:48:58 2010 +0000

    Updated British English translation

 po/en_GB.po | 34 ++++++++++++++++++++--------------
 1 file changed, 20 insertions(+), 14 deletions(-)

commit 954fab6c0f8017514e38a27aeed9a2fa3c167f36
Author: Leonid Kanter <leon@asplinux.ru>
Date:   Wed Mar 17 11:26:15 2010 +0200

    Update Russian translation by Yuri Myasoedov

 po/ru.po | 132 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 79 insertions(+), 53 deletions(-)

commit cd764262e1bf42e7a52ea4d14ddd0808259f9f76
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Tue Mar 16 18:25:24 2010 +0100

    Updated Basque language

 po/eu.po | 78 ++++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 51 insertions(+), 27 deletions(-)

commit 8b24306672fef9723596368aa69b49629b3c6dae
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Wed Mar 10 22:11:51 2010 +0100

    Updated Basque language

 po/eu.po | 32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

commit eb5b0b6e43aa4f466b201c37a120fb1130700163
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Mar 15 01:01:27 2010 +0000

    Updated Portuguese translation

 po/pt.po | 853 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 452 insertions(+), 401 deletions(-)

commit 5b73ece20b906a45ddb04657fb2b2bf77e22f5da
Author: Og B. Maciel <ogmaciel@gnome.org>
Date:   Sun Mar 14 11:17:11 2010 -0400

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

commit f064271cbabb08f0ad3d14bd99b3ad4f423e0b36
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   Sat Mar 13 21:14:23 2010 +0100

    Update Galician translation

 po/gl.po | 41 ++++++++++++++++++++++++-----------------
 1 file changed, 24 insertions(+), 17 deletions(-)

commit ef1e3a043608ccd26f6b39ab2cbf6d986975d76c
Author: Torstein Adolf Winterseth <kvikende@fsfe.org>
Date:   Sat Mar 13 19:58:11 2010 +0100

    Updated Norwegian Nynorsk translation

 po/nn.po | 964 +++++++++------------------------------------------------------
 1 file changed, 139 insertions(+), 825 deletions(-)

commit 247d6faf1de3c54ea41971e93c3ac37546f71a6c
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Sat Mar 13 16:11:20 2010 +0100

    Updated Italian translation

 po/it.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4f86f224fe0387a5144a994dfdc010a7deb401c7
Author: Luca Ferretti <lferrett@gnome.org>
Date:   Sat Mar 13 16:10:44 2010 +0100

    Updated Italian translation

 po/it.po | 923 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 482 insertions(+), 441 deletions(-)

commit 5197c695a086a99f0e48c1e5587c4c831673ff00
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Mar 13 23:29:19 2010 +0900

    Updated Korean translation

 po/ko.po | 50 +++++++++++++++++++++++++++++---------------------
 1 file changed, 29 insertions(+), 21 deletions(-)

commit 19f2644522d7751b52e16820a64039a481424fde
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 11 14:57:36 2010 -0600

    Add a policy file for RANDR settings
    
    This is based on gnome-color-manager/policy/
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/Makefile.am               | 11 +++++++++++
 capplets/display/org.gnome.randr.policy.in | 29 +++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

commit 5ed6785261cc0fd504ffce6c51d994da9eec80ac
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 11 14:18:08 2010 -0600

    Install the PolicyKit helper in $(sbindir), not $(bindir)
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/Makefile.am | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 673cd05b3f146de280bc8e2cf0889ca32bfe60d0
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 11 13:11:05 2010 -0600

    Separate glib check in configure.ac
    
    The PolicyKit helper for the display capplet only needs glib,
    no other extra libraries.  So, make it link only with that.

 configure.ac | 2 ++
 1 file changed, 2 insertions(+)

commit feeb3d57311df2c09d46b1f2d1cc4c2796c51652
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 11 12:43:42 2010 -0600

    Compilation fixes
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/Makefile.am                                   | 8 +++++++-
 capplets/display/gnome-display-properties-install-systemwide.c | 6 +++++-
 2 files changed, 12 insertions(+), 2 deletions(-)

commit 239463ae48368efb0371aae9906bc5afd5a4cd8a
Author: Ivar Smolin <okul@linux.ee>
Date:   Thu Mar 11 18:48:01 2010 +0200

    Estonian translation updated

 po/et.po | 61 ++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 44 insertions(+), 17 deletions(-)

commit 0a609927878d6e56bfe2683d3497ec9bfd279f9a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Mar 11 07:51:58 2010 +0100

    Updated Spanish translation

 po/es.po | 29 ++++++++++++++---------------
 1 file changed, 14 insertions(+), 15 deletions(-)

commit 91b3751b6707c84bded32f8f0f73e073fcf4b3fd
Author: Joan Duran <jdufi@gmail.com>
Date:   Thu Mar 11 07:40:12 2010 +0100

    Updated Catalan translation

 po/ca.po | 153 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 84 insertions(+), 69 deletions(-)

commit da0112c8186ef31e8cd2fe09a0a0d3d4cb61da61
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Mar 10 17:01:40 2010 -0600

    PolicyKit helper to copy a RANDR profile to a systemwide location
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 .../gnome-display-properties-install-systemwide.c  | 268 +++++++++++++++++++++
 1 file changed, 268 insertions(+)

commit 66d869fe1c127e584072c29085ef8dee24a704f4
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Mar 10 22:04:58 2010 +0100

    Updated Swedish translation

 po/sv.po | 32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

commit eaa7342a04456fd360e6ba49035933dc857eda0a
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Mar 10 12:33:51 2010 -0600

    Factor out function to sanitize and save the RANDR configuration
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

commit 8c7020b8324f8c15100a7dff2225958ae3b8f83b
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Mar 10 12:17:53 2010 -0600

    Add a 'Make Default' button
    
    This button will use a PolicyKit helper to save the display configuration
    to a systemwide file.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/display-capplet.ui | 20 ++++++++++++++++++--
 capplets/display/xrandr-capplet.c   |  5 +++++
 2 files changed, 23 insertions(+), 2 deletions(-)

commit e34e6b4eebbb957107e88334faef2ed8a02d5eea
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 10 12:18:52 2010 +0000

    Calls gdk_threads_enter/leave without gdk_threads_init
    
    Fix GTK+ multi-threading.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=610003

 capplets/appearance/appearance-main.c | 3 +++
 capplets/appearance/theme-installer.c | 3 +++
 2 files changed, 6 insertions(+)

commit de51788c8dc7d86992dc3a79899e465479a94e0f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Mar 10 12:11:30 2010 +0000

    Lock all the screens
    
    Gray out all the monitors properly when the typing break is on.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=492974

 typing-break/drw-break-window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 06a65c388beeb68bbed93dab8285d19dd81d59c8
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Mar 9 11:45:55 2010 +0100

    Updated Slovenian translation

 po/sl.po | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 64b1fa3315179522514b2d1f804f2c79cfc7dd12
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Tue Mar 9 11:04:35 2010 +0100

    Updated Polish translation

 po/pl.po | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 3920480bb83eb63d348e2772bd6cff028cd6a188
Author: Claude Paroz <claude@2xlibre.net>
Date:   Tue Mar 9 10:37:40 2010 +0100

    Updated French translation

 po/fr.po | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

commit 9c6af8a111cbc3c0d0d3feb0d3cde7e6f7b06424
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Mar 9 08:04:01 2010 +0100

    Updated Spanish translation

 po/es.po | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 40efe4d858168cd566d342fe4a77fe281dd850bd
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Mar 9 08:23:12 2010 +0200

    Updated Bulgarian translation

 po/bg.po | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 36bcafb96639101ec92bc85ffede215290390f7e
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Mon Mar 8 22:59:35 2010 +0100

    Updated German translation

 po/de.po | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

commit a2b26fed79752f265aa386800b4ebae9087b34cc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Mar 8 21:52:06 2010 +0100

    Updated Hungarian translation

 po/hu.po | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit f57c37091757c787a49399bcba1477a2af5a1045
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Mar 8 21:43:19 2010 +0100

    Mark a string for translation. Fixes #612015

 capplets/appearance/gnome-wp-item.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e7d0577a6167b325bd8ed6634c4f99b5b11ae47f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Mar 8 13:18:49 2010 +0100

    Release 2.29.92

 NEWS         | 21 +++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 22 insertions(+), 1 deletion(-)

commit 79ffc5019eff6eb252289cf56ae20ad1dcba6f14
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Mar 6 23:05:52 2010 +0900

    Updated Korean translation

 po/ko.po | 1019 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 559 insertions(+), 460 deletions(-)

commit e217d55a29440774363f62d00894334850597b03
Author: Claude Paroz <claude@2xlibre.net>
Date:   Fri Mar 5 22:04:58 2010 +0100

    Updated French translation
    
    Contributed by Laurent Coudeur and Claude Paroz

 po/fr.po | 789 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 387 insertions(+), 402 deletions(-)

commit 51b1b02478157196822ee5b6256084165fa370ef
Author: Leonid Kanter <leon@asplinux.ru>
Date:   Fri Mar 5 15:18:16 2010 +0200

    update Russian translation

 po/ru.po | 1303 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 514 insertions(+), 789 deletions(-)

commit 047c4507f45d6c9de17e9e812423e7ab94b12dd2
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Mar 5 11:25:02 2010 +0100

    Updated Hungarian translation

 po/hu.po | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

commit 326df308494f4482f5c00f0cfdb37115be32286f
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Mar 5 11:23:16 2010 +0100

    Updated Hungarian translation

 po/hu.po | 177 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 94 insertions(+), 83 deletions(-)

commit 113d10695d50e99f596938e16979b4a20a0e75a2
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   Fri Mar 5 00:12:26 2010 +0100

    Update Galician translation

 po/gl.po | 151 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 67 insertions(+), 84 deletions(-)

commit 05065b2ac6de171261e44782199c3c71f95006dc
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Thu Mar 4 23:33:04 2010 +0100

    Updated Basque language

 po/eu.po | 786 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 387 insertions(+), 399 deletions(-)

commit ec7996069f397d1024d9ce92c80594118669c4dd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 3 16:17:28 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 170 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 88 insertions(+), 82 deletions(-)

commit 608df958b07064d1e73804eab302ada4c3e75916
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Sun Feb 28 23:09:40 2010 +0900

    Updated Japanese translation.
      Merged translation by Hideki Yamane posted on l10n.gnome.org.

 po/ja.po | 961 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 392 insertions(+), 569 deletions(-)

commit 764d50b2ce4ef7c8fcace01172fde15fa7675520
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Feb 28 13:09:09 2010 +0100

    Updated Swedish translation

 po/sv.po | 322 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 168 insertions(+), 154 deletions(-)

commit 842f62bb278b642146d3c662237b8055b89b23c0
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Feb 27 20:42:27 2010 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 187 +++++++++++++++++++++++++++++++++---------------------------
 po/zh_TW.po | 187 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 208 insertions(+), 166 deletions(-)

commit 5750a934eb9215b751ecc7c08007ac5f53fe5fce
Author: Torstein Adolf Winterseth <kvikende@yahoo.no>
Date:   Sat Feb 27 13:30:22 2010 +0100

    Updated Norwegian Nynorsk translation

 po/nn.po | 4302 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 2464 insertions(+), 1838 deletions(-)

commit 08010313b737815314aa926fc734c6c23de5dd28
Author: Liel Fridman <lielft@gmail.com>
Date:   Sat Feb 27 10:00:32 2010 +0200

    Updated Hebrew translation

 po/he.po | 1147 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 658 insertions(+), 489 deletions(-)

commit a0a68d37a50e1c0b35f6182c9a3d3e18236c8f01
Author: Antonio Fernandes C. Neto <fernandes@pelivre.org>
Date:   Thu Feb 25 22:51:21 2010 -0300

    Updated Brazilian Portuguese translation
    
    Reviewer: Vladimir Melo <vmelo@gnome.org>

 po/pt_BR.po | 114 +++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 62 insertions(+), 52 deletions(-)

commit a08eaaef4d57e5d9d70988d851d941f10b643db2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Feb 25 12:43:37 2010 +0100

    Updated Polish translation

 po/pl.po | 108 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 56 insertions(+), 52 deletions(-)

commit c533e7b2351e41178bf5cec9bb6cf8f3e08b1c4b
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Feb 24 20:44:29 2010 +0200

    Updated Arabic translation

 po/ar.po | 100 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 52 insertions(+), 48 deletions(-)

commit de605a5e7ee54726b661b63d9557070d395f378a
Author: Bruce Cowan <bcowan@fastmail.co.uk>
Date:   Wed Feb 24 16:43:38 2010 +0000

    Update British English translation

 po/en_GB.po | 831 ++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 439 insertions(+), 392 deletions(-)

commit 3b60923dcb26d4620cca95debab28ef11964156c
Author: Frédéric Péters <fpeters@0d.be>
Date:   Wed Feb 24 15:19:56 2010 +0100

    Release 2.29.91

 NEWS         | 26 ++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 27 insertions(+), 1 deletion(-)

commit 1175e0995969cfbd002fab7e4eefeaf263e1c38e
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Tue Feb 23 22:35:23 2010 +0100

    Updated German translation

 po/de.po | 210 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 112 insertions(+), 98 deletions(-)

commit def5c0a3f6699304e90abd1482c56e1a84e64bea
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Tue Feb 23 20:36:03 2010 +0100

    Updated German translation

 po/de.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a1bb3bfe78edc9d28e30b334e1e998dcbc24f722
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Feb 23 19:59:20 2010 +0100

    Updated Spanish translation

 po/es.po | 118 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 63 insertions(+), 55 deletions(-)

commit b99e5c90247e9832209df91a308c52e92a044b80
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Feb 23 15:51:29 2010 +0100

    Updated Slovenian translation

 po/sl.po | 112 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 60 insertions(+), 52 deletions(-)

commit 92b90c09a96626f787677891025cf354163bec25
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Feb 23 08:56:03 2010 +0200

    Updated Bulgarian translation

 po/bg.po | 298 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 153 insertions(+), 145 deletions(-)

commit 4b224e492750e639d2e3a906be3a8433c71cc0ac
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Feb 22 21:01:16 2010 -0600

    bgo#554263 - Allow compiling without the RANDR libraries
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/Makefile.am |  5 +----
 configure.ac         | 17 +----------------
 2 files changed, 2 insertions(+), 20 deletions(-)

commit e5896d700ef75cd3469fafa3e4b96a23e3fed89d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Feb 18 15:55:35 2010 -0500

    Add a option to span background images across monitors
    
    This feature was lost in 2.28, and people miss it. See bug 609809.
    Note that this adds one new string, 'Span', which appears in the 'Style'
    combobox in the background tab of the appearance capplet.

 capplets/appearance/data/appearance.ui | 3 +++
 capplets/appearance/gnome-wp-item.c    | 1 +
 2 files changed, 4 insertions(+)

commit 03540241796c52fb3a72b7f1cd76a2e55f5c81dc
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Tue Feb 23 01:29:02 2010 +0200

    Updated Arabic translation

 po/ar.po | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

commit 09485b4e6b64f554936608ade5242d192ff4aab1
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Feb 22 17:21:36 2010 -0600

    Make display-properties.desktop consistent with the 'monitors' terminology
    
    We now just use 'monitor' instead of a combination of monitor/screen/display/etc.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/display-properties.desktop.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 26d9685c677ddc3a920a03c380137625cd02305a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sun Feb 21 18:33:11 2010 +0100

    Updated Polish translation

 po/pl.po | 1216 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 690 insertions(+), 526 deletions(-)

commit d5ac1e9c980e7d1703289b5da1e10ac4720806a3
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   Sat Feb 20 22:30:57 2010 +0100

    Updated Galician Translation

 po/gl.po | 81 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 47 insertions(+), 34 deletions(-)

commit 7eaee645db88c9bdda4114c69e7398c916f47706
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Sat Feb 20 22:38:48 2010 +0200

    Updated Arabic translation

 po/ar.po | 798 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 417 insertions(+), 381 deletions(-)

commit 751ada1138553720a57ebb8cd96eb3e8b38ca9b9
Author: Vladimir Melo <vmelo@gnome.org>
Date:   Sat Feb 20 07:52:26 2010 -0500

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 79 +++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 46 insertions(+), 33 deletions(-)

commit 1e13f4a2ebb42a1548642dad53ec0d602d2fb3f7
Author: Joan Duran <jodufi@gmail.com>
Date:   Fri Feb 19 23:00:16 2010 +0100

    Updated Catalan translation

 po/ca.po | 929 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 475 insertions(+), 454 deletions(-)

commit 0ebb378c073f9f5f4c56a0d5ebb00a79ac576f54
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Fri Feb 19 22:09:36 2010 +0100

    Updated German translation

 po/de.po | 80 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 46 insertions(+), 34 deletions(-)

commit 3e3cbe0fad773db0d97b7cf2ffc303b7a7c0d5b3
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Feb 18 13:47:50 2010 +0100

    Updated Slovenian translation

 po/sl.po | 287 ++++++++++++---------------------------------------------------
 1 file changed, 52 insertions(+), 235 deletions(-)

commit 2a4b71826cfb61357b94cf786dd54a834ae90cc6
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Feb 18 08:52:28 2010 +0100

    Updated Spanish translation

 po/es.po | 100 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 56 insertions(+), 44 deletions(-)

commit 4589d3bf93f8dd7bdbf6ad65786a12b4ce68c341
Author: vasudeven <agnihot3@gmail.com>
Date:   Thu Feb 18 09:05:39 2010 +0530

    updated Tamil translation

 po/ta.po | 204 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 108 insertions(+), 96 deletions(-)

commit b03eba7c2fd1449584182ae79a9c98f2a1a8784d
Merge: b4ec774 38bd064
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Feb 17 17:56:18 2010 -0600

    Merge branch 'display-capplet-ui-cleanup'
    
    This makes the following changes in the display capplet:
    
    - Now fits in 640x480 and has a better layout overall.
    
    - We just use "monitors" for wording, not a mixture of "monitor",
      "display", "screen".
    
    - Make the mouse cursor indicate when you can drag a monitor.

commit 38bd064505ced868c4c899ffe55e9681e7ea0c8c
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Feb 17 17:30:04 2010 -0600

    Use just "monitors", not displays/screens/monitors for wording.
    
    Also, clarify the label of the "mirror screens" checkbox.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/display-capplet.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit bbb7a64c2afd90bffc0ef5f4ee9dfacae360898d
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Feb 17 17:17:17 2010 -0600

    Add a tooltip about how to select/drag the monitors
    
    Now that the label with instructions is gone, let's have
    a tooltip with better instructions.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 2 ++
 1 file changed, 2 insertions(+)

commit 188d5bfefb58fe4b084e77848d5fce868c9064c9
Author: Federico Mena Quintero <federico@novell.com>
Date:   Tue Feb 16 15:09:06 2010 -0600

    Use a cross-with-arrows instead of a hand for the cursor
    
    Cross-with-arrows means 'you can move me', while hand means 'you can click me'
    in this day and age.  Pointed out by Ka-Hing Cheung <kahing@gmail.com>
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit b4ec774a1b0b718c6b5b3ea0ac46b00755c2adcc
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   Mon Feb 15 16:16:33 2010 +0100

    Updated Galician Translation

 po/gl.po | 838 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 418 insertions(+), 420 deletions(-)

commit e0d3214f823a9fc4c428fe748032d33509b2d605
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Feb 15 19:25:13 2010 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 735 +++++++++++++++++++++++++++++++-----------------------------
 po/zh_TW.po | 735 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 760 insertions(+), 710 deletions(-)

commit e7ac70bc5dc5b29c2422407b62af43c6fd3c6db7
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Sun Feb 14 10:52:58 2010 +0100

    Depend on gnome-desktop >= 2.29.4 for per-monitor
    backgrounds

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5099f5987f2a295f876bc9e2e56be2c7a48dc46b
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Sat Feb 13 01:35:04 2010 +0200

    Update Romanian translation

 po/ro.po | 683 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 428 insertions(+), 255 deletions(-)

commit b06684e157e1a8da97476c2c1b8c308d503edd4a
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Feb 12 13:55:19 2010 -0600

    Remove hack to shrink the FooScrollArea if the screen is too small
    
    The new window fits in 640x480 without any adjustments to the size of the
    FooScrollArea, so we don't need to adjust that size anymore.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 49e441ce7c976fc1719be987f84c4ff48a964ac0
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Feb 12 13:29:55 2010 -0600

    Remove the label with instructions for how to drag the monitors
    
    The changing mouse cursor now makes the label superfluous.  Hopefully.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/display-capplet.ui | 39 +++----------------------------------
 1 file changed, 3 insertions(+), 36 deletions(-)

commit d43cb0cd8ccb1705ef29d33e67d930d406a9d818
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Feb 12 13:28:39 2010 -0600

    Set the mouse cursor to a hand when an output is draggable
    
    This should make it more obvious that outputs are in fact draggable
    in the FooScrollArea, and it will let us remove the ugly label
    with instructions for how to drag the monitors.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 50 ++++++++++++++++++++++++++++-----------
 1 file changed, 36 insertions(+), 14 deletions(-)

commit 1492fe3458e85df2ad9e2c855d8d3f272da24479
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Feb 12 13:15:57 2010 -0600

    Relayout the display capplet's window
    
    We move the per-monitor's widgets to the right of the FooScrollArea.
    This makes the dialog fit even in 640x480 displays, and makes it more
    obvious that the monitor's controls actually refer to the selected
    monitor.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/display-capplet.ui | 484 ++++++++++++++++++++----------------
 1 file changed, 264 insertions(+), 220 deletions(-)

commit d271671798a30b4a4fcb1292d9b1c9d9f749735d
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Feb 11 17:32:37 2010 -0600

    Make the display capplet's window fit in 800x600 displays
    
    We simply hack the FooScrollArea for the monitor display to be shorter.
    We can get fancier in the future by really computing the size based
    on the monitor into which the window eventually gets mapped.
    
    Patch by Takashi Iwai <tiwai@novell.com> - https://bugzilla.novell.com/show_bug.cgi?id=564579
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit a4eef676df12eb8beebd1474427a1b56a7731b50
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 10 18:20:45 2010 +0000

    Fix libm linking
    
    Otherwise we get:
    /usr/bin/ld: gnome-mouse-properties.o: undefined reference to symbol 'floor@@GLIBC_2.0'
    /usr/bin/ld: note: 'floor@@GLIBC_2.0' is defined in DSO /lib/libm.so.6 so try adding it to the linker command line
    /lib/libm.so.6: could not read symbols: Invalid operation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=609570

 configure.ac | 2 ++
 1 file changed, 2 insertions(+)

commit 01f49608a8959dfe95fadacc70f41878b29eb78e
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Feb 8 22:55:39 2010 +0100

    Hungarian translation updated

 po/hu.po | 217 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 110 insertions(+), 107 deletions(-)

commit 8c54184c87338c710cd25092e7c30c59d29d0022
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Feb 8 12:38:15 2010 +0100

    Release 2.29.90

 NEWS         | 22 ++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit 8fddaac05050d0de6e99ec664b2b2118bfb266aa
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Feb 7 21:49:01 2010 +0100

    Updated Spanish translation

 po/es.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 047df908f124dbc530071f43def8bc3682658392
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Feb 7 21:41:06 2010 +0100

    Updated German translation

 po/de.po | 305 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 153 insertions(+), 152 deletions(-)

commit 27cc0183f9446d889144adcf5882a36cad94adb1
Author: Antonio Fernandes C. Neto <fernandes@pelivre.org>
Date:   Thu Feb 4 16:38:35 2010 -0300

    Updated Brazilian Portuguese Translation

 po/pt_BR.po | 744 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 385 insertions(+), 359 deletions(-)

commit 6b373db02425776dcd67095c4114cc96c1844b7d
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Thu Feb 4 19:10:55 2010 +0100

    Updated Slovenian translation

 po/sl.po | 197 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 193 insertions(+), 4 deletions(-)

commit ff152233ee4d15f28425eac9b584c1edb9a772ae
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 31 20:12:26 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 132 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 66 insertions(+), 66 deletions(-)

commit 428ac2e60498496db983bbed8c3708ef899fedf5
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jan 30 12:11:22 2010 +0100

    Updated Spanish translation

 po/es.po | 139 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 71 insertions(+), 68 deletions(-)

commit ebc9cdf36af5c4c6faff76211f657b76e0247e24
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Jan 10 12:39:20 2010 +0100

    Updated Spanish translation, fixes bug #606511

 po/es.po | 84 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 41 insertions(+), 43 deletions(-)

commit 768d493a1333314bd383c1a084a1187e87adf0ef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 29 16:11:22 2010 +0000

    [about-me] Fix fingerprint name on 2nd page
    
    We were never changing the enrollment page's label to match
    the selected fingerprint.

 capplets/about-me/gnome-about-me-fingerprint.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 8ae8ff0b6a045f6b26f2e7054f04212d0973fb4c
Author: Ivar Smolin <okul@linux.ee>
Date:   Thu Jan 28 14:48:51 2010 +0200

    Updating Estonian translation

 po/et.po | 43 +++++++++++++++++++++++--------------------
 1 file changed, 23 insertions(+), 20 deletions(-)

commit 83a1ff37bed9a6920405661f2dc41d3a0c2623b2
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Jan 28 11:24:25 2010 +0100

    Updated Slovenian translation

 po/sl.po | 252 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 129 insertions(+), 123 deletions(-)

commit a1ce2446d4e6ac0459b5e1173a0cd3d215c89a94
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 27 20:04:54 2010 +0100

    [mouse] Fix mnemonics conflicts on touchpad tab
    
    Closes bug #608057.

 capplets/mouse/gnome-mouse-properties.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4ad6f3e7253d59e951e5fa2fc1f309593d62f991
Author: Milan Bouchet-Valat <nalimilan@club.fr>
Date:   Wed Jan 27 14:37:00 2010 +0100

    [about-me] Fix list of passwd error strings
    
    Need to add "dictionary" to the first list of known errors for the previous commit to change something. Fix indentation of the whole list too.

 capplets/about-me/gnome-about-me-password.c | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

commit 51befc44977f5d380d0524553cc9fdcc2cae411b
Author: Milan Bouchet-Valat <nalimilan@club.fr>
Date:   Wed Jan 27 11:22:11 2010 +0100

    [about-me] Fix hangs when 'passwd' outputs unexpected answers
    
    When current password is wrong, passwd outputs on Ubuntu 9.10
    passwd: Authentication token manipulation error
    This doesn't correspond to what we're expecting. Add "error" to the list of words we look for to avoid waiting forever.
    
    When pam-cracklib is used, using an existing word prompts 'passwd' to output
    WEAK PASSWORD: it's based on a dictionary word
    Detect "dictionary" too and consider this as meaning "Password is too simple".

 capplets/about-me/gnome-about-me-password.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 932c59a8c6488c54891e4f3da88e94d872842ef4
Author: A S Alam <aalam@users.sf.net>
Date:   Wed Jan 27 07:22:40 2010 +0530

    updating for Punjabi by A S Alam

 po/pa.po | 647 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 298 insertions(+), 349 deletions(-)

commit 8df7aa00ff73ba199d1e2695c5cf99b0079fae3f
Author: Martin Pitt <martin.pitt@ubuntu.com>
Date:   Tue Jan 26 11:55:28 2010 +0100

    Add AutostartCondition to gnome-at-session.desktop
    
    The gnome-at-session autostart desktop file launches a shell script, which in
    turn calls gconftool-2, just to find out that it's disabled, and exit. This
    wastes unnecessary cycles on starting the desktop.
    
    Add an AutostartCondition to the .desktop file which only runs when a11y is
    enabled.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=608138

 capplets/default-applications/gnome-at-session.desktop.in.in | 1 +
 1 file changed, 1 insertion(+)

commit 646355855fb90ccc843afed42ee2d98dc0f58c4d
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jan 26 10:03:31 2010 +0100

    Release 2.29.6

 NEWS         | 26 +++++++++++++++++++++++++-
 configure.ac |  2 +-
 2 files changed, 26 insertions(+), 2 deletions(-)

commit e33f42944db87efa1ce3ea42b75cf624346d54e0
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Jan 25 23:12:13 2010 +0200

    Updated Bulgarian translation

 po/bg.po | 586 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 286 insertions(+), 300 deletions(-)

commit 05c1b50347a3b8ad1cb51cc7b20228134dead5b1
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Fri Jan 22 11:42:39 2010 +0600

    Updated Bengali translation

 po/bn.po | 968 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 535 insertions(+), 433 deletions(-)

commit 5b7d9a87531640f922721e739762ff1d40371c55
Author: vasudeven <agnihot3@gmail.com>
Date:   Thu Jan 21 13:40:37 2010 +0530

    updated Tamil translation

 po/ta.po | 585 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 298 insertions(+), 287 deletions(-)

commit 74208facc53d7ccec7584575835b89b165066811
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 19 19:07:05 2010 +0100

    Updated Norwegian bokmål translation

 po/nb.po | 95 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 49 insertions(+), 46 deletions(-)

commit 54bcf1874dcf6ba27f969eea0657bbebca26260b
Author: Thomas Wood <thomas.wood@intel.com>
Date:   Tue Jan 19 13:03:32 2010 +0000

    [appearance] use GtkInfoBar rather than a copy of GeditMessageArea
    
    GtkInfoBar (available in Gtk+ 2.18) replaces GeditMessageArea.

 capplets/appearance/Makefile.am          |   2 -
 capplets/appearance/appearance-style.c   |  13 +-
 capplets/appearance/appearance-themes.c  |  25 +-
 capplets/appearance/gedit-message-area.c | 626 -------------------------------
 capplets/appearance/gedit-message-area.h | 129 -------
 configure.ac                             |   2 +-
 6 files changed, 21 insertions(+), 776 deletions(-)

commit 2e347d700a8c57c21a9e92913b7e643893f60ef7
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Wed Jan 13 09:46:33 2010 +1000

    Disable tapping only for touchpads without a left mouse button.
    
    Apple touchpads have a single physical button and are thus capable of
    working even if tapping is disabled. Don't force it on for these touchpads.
    
    This patch simply changes the check for physical buttons from the previous
    "check for LMR be present" to "check only for L".
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

 capplets/mouse/gnome-mouse-properties.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c3e44a7b2816768a1b015b43b03b9809aa647e36
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sat Jan 9 17:01:36 2010 +0100

    Updated Swedish translation

 po/sv.po | 184 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 102 insertions(+), 82 deletions(-)

commit 781761789c9e991ff629632dd935fd43a7e35aa4
Author: Runa Bhattacharjee <runab@redhat.com>
Date:   Fri Jan 8 12:48:52 2010 +0530

    Fixed typos and updated translations for Bengali India

 po/bn_IN.po | 984 +++++++++++++++++++++++++++---------------------------------
 1 file changed, 441 insertions(+), 543 deletions(-)

commit 62d02072ef8c27fa944e5fe5bb907da45d243b74
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 6 21:43:29 2010 +0100

    [common] Don't leak file descriptors when checking for colour schemes
    
    Closes bug #606155.

 capplets/common/gtkrc-utils.c | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

commit 3d3ca6b7eac5bb421828b43469ced5d1b0cceade
Author: Sandeep Shedmake <sshedmak@redhat.com>
Date:   Wed Jan 6 21:05:09 2010 +0530

    Fixed a Typo and Updated Two Strings

 po/mr.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 0749639cca7ef4011de982bd4e149c404e06b92a
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Tue Jan 5 15:06:33 2010 +0200

    Update Ukrainian translation

 po/uk.po | 609 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 319 insertions(+), 290 deletions(-)

commit 396b9a7159c8b28fdc6e7a117208b43e1c4d850d
Author: Claude Paroz <claude@2xlibre.net>
Date:   Mon Jan 4 09:45:36 2010 +0100

    [about-me] Add translator comments to 'Home' string
    
    This change is a part of the resolution of bug #605944.

 capplets/about-me/gnome-about-me-dialog.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 270ca7b97f43bc33ab930cc1092e08fa5a0ea158
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jan 3 18:16:37 2010 +0100

    Updated Hungarian translation

 po/hu.po | 556 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 259 insertions(+), 297 deletions(-)

commit b2261cb5a8f29aac2fb2a5db3023a579c23eb7e6
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Dec 24 00:46:02 2009 +0100

    [release] post-release bump to 2.29.5

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b201885a7c7d05be10d766ad46663f7457e2bb8
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Dec 24 00:45:44 2009 +0100

    [release] 2.29.4

 NEWS                           | 101 +++++++++++++++++++++++++++++++++++++++++
 capplets/common/Makefile.am    |   2 +-
 configure.ac                   |   2 +-
 libwindow-settings/Makefile.am |   3 +-
 4 files changed, 104 insertions(+), 4 deletions(-)

commit 6815ff6962b3c536caf62743271b397cb4efad5c
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Dec 19 13:43:57 2009 +0100

    Updated Spanish translation

 po/es.po | 123 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 71 insertions(+), 52 deletions(-)

commit 52129766f8dba6e083c15fe9beac9fa698dae759
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Sat Dec 19 10:13:49 2009 +0200

    Update Romanian translation

 po/ro.po | 935 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 379 insertions(+), 556 deletions(-)

commit 8be4b49a437d0882815aad73ca7947c77e886448
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Dec 17 09:07:19 2009 +0100

    Updated Slovenian translation

 po/sl.po | 218 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 117 insertions(+), 101 deletions(-)

commit fbeb9bfcb08990abe500cb03044029d5a78c9ca0
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Tue Dec 15 23:33:55 2009 +0100

    Updated German translation

 po/de.po | 87 ++++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 54 insertions(+), 33 deletions(-)

commit 8d5359bf43bfff7b057e9382300f306b233f9fb5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Dec 15 19:09:34 2009 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 491 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 237 insertions(+), 254 deletions(-)

commit 945b44fbb29a2ec497b944b69da01a7c23f22409
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Dec 15 14:20:12 2009 +0000

    Remove sleep key entry
    
    https://bugzilla.gnome.org/show_bug.cgi?id=170175

 capplets/keybindings/01-desktop-key.xml.in | 3 ---
 1 file changed, 3 deletions(-)

commit a3aa98b49aa84ae90aaffaf63cc4c5127253f126
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Dec 11 11:36:27 2009 -0600

    RANDR - Show 'Mirror Screens' in the monitor label, not a random monitor's name
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 0f0e35d5094e41b4017fa154eaf332839561e7f6
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Dec 10 12:09:24 2009 -0600

    RANDR - Desensitize the on/off radio buttons if we are in Mirror Screens mode
    
    This makes it even more obvious that you don't need to turn on
    individual outputs for Mirror Screens to work properly.
    
    It also means that we don't support "combined" setups like two mirrored
    screens and one extended screen.  It seems that the majority of people only care about a few cases:
    
      - Laptop plus projector or monitor showing the same thing.
      - Computer plus secondary monitor(s) with an extended desktop.
      - Laptop plus docking station with external monitor only (built-in LCD turned off).
    
    For more exotic combinations, people can use the xrandr(1) tool.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

commit 32cd3a9d39d44233c4829bb028f589db363ee98d
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Dec 10 12:06:01 2009 -0600

    RANDR - Sensitize 'Mirror Screens' depending on whether mirror mode is actually supported
    
    Previously it was always sensitive, even if there were not enough connected outputs
    for mirroring, or if those those outputs didn't support the same resolution for
    mirroring.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 70 ++++++++++++++++++++++++++++++++++++---
 1 file changed, 65 insertions(+), 5 deletions(-)

commit 6d40eb2648abfe4ff47cb491b899e5cc41cb7c60
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Dec 9 15:59:11 2009 -0600

    bgo#590823 - RANDR - Automatically turn on outputs which support Mirror Screens
    
    Previously, outputs could remain off if the user just selected Mirror Screens.
    Now we automatically turn on all the outputs which support the clone mode,
    to avoid extra work on the part of the user.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 79 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)

commit 76c2b80e3421c289ea210635bc185b0d7539f26a
Author: Ivar Smolin <okul@linux.ee>
Date:   Fri Dec 11 17:43:27 2009 +0200

    Updating Estonian translation

 po/et.po | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

commit eac0e48a958e399ef7dcc16cde7c00112366d53a
Author: Cyril Roelandt <tipecaml@gmail.com>
Date:   Thu Dec 10 12:59:31 2009 +0100

    [network] Keep proxies in sync when "use same proxy" is selected
    
    When the proxy host or port is changed after the "use same proxy
    for all protocols" option was selected, make sure we keep all
    proxies in sync. Closes bug #589952.
    
    Signed-off-by: Jens Granseuer <jensgr@gmx.net>

 capplets/network/gnome-network-properties.c | 98 ++++++++++++++++++++++++++---
 1 file changed, 91 insertions(+), 7 deletions(-)

commit 9d4a90d7986f819e9918035e8b247fbf08b1cd2b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Dec 4 19:54:47 2009 -0500

    Add support for per-monitor backgrounds
    
    https://bugzilla.gnome.org/show_bug.cgi?id=147808

 capplets/appearance/appearance-desktop.c | 171 ++++++++++++++++++++++++-------
 capplets/appearance/appearance.h         |   4 +
 capplets/appearance/gnome-wp-item.c      |  65 +++++++-----
 capplets/appearance/gnome-wp-item.h      |  10 +-
 4 files changed, 184 insertions(+), 66 deletions(-)

commit e90d5dda76b14b286483fff72ce62cf49c1365d1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Dec 9 12:10:39 2009 +0100

    [common] Fix signedness warnings in window manager code

 capplets/common/wm-common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f1372f438ec48890f67fc5b77e1b645cb2517b07
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Dec 9 12:04:32 2009 +0100

    [common] Fix small memory leak in window manager code

 capplets/common/wm-common.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 10506822d2681e3e7ef2a1dd6805c20227389c74
Author: Aron Xu <aronxu@gnome.org>
Date:   Wed Dec 9 15:29:17 2009 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 34 ++++++++++++++++------------------
 1 file changed, 16 insertions(+), 18 deletions(-)

commit dc52eeb43f04f0ef368a88613a5299b641517576
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Wed Dec 9 01:26:35 2009 +0100

    Updated German translation

 po/de.po | 458 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 230 insertions(+), 228 deletions(-)

commit c1ee031d153abb302bd1e9223dae8a7b2a4849e1
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 7 22:46:02 2009 +0000

    [default-applications] return an empty string for the custom web item
    
    This prevents the combo box from snapping back to the previous item

 capplets/default-applications/gnome-da-capplet.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 3d7178b45abc2a291f62c884688fe2890a8040f5
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 7 22:27:04 2009 +0000

    [default-applications] be sure to add the gconf directories for monitoring
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=597186

 capplets/default-applications/gnome-da-capplet.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit a346d3a1fc9f1cc596b6517c954ac611fa5a52d1
Author: Vincent Untz <vuntz@gnome.org>
Date:   Fri Dec 4 19:02:51 2009 +0100

    Make layouts that cannot be activated have insensitive text

 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit fd82bdb9a118e190f158925b7c5bcd1a43af9cd6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Dec 5 13:16:06 2009 +0100

    [window] Don't allow Ctrl+Click as window movement modifier
    
    Choosing Ctrl for window movement messes up selecting mutiple
    entries in list and grid widgets (e.g. files in nautilus) so
    don't offer it as an option. Closes bug #409405.

 capplets/windows/gnome-window-properties.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

commit d5e168c81a7918853b1ac939bcd6d6e7b794589f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Dec 5 12:52:36 2009 +0100

    [font-viewer] Don't use URI notation when installing fonts
    
    The code treated a URI as a path which would result in escaped
    characters showing up as "%20" and such in the destination file
    name. Be more careful to treat URIs as URIs and paths as paths.
    
    Closes bug #603732.

 font-viewer/font-view.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 42133f871f892e86f28ca8af5928042bbb1b59aa
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Dec 5 11:22:52 2009 +0000

    Rename configure.in to configure.ac
    
    The ".ac" extension is the preferred use:
    
    http://www.gnu.org/software/autoconf/manual/html_node/Writing-Autoconf-Input.html

 autogen.sh   |   2 +-
 configure.ac | 349 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in | 349 -----------------------------------------------------------
 3 files changed, 350 insertions(+), 350 deletions(-)

commit 21ce3e96da83d9f210abbacb06101f7de8b708e9
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Dec 5 11:19:54 2009 +0000

    [configure] Enable silent build rules
    
    Enable automake silent rules, if available

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit c5514646364a6356039698c456a725983cb90364
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Fri Dec 4 21:54:40 2009 +0000

    The columns in the layout list sorted
    
    Thanks to Vincent, well spotted
    https://bugzilla.gnome.org/show_bug.cgi?id=603804

 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit dccd55038b89af27b59e7362a2e7d91105970764
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Nov 30 10:01:25 2009 +0100

    Updated Swedish translation

 po/sv.po | 364 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 171 insertions(+), 193 deletions(-)

commit e8e5748689b3215a83a67fc5649d1e6c9d4ff771
Author: Nils-Christoph Fiedler <fiedler@medienkompanie.de>
Date:   Wed Nov 25 17:35:18 2009 +0100

    Updated LowGerman translation

 po/nds.po | 257 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 127 insertions(+), 130 deletions(-)

commit 5c4ac1d2f1d63d0b816154b419a22755583d5166
Author: Ivar Smolin <okul@linux.ee>
Date:   Sun Nov 22 18:04:48 2009 +0200

    Updating Estonian translation

 po/et.po | 96 +++++++++++++++++++++++-----------------------------------------
 1 file changed, 35 insertions(+), 61 deletions(-)

commit 9ebd7c4721c37278e671d2e9f8850c6281525aef
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Nov 21 14:49:08 2009 +0000

    [appearance] fix tooltip in the background chooser
    
    Set the has-tooltip property to enable tooltips on items in the background
    chooser.
    
    Also remove the custom tooltip timeout value so that it is now consistent
    with the rest of the desktop.
    
    Patch from: Matthias Clasen <mclasen@redhat.com>
    
    Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=596369

 capplets/appearance/appearance-desktop.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit a4e16a1cc593e566d0b60d9847f86bb4c746f341
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Wed Nov 18 07:05:11 2009 +0100

    Updated Slovenian translation

 po/sl.po | 161 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 80 insertions(+), 81 deletions(-)

commit e3d4e5f27f8f9a8dc773f776d4c7dbe045d95a50
Author: Aron Xu <aronxu@gnome.org>
Date:   Tue Nov 17 16:45:20 2009 +0800

    Fix a small mistake

 po/zh_CN.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e00881d2bbb316a40b5ff9f90438f5e8da6f90cd
Author: Tao Wei <weitao1979@gmail.com>
Date:   Tue Nov 17 12:33:41 2009 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 481 +++++++++++++++++++++++++++++-------------------------------
 1 file changed, 232 insertions(+), 249 deletions(-)

commit f12d0d1c1f98510bcb4570eb2365faceccde3bfc
Author: Thomas Thurman <tthurman@gnome.org>
Date:   Mon Nov 16 19:16:19 2009 -0500

    Shavian translation

 po/LINGUAS    |    1 +
 po/en@shaw.po | 2903 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 2904 insertions(+)

commit 99d6c81807564c8f0f30628fe01140a927efa196
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sun Nov 15 18:12:32 2009 +0000

    Make buttons widths equal
    
    Further discussions related to kbd capplet

 capplets/keyboard/gnome-keyboard-properties-dialog.ui | 1 +
 1 file changed, 1 insertion(+)

commit 21684e7e6296e4b151ee9cdeaa6953297ed1a121
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Nov 15 12:14:27 2009 +0100

    Updated Spanish translation

 po/es.po | 193 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 99 insertions(+), 94 deletions(-)

commit fc938f8ba943b350395636e763c792cdf2f6eb77
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Nov 14 19:18:48 2009 +0000

    [appearance] update the background style option labels
    
    Clarify the background style options as per the suggestions in bug 411048
    by making all the descriptions the same tense and replacing "Fill screen"
    with "Stretch".
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=411048

 capplets/appearance/data/appearance.ui | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 79cfd2b040e9daac80123c87008109d77b0f640b
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Nov 14 18:46:11 2009 +0000

    [theme-installer] Add OnlyShowIn=GNOME to the .desktop file
    
    From bug 594709:
    
     The desktop file for the theme installer doesn't have OnlyShowIn=GNOME;
    
     This prevents it from working with Firefox (apparently) and it seems like it
     should have it anyway.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=594709

 capplets/appearance/data/gnome-theme-installer.desktop.in.in | 1 +
 1 file changed, 1 insertion(+)

commit b7ce86ecec6af088e57c79cd594680f7b60b26e1
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Nov 14 15:17:28 2009 +0000

    Automatically create the ChangeLog file from VCS history
    
    Added a dist-hook rule to create the ChangeLog file from the git log.

 ChangeLog                                      |  6146 +----------
 Makefile.am                                    |    14 +
 capplets/about-me/ChangeLog                    |   623 --
 capplets/accessibility/at-properties/ChangeLog |   264 -
 capplets/appearance/ChangeLog                  |  2045 ----
 capplets/common/ChangeLog                      |  1991 ----
 capplets/default-applications/ChangeLog        |  1078 --
 capplets/display/ChangeLog                     |   569 -
 capplets/keybindings/ChangeLog                 |   859 --
 capplets/keyboard/ChangeLog                    |  1187 ---
 capplets/localization/ChangeLog                |    36 -
 capplets/mouse/ChangeLog                       |   807 --
 capplets/network/ChangeLog                     |   403 -
 capplets/windows/ChangeLog                     |   470 -
 help/ChangeLog                                 |   407 -
 libwindow-settings/ChangeLog                   |   362 -
 po/ChangeLog                                   | 12579 -----------------------
 shell/ChangeLog                                |   105 -
 typing-break/ChangeLog                         |   318 -
 19 files changed, 16 insertions(+), 30247 deletions(-)

commit 5c9eaa2909c28bd47559fd737d9c46b1d352a21f
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Nov 14 15:04:36 2009 +0100

    Add README.translators with comment about font-viewer pangram

 po/README.translators | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 109414ee82058c9256b5c1298faf0e846bf13969
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 14 14:22:06 2009 +0100

    [font-viewer] Expand the Copyright display to get rid of unnecessary scrollbar

 font-viewer/font-view.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 89147e3e4ceaa61275c4d5b7c70ff63e6d9c7be1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 14 14:15:01 2009 +0100

    [font-viewer] Fix signedness compiler warnings

 font-viewer/font-view.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit db072ff49f7996339dc44d5802368f4dfcbc3658
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 14 14:03:59 2009 +0100

    [font-viewer] Use pango_language_get_sample_string for sample text
    
    Closes bug #595107.

 font-viewer/font-view.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 75ce231f99dfe835bbbe9626c24516d039be386f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 14 13:02:05 2009 +0100

    [keyboard] Fix mnemonic conflict in mousekeys tab
    
    Closes bug #586433.

 capplets/keyboard/gnome-keyboard-properties-dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a5bf115175ea52c5cdc184b3844d06bdb7ad775c
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Tue Nov 10 15:49:50 2009 +1000

    Disable two-finger scrolling/tapping based on touchpad capabilities.
    
    Touchpads that can't do two-finger cannot two-finger scroll - disable this
    scroll method.
    
    Touchpads that don't have physical buttons mustn't disable tapping - set to
    on by default and disable checkbox.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

 capplets/mouse/gnome-mouse-properties.c | 51 +++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

commit d081be4045e4338462daa2cd33b6c897a17f1ae5
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Nov 13 12:16:50 2009 +0100

    Updated Slovenian translation

 po/sl.po | 263 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 121 insertions(+), 142 deletions(-)

commit 543251c2c65663aff367d4ddba719e89de7e03ca
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Nov 11 19:37:04 2009 +0100

    [typing-break] Reset timer after suspend
    
    This patch does 2 things:
    1) Defines a DrwTimer that we use instead of GTimer. This is just a thin
    wrapper around g_get_current_time, and it means we can accurately track
    typing/idle periods based on real-world wall-clock time, which GTimer is
    apparently not intended to do.
    
    2) The typing monitor has some complicated state handling where it transitions
    between an IDLE state and a TYPING state. This transition is based on running a
    callback once per second, and checking whether any keystrokes have been
    recorded since the last time the callback was called. The actual idle *time* is
    tracked separately, independently of these two states, but only when we are in
    the IDLE *state* was the idle *time* checked to see if we should reset the
    break timer. This leads to a race condition -- if we suspend while in the
    TYPING state, then eventually we will wake up, notice that no key press has
    happened in the last second, *reset the idle timer*, transition to the IDLE
    state, and then check the amount of time on the idle timer. We will thus never
    notice the amount of time that the computer was suspended.
    
    I considered making the IDLE/TYPING transition code smarter, but it turns out
    the desired behavior for the two states is entirely identical anyway, so rather
    than adding more complexity to this pointless code, I just diked it out and
    replaced them both by a single state called RUNNING.
    
    Closes bug #430797.

 typing-break/Makefile.am        |   4 +-
 typing-break/drw-break-window.c |   9 ++--
 typing-break/drw-timer.c        |  52 +++++++++++++++++++++
 typing-break/drw-timer.h        |  42 +++++++++++++++++
 typing-break/drwright.c         | 101 +++++++++++++---------------------------
 5 files changed, 134 insertions(+), 74 deletions(-)

commit 70277a7af36edc98ff8f5775b24cc7eb3d4de34f
Author: Aron Xu <aronxu@gnome.org>
Date:   Wed Nov 11 03:03:34 2009 +0800

    Fix a typo.

 po/zh_CN.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 39c1877c6ed5e6133aafe6f48341e81a818858f0
Author: Nils-Christoph Fiedler <linux@medienkompanie.de>
Date:   Tue Nov 10 19:26:42 2009 +0100

    Added Low German translation

 po/LINGUAS |    1 +
 po/nds.po  | 3464 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3465 insertions(+)

commit 20501328e2518b5301d7931d1d4294152a05fbd1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 10 13:43:54 2009 +0000

    Fix en_GB translations with context

 po/en_GB.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 5fee913829c17627ac45ec90e8fa651c4a80b862
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Nov 10 01:11:08 2009 +0100

    Updated Spanish translation

 po/es.po | 251 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 120 insertions(+), 131 deletions(-)

commit 585991e259580098ad74775c624be8890b88963d
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Nov 9 22:35:15 2009 +0000

    Further layout improvements
    
    As discussed on IRC (with aday)

 .../keyboard/gnome-keyboard-properties-dialog.ui   | 163 +++++++++------------
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  27 ++--
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  12 --
 3 files changed, 79 insertions(+), 123 deletions(-)

commit 07c4a415df42cc541883d90203b8b528b2b98872
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 18:37:57 2009 -0400

    Remove interface tab
    
    Fixes http://bugzilla.gnome.org/show_bug.cgi?id=592756

 capplets/appearance/Makefile.am        |   2 -
 capplets/appearance/appearance-main.c  |   2 -
 capplets/appearance/appearance-ui.c    | 239 ----------------------
 capplets/appearance/appearance-ui.h    |  21 --
 capplets/appearance/data/appearance.ui | 364 ---------------------------------
 5 files changed, 628 deletions(-)

commit 186a2baefeef671a4e60fa4b79ed0219a1cda46d
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Nov 8 22:05:31 2009 +0100

    Updated Swedish translation

 po/sv.po | 62 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 31 insertions(+), 31 deletions(-)

commit 1fd84f367269fae5b30bad671564aad35656ab6b
Author: Tim Waugh <twaugh@redhat.com>
Date:   Sun Nov 8 11:14:35 2009 +0100

    [typing-break] Increase delay for activating the postpone button to 5s
    
    When the typing break screen is displayed and break postponements are enabled,
    there is a 500ms delay before the 'Postpone' button becomes sensitive.
    Increase that delay to 5000ms (5s).
    
    Rationale:
    When I'm really focused on something I will click the 'Postpone' button, or
    even use the keyboard short-cut Alt-P, so that I can carry on with what I was
    doing.  Then later I won't even remember having done it.  This can happen
    several times in a row.  I'm sure it happens this way for other people too.
    
    With a 5s delay before a break can be postponed it gives the user time to think
    about whether they really need to carry on with what they were doing or if it
    can wait after all.
    
    Closes bug #597086.

 typing-break/drw-break-window.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5f063376accd21cb3600e20bddd915991d9bd14b
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Nov 6 14:57:48 2009 +0100

    Updated Slovenian translation

 po/sl.po | 70 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 35 insertions(+), 35 deletions(-)

commit 30eafc845be56ca0b73a39d30a76b41908fab7a6
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Nov 5 07:21:30 2009 +0100

    Updated Slovenian translation

 po/sl.po | 200 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 108 insertions(+), 92 deletions(-)

commit 940f7f91df15cdc66dfbda267c1872833d1e1116
Author: Gil Forcada <gforcada@gnome.org>
Date:   Thu Nov 5 00:08:20 2009 +0100

    Minor update to Catalan translation

 po/ca.po | 166 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 92 insertions(+), 74 deletions(-)

commit 0cb350aa6967f14f9bb3157ceaab518b353d5a36
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:   Thu Nov 5 00:02:44 2009 +0100

    Updated Catalan (Valencian) translation

 po/ca@valencia.po | 3880 +++++++++++++++++++++++++++++------------------------
 1 file changed, 2123 insertions(+), 1757 deletions(-)

commit cc46723a06a45fdf4d2b19ed4b48035f6d8599a3
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Wed Nov 4 23:38:32 2009 +0100

    Updated Spanish translation

 po/es.po | 111 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 55 insertions(+), 56 deletions(-)

commit f4d19d4da00fdec389b079c9cad4f942acb3f2ee
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Wed Nov 4 22:09:03 2009 +0000

    More polish of the keyboard layout tab
    
    See the discussion in the wiki

 capplets/keyboard/gnome-keyboard-properties-dialog.ui | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 38ba6cb70214f9b515790a47ce8d3098ce3c7796
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Nov 4 19:02:30 2009 +0100

    Add gthread-2.0 to common modules for linking
    
    At least
     * gnome-keybinding-properties
     * gnome-about-me
     * gnome-appearance-properties
     * gnome-theme-test
     * gnome-font-viewer
    need it, so just add it to the list of common modules (bug #600589).

 configure.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 7c82b5b5cc89c0934f13e66175f3881b8f5528f4
Author: Wang Xin <jedy.wang@sun.com>
Date:   Wed Nov 4 18:53:37 2009 +0100

    [keybindings] Show shortcuts for the active window manager
    
    Actually display the bindings for the running window manager instead
    of all others (bug #600531).

 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4583bc657ba3f3f11dd04aa0b0b54cc5eca18df7
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Sun Nov 1 19:48:19 2009 +0000

    Further improvements in the layout of the 'Layouts' tab
    
    See
    http://live.gnome.org/action/subscribe/UsabilityProject/Whiteboard/KeyboardPreferences/Implementation

 capplets/keyboard/gnome-keyboard-properties-dialog.ui | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 3a3b2f99e164b8f26d83ec286c17f94b35808052
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 29 12:18:37 2009 +0000

    Fix all the keybindings showing up when using compiz
    
    The wm_common_get_current_keybindings() implementation
    was broken.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=600021

 capplets/common/wm-common.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 51a283edd0f90adcb802345b13b98bc758f6e43a
Author: drtvasudevan <agnihot3@gmail.com>
Date:   Wed Oct 28 05:52:20 2009 +0530

    Updated Tamil translation

 po/ta.po | 175 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 94 insertions(+), 81 deletions(-)

commit 69cffdfd62af853365b12a6f869a7f2026659a2b
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Oct 27 22:13:26 2009 +0100

    Updated Swedish translation

 po/sv.po | 50 +++++++++++++++++++++++++-------------------------
 1 file changed, 25 insertions(+), 25 deletions(-)

commit 04275bd3e4252bef2e36f96bc99754f4e087a91f
Author: Dumitru Mișu Moldovan <dumol@gnome.ro>
Date:   Mon Oct 26 23:53:05 2009 +0200

    Updated Romanian translation

 po/ro.po | 40 +++++++++++++++++++++-------------------
 1 file changed, 21 insertions(+), 19 deletions(-)

commit 3ad174d376f97c8dc87ae229479ff16862369c4a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Oct 26 17:46:04 2009 +0000

    Add missing PNG files
    
    The code uses PNG files, but we only shipped SVG ones...

 capplets/about-me/icons/Makefile.am             |  14 +++++++++++++-
 capplets/about-me/icons/left-index-finger.png   | Bin 0 -> 1515 bytes
 capplets/about-me/icons/left-little-finger.png  | Bin 0 -> 1500 bytes
 capplets/about-me/icons/left-middle-finger.png  | Bin 0 -> 1483 bytes
 capplets/about-me/icons/left-ring-finger.png    | Bin 0 -> 1512 bytes
 capplets/about-me/icons/left-thumb.png          | Bin 0 -> 1512 bytes
 capplets/about-me/icons/print_error.png         | Bin 0 -> 4160 bytes
 capplets/about-me/icons/print_ok.png            | Bin 0 -> 3677 bytes
 capplets/about-me/icons/right-index-finger.png  | Bin 0 -> 1506 bytes
 capplets/about-me/icons/right-little-finger.png | Bin 0 -> 1479 bytes
 capplets/about-me/icons/right-middle-finger.png | Bin 0 -> 1468 bytes
 capplets/about-me/icons/right-ring-finger.png   | Bin 0 -> 1506 bytes
 capplets/about-me/icons/right-thumb.png         | Bin 0 -> 1486 bytes
 13 files changed, 13 insertions(+), 1 deletion(-)

commit d4c6c7990cd57bdd416f8fa1881f2391457bef48
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Sat Oct 24 16:11:46 2009 +0300

    Updated Lithuanian translation

 po/lt.po | 43 +++++++++++++++++++++++--------------------
 1 file changed, 23 insertions(+), 20 deletions(-)

commit 480416907e4b014b94bea498aa917a0b5563f798
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Aug 11 12:11:58 2009 +0200

    Use external libslab when available

 Makefile.am       |  6 +++++-
 configure.in      | 25 ++++++++++++++++++-------
 shell/Makefile.am | 12 ++++++++++--
 3 files changed, 33 insertions(+), 10 deletions(-)

commit c831bc1539ce2c601c5fd735e0cbfe44df45f935
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 24 14:11:27 2009 +0200

    Bump gnome-desktop version to 2.27.91 (bug #596865)

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3f671fdceb310818b40cb64b3a9f08204ba95828
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 24 13:55:19 2009 +0200

    Fix zombie bindings appearing after deleting custom shortcuts
    
    Make GConf sync after deleting a custom binding so that the removed
    directory actually gets pruned and doesn't come back when restarting
    the application (bug 596351).

 capplets/keybindings/gnome-keybinding-properties.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 93e164c2fba89401e26f552c2e12c9894df3ee07
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Oct 3 10:14:24 2009 +0200

    Update the exec arg when changing terminal
    
    When selecting a known terminal from the combo box, also update the exec
    arg gconf key to the known value from the xml file.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=597185

 capplets/default-applications/gnome-da-capplet.c | 52 ++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

commit b5c741ee95c346d298d21d4cab8d9717d2335c4d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Oct 23 18:35:47 2009 +0200

    [about-me] Fix crash when closing the window using the window button
    
    Make sure the focus-out handler doesn't try to take action after the
    application resources have already been destroyed (bug #592348).

 capplets/about-me/gnome-about-me.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 32237421885d3f91dd2b6f0e671d246ce1373847
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Oct 23 17:39:12 2009 +0200

    Fix pofilter checks

 po/ar.po | 66 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 33 insertions(+), 33 deletions(-)

commit 0c5b06fc6c8812877641f77c59de5e104806dc1e
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Thu Oct 22 01:52:59 2009 -0500

    Updated Crimean Tatar (Crimean Turkish) translation

 po/crh.po | 3021 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1601 insertions(+), 1420 deletions(-)

commit 5ebf7c1c51e28bede949722d498c547c12634799
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Oct 19 13:57:27 2009 -0500

    bgo#593866 - Don't assert when the current output doesn't have a resolution set yet
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 53 +++++++++++++++++++++------------------
 1 file changed, 29 insertions(+), 24 deletions(-)

commit 16b523deb3c965ba7292e1c9e6f0a0cb5afd8dd1
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Oct 18 22:15:11 2009 +0200

    Updated Swedish translation

 po/sv.po | 110 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 63 insertions(+), 47 deletions(-)

commit 1bb309213af4e665317c005bdc66dec72ff56ca3
Author: FujianWZH <fujianwzh@gmail.com>
Date:   Mon Oct 19 00:54:56 2009 +0800

    Updated Simplified Chinese translation.

 po/zh_CN.po | 2845 ++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1529 insertions(+), 1316 deletions(-)

commit 8df5f84f5346d85db2ccdb6df5ac265dac5a64ab
Author: Akom C <knight2000@gmail.com>
Date:   Sun Oct 18 14:49:59 2009 +0700

    Added Thai help translation.

 help/Makefile.am |   2 +-
 help/th/th.po    | 142 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 143 insertions(+), 1 deletion(-)

commit 7551f36f2a5237be854812d87582a6f45d342a23
Author: Robert Ancell <robert.ancell@canonical.com>
Date:   Thu Oct 1 12:45:25 2009 +1000

    Fix broken logic in keybinding tree model

 capplets/keybindings/gnome-keybinding-properties.c | 24 +++++++++-------------
 1 file changed, 10 insertions(+), 14 deletions(-)

commit ad37a6ce3693b3634436b7b83915d904c428bf0b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Oct 17 11:29:44 2009 +0200

    Updated Spanish translation

 po/es.po | 112 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 65 insertions(+), 47 deletions(-)

commit 37fc3c54a4311e01789672e7cffaf09612e4057a
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Thu Oct 15 23:18:59 2009 +0100

    Serious changes in the keyboard capplet UI
    
    Following the discussion at
    http://live.gnome.org/UsabilityProject/Whiteboard/KeyboardPreferences

 .../keyboard/gnome-keyboard-properties-dialog.ui   | 187 ++++++++++++------
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  44 +++--
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  10 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 218 ++++++++-------------
 4 files changed, 248 insertions(+), 211 deletions(-)

commit 5ea39dce1eae2941548d9a12f97fa474fcd9e666
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Mon Oct 12 11:49:38 2009 +0200

    Updated Hebrew translation

 po/he.po | 23 ++++-------------------
 1 file changed, 4 insertions(+), 19 deletions(-)

commit 4a2abf45949d1a59ae48ae93cd3348901fa5ae87
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Sun Oct 11 15:09:45 2009 +0300

    Updated Romanian translation

 po/ro.po | 164 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 82 insertions(+), 82 deletions(-)

commit fedef8526d70e6ed96cc848c661a501909f1a94b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Fri Oct 2 09:04:19 2009 +0200

    Updated Spanish translation

 po/es.po | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)

commit 97201466f9d34fdd8ca2a3257d9851ab8ea808a0
Author: Tomasz Dominikowski <dominikowski@gmail.com>
Date:   Tue Sep 29 19:19:50 2009 +0200

    Updated Polish translation

 po/pl.po | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 9a183ca691f61e69964e8b1b35e6d99626fa8dd7
Author: Andika Triwidada <andika@gmail.com>
Date:   Tue Sep 29 08:47:00 2009 +0300

    Updated Indonesian translation, 75%

 po/id.po | 5707 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 2745 insertions(+), 2962 deletions(-)

commit 05cda19e92d214ea773d312ef87c22fcd32e842c
Author: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>
Date:   Mon Sep 28 21:54:50 2009 +0400

    Russian translation updated by Valery V. Inozemtsev, take one

 po/ru.po | 3072 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1671 insertions(+), 1401 deletions(-)

commit 06c81ee4b6f9d484ed17b3e07997a2cb1d25eea4
Author: Tomasz Dominikowski <dominikowski@gmail.com>
Date:   Mon Sep 28 14:22:02 2009 +0200

    Updated Polish translation

 po/pl.po | 480 ++++++++++++++++++++-------------------------------------------
 1 file changed, 150 insertions(+), 330 deletions(-)

commit 04f20139ce217560b44cb53e22cdffb261b29253
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Thu Sep 24 12:54:27 2009 +0200

    Updated Slovenian translation

 po/sl.po | 2725 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1433 insertions(+), 1292 deletions(-)

commit 4fab38b54387cdf238f3e2062755b003730e7a30
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Tue Sep 22 22:18:27 2009 +0200

    Fixed a typo

 po/it.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 68258ffd80e0f2f78e7880f791a5605030c0d9b9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Sep 21 20:30:27 2009 +0200

    Drop obsolete check for HAL (bug #595832)

 configure.in | 11 -----------
 1 file changed, 11 deletions(-)

commit 1d9875e0fc28a600f46bad94bec9050b817762d8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Sep 21 13:11:40 2009 +0200

    Release 2.28.0

 NEWS         | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 2 files changed, 68 insertions(+), 1 deletion(-)

commit 1d393a6f5de11bb9399768604e70fe2a9b326334
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Mon Sep 21 16:34:00 2009 +0900

    Updated Japanese translation to fix typo

 po/ja.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 358cc98b70b0436f22c793577213b001f9e61cf2
Author: Amitakhya Phukan <aphukan@fedoraproject.org>
Date:   Mon Sep 21 12:02:23 2009 +0530

    Updating Assamese translations

 po/as.po | 2951 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1665 insertions(+), 1286 deletions(-)

commit f4f7a6008a12ef073f610497eaf5c04734487254
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:   Mon Sep 21 14:59:33 2009 +0900

    Updated Japanese translation

 po/ja.po | 2881 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1537 insertions(+), 1344 deletions(-)

commit 947e707227d8901ae071433693ebf5c0f828c4e5
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Sep 21 07:11:16 2009 +0300

    Updating Estonian translation

 po/et.po | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 910075d6d4d56f13d67bf0c53897ab62252cee92
Author: Joan Duran <jodufi@gmail.com>
Date:   Mon Sep 21 00:36:08 2009 +0200

    Updated Catalan translation

 po/ca.po | 2595 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1402 insertions(+), 1193 deletions(-)

commit bf89c98cbfb9f58d8642512ab33bc889a589ecf2
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Sep 20 10:03:35 2009 +0200

    Updated Italian translation

 po/it.po | 705 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 297 insertions(+), 408 deletions(-)

commit 65ddea8930347df02bc1c61858561d539f3c1b49
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Aug 28 00:25:21 2009 +0200

    Minimum size for cursor slider
    
    Force cursor slide to 100 px, in order to use it without changing
    the window width.

 capplets/appearance/data/appearance.ui | 1 +
 1 file changed, 1 insertion(+)

commit 26991e3dcc60a3c99fdeed4af4366c0164145146
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Sun Sep 20 08:46:51 2009 +0300

    Updating Estonian translation

 po/et.po | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit dd606b2908113daf7d3c51345a9ea0fd6708fbc4
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Fri Sep 18 16:08:18 2009 +0530

    Upadated Oriya Translation

 po/or.po | 129 +++++++++++----------------------------------------------------
 1 file changed, 22 insertions(+), 107 deletions(-)

commit 146935c7f7aa77bea8d06588c1687dcd2a8ab591
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:   Fri Sep 18 12:47:36 2009 +0530

    hindi update by Rajesh Ranjan

 po/hi.po | 74 +++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 33 insertions(+), 41 deletions(-)

commit fe80ccb31b94b9baa52796f5844575926db976a4
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Thu Sep 17 17:12:52 2009 +0530

    Updated Gujarati Translations

 po/gu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f8c590d3e3113d14a44b6f396a1294fbfc6f4b97
Author: Petr Kovar <pknbe@volny.cz>
Date:   Wed Sep 16 23:02:49 2009 +0200

    Updated Czech translation

 po/cs.po | 724 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 282 insertions(+), 442 deletions(-)

commit c8c86af10f9f21eb0be6da28fb52927f5436d7a2
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:   Thu Sep 17 02:34:21 2009 +0530

    hindi update by Rajesh Ranjan

 po/hi.po | 864 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 414 insertions(+), 450 deletions(-)

commit 66d307101cdd5cd1ef036ecce740aeb5bfbf6713
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Wed Sep 16 20:40:03 2009 +0300

    Updated Ukrainian translation

 po/uk.po | 2354 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1279 insertions(+), 1075 deletions(-)

commit be65e468161e8df234ae566b2ef6b23851327eb6
Author: Antón Méixome <meixome@mancomun.org>
Date:   Wed Sep 16 15:00:47 2009 +0200

    Updated Galician Translation

 po/gl.po | 458 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 254 insertions(+), 204 deletions(-)

commit 91717412bf01025baaea31fac11c3dabc3a74b6d
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Wed Sep 16 12:23:29 2009 +0530

    Updated Kannada(kn) translation

 po/kn.po | 477 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 219 insertions(+), 258 deletions(-)

commit 193594f8daa533388fa9cd27c87e3b98683a4b7a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 15 19:35:38 2009 +0200

    Fix previous broken commit a01e8daa6dbefca3948d2a7be6358b41b58cb3f3

 capplets/keybindings/gnome-keybinding-properties.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a6449c387e03a781fd0fd45936b78d5e7fc5198c
Author: krishnababu k <kkrothap@redhat.ocm>
Date:   Tue Sep 15 20:42:52 2009 +0530

    Updated Telugu Translation

 po/te.po | 2817 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1435 insertions(+), 1382 deletions(-)

commit 98e14bf74937c34eed745912c90ee964539ed855
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:   Tue Sep 15 02:22:58 2009 +0300

    Updated Lithuanian translation.

 po/lt.po | 1989 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1058 insertions(+), 931 deletions(-)

commit 2bff5277906696b33a48c481412bde60d6c0ec63
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Mon Sep 14 21:35:41 2009 +0300

    Updated Greek translation.

 po/el.po | 2680 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1413 insertions(+), 1267 deletions(-)

commit 5ebe68422c4cc4bb2b17921d952dfab351b198c3
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Sep 13 22:53:04 2009 +0530

    Updating Translation for Punjabi

 po/pa.po | 2896 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1583 insertions(+), 1313 deletions(-)

commit 255632e32b9725b1abdc18cfad463d22e0c56217
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Sun Sep 13 03:20:39 2009 +0200

    Updated Danish translation

 po/da.po | 74 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 36 insertions(+), 38 deletions(-)

commit 48677779b5a5ece934eaa68182e4f3b3e901d8fa
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sun Sep 13 06:23:53 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 322 +++++++++++++++++++++++++++++++++---------------------------
 po/zh_TW.po | 322 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 360 insertions(+), 284 deletions(-)

commit 5192b6d4669d8ce9a76865559cc973ce4f10982d
Author: Bruce Cowan <bcowan@fastmail.co.uk>
Date:   Sat Sep 12 20:07:33 2009 +0100

    Updated British English translation

 po/en_GB.po | 2893 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1525 insertions(+), 1368 deletions(-)

commit eb53bb9a9d533bf7cb1e724874d1e6ce41b4cbb8
Author: Tommi Vainikainen <thv@iki.fi>
Date:   Sat Sep 12 21:28:19 2009 +0300

    Updated Finnish translation

 po/fi.po | 425 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 240 insertions(+), 185 deletions(-)

commit a01e8daa6dbefca3948d2a7be6358b41b58cb3f3
Author: Owen W. Taylor <otaylor@fishsoup.net>
Date:   Thu Sep 3 14:36:12 2009 -0400

    Allow a window manager to inherit keybindings from another window manager
    
    Mutter shares most (currently all) its keybindings with Metacity, and uses
    the same /apps/metacity GConf keys. For 2.28, the schemas stay in Metacity;
    the eventual plan is to have a gnome-wm-data package.
    
    This patch allows a window manager to put a _GNOME_WM_KEYBINDINGS property
    on its _NET_SUPPORTING_WM_CHECK window to provide a comma separated list of
    window manager names to use for keybinding lookup instead of _NET_WM_NAME.
    
    http://bugzilla.gnome.org/show_bug.cgi?id=594066

 capplets/common/wm-common.c                        | 50 ++++++++++++++++++++--
 capplets/common/wm-common.h                        |  4 ++
 capplets/keybindings/gnome-keybinding-properties.c | 40 ++++++++++++-----
 3 files changed, 79 insertions(+), 15 deletions(-)

commit 1fce26d7e2508e063e4b9e1ba3e2113aba725d7c
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Sat Sep 12 20:00:28 2009 +0300

    Updated Greek help translation.

 help/el/el.po | 90 ++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 70 insertions(+), 20 deletions(-)

commit 902d6e76f3da250b4f6e61c7901c93f70827a1ad
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Sep 12 14:58:19 2009 +0200

    Update icon because the old one has been removed from g-i-t
    
    Fixes bug 594710.

 capplets/appearance/data/gnome-theme-installer.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f6da5f9e143c62d5262da94a008294499e25dc61
Author: Ani <peter.ani@gmail.com>
Date:   Sat Sep 12 18:00:21 2009 +0530

    Updaeted Malayalam Translations

 po/ml.po | 2846 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1453 insertions(+), 1393 deletions(-)

commit af264e4d6c1ad5b56222e0f82c88d0b082336c71
Author: Sandeep Shedmake <sshedmak@redhat.com>
Date:   Fri Sep 11 19:02:43 2009 +0530

    Updated Marathi Translations

 po/mr.po | 2860 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1465 insertions(+), 1395 deletions(-)

commit 2f1c0b8065508ff2e0d9f07432a999051362cfe0
Author: Baris Cicek <baris@teamforce.name.tr>
Date:   Fri Sep 11 15:58:32 2009 +0300

    Overview of Turkish translation.

 po/tr.po | 78 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 39 insertions(+), 39 deletions(-)

commit b75867835aac0ee2d001705bfd68bce1e3efc5e3
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Thu Sep 10 23:03:09 2009 +0300

    Updated Romanian translation

 po/ro.po | 3961 ++++++++++++++++++++++++--------------------------------------
 1 file changed, 1524 insertions(+), 2437 deletions(-)

commit e551891976c6e06ac9da68cc842df098f772eb78
Author: Runa Bhattacharjee <runab@redhat.com>
Date:   Thu Sep 10 11:27:21 2009 +0530

    Updated Bengali India Translations

 po/bn_IN.po | 2527 +++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1408 insertions(+), 1119 deletions(-)

commit 29a8c1639a104c77f134e824c3aae97542e8977a
Author: Denis ARNAUD <darnaud@src.gnome.org>
Date:   Wed Sep 9 12:34:58 2009 +0200

    Updated breton translation

 po/br.po | 3728 +++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 3068 insertions(+), 660 deletions(-)

commit b3eab6b1b56a839636eb53e8fa2febab0d3e22e4
Author: Denis ARNAUD <darnaud@src.gnome.org>
Date:   Wed Sep 9 06:08:20 2009 +0200

    Updated breton translation

 po/br.po | 3994 ++++++++++----------------------------------------------------
 1 file changed, 633 insertions(+), 3361 deletions(-)

commit 7ece9a9aba9f86cb2cca25636f231b9fefae7f1f
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Sep 9 00:46:22 2009 +0100

    Updated Portuguese translation

 po/pt.po | 2806 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1481 insertions(+), 1325 deletions(-)

commit 198a73e98c17b5c850581e16903ae2b4d847539b
Author: André Gondim <andregondim@ubuntu.com>
Date:   Tue Sep 8 13:16:07 2009 -0300

    Corrected a capitalization inconsistency

 po/pt_BR.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 860a1cec9214fe915d6341eb130c94b6d29287e0
Author: Michael Terry <michael.terry@canonical.com>
Date:   Tue Sep 8 11:00:25 2009 -0400

    Show correct default layout
    
    When 'Reset to Defaults' is pressed, the default layout should also be reset.
    When showing the list of layouts, treat a -1 (unset) default layout value as 0.

 capplets/keyboard/gnome-keyboard-properties-xkb.c   | 4 ++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 194099ccced43e0b7e2bedf2974db9ac61d5488a
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Sep 8 08:00:46 2009 +0300

    Updated Bulgarian translation

 po/bg.po | 208 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 122 insertions(+), 86 deletions(-)

commit e4647c5a545571b993f24752890c207725f3b3c4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Sep 7 23:17:01 2009 +0200

    Make the font DPI spin button work again (bug #594342)
    
    Properly initialize the spin button adjustment so that the DPI
    value can be changed using the arrows. This bug was caused
    during the migration to GtkBuilder.

 capplets/appearance/appearance-font.c | 2 ++
 1 file changed, 2 insertions(+)

commit 6f0e76b1a7dbde7351abb899255e79e49e1e70e5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Sep 7 23:16:16 2009 +0200

    Fix compiler warnings

 capplets/appearance/appearance-desktop.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit de11f2e021dc0ce31fef996bdfa3060f25d62642
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Sep 7 20:02:39 2009 +0200

    Hungarian translation updated

 po/hu.po | 2695 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1355 insertions(+), 1340 deletions(-)

commit 6b2f9d2f56640d404b247c59319abb9a40872ceb
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Mon Sep 7 19:21:16 2009 +0200

    Updated Polish translation

 po/pl.po | 4054 ++++++++++++++++++++++++--------------------------------------
 1 file changed, 1564 insertions(+), 2490 deletions(-)

commit 52e74725b7cac798c78139e770613f102716be2a
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:   Thu Sep 3 17:51:06 2009 +0200

    Updated German translation

 po/de.po | 340 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 194 insertions(+), 146 deletions(-)

commit d6c117c9ebbf0b1d6df65d17ef07ee128b1fdacf
Author: William Jon McCann <jmccann@redhat.com>
Date:   Tue Sep 1 19:00:12 2009 -0400

    Use XDG user and system data dirs to load backgrounds

 capplets/appearance/gnome-wp-xml.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 8b075ba1017bb1cd865742baa2d083fbb7eeb520
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:   Wed Sep 2 00:19:26 2009 +0300

    Updated Hebrew translation

 po/he.po | 906 ++++++++++++++++++++-------------------------------------------
 1 file changed, 286 insertions(+), 620 deletions(-)

commit 6c7e004f0fa7cff3a7e0b0e9efc5fb982cda76fc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Sep 1 12:43:20 2009 +0200

    Update Norwegian bokmål translation.

 po/nb.po | 337 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 188 insertions(+), 149 deletions(-)

commit 5ce749471b13cbc37ebf4ee0ea8a7dbe642e2660
Author: Shankar Prasad <svenkate@redhat.com>
Date:   Tue Sep 1 11:20:19 2009 +0530

    Updated Kannada(kn) translation

 po/kn.po | 2637 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1354 insertions(+), 1283 deletions(-)

commit 0c83ef4ecd11e98e971c25e2260e8d95cf80861d
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Sep 1 00:22:02 2009 +0200

    Updated Swedish translation

 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b32f42979a9db293ce30faaf044643982b965ce9
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Aug 31 21:19:55 2009 +0200

    Updated Arabic translation

 po/ar.po | 414 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 230 insertions(+), 184 deletions(-)

commit b897ad0222fcf4c5c4be9be3ae8bb75aba0063e0
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Mon Aug 31 16:32:57 2009 +0530

    Updated Gujarati Translations

 po/gu.po | 2302 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1204 insertions(+), 1098 deletions(-)

commit 1027d7d5539c33c449007042c6e927c4cb111f2f
Author: Baris Cicek <baris@teamforce.name.tr>
Date:   Sun Aug 30 07:26:03 2009 +0300

    Updated Turkish translation.

 po/tr.po | 3609 +++++++++++++++++++++++---------------------------------------
 1 file changed, 1302 insertions(+), 2307 deletions(-)

commit eeaebb8774ae5823fab22ec30aaef51272298054
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Aug 29 21:11:37 2009 +0200

    Updated French translation
    
    Contributed by Bruno Brouard and Claude Paroz

 po/fr.po | 559 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 303 insertions(+), 256 deletions(-)

commit 508b7b77796e873648f93d796d2086e90f40b951
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:   Sat Aug 29 10:15:07 2009 +0200

    Updated Danish translation

 po/da.po | 2819 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1489 insertions(+), 1330 deletions(-)

commit 5c0d2363a0429e4ae05615803c795c78a8fd0844
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Aug 28 00:22:59 2009 +0200

    Rename some widget ids to make GtkBuilder happy

 capplets/appearance/data/appearance.ui | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit e85c11fef14ce65129bace88cc22680750383b01
Author: mpopovic@git.gnome.org <mpopovic@src.gnome.org>
Date:   Fri Aug 28 00:07:09 2009 +0200

    Updated Serbian translation

 po/sr.po       | 2824 ++++++++++++++++++++++++++++++--------------------------
 po/sr@latin.po | 2824 ++++++++++++++++++++++++++++++--------------------------
 2 files changed, 2996 insertions(+), 2652 deletions(-)

commit 96c0e0650c2a64e92659ea5f7dda465bf7a89063
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Aug 27 17:33:33 2009 -0400

    Don't call gnome_wp_item_ensure_gnome_bg too early
    
    It relies on the colors being set. This was causing crashes.

 capplets/appearance/gnome-wp-item.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9cd347f376dc6f88ecfc0daf29823dd609f899e0
Author: Ivar Smolin <okul@linux.ee>
Date:   Wed Aug 26 18:38:36 2009 +0300

    Updating Estonian translation

 po/et.po | 57 ++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 42 insertions(+), 15 deletions(-)

commit e3f3b8c13c98a06da7c01aed11e128221ce73768
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Wed Aug 26 15:17:51 2009 +0200

    Updated Basque language

 po/eu.po | 2698 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1357 insertions(+), 1341 deletions(-)

commit 1ff669bffd50ff121a046bb53dca10517315cdc2
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Wed Aug 26 17:09:39 2009 +0530

    Updated Oriya Translation

 po/or.po | 754 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 363 insertions(+), 391 deletions(-)

commit d1b073a2f99a19cf5738befde2b6e57a0d5374a6
Author: ifelix <ifelix@redhat.com>
Date:   Wed Aug 26 16:43:19 2009 +0530

    Updated Tamil Translations

 po/ta.po | 288 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 130 insertions(+), 158 deletions(-)

commit dcfe5ef3bcc3cdede383dae1fd4381a6dabbc691
Author: ifelix <ifelix@redhat.com>
Date:   Wed Aug 26 16:23:51 2009 +0530

    Updated Tamil Translations

 po/ta.po | 1927 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 947 insertions(+), 980 deletions(-)

commit 2510768ce57a4289dc5dce426434425ca4d9d162
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Wed Aug 26 08:01:18 2009 +0200

    Updated Spanish translation

 po/es.po | 221 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 133 insertions(+), 88 deletions(-)

commit 5ad7ad92a45b579a606815bd63fac4de580252b6
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Aug 26 06:08:05 2009 +0200

    Updated Swedish translation

 po/sv.po | 294 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 164 insertions(+), 130 deletions(-)

commit ae097bdacf64460d8d8040cd4e0fbe258c50368e
Author: Djavan Fagundes <dnoway@gmail.com>
Date:   Tue Aug 25 20:31:23 2009 -0400

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 217 +++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 128 insertions(+), 89 deletions(-)

commit 3a88e5135374bd6508d58fa8b34104b98f82ecb9
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Aug 25 12:55:39 2009 -0400

    [appearance] Make slideshows visually distinct
    
    The patch fixes the tooltips to not lie about the backgrounds, and adds a
    stacked frame decoration around slide shows.
    
    This patch adds two little buttons below the slide show that let you step
    through the frames of the slide show, to see whats in it.
    
    Fixes http://bugzilla.gnome.org/show_bug.cgi?id=591375

 capplets/appearance/appearance-desktop.c | 187 +++++++++++++++++++++++++++++--
 capplets/appearance/appearance.h         |   1 +
 capplets/appearance/gnome-wp-item.c      |  85 ++++++++++++--
 capplets/appearance/gnome-wp-item.h      |   3 +
 capplets/appearance/gnome-wp-xml.c       |   2 +-
 5 files changed, 255 insertions(+), 23 deletions(-)

commit d0f766937ffb1c69965985899d1c6f7fde9de978
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 18:25:20 2009 -0400

    Add/remove buttons should be the same size
    
    Fixes http://bugzilla.gnome.org/show_bug.cgi?id=592510

 capplets/appearance/data/appearance.ui | 321 +++++++++++++++------------------
 1 file changed, 141 insertions(+), 180 deletions(-)

commit 68993660c69d74ce990009218ff6eabc0e1bf73b
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 10:13:16 2009 -0400

    Add link buttons to get more themes/backgrounds online
    
    Fixes #http://bugzilla.gnome.org/show_bug.cgi?id=323323

 capplets/appearance/appearance-desktop.c |  13 ++-
 capplets/appearance/appearance-themes.c  |  11 +++
 capplets/appearance/appearance.h         |   4 +
 capplets/appearance/data/Makefile.am     |   3 +-
 capplets/appearance/data/appearance.ui   | 132 ++++++++++++++++++++++---------
 cinnamon-control-center.schemas.in          |  28 +++++++
 6 files changed, 152 insertions(+), 39 deletions(-)

commit e1618edba907b6a350a9d07c71865aa492c3b199
Author: Og B. Maciel <ogmaciel@gnome.org>
Date:   Mon Aug 24 22:27:40 2009 -0400

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit e4ab530c90fc7ada2083520bf12454070601d94c
Author: Og B. Maciel <ogmaciel@gnome.org>
Date:   Mon Aug 24 22:21:08 2009 -0400

    Updated Brazilian Portuguese translation by
    Krix Apolinário <krixapolinario@gmail.com> and  Og Maciel <ogmaciel@gnome.org>.

 po/pt_BR.po | 386 ++++++++++++++----------------------------------------------
 1 file changed, 91 insertions(+), 295 deletions(-)

commit 279383477dcdde6aea001b40ee02998bb7868704
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Aug 24 22:17:16 2009 +0200

    Drop check for libgnomeui (bug #592920)

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d1dc089f3ca9bfb13c9e33a983bf255ecba19efa
Author: Krasimir "Bfaf" Chonov <mk2616@abv.bg>
Date:   Mon Aug 24 21:59:26 2009 +0300

    Updated Bulgarian translation

 po/bg.po | 2633 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1310 insertions(+), 1323 deletions(-)

commit 1d41daa8ffb56c0c08750a3083a31b62e3b04a1a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Aug 24 19:02:23 2009 +0200

    Updated Spanish translation

 po/es.po | 131 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 70 insertions(+), 61 deletions(-)

commit fc20a37d82c63529d59aa14b73f15e732b2d8210
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Aug 24 18:03:34 2009 +0200

    Release 2.27.91

 NEWS         | 41 +++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 2 files changed, 42 insertions(+), 1 deletion(-)

commit b0cfcc3ede6b3290335d269f1e32b9cccf9fec39
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Aug 24 18:20:47 2009 +0300

    Updating Estonian translation

 po/et.po | 69 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 37 insertions(+), 32 deletions(-)

commit ac207ed5f1db2c6d967c0840380ee2b0f80dbbd3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Aug 24 13:14:03 2009 +0200

    Updated to latest libslab

 libslab/app-shell.c        | 11 +++++++----
 libslab/application-tile.c |  5 ++++-
 libslab/document-tile.c    |  7 +++++--
 3 files changed, 16 insertions(+), 7 deletions(-)

commit ed2fa035853cdae32fb475b611c1c5b6813bf09d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Aug 23 23:22:59 2009 -0400

    Fix more parentless modal dialogs

 capplets/appearance/appearance-main.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 9ad8f655ceaa4db38b278e1c257a2f6c3c8d76e6
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Mon Aug 24 06:36:11 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 1826 ++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 1832 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1917 insertions(+), 1741 deletions(-)

commit aa7b854b7d6cff23ed91ac32f37d2a3bcddc64f4
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Aug 23 23:04:03 2009 +0200

    Updated Spanish translation

 po/es.po | 79 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 42 insertions(+), 37 deletions(-)

commit 7485a4505d3a104ce686a2cca6677c2c7f337602
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Aug 23 20:11:50 2009 +0200

    Updated Swedish translation

 po/sv.po | 58 +++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 33 insertions(+), 25 deletions(-)

commit b08a964e03797b97515f04c50c3a969800a8e65b
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:   Mon Aug 24 00:38:50 2009 +0700

    Updated Bengali translation

 po/bn.po | 7740 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 3789 insertions(+), 3951 deletions(-)

commit c31764577f9ae20ed338df216e9d4e1c5d80d35d
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sun Aug 23 11:16:07 2009 -0400

    Add .gitignore file to libslab

 libslab/.gitignore | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 9e84e0ac38851a06d3afa5344f0b111a0126d87f
Author: Maxim Ermilov <zaspire@rambler.ru>
Date:   Sun Aug 23 10:00:08 2009 +0200

    Update the ignored hosts list when the location changes (bug #581472)

 capplets/network/gnome-network-properties.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 56c3163a41e75dba74272085718d8540fe408193
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 20:32:08 2009 -0400

    Fix parentless modal dialogs in theme installer
    
    Fixes http://bugzilla.gnome.org/show_bug.cgi?id=592354

 capplets/appearance/theme-installer.c | 343 ++++++++++++++++++++--------------
 1 file changed, 205 insertions(+), 138 deletions(-)

commit afe1d7b40f9187cd3c1ce9fa3dbe5f0ba7574ea9
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Sun Aug 23 02:07:31 2009 +0200

    Updated German translation

 po/de.po | 269 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 140 insertions(+), 129 deletions(-)

commit b3ca07c24ca0584f7cb7cd386b42629f5972132e
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 17:22:20 2009 -0400

    Fix default value

 cinnamon-control-center.schemas.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 074ce4b16f3316e983c940276c2c836175d5bbd8
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 11:52:42 2009 -0400

    Fix distcheck

 Makefile.am                   |  1 +
 capplets/Makefile.am          | 19 ++++++++++++++-----
 capplets/about-me/Makefile.am | 17 ++++++++---------
 shell/Makefile.am             |  1 +
 4 files changed, 24 insertions(+), 14 deletions(-)

commit 56361c81f324cf633b23fdf1ae9ebb686c09ad6a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Sat Aug 22 11:25:29 2009 -0400

    Add schemas file

 Makefile.am                     | 18 ++++++++++++++++++
 cinnamon-control-center.schemas.in | 21 +++++++++++++++++++++
 po/POTFILES.in                  |  1 +
 3 files changed, 40 insertions(+)

commit fe7ee8b8be27cac2afa36ce76600719596a3a569
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sun Aug 23 05:54:14 2009 +0900

    Update Korean translation

 po/ko.po | 2665 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1399 insertions(+), 1266 deletions(-)

commit 26b64c018adc03cd690a965631bc0f8cc8aaa3aa
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Aug 22 22:16:46 2009 +0200

    Fix filename after GTKBuilder migration

 po/POTFILES.skip | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d423cf9a4c7e439f27f2758bb18c8cd3bdaccea1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 22 13:27:10 2009 +0200

    Use preferences-desktop-font for the icon (bug #592642)

 font-viewer/gnome-font-viewer.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 747c3f97dcc7d45d1d158edd1897fa2f783de08b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Aug 22 11:41:15 2009 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 190 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 96 insertions(+), 94 deletions(-)

commit 2aa9fd40440981a2023a1590ef5f3d35bc8cfb52
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 22 11:37:25 2009 +0200

    Keep touchpad UI in sync with GConf
    
    Add the touchpad GConf directory to the list of reported directories
    so that the displayed configuration in the UI is kept current. Also
    remove some redundant code. Closes bug #592425.

 capplets/mouse/gnome-mouse-properties.c | 62 ++++++++++-----------------------
 1 file changed, 18 insertions(+), 44 deletions(-)

commit 674deec47195d98c88acd9208aa986401a752e8a
Author: William Jon McCann <jmccann@redhat.com>
Date:   Fri Aug 21 16:24:45 2009 -0400

    Add workaround for glade-3 not working with vbox
    
    Add orientation property to vbox
    
    Workaround for http://bugzilla.gnome.org/show_bug.cgi?id=584029

 capplets/appearance/data/appearance.ui | 36 ++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

commit 2f79c7eafbc27ae5ea7a55d43bfd4a9dec2a5a33
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Aug 21 01:36:30 2009 +0200

    Updated Italian translation

 po/it.po | 55 +++++++++++++------------------------------------------
 1 file changed, 13 insertions(+), 42 deletions(-)

commit b1716110f5d8a2c39b3ef2162d7afbb6426ef9fb
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Aug 20 23:45:18 2009 +0200

    Updated Swedish translation

 po/sv.po | 123 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 59 insertions(+), 64 deletions(-)

commit 579e1f8690e4659645e5d6cd500b04b7302b681f
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Aug 20 17:15:38 2009 -0400

    Fix dragging of rotate monitors
    
    We were using the rotated geometry for drawing, but the unrotated
    geometry for snapping. Reported in bug 578109.

 capplets/display/xrandr-capplet.c | 31 ++++++++-----------------------
 1 file changed, 8 insertions(+), 23 deletions(-)

commit 41cf21cceedf6a61d303eacb87974babd35c033e
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Thu Aug 20 10:03:31 2009 +0200

    Updated Italian translation

 po/it.po | 38 +++++++++++++-------------------------
 1 file changed, 13 insertions(+), 25 deletions(-)

commit 48872ce8c9cb8cfde20a05b1ca8a426f37d4f1de
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Wed Aug 19 22:59:41 2009 +0200

    Updated Italian translation

 po/it.po | 327 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 133 insertions(+), 194 deletions(-)

commit 7a8972095a44dfe25ef8776795a4f49df5e5f453
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 19 18:38:08 2009 +0200

    Use unique widget IDs (bug #592182)

 capplets/appearance/data/appearance.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 549ffe9eca59c00e401bd57d856088931633e4a6
Author: Henrique P. Machado <zehrique@gmail.com>
Date:   Tue Aug 18 22:21:48 2009 -0400

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 1124 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 583 insertions(+), 541 deletions(-)

commit 6f7ce8ca876acb127d39bf3c5e6f7a6743a1b7bc
Author: Antón Méixome <meixome@mancomun.org>
Date:   Mon Aug 17 13:29:29 2009 +0200

    Updated Galician Translation

 po/gl.po | 575 +++++++++++++++++++--------------------------------------------
 1 file changed, 167 insertions(+), 408 deletions(-)

commit ecfc1f4261a9b37dfb5acd37ca05e5975374dabe
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Aug 17 11:24:02 2009 +0200

    Release 2.27.90

 NEWS         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 2 files changed, 49 insertions(+), 1 deletion(-)

commit a250580a6b5f5b115a3479c518785518376caa12
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Aug 14 12:12:29 2009 +0100

    Port about-me to PolicyKit 1.0
    
    Remove the polkit-gnome dependency. It's unlikely that admins
    would require a password for the user to enroll themselves,
    and we can't modify other users' fingerprints either.

 capplets/about-me/Makefile.am      |  3 +--
 capplets/about-me/gnome-about-me.c | 37 -------------------------------------
 configure.in                       |  5 -----
 3 files changed, 1 insertion(+), 44 deletions(-)

commit fb049f949010740370224c2629a164a85d88145e
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Aug 14 17:44:17 2009 +0100

    Remove old code poking directly into the pwent
    
    Use the glib functions to get the login name and real user name,
    instead or some crummy Unix-y code.

 capplets/about-me/gnome-about-me.c | 58 ++++----------------------------------
 1 file changed, 6 insertions(+), 52 deletions(-)

commit d6cb71a5dee050a6335dfa1e2283efa7fcac6d16
Author: Andre Klapper <a9016009@gmx.de>
Date:   Sat Aug 15 17:37:28 2009 +0200

    Updated Czech translation.

 po/cs.po | 2627 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1404 insertions(+), 1223 deletions(-)

commit 98d3a2e469b71e2425fd7386c6a112f3fb5996f9
Author: Tommi Vainikainen <thv@iki.fi>
Date:   Sat Aug 15 17:32:22 2009 +0300

    Updated Finnish translation

 po/fi.po | 1777 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 931 insertions(+), 846 deletions(-)

commit befb989562227d033abbc543f188bc3293a232c5
Author: Ivar Smolin <okul@linux.ee>
Date:   Sat Aug 15 12:19:23 2009 +0300

    Updating Estonian translation

 po/et.po | 387 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 185 insertions(+), 202 deletions(-)

commit 669262e819249ee969d955df3660b29fc095db1f
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Sat Aug 15 01:19:55 2009 -0600

    Updated Irish translation

 po/ga.po | 234 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 120 insertions(+), 114 deletions(-)

commit e8e07a5ed199731794016e8e67fdf4b0126470fa
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Fri Aug 14 21:46:01 2009 +0300

    Updated Arabic translation

 po/ar.po | 177 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 92 insertions(+), 85 deletions(-)

commit 3cef270e2a2295175bd5de781cf642e61ba7f2e1
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Fri Aug 14 20:01:04 2009 +0200

    Updated Spanish translation

 po/es.po | 134 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 69 insertions(+), 65 deletions(-)

commit c710e8dcf8b55547a41b1ba83bf9ca8b5636b045
Author: Claude Paroz <claude@2xlibre.net>
Date:   Fri Aug 14 18:45:49 2009 +0200

    Attributes tag is not supported in GtkButtons. Fixes #591656

 capplets/network/gnome-network-properties.ui | 20 ++++----------------
 1 file changed, 4 insertions(+), 16 deletions(-)

commit ea00b6ce7fd896e1fd11c8fd2c7a45124327187f
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:   Fri Aug 14 18:15:57 2009 +0530

    hindi update

 po/hi.po | 241 ++++++---------------------------------------------------------
 1 file changed, 22 insertions(+), 219 deletions(-)

commit a2f1e671de02cb568ac7b5d9ae4800019201603e
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:   Fri Aug 14 18:12:12 2009 +0530

    hindi update

 po/hi.po | 2530 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1476 insertions(+), 1054 deletions(-)

commit 0cd435ee222d6fa0804f83cb29e5dfdffba793b8
Author: Mark Krapivner <mark125@gmail.com>
Date:   Fri Aug 14 12:22:32 2009 +0300

    Updated Hebrew translation

 po/he.po | 2159 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 1045 insertions(+), 1114 deletions(-)

commit 532ffc413ebebd0d8aa7d6665533a237f545d3cd
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Aug 13 10:06:30 2009 +0200

    Updated Swedish translation

 po/sv.po | 1780 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 914 insertions(+), 866 deletions(-)

commit 99a95284487953d2d823aad2fe79469f628820d3
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Wed Aug 12 17:15:43 2009 +0530

    Updated Oriya Translation

 po/or.po | 2638 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1395 insertions(+), 1243 deletions(-)

commit 14b80a942d62b076324cb639c114f39fd0fad17c
Author: Christian Hergert <chris@dronelabs.com>
Date:   Fri Jul 31 01:44:11 2009 -0700

    Make sure the underline in "Save _As..." is interpreted.

 capplets/appearance/data/appearance.ui | 1 +
 1 file changed, 1 insertion(+)

commit 5998aa90c08051cc520dfb64ede78783ef9cc2c4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 11 18:01:55 2009 +0200

    Fix crash when iterating through the tree model
    
    Don't use indices to move through iterators, don't skip the first
    section, and verify that we got a new iterator before using it
    (bug #591392).

 capplets/keybindings/gnome-keybinding-properties.c | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

commit 1dee15363d484d09d9ff00ed9c2b8dcd1a684fa8
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Aug 8 14:36:46 2009 +0200

    Update to latest libslab, and do not install libslab on the system

 configure.in          |   8 +-
 libslab/.cvsignore    |   8 --
 libslab/ChangeLog     | 248 --------------------------------------------------
 libslab/Makefile.am   |   7 ++
 libslab/libslab.pc.in |  12 ---
 5 files changed, 8 insertions(+), 275 deletions(-)

commit 915b55e3fb01dc6f74024b8ac510b1985ba30d52
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Aug 8 15:07:16 2009 +0200

    Use libunique in the shell to have a single-instance shell
    
    This requires a slight API meaning change in libslab:
    create_main_window() doesn't run gtk_main() anymore. This wasn't a good
    thing anyway.

 configure.in           |  2 +-
 libslab/app-shell.c    |  1 -
 shell/control-center.c | 65 ++++++++++++++++++++++++++++++++++++++++++++++----
 3 files changed, 61 insertions(+), 7 deletions(-)

commit aefc22db89d52555315ede06107101e70326dbf5
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Tue Aug 11 09:27:23 2009 +0300

    Updating Estonian translation

 po/et.po | 37 ++++++++++++++++++++-----------------
 1 file changed, 20 insertions(+), 17 deletions(-)

commit 51a6807cac15b37f0b46eebe2480a74eb01be648
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Tue Aug 11 02:09:55 2009 +0200

    Updated Italian translation

 po/it.po | 2850 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1557 insertions(+), 1293 deletions(-)

commit f0c0708e143d273473a6ac4d68f349c24b7d95b2
Author: Antón Méixome <meixome@mancomun.org>
Date:   Mon Aug 10 16:30:09 2009 +0200

    Updated Galician translation

 po/gl.po | 3049 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 1411 insertions(+), 1638 deletions(-)

commit 87ffe4d5f193395c9428b4fabd6eb06e20a9f7c7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 9 12:47:03 2009 +0200

    Fix compiler warnings and error checking
    
    Fix a few "incompatible type" compiler warnings, and correctly
    pass a GError* to g_file_make_directories_with_parents.

 font-viewer/font-view.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit af6a49348c65d5cf28cf3bed40f19ee41285b15d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 9 12:30:40 2009 +0200

    Fix compiler warnings
    
    theme-thumbnail-engine.c: In function 'message_from_capplet':
    theme-thumbnail-engine.c:642: warning: 'pixels' may be used uninitialized in
    this function
    theme-thumbnail-engine.c:641: warning: 'rowstride' may be used uninitialized in
    this function
    
    These are actually false positives but no warnings is good (bug #590990).

 capplets/common/theme-thumbnail.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 50fd4403ea1bd5e82227f6483f74afb74e3880a3
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Aug 9 12:48:46 2009 +0200

    Updated Spanish translation

 po/es.po | 84 ++++++++--------------------------------------------------------
 1 file changed, 10 insertions(+), 74 deletions(-)

commit 06b8b7d3722f386d33b4a7e499932767189fa0ad
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Aug 8 17:07:00 2009 +0200

    Fix error message with unknown option in shell

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 525d09fc83ada600cc1822a2401598c1f9bb9c49
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Aug 8 14:57:37 2009 +0200

    Use GOption in the shell

 shell/control-center.c | 23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

commit cbd893fda901e5a88f02011ba09bd25281a51afa
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Aug 8 14:41:16 2009 +0200

    Fix requires in gnome-window-settings-2.0.pc
    
    The headers don't need libgnomeui but gnome-desktop.

 libwindow-settings/gnome-window-settings-2.0.pc.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a0156049c6a3857a08c3beecfbe1119d4d9e04ef
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Aug 8 12:02:10 2009 +0200

    Do not depend on libpanel-applet.

 configure.in           | 2 +-
 shell/control-center.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit f402c716688c0700e6629146e25bacb548cb2b90
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Sat Aug 8 01:34:57 2009 +0200

    Updated German translation.

 po/de.po | 4077 ++++++++++++++++++++------------------------------------------
 1 file changed, 1283 insertions(+), 2794 deletions(-)

commit aadba3acb5f6dc7a4d4f651e47acbd06e3c01392
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Fri Aug 7 19:53:22 2009 +0200

    Updated Spanish translation

 po/es.po | 1175 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 636 insertions(+), 539 deletions(-)

commit bae1443f8b7a73ed76a94aa6a77d9a813f079b0e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Fri Aug 7 18:51:42 2009 +0200

    Updated Spanish translation

 po/es.po | 1124 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 578 insertions(+), 546 deletions(-)

commit f7334d30ce739012385f2cd858c9d6ae8b8cba48
Author: Andreas Proschofsky <suka@gentoo.org>
Date:   Fri Aug 7 17:41:06 2009 +0200

    Remove libgnomeui usage. Fixes bug #586527.

 configure.in           | 2 +-
 shell/control-center.c | 5 +----
 2 files changed, 2 insertions(+), 5 deletions(-)

commit 3afd0087355e3bf2f08be6fda31d8054a7a9a266
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Thu Aug 6 16:53:58 2009 -0600

    Updated Irish translation

 po/ga.po | 1073 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 528 insertions(+), 545 deletions(-)

commit c79e00f203999f7b263790072fbed52d7842ba35
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Aug 7 00:45:05 2009 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 1019 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 497 insertions(+), 522 deletions(-)

commit 5d9f7b5e2a312e3dc5a1a385858992a8380949fd
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Aug 6 11:56:27 2009 -0500

    RANDR - ensure that the output labels fit inside the monitor rectangles
    
    The labels would get clipped if the monitor rectangles were too small,
    thus making the labels unreadable.  Now we ensure that the ink_rect of
    the text fits, and we center the text based on its logical_rect.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

commit e2a0d731ac8d2c50b2b9218c7cc7a261015b441a
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Aug 6 11:39:47 2009 -0500

    RANDR - remove dead code
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 19 -------------------
 1 file changed, 19 deletions(-)

commit 04d2ad2b45e2de12c3ef379352277834d745d909
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Aug 5 19:56:41 2009 -0500

    RANDR - Don't sort the outputs before creating the labeler
    
    We used to sort the outputs by their X coordinate, maybe to display a list of them in a
    reasonable order.  However, we don't display such a list at all, so it doesn't make
    sense to sort the outputs.  This also makes the capplet use the same ordering for outputs
    as gnome-settings-daemon for GnomeRRLabeler's purposes, so that the colors for the outputs
    match in both the capplet and g-s-d.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 19 -------------------
 1 file changed, 19 deletions(-)

commit 8c225e772d95acbd3fc1b5a31a81a739c79ae0d6
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Aug 6 18:02:43 2009 +0200

    Remove markup from translatable string. Fixes #590933

 capplets/display/xrandr-capplet.c | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

commit 87669d9ab9fac6e304bccda932cba4c11c1c6011
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Aug 6 16:35:25 2009 +0200

    Change error message reference about Bonobo to DBus

 capplets/common/activate-settings-daemon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cc1b9bf9e781867a9078eed5e4c6be96b6643c51
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Aug 6 16:15:56 2009 +0200

    Release 2.276.5

 NEWS | 5 +++++
 1 file changed, 5 insertions(+)

commit 1d2442396517639e2260cbb13edc76407aa2f3db
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Aug 6 16:10:51 2009 +0200

    Release 2.27.5

 NEWS         | 23 +++++++++++++++++++++++
 configure.in | 13 +++++++++----
 2 files changed, 32 insertions(+), 4 deletions(-)

commit 638dc8d768ad95b086b5d1a55de141abe986de8a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Aug 6 16:06:28 2009 +0200

    Adapted to new libslab API, with no more Bonobo

 libslab/Makefile.am         |   1 -
 libslab/app-shell-startup.c | 123 --------------------------------------------
 libslab/app-shell-startup.h |  37 -------------
 shell/control-center.c      |  19 +------
 4 files changed, 1 insertion(+), 179 deletions(-)

commit 528a9de2f07919b28c148c4e370acaf9a09c130d
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Thu Aug 6 13:49:14 2009 +0300

    Updated Arabic translation

 po/ar.po | 978 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 511 insertions(+), 467 deletions(-)

commit 6d3e0a32ff72105cf32af7e85a7f951710d97e36
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Aug 6 11:55:01 2009 +0200

    Updated French translation
    
    Contributed by Laurent Coudeur and Claude Paroz

 po/fr.po | 2527 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1252 insertions(+), 1275 deletions(-)

commit 339738a567fa77ac1f4d3991f5565ffc3c88ff7b
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Aug 6 11:53:34 2009 +0200

    Remove markup from translatable strings in GTKBuilder files. Fixes #99759

 capplets/about-me/gnome-about-me-dialog.ui         |  42 ++++--
 capplets/about-me/gnome-about-me-password.ui       |   7 +-
 .../at-properties/at-enable-dialog.ui              |  14 +-
 capplets/appearance/data/appearance.ui             |  48 ++++--
 .../gnome-default-applications-properties.ui       |  62 +++++---
 capplets/display/display-capplet.ui                |  20 ++-
 ...gnome-keyboard-properties-a11y-notifications.ui |  30 ++--
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 144 ++++++++++++------
 capplets/localization/localization.ui              |   8 +-
 capplets/mouse/gnome-mouse-properties.ui           | 164 ++++++++++++++-------
 capplets/network/gnome-network-properties.ui       |  28 +++-
 capplets/windows/gnome-window-properties.ui        |  20 ++-
 12 files changed, 401 insertions(+), 186 deletions(-)

commit 13b5e27cbde68fc187c385a3b0c6f54b04587330
Author: Krix Apolinário <krixapolinario@gmail.com>
Date:   Thu Aug 6 00:51:09 2009 -0300

    Updated Brazilian Portuguese translation.

 po/pt_BR.po | 2266 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1187 insertions(+), 1079 deletions(-)

commit c488a6075f3a2fa5d643254a29d8d2d8cb6a0965
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Wed Aug 5 15:14:54 2009 +0300

    Updated Arabic translation

 po/ar.po | 1056 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 540 insertions(+), 516 deletions(-)

commit 6b76c6a770784130e97a8344613391232698afd3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Aug 5 12:20:19 2009 +0200

    Copied latest libslab

 libslab/Makefile.am             | 33 +++++++++---------------------
 libslab/app-resizer.c           | 41 +++++++------------------------------
 libslab/app-resizer.h           |  2 ++
 libslab/app-shell.c             | 30 +++++++++++++--------------
 libslab/app-shell.h             | 13 ++++++------
 libslab/application-tile.c      |  3 ++-
 libslab/application-tile.h      |  2 +-
 libslab/bookmark-agent.c        |  2 +-
 libslab/directory-tile.c        |  3 ++-
 libslab/directory-tile.h        |  2 +-
 libslab/document-tile.c         |  5 +++--
 libslab/double-click-detector.c | 39 +----------------------------------
 libslab/libslab-utils.c         | 28 ++++++++++++++++++++++---
 libslab/libslab-utils.h         |  2 ++
 libslab/nameplate-tile.c        |  1 -
 libslab/nameplate-tile.h        |  2 +-
 libslab/search-bar.c            |  5 +++--
 libslab/shell-window.c          | 36 +--------------------------------
 libslab/shell-window.h          |  3 ++-
 libslab/slab-gnome-util.c       |  6 ++----
 libslab/slab-section.c          |  2 --
 libslab/slab.h                  | 45 +++++++++++++++++++++++++++++++++++++++++
 libslab/system-tile.c           |  4 ++--
 libslab/system-tile.h           |  2 +-
 24 files changed, 134 insertions(+), 177 deletions(-)

commit 1cd8bdd9ffefaf760064c2556982a37251aab32b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 4 01:46:26 2009 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 1898 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 973 insertions(+), 925 deletions(-)

commit b8a3dc1505b1a91e4b07dd8fac30f7658c4e9d85
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 1 17:31:02 2009 +0200

    Don't clear the custom browser command on startup
    
    When a custom browser command was set we would clear that command
    when the capplet was restarted. As a side effect of no longer
    doing that, we now use the last used browser command as the
    starting point instead of an empty commmand (bug #590316).

 capplets/default-applications/gnome-da-capplet.c | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

commit d9dd7ba57bcea6025c8a18e327884e6600e5d63f
Author: Ivar Smolin <okul@linux.ee>
Date:   Sat Aug 1 10:28:41 2009 +0300

    Updating Estonian translation

 po/et.po | 509 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 257 insertions(+), 252 deletions(-)

commit a0dabce8b10a236e28c3dcdcd334cc728e7b5de1
Author: Felix Riemann <friemann@gnome.org>
Date:   Fri Jul 31 13:49:43 2009 +0200

    [network] Fix unparsed mnemonics. Fixes #590364.
    
    Simply enables the use of the mnemonics in the GtkBuilder file.

 capplets/network/gnome-network-properties.ui | 2 ++
 1 file changed, 2 insertions(+)

commit 589facb7d24ce42db5393f15942af33387728227
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Fri Jul 31 02:17:02 2009 -0600

    Updated Irish translation

 po/ga.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 798178bf35c14b78fceb71def7ac7a9ea5bb8dac
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Fri Jul 31 00:21:33 2009 -0600

    Updated Irish translation

 po/ga.po | 995 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 505 insertions(+), 490 deletions(-)

commit 7350d76e136f230b86ccd152a5f81fc95b423cfa
Author: Robert Ancell <robert.ancell@gmail.com>
Date:   Fri Jul 31 09:23:31 2009 +1000

    Change localization from Glade to GtkBuilder

 capplets/localization/Makefile.am        |   6 +-
 capplets/localization/localization.glade | 222 ---------------------------
 capplets/localization/localization.ui    | 248 +++++++++++++++++++++++++++++++
 capplets/localization/main.c             |  11 +-
 4 files changed, 257 insertions(+), 230 deletions(-)

commit d8414ccbc5f1ba5cd98cf5530356d3c22684d70e
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Thu Jul 30 17:14:17 2009 -0600

    Updated Irish translation

 po/ga.po | 2490 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1350 insertions(+), 1140 deletions(-)

commit 06a9d218f4de94a0b721bb5418d4d6c5deb08e35
Author: Robert Ancell <robert.ancell@gmail.com>
Date:   Thu Jul 30 13:42:13 2009 +1000

    Add missing .ui file for gnome-about-me

 capplets/about-me/gnome-about-me-dialog.ui | 1608 ++++++++++++++++++++++++++++
 1 file changed, 1608 insertions(+)

commit f12b766e603edfaa5667d5a078d54e8e870a8e92
Author: Robert Ancell <robert.ancell@gmail.com>
Date:   Thu Jul 30 13:33:03 2009 +1000

    Remove all references to Glade
    Fix up POTFILES.in for new .ui files

 capplets/about-me/gnome-about-me-fingerprint.c         |  3 ---
 capplets/about-me/gnome-about-me-password.c            |  3 ---
 capplets/about-me/gnome-about-me.c                     |  3 ---
 capplets/common/capplet-util.h                         |  4 ++--
 capplets/keyboard/gnome-keyboard-properties-a11y.c     |  2 --
 capplets/keyboard/gnome-keyboard-properties-xkb.c      |  3 ---
 capplets/keyboard/gnome-keyboard-properties-xkblt.c    |  3 ---
 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c |  3 ---
 capplets/keyboard/gnome-keyboard-properties-xkbmc.c    |  3 ---
 capplets/keyboard/gnome-keyboard-properties-xkbot.c    |  3 ---
 capplets/keyboard/gnome-keyboard-properties.c          |  3 ---
 capplets/mouse/gnome-mouse-accessibility.c             |  3 ---
 capplets/mouse/gnome-mouse-properties.c                |  3 ---
 configure.in                                           |  4 ++--
 po/POTFILES.in                                         | 18 +++++++++---------
 15 files changed, 13 insertions(+), 48 deletions(-)

commit 5e17d0984ffe04c7939a7f9a6325876263a1e88a
Author: Robert Ancell <robert.ancell@gmail.com>
Date:   Thu Jul 30 13:26:35 2009 +1000

    Remove libglade dependency on gnome-mouse-properties

 capplets/mouse/Makefile.am                  |    8 +-
 capplets/mouse/gnome-mouse-accessibility.c  |   12 +-
 capplets/mouse/gnome-mouse-accessibility.h  |    3 +-
 capplets/mouse/gnome-mouse-properties.c     |   22 +-
 capplets/mouse/gnome-mouse-properties.glade | 1488 ------------------------
 capplets/mouse/gnome-mouse-properties.ui    | 1643 +++++++++++++++++++++++++++
 po/POTFILES.in                              |    2 +-
 7 files changed, 1670 insertions(+), 1508 deletions(-)

commit d224c36f6e13fc1d3af1cd97fbd1b1bac2b89081
Author: Robert Ancell <robert.ancell@gmail.com>
Date:   Thu Jul 30 13:25:37 2009 +1000

    Remove libglade dependency on gnome-keyboard-properties

 capplets/keyboard/Makefile.am                      |   12 +-
 ...gnome-keyboard-properties-a11y-notifications.ui |  516 ++++
 capplets/keyboard/gnome-keyboard-properties-a11y.c |   29 +-
 capplets/keyboard/gnome-keyboard-properties-a11y.h |    3 +-
 .../keyboard/gnome-keyboard-properties-dialog.ui   | 1794 ++++++++++++++
 .../gnome-keyboard-properties-layout-chooser.ui    |  315 +++
 .../gnome-keyboard-properties-model-chooser.ui     |  142 ++
 .../gnome-keyboard-properties-options-dialog.ui    |   94 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   18 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   34 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |   34 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |   45 +-
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |   37 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     |   26 +-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |    6 +-
 capplets/keyboard/gnome-keyboard-properties.c      |   20 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 2535 --------------------
 po/POTFILES.in                                     |    6 +-
 18 files changed, 3008 insertions(+), 2658 deletions(-)

commit 872a2f0da7778145c024a98413d8615eb89c165f
Author: Robert Ancell <robert.ancell@gmail.com>
Date:   Thu Jul 30 13:24:02 2009 +1000

    Remove libglade dependency on gnome-about-me

 capplets/about-me/Makefile.am                      |   10 +-
 capplets/about-me/gnome-about-me-fingerprint.c     |   52 +-
 capplets/about-me/gnome-about-me-fingerprint.glade |  378 ---
 capplets/about-me/gnome-about-me-fingerprint.h     |    4 +-
 capplets/about-me/gnome-about-me-fingerprint.ui    |  256 ++
 capplets/about-me/gnome-about-me-password.c        |   40 +-
 capplets/about-me/gnome-about-me-password.ui       |  316 ++
 capplets/about-me/gnome-about-me.c                 |   77 +-
 capplets/about-me/gnome-about-me.glade             | 3173 --------------------
 po/POTFILES.in                                     |    5 +-
 10 files changed, 650 insertions(+), 3661 deletions(-)

commit 409507b4da14c9d7708fab59e0e746220b795ed9
Author: Denis Arnaud <darnaud@src.gnome.org>
Date:   Thu Jul 30 05:20:59 2009 +0200

    Updated breton translation

 po/br.po | 4828 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 2631 insertions(+), 2197 deletions(-)

commit 5fb7135c73ceb493beb862f10a45fdda6813bf78
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Wed Jul 29 12:21:25 2009 +0300

    Updated Lithuanian translation

 po/lt.po | 1831 +++++++++++++++++++++++---------------------------------------
 1 file changed, 669 insertions(+), 1162 deletions(-)

commit bcb8af64b26987599d0ace47a0dd74e4737d5882
Author: drtvasudevan <agnihot3@gmail.com>
Date:   Wed Jul 29 08:23:32 2009 +0530

    Updated Tamil translation

 po/ta.po | 85 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 49 insertions(+), 36 deletions(-)

commit 0e03ee3eff12360e8f719800c17429e9942c723f
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Jul 28 02:09:01 2009 +0200

    Updated Swedish translation

 po/sv.po | 74 +++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 43 insertions(+), 31 deletions(-)

commit 4da0a45f3ec00e82573de57bbe28988c71c12de0
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Jul 27 23:11:26 2009 +0300

    Updating Estonian translation

 po/et.po | 172 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 77 insertions(+), 95 deletions(-)

commit f5ebb3d672a5ad731fa9657487e3c4f85c1fad2b
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:   Mon Jul 27 07:14:28 2009 +0300

    Updated Arabic translation

 po/ar.po | 1431 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 756 insertions(+), 675 deletions(-)

commit ed692d0a8d16627f9eced84cc44b12c6cd2bec75
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Mon Jul 27 10:09:48 2009 +1000

    po/vi.po: use correct quoting for Vietnamese

 po/vi.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8aad6bce09bcdc4f06c7228ae09423b47b19ac16
Merge: 9985e70 abac22a
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 26 23:20:06 2009 +0100

    Merge branch 'font-viewer-revamp'

commit abac22a412a6ec7f1e63f1af275690585845414a
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 26 20:45:34 2009 +0100

    [font-viewer] add an install button to copy the font to ~/.fonts
    
    Add an install button to allow the user to install the viewed font to the
    .fonts directory of their home directory.

 font-viewer/font-view.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 76 insertions(+)

commit 1a8087a18168c369f87b261a0b8607588f65785e
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 26 20:01:54 2009 +0100

    [font-viewer] prevent vertical scrolling on the preview area
    
    The preview is much wider than it is tall, so it is more advantageous to
    scroll horizontally rather than vertically.

 font-viewer/font-view.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit daa0a0dd7818100ad20879bb996e50ac111db68e
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 26 19:33:48 2009 +0100

    [font-viewer] Use labels for multi-line information fields
    
    The data is non-editable, so it should not have the appearance of an
    editable text field. Therefore, labels are more appropriate than textview.

 font-viewer/font-view.c | 65 ++++++++++++++++++++++++++++---------------------
 1 file changed, 37 insertions(+), 28 deletions(-)

commit de961ac54bbc96cfa5cc34b390085d28c3c64683
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 26 19:09:05 2009 +0100

    [font-viewer] Switch to a horizontal layout
    
    Switch to a horizontal layout as suggested by
    Hylke Bons <hylkebons@gmail.com>

 font-viewer/font-view.c | 47 +++++++++++++++++++++++++----------------------
 1 file changed, 25 insertions(+), 22 deletions(-)

commit 9985e70d35991dcdc8a0be51c38f1960650f43ab
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 26 14:49:14 2009 +0200

    Don't barf on XML comments in background files
    
    Don't print "Unknown tag" warnings when XML comments are encountered
    in a wallpaper file (bug #588497).

 capplets/appearance/gnome-wp-xml.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 3e3e8ff02fd787d733770daa4d664a3d839b3a19
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 26 12:12:58 2009 +0200

    Fix distribution of about-me icons
    
    Remove unused icons and actually distribute those used (bug #589528)

 capplets/about-me/gnome-about-me-bulb-off.png        | Bin 3192 -> 0 bytes
 capplets/about-me/gnome-about-me-bulb-on.png         | Bin 3211 -> 0 bytes
 capplets/about-me/gnome-about-me-lock-open.png       | Bin 2913 -> 0 bytes
 capplets/about-me/gnome-about-me-lock.png            | Bin 2978 -> 0 bytes
 capplets/about-me/icons/Makefile.am                  |   2 ++
 capplets/about-me/icons/gnome-about-me-lock-open.png | Bin 0 -> 2913 bytes
 capplets/about-me/icons/gnome-about-me-lock.png      | Bin 0 -> 2978 bytes
 7 files changed, 2 insertions(+)

commit 40d465c3db067124710f9856375512835fa4602b
Author: Andre Klapper <a9016009@gmx.de>
Date:   Fri Jul 24 20:36:48 2009 +0200

    Remove libgnome usage by Cosimo Cecchi. Partially fixes bug #586527.

 libslab/document-tile.c | 16 +++++++++-------
 libslab/libslab-utils.c |  6 +++---
 libslab/libslab-utils.h |  5 +++--
 3 files changed, 15 insertions(+), 12 deletions(-)

commit 70bc572a7907ebf995cf64f0b282a3406ede03a5
Author: Yaron Sharabani <sh.yaron@gmail.com>
Date:   Fri Jul 24 21:27:06 2009 +0300

    Updated Hebrew translation

 po/he.po | 1257 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 661 insertions(+), 596 deletions(-)

commit 7679e404ae8f1b231ed20a57c90f34e6ade4da37
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Jul 22 23:42:10 2009 +0200

    Updated Swedish translation

 po/sv.po | 1264 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 655 insertions(+), 609 deletions(-)

commit 3d3638cdd5441d9721713b6fb16c1c337ef43716
Author: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
Date:   Sun Jul 19 19:10:33 2009 +0200

    Replace deprecated gtk_status_icon_set_tooltip
    
    Use gtk_status_icon_set_tooltip_text instead. This requires gtk >= 2.15.0.

 configure.in            | 2 +-
 typing-break/drwright.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit e01c1e2a64b836892bfc7a9d6852fc9b76b7ee8e
Author: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
Date:   Thu Jul 16 18:53:28 2009 +0200

    Replace deprecated gtk_file_chooser_dialog_new_with_backend
    
    Gtk+ uses gio directly now and gtk_file_chooser_dialog_new should work instead.
    
    Fixes part of GNOME bug #572325

 capplets/appearance/appearance-desktop.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit f315f3451acb0f7a55ddb9b97ca22b003c4710dd
Author: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
Date:   Thu Jul 16 18:34:25 2009 +0200

    Replace deprecated gtk_widget_draw with gtk_widget_queue_draw
    
    Fixes a part of GNOME bug #572325

 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8ffc430cb8d033d74c1e904d78d59f8af902ccf0
Author: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
Date:   Mon Jul 13 15:29:52 2009 +0200

    Resync gedit-message-area.[ch] with upstream
    
    Fixes part of GNOME bug #572325

 capplets/appearance/gedit-message-area.c | 166 +++++++++++++++++++++++--------
 capplets/appearance/gedit-message-area.h |  38 +++----
 2 files changed, 146 insertions(+), 58 deletions(-)

commit 0435304d98044c2343a59d49f3f0b5d2c1d45553
Author: Andre Klapper <a9016009@gmx.de>
Date:   Sat Jul 18 21:40:09 2009 +0200

    Remove unused includes. Fixes part of bug #586527.

 libslab/directory-tile.c  | 1 -
 libslab/libslab-utils.c   | 1 -
 libslab/slab-gnome-util.c | 1 -
 libslab/system-tile.c     | 1 -
 4 files changed, 4 deletions(-)

commit a870319ca009094e47cfb892e11e658f9654cf2d
Author: Ilkka Tuohela <hile@iki.fi>
Date:   Sun Jul 19 11:21:40 2009 +0300

    Updated Finnish translation

 po/fi.po | 1254 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 661 insertions(+), 593 deletions(-)

commit 2762e016ca92bd5fb56d4ad5b430aef60b5911d4
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Jul 18 21:29:47 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

 po/zh_HK.po | 1415 +++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po | 1415 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1480 insertions(+), 1350 deletions(-)

commit 8bdb0e5bffc9f2ab81f077239f42ccfa5bd0a600
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jul 18 13:59:46 2009 +0200

    Updated Spanish translation

 po/es.po | 826 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 455 insertions(+), 371 deletions(-)

commit 7cef015f0281a6339900d10cae70f8d139ab0665
Author: drtvasudevan <agnihot3@gmail.com>
Date:   Sat Jul 18 16:46:40 2009 +0530

    Updated Tamil translation

 po/ta.po | 1324 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 680 insertions(+), 644 deletions(-)

commit 2ec474ddfa75ad6cd281a93451bc3488612b1928
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Jul 18 01:16:25 2009 -0400

    Fix a mnemonic mishap
    
    The _Reset to Defaults button on the color tab did not have its
    mnemonic applied.

 capplets/appearance/data/appearance.ui | 1 +
 1 file changed, 1 insertion(+)

commit 8f60c01f29e874245b5ca287d0aa3b9418487874
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat Jul 18 01:07:32 2009 -0400

    Fix some theme thumbnail rendering gotchas
    
    The theme thumbnail rendering code gets the rendering of folder icons somewhat
    wrong, ie it frequently shows a gnome-fs-directory icon from gnome even if the
    actual theme has a folder icon. Improve things by using modern GtkIconTheme
    api in a better way.

 capplets/common/theme-thumbnail.c | 58 ++++++++++-----------------------------
 1 file changed, 15 insertions(+), 43 deletions(-)

commit b812fdd75e79071835e7a1f944eca27d12779cdf
Author: Felix Riemann <friemann@gnome.org>
Date:   Fri Jul 17 19:32:32 2009 +0200

    Depend on libgnomekbd >= 2.27.4
    
    This is due to the keyboard capplet switching to libxklavier-4.0.

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 01b730b525ec184ef37a48d0683bea3557f9e3e1
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Jul 17 15:17:33 2009 +0100

    Add the m4 directory to GITIGNOREFILES
    
    The m4 directory is not automatically ignored by git.mk, so we need to add
    it to this variable.

 Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 8fc5964b826b3bfc34eac1d494b3b405017d665f
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Jul 16 11:27:30 2009 -0500

    RANDR - Don't realign outputs if the current output didn't change resolutions
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 3 +++
 1 file changed, 3 insertions(+)

commit bba301ff9c2246d3779d88d0db91352e781332f9
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jul 15 18:55:24 2009 -0500

    RANDR - Factor out function to generate strings for refresh rate like '60 Hz'
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit dc62815db2ea56cdb7ee6ca8b0953ef6e2774963
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jul 15 18:52:50 2009 -0500

    RANDR - when turning an output on, default to its preferred resolution
    
    Previously we were picking the output's highest-supported resolution, which is not
    always the same as its preferred resolution.  We also do this while actually turning
    the output on, not as a side effect of rebuilding the resolution combo.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 64 +++++++++++++++++++++++++++++++--------
 1 file changed, 51 insertions(+), 13 deletions(-)

commit 9516f2f08298abdb8b2dcd92ced1df398c6043ea
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jul 15 18:48:35 2009 -0500

    RANDR - Factor out function to generate strings for resolution like 'width x height'
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit a6c2dd827b7d355daecd1e21d93bb50e4ba4187b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jul 16 16:32:31 2009 +0200

    Release 2.27.4.1

 NEWS         | 14 ++++++++++++++
 configure.in |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)

commit 5cf753b1020ce4860bdb1d8ed1319c49c4e696ee
Author: Felix Riemann <friemann@gnome.org>
Date:   Wed Jul 15 21:55:09 2009 +0200

    [network] Remove libglade dependency from gnome-network-properties

 capplets/network/Makefile.am                    |    6 +-
 capplets/network/gnome-network-properties.c     |  301 +++--
 capplets/network/gnome-network-properties.glade | 1472 -----------------------
 capplets/network/gnome-network-properties.ui    | 1023 ++++++++++++++++
 po/POTFILES.in                                  |    2 +-
 5 files changed, 1210 insertions(+), 1594 deletions(-)

commit 7312ed4cc4c0d3718bd99f6701c02d2ea209712c
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Thu Jul 16 02:00:31 2009 -0400

    Updated Gujarati Translations

 po/gu.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 7215e00b19440408d882dcd37b07bf038b02beee
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Jul 16 00:43:20 2009 +0100

    Add MAINTAINERCLEANFILES to top-level Makefile

 Makefile.am | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit 5d882a3bdde1c4988b87dcbba2cbb7806fe80f42
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Jul 16 00:38:51 2009 +0100

    Automatically generate .gitignore files with git.mk
    
    Add git.mk and include it in all Makefiles to generate .gitignore files

 .gitignore                                       |   8 -
 Makefile.am                                      |   2 +
 capplets/Makefile.am                             |   2 +
 capplets/about-me/Makefile.am                    |   2 +
 capplets/about-me/icons/Makefile.am              |   2 +
 capplets/accessibility/Makefile.am               |   2 +
 capplets/accessibility/at-properties/Makefile.am |   2 +
 capplets/appearance/Makefile.am                  |   2 +
 capplets/appearance/data/Makefile.am             |   2 +
 capplets/common/Makefile.am                      |   2 +
 capplets/default-applications/Makefile.am        |   2 +
 capplets/display/Makefile.am                     |   2 +
 capplets/keybindings/Makefile.am                 |   2 +
 capplets/keyboard/Makefile.am                    |   2 +
 capplets/localization/Makefile.am                |   3 +-
 capplets/mouse/Makefile.am                       |   2 +
 capplets/network/Makefile.am                     |   2 +
 capplets/windows/Makefile.am                     |   2 +
 font-viewer/Makefile.am                          |   2 +
 git.mk                                           | 182 +++++++++++++++++++++++
 help/Makefile.am                                 |   2 +
 libslab/Makefile.am                              |   2 +
 libwindow-settings/Makefile.am                   |   2 +
 shell/Makefile.am                                |   2 +
 typing-break/Makefile.am                         |   2 +
 25 files changed, 228 insertions(+), 9 deletions(-)

commit 2aa0c3ed1bff9e7f95b69f1325304a7de60e0515
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jul 15 18:40:24 2009 +0200

    EXTRA_DIST about-me fingerprint icons

 capplets/about-me/icons/Makefile.am | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 21eda8861210d08b8b8eaf8205c40f634abfd3eb
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jul 15 17:33:23 2009 +0200

    Release 2.27.4

 NEWS         | 39 +++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 2 files changed, 40 insertions(+), 1 deletion(-)

commit 0909600cbc8bd0604c8fead1ee8aa03d1cbcde27
Author: Claude Paroz <claude@2xlibre.net>
Date:   Tue Jul 14 19:59:20 2009 +0200

    Fix POTFILES.in

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a7ce8f77f88c9eefeaf8b040cb25915a8c95d2cd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jul 14 00:02:30 2009 +0200

    Fix single GTK+ includes

 libslab/slab-section.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 60b59b554b9b27a80471b7199c707318b4a7a843
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jul 13 23:57:41 2009 +0200

    Fix single GTK+ includes

 libslab/search-bar.c   | 3 +--
 libslab/shell-window.c | 7 +------
 libslab/shell-window.h | 4 +---
 libslab/slab-section.h | 2 +-
 4 files changed, 4 insertions(+), 12 deletions(-)

commit 232a92d1484d9f8b0c8e7f9c86964255abaa7583
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jul 13 23:56:37 2009 +0200

    Fix single GTK+ includes

 libslab/app-shell.c             | 2 ++
 libslab/double-click-detector.c | 2 +-
 libslab/system-tile.c           | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

commit 597af225f8c93a482e5e3e1f3a3511d7fe9484e3
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Mon Jul 13 06:29:07 2009 -0400

    Updated Gujarati Translations

 po/gu.po | 454 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 222 insertions(+), 232 deletions(-)

commit 3d531a89aff27813013297e6aef30935a8431512
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 12 22:51:04 2009 +0100

    [libslab] fix for single includes in GTK+
    
    Recent GTK+ only permits gtk/gtk.h to be included

 libslab/search-entry.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e14a84a718d9882d320de1f359c0547836a9b4e3
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Apr 2 13:50:10 2009 +1000

    Support touchpad configuration through device properties.
    
    This patch is based on Ubuntu's touchpad configuration.
    
    It adds a new tab to gnome-mouse-properties that allows to enable/disable the
    touchpad, tapping and select between edge scrolling and two-finger scrolling.
    
    It adds the following gconf keys:
        /desktop/gnome/peripherals/touchpad/disable_while_typing (boolean)
        /desktop/gnome/peripherals/touchpad/tap_to_click         (boolean)
        /desktop/gnome/peripherals/touchpad/horiz_scroll_enabled (boolean)
        /desktop/gnome/peripherals/touchpad/scroll_method        (integer)
        [0,1,2 for disabled, edge and two-finger scrolling, respectively]
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

 capplets/mouse/gnome-mouse-properties.c     | 122 ++++++++++++
 capplets/mouse/gnome-mouse-properties.glade | 283 ++++++++++++++++++++++++++++
 configure.in                                |  14 ++
 3 files changed, 419 insertions(+)

commit 53d1d5e34726acd91a3f53da9aeda59d0a6d5f77
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 12 17:23:36 2009 +0100

    [display,window] add missing UI definition files
    
    Add UI files from bug 572325.
    Patch by Felix Riemann <friemann@gnome.org>

 capplets/display/display-capplet.ui         | 404 ++++++++++++++++++++++++++++
 capplets/windows/gnome-window-properties.ui | 381 ++++++++++++++++++++++++++
 2 files changed, 785 insertions(+)

commit 0a615ec0b4105064d67c15b8c6738f5f7e2ea132
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 12 17:09:16 2009 +0100

    [appearance] actually commit the ui definition file

 capplets/appearance/data/appearance.ui | 2890 ++++++++++++++++++++++++++++++++
 1 file changed, 2890 insertions(+)

commit dbbe37f0bc3e01e45588d042c73200a9e5dbcb24
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 12 00:38:26 2009 +0100

    [appearance] unref the GtkBuilder object if loading failed
    
    Unref the GtkBuilder object if the ui description file could not be loaded.
    This prevents the GtkBuilder object from being leaked.

 capplets/appearance/appearance-main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 91d76275587d23d5ee16fdb272b89f286a016082
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 12 00:36:17 2009 +0100

    [appearance] install the ui file into the common ui directory
    
    Install the UI description file into the same directory as the other
    capplets

 capplets/appearance/Makefile.am      | 2 +-
 capplets/appearance/data/Makefile.am | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 683102f25748abd8682d22ce407b100e3f8b2808
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 11 23:24:34 2009 +0100

    [appearance] remove custom cell renderers
    
    The custom cell renderers were required to draw the selection inidicator
    around the entire item, not just the text. This has now been fixed in GTK+ as the
    as the resolution of bug 382544.

 capplets/appearance/Makefile.am            |   6 +-
 capplets/appearance/appearance-desktop.c   |   3 +-
 capplets/appearance/appearance-themes.c    |   6 +-
 capplets/appearance/caption-cellrenderer.c | 114 -----------------------------
 capplets/appearance/caption-cellrenderer.h |  47 ------------
 capplets/appearance/wp-cellrenderer.c      | 109 ---------------------------
 capplets/appearance/wp-cellrenderer.h      |  44 -----------
 7 files changed, 4 insertions(+), 325 deletions(-)

commit 8389b285a13338a5881ca8facad6690a98fc56df
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 11 13:00:02 2009 +0100

    [appearance] Remove the .glade ui file
    
    This is no longer used, since the appearance capplet has been migrated to
    GtkBuilder.

 capplets/appearance/data/appearance.glade | 2807 -----------------------------
 1 file changed, 2807 deletions(-)

commit e5d8d840d5988546870468367d8491ac1ef146be
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 11 12:53:27 2009 +0100

    [appearance] migrate appearance capplet to GtkBuilder
    
    This removes the dependency on the deprecated libglade library.

 capplets/appearance/Makefile.am          |   6 +-
 capplets/appearance/appearance-desktop.c |  24 +++---
 capplets/appearance/appearance-font.c    | 122 +++++++++++++++----------------
 capplets/appearance/appearance-main.c    |  43 ++++++-----
 capplets/appearance/appearance-style.c   |  86 +++++++++++-----------
 capplets/appearance/appearance-themes.c  |  46 ++++++------
 capplets/appearance/appearance-ui.c      |  18 ++---
 capplets/appearance/appearance.h         |   8 +-
 capplets/appearance/data/Makefile.am     |   4 +-
 capplets/appearance/theme-save.c         |  26 ++++---
 10 files changed, 199 insertions(+), 184 deletions(-)

commit 9fcae9146ba657bff064321f27923b5bc054f33a
Author: Felix Riemann <friemann@gnome.org>
Date:   Fri Jul 10 16:46:41 2009 +0200

    [keybindings] Remove libglade dependency from keybindings capplet

 capplets/keybindings/Makefile.am                   |   8 +-
 capplets/keybindings/gnome-keybinding-properties.c | 133 ++++---
 .../keybindings/gnome-keybinding-properties.glade  | 405 ---------------------
 .../keybindings/gnome-keybinding-properties.ui     | 301 +++++++++++++++
 po/POTFILES.in                                     |   2 +-
 5 files changed, 390 insertions(+), 459 deletions(-)

commit 80e3300d278ea7837c875c0f4e6f6f3fd1bae587
Author: Felix Riemann <friemann@gnome.org>
Date:   Fri Jul 10 15:00:29 2009 +0200

    [default-apps] Remove libglade dep from default-applications capplet

 capplets/default-applications/Makefile.am          |    6 +-
 capplets/default-applications/gnome-da-capplet.c   |  100 +-
 capplets/default-applications/gnome-da-capplet.h   |    3 +-
 capplets/default-applications/gnome-da-xml.c       |    2 +-
 .../gnome-default-applications-properties.glade    | 2146 --------------------
 .../gnome-default-applications-properties.ui       | 1363 +++++++++++++
 po/POTFILES.in                                     |    2 +-
 7 files changed, 1424 insertions(+), 2198 deletions(-)

commit 0b65af5fad4533311d4148ec102b044583120168
Author: Felix Riemann <friemann@gnome.org>
Date:   Fri Jul 10 13:47:45 2009 +0200

    [at-properties] Remove libglade depency from at-properties capplet
    
    The image widgets used by the buttons are now created and assigned
    through GtkBuilder directly as well.

 capplets/accessibility/at-properties/Makefile.am   |   8 +-
 .../at-properties/at-enable-dialog.glade           | 394 ---------------------
 .../at-properties/at-enable-dialog.ui              | 347 ++++++++++++++++++
 capplets/accessibility/at-properties/main.c        | 108 +++---
 po/POTFILES.in                                     |   2 +-
 5 files changed, 407 insertions(+), 452 deletions(-)

commit 509899200de8703366c81ff315e450b5ada2146f
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Thu Jul 9 22:23:55 2009 +0300

    Updated Ukrainian translation

 po/uk.po | 82 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 39 insertions(+), 43 deletions(-)

commit c3f370399c0df7d02a1ebd4f982da2ed7ba72b77
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Jul 9 20:59:20 2009 +0200

    Updated Spanish translation

 po/es.po | 488 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 242 insertions(+), 246 deletions(-)

commit eb10778c53afa66ad3d15cbc9cb7380ca50f4827
Author: Felix Riemann <friemann@gnome.org>
Date:   Thu Jul 9 14:59:43 2009 +0200

    [windows] Strip libglade dependency from gnome-window-properties

 capplets/windows/Makefile.am                   |   8 +-
 capplets/windows/gnome-window-properties.c     |  66 +--
 capplets/windows/gnome-window-properties.glade | 550 -------------------------
 po/POTFILES.in                                 |   2 +-
 4 files changed, 42 insertions(+), 584 deletions(-)

commit 622a730e5ce54cde609e75ff5ca33c5e24eb239c
Author: Felix Riemann <friemann@gnome.org>
Date:   Thu Jul 9 14:54:25 2009 +0200

    [display] Remove libglade dependency from display-properties capplet

 capplets/display/Makefile.am           |   6 +-
 capplets/display/build.sh              |   2 +-
 capplets/display/display-capplet.glade | 541 ---------------------------------
 capplets/display/xrandr-capplet.c      |  64 ++--
 po/POTFILES.in                         |   2 +-
 5 files changed, 44 insertions(+), 571 deletions(-)

commit 7c20b2bc3a2a73ee62e2745c9fdbaf054073d402
Author: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
Date:   Thu Jul 9 14:46:19 2009 +0200

    [typing-break] Use GtkUIManager to replace GtkItemFactory

 typing-break/drwright.c | 98 +++++++++++++++++++------------------------------
 1 file changed, 38 insertions(+), 60 deletions(-)

commit 2fc7c6d360a6b6b8694a93b3b1e6029a758240c3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jul 9 13:23:03 2009 +0200

    [about-mne] Added missing Makefile.am

 capplets/about-me/icons/Makefile.am | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit af839df16e5f3cbe0b523ac064091978c48717ea
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 9 13:19:34 2009 +0200

    New icons for fingerprint screen from Michael Langlie <mlanglie@redhat.com>

 capplets/about-me/Makefile.am                   |  13 +-
 capplets/about-me/gnome-about-me-fingerprint.c  |  22 +-
 capplets/about-me/icons/left-index-finger.svg   | 177 ++++++++
 capplets/about-me/icons/left-little-finger.svg  | 180 ++++++++
 capplets/about-me/icons/left-middle-finger.svg  | 180 ++++++++
 capplets/about-me/icons/left-ring-finger.svg    | 180 ++++++++
 capplets/about-me/icons/left-thumb.svg          | 180 ++++++++
 capplets/about-me/icons/print_error.svg         | 525 ++++++++++++++++++++++++
 capplets/about-me/icons/print_ok.svg            | 310 ++++++++++++++
 capplets/about-me/icons/right-index-finger.svg  | 179 ++++++++
 capplets/about-me/icons/right-little-finger.svg | 182 ++++++++
 capplets/about-me/icons/right-middle-finger.svg | 182 ++++++++
 capplets/about-me/icons/right-ring-finger.svg   | 182 ++++++++
 capplets/about-me/icons/right-thumb.svg         | 182 ++++++++
 configure.in                                    |   1 +
 15 files changed, 2664 insertions(+), 11 deletions(-)

commit aabed0ea72d33efc2afb17aa48e07fd6ec4be43c
Author: Ivar Smolin <okul@linux.ee>
Date:   Wed Jul 8 00:08:19 2009 +0300

    Updating Estonian translation

 po/et.po | 139 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 130 insertions(+), 9 deletions(-)

commit ddfb10468f204f8214390a5d705471707fd7e36a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jul 2 00:43:10 2009 +0200

    Shut up git some more

 .gitignore | 3 +++
 1 file changed, 3 insertions(+)

commit f212745bdf34a98464e6d9e1f7ebc85d35584498
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:   Wed Jul 1 22:55:54 2009 +0300

    Updated Ukrainian translation

 po/uk.po | 1783 +++++++++++++++++++++++++++-----------------------------------
 1 file changed, 787 insertions(+), 996 deletions(-)

commit 1f01217ea9a6a062f38f592cdefa22cb2566f344
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 21:03:41 2009 +0200

    Release 2.27.3

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c54dc9db385fac50bea4d853aeacfc17c3c96f30
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 18:52:33 2009 +0200

    Added missing translatable files

 po/POTFILES.in | 7 +++++++
 1 file changed, 7 insertions(+)

commit d827a8486de142949de107afefd74b431c0b8e37
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 18:39:12 2009 +0200

    Release 2.27.3

 NEWS | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)

commit d35675191b70a94f0d2b4a945d4638514c84e49e
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 18:15:07 2009 +0200

    Copy libslab from gnome-main-menu, for not breaking 2.26.x

 Makefile.am                        |    4 +-
 configure.in                       |   15 +-
 libslab/.cvsignore                 |    8 +
 libslab/ChangeLog                  |  248 +++++++
 libslab/Makefile.am                |  105 +++
 libslab/app-resizer.c              |  342 +++++++++
 libslab/app-resizer.h              |   70 ++
 libslab/app-shell-startup.c        |  123 ++++
 libslab/app-shell-startup.h        |   37 +
 libslab/app-shell.c                | 1407 ++++++++++++++++++++++++++++++++++++
 libslab/app-shell.h                |  140 ++++
 libslab/application-tile.c         |  882 ++++++++++++++++++++++
 libslab/application-tile.h         |   66 ++
 libslab/bookmark-agent.c           | 1238 +++++++++++++++++++++++++++++++
 libslab/bookmark-agent.h           |   89 +++
 libslab/directory-tile.c           |  669 +++++++++++++++++
 libslab/directory-tile.h           |   57 ++
 libslab/document-tile.c            | 1093 ++++++++++++++++++++++++++++
 libslab/document-tile.h            |   63 ++
 libslab/double-click-detector.c    |  122 ++++
 libslab/double-click-detector.h    |   58 ++
 libslab/gnome-utils.c              |  346 +++++++++
 libslab/gnome-utils.h              |   40 +
 libslab/libslab-utils.c            |  695 ++++++++++++++++++
 libslab/libslab-utils.h            |   39 +
 libslab/libslab.pc.in              |   12 +
 libslab/nameplate-tile.c           |  291 ++++++++
 libslab/nameplate-tile.h           |   55 ++
 libslab/nld-marshal.list           |    1 +
 libslab/recent-files.c             |  294 ++++++++
 libslab/recent-files.h             |   80 ++
 libslab/search-bar.c               |  361 +++++++++
 libslab/search-bar.h               |   72 ++
 libslab/search-context-picker.c    |  196 +++++
 libslab/search-context-picker.h    |   58 ++
 libslab/search-entry-watermark.svg |   58 ++
 libslab/search-entry.c             |  145 ++++
 libslab/search-entry.h             |   50 ++
 libslab/shell-window.c             |  187 +++++
 libslab/shell-window.h             |   66 ++
 libslab/slab-gnome-util.c          |  474 ++++++++++++
 libslab/slab-gnome-util.h          |   76 ++
 libslab/slab-section.c             |  197 +++++
 libslab/slab-section.h             |   71 ++
 libslab/system-tile.c              |  286 ++++++++
 libslab/system-tile.h              |   53 ++
 libslab/themed-icon.c              |  165 +++++
 libslab/themed-icon.h              |   53 ++
 libslab/tile-action.c              |  108 +++
 libslab/tile.c                     |  621 ++++++++++++++++
 libslab/tile.h                     |  143 ++++
 51 files changed, 12122 insertions(+), 7 deletions(-)

commit 1db2175f4946dff5546c17071456de8ced0902c6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 13:09:56 2009 +0200

    Fix HAVE_LIBSLAB check

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d2f265b66b2a5bd3bb5b37dd7a201e31b6b3d0c9
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 13:05:20 2009 +0200

    Add .gitignore file

 .gitignore | 5 +++++
 1 file changed, 5 insertions(+)

commit c223dafe320fab8efcd40316822199737ea21947
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 29 13:03:56 2009 +0200

    Use external (and optional) libslab

 Makefile.am  |  6 +++++-
 configure.in | 18 ++++++++++++------
 2 files changed, 17 insertions(+), 7 deletions(-)

commit 1e58245df014b7459d24fb0a9f9e45ccceeaaddd
Author: Sergey V. Udaltsov <svu@gnome.org>
Date:   Mon Jun 29 01:04:10 2009 +0100

    dependency on libxklavier 4.0, optional load/display of extra layouts

 ChangeLog                                          |   4 +
 capplets/keyboard/ChangeLog                        |   6 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   9 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 126 ++++++++++++++-------
 configure.in                                       |   2 +-
 5 files changed, 106 insertions(+), 41 deletions(-)

commit 1c4a3a3b0e92a82fd9cefac85d48474c8e038fee
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   Fri Jun 26 22:36:54 2009 +0300

    Updating Estonian translation

 po/et.po | 251 ++++++++++++++++++++-------------------------------------------
 1 file changed, 78 insertions(+), 173 deletions(-)

commit fbc6c2650ad867eace8246418a3d24a724ef030d
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Fri Jun 26 08:19:10 2009 +1000

    po/vi.po: fixed "Điểmcon"

 po/vi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4aac93ce2d9b94e34447ee21a53a327fe0341cea
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Jun 15 15:11:01 2009 -0500

    randr - Don't pop up a redundant error dialog
    
    In case the RANDR configuration cannot be applied, gnome-settings-daemon already
    pops up an error message.  So, don't pop up another error of our own.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit cc048e3e9447dcdd3f067dad03c9e6614be1b3bb
Author: Runa Bhattacharjee <runab@redhat.com>
Date:   Fri Jun 12 19:20:50 2009 +0530

    Updated Bengali India Translations

 po/bn_IN.po | 422 +++++++++++++++++-------------------------------------------
 1 file changed, 116 insertions(+), 306 deletions(-)

commit 8c2d83298a26287052af108e839b03991dc66ece
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Wed Jun 10 18:55:31 2009 +0530

    Added entries for Hindi Translation updated by Rajesh Ranjan

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 5cb8c59c4605a0ecbd861991dfcfa2c730ca6288
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Wed Jun 10 18:54:05 2009 +0530

    Updated Hindi Translation

 po/hi.po | 473 ++++++++++++++++++++-------------------------------------------
 1 file changed, 145 insertions(+), 328 deletions(-)

commit 1f360cffc41ea6cc133463a6a269c11ae708e00e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jun 10 10:34:29 2009 +0200

    Updated Norwegian bokmål translation.

 po/nb.po | 422 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 186 insertions(+), 236 deletions(-)

commit 74e06ac80e3c34b416ca0a72615dfa11398b8d33
Author: Federico Mena Quintero <federico@novell.com>
Date:   Sat May 30 20:47:42 2009 -0500

    Use the timestamp of the Apply button to change the RANDR configuration
    
    There is no timestamp available when the dialog returns from gtk_dialog_run().
    So, we save the timestamp at the time the Apply button is clicked.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/display-capplet.glade |  2 +-
 capplets/display/xrandr-capplet.c      | 23 ++++++++++++++++++++++-
 2 files changed, 23 insertions(+), 2 deletions(-)

commit 1efda260d36a35be30de143ac60129109f82720d
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Jun 8 20:16:42 2009 -0500

    Uh, you have two plural forms?

 po/uz.po          | 2 +-
 po/uz@cyrillic.po | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit d8f841f2ab3eb79a2f426ee6fdbba4f0652143d4
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Jun 8 20:15:06 2009 -0500

    Fix permissions in translations

 0 files changed

commit d831c0e7a409c12b842b9c67c312b77768fbe006
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Jun 8 20:14:35 2009 -0500

    Comment out translation with invalid plurals

 po/bn.po | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit d9ae8c04f53b132f83ee694d61bcae8c3d14431c
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Jun 8 20:12:57 2009 -0500

    Fix permissions in translations

 0 files changed

commit 9281a911cf86eda6e2b0e2d142d062d1d0d05e16
Author: Federico Mena Quintero <federico@novell.com>
Date:   Sun May 31 13:52:26 2009 -0500

    Fix the layout-outputs-horizontally helper
    
    The horizontal coordinate was not always being updated.
    Also, ensure that outputs are at y=0.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/xrandr-capplet.c | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

commit 04e1f4463fe28578d4aae071f88b0ca7f51f2bf0
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Mon Jun 8 17:20:16 2009 +0530

    Added entries for Oriya Translation update.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit fc3153f9439b205caafecb5b9089e4174a7d5bfe
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:   Mon Jun 8 17:19:06 2009 +0530

    Upadted Oriya Translation

 po/or.po | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 52 insertions(+), 4 deletions(-)

commit 210c7f24603f41a8b194c7579b7fe7e099e0c082
Author: Ivar Smolin <okul@linux.ee>
Date:   Mon Jun 8 11:03:31 2009 +0300

    Updating Estonian translation

 po/et.po | 868 ++-------------------------------------------------------------
 1 file changed, 20 insertions(+), 848 deletions(-)

commit be80c315cdd92c5e0e1d5045984ed52ff168ad21
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 5 15:07:45 2009 +0100

    Revert previous patch, broke string freeze

 capplets/default-applications/gnome-default-applications.xml.in | 8 --------
 1 file changed, 8 deletions(-)

commit 8fc3d767ccd80cd254813fac46d52f3394c9028a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 5 14:56:29 2009 +0100

    [defaultapplications] Add Arora to the browsers
    
    Add Arora[1] to the browser list.
    
    [1]: http://code.google.com/p/arora/

 capplets/default-applications/gnome-default-applications.xml.in | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 931ddc40dda7d9759bf66cd20789c9b9a5201a07
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 28 21:00:05 2009 +0200

    [font-viewer] interrupt thumbnailing at 30 secs instead of 30 msecs
    
    Timeout value was supposed to be 30 seconds; 30 milliseconds is a bit
    too short to get any amount of thumbnailing done (bug #584107)

 ChangeLog                      | 6 ++++++
 font-viewer/font-thumbnailer.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 7f4f82f1e865d6b19a06163d57fd86846079f212
Author: Gil Forcada <gforcada@gnome.org>
Date:   Fri May 22 17:45:56 2009 +0200

    Minor fix to Catalan translation

 po/ca.po | 483 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 216 insertions(+), 267 deletions(-)

commit 903e8369c43f12d1d9007f8a3054ffd0aaca3e1a
Author: Gil Forcada <gforcada@gnome.org>
Date:   Fri May 22 17:45:43 2009 +0200

    Fixed POTFILES.in so translators can update their translations

 po/POTFILES.in | 7 -------
 1 file changed, 7 deletions(-)

commit 2983cb25ead352469c370f8c130a904f802b0dac
Author: Vivian Zhang <vivian.zhang@intel.com>
Date:   Thu May 21 17:04:14 2009 +0200

    [aboutme] initialize GThread subsystem
    
    initialize the GThread subsystem because the thumbnail factory needs
    it (bug #583451)

 capplets/about-me/ChangeLog        | 7 +++++++
 capplets/about-me/gnome-about-me.c | 4 ++++
 2 files changed, 11 insertions(+)

commit 45f198113a1807faf094e3529b03da7622acc3ed
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 20 23:20:04 2009 +0200

    [common] don't unref NULL GConf entries

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 6a17b703307007a42e0afc8daff4b3e845b17694
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat May 9 11:49:01 2009 -0400

    Don't needlessly write entries back to gconf on startup
    
    This is a partial fix for problems with the font dpi setting.
    See bug 581986.

 capplets/appearance/appearance-font.c | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

commit d4b13229a26e626cb4da7d0aeb987d6bc769b2c9
Author: Ivar Smolin <okul@linux.ee>
Date:   Fri May 8 19:31:00 2009 +0300

    Updating Estonian translation

 po/et.po | 854 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 843 insertions(+), 11 deletions(-)

commit 59380c29e4e30f14cf52036a766868d83bdedb91
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu May 7 20:02:37 2009 -0400

    Make the custom keybinding UI smoother
    
    These changes were proposed in bug 580792:
     - Make the apply button the default
     - Don't let the cancel button grab the default
     - Make both entries activate the default widget
     - Grab the focus to the first entry when presenting the dialog

 capplets/keybindings/gnome-keybinding-properties.c     | 1 +
 capplets/keybindings/gnome-keybinding-properties.glade | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 4864d99794d503da7f4db932e8d36a8c44c69cd8
Author: Christian Persch <chpe@gnome.org>
Date:   Thu May 7 23:29:47 2009 +0200

        * font-viewer/ftstream-vfs.c: (vfs_stream_open): Safely printf
        strings. Bug #581731.

 ChangeLog                  | 5 +++++
 font-viewer/ftstream-vfs.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit af03baa1bc45fb41477c80bc045568eddd975827
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed May 6 13:52:38 2009 -0500

    bgo#556050 - Make the monitor heading in the RANDR capplet be explicitly black
    
    The labels are always painted against a light pastel background.  Using
    the theme's colors makes the label hard to read on 'inverse' themes.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>

 capplets/display/ChangeLog        |  9 +++++++++
 capplets/display/xrandr-capplet.c | 18 ++++++++++++++++++
 2 files changed, 27 insertions(+)

commit aee9b4affdecf2bce84616004b6a6d51ae368594
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 3 15:57:30 2009 +0200

    [common] Fix theme engine detection on non-UNIX platforms
    
    Use g_module_build_path to construct the module name so we don't break
    on platforms that don't use the .so suffix (bug #581156)

 capplets/common/ChangeLog          | 8 ++++++++
 capplets/common/gnome-theme-info.c | 5 ++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit aefd99f7536e42f19184bab9baeb9066fe045635
Author: Ivar Smolin <okul@linux.ee>
Date:   Sat May 2 11:13:58 2009 +0300

    Updating Estonian translation

 po/et.po | 378 +++++++--------------------------------------------------------
 1 file changed, 42 insertions(+), 336 deletions(-)

commit 8d69cabb53fae8152bbdbef851c6c499af89f8c7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 27 23:03:37 2009 +0200

    fix mailto URIs in DOAP file

 cinnamon-control-center.doap | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit cde806954160868ac71362cd82d936cd4cc81cfb
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Sun Apr 26 13:14:23 2009 +0400

    Fixes bug #580263 in Russian translation

 po/ru.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7f75d5c301d01dc48315b6f3f9136e66ea90db19
Author: Olav Vitters <olav@bkor.dhs.org>
Date:   Thu Apr 23 18:29:55 2009 +0200

    Add DOAP file

 cinnamon-control-center.doap | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

commit 98ae24699105463f37b1b576910fa7e2011ea3ea
Author: Deng Xiyue <manphiz@gmail.com>
Date:   Sat Apr 18 08:07:39 2009 +0200

    Updated zh_CN translation

 po/ChangeLog |   4 +
 po/zh_CN.po  | 765 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 465 insertions(+), 304 deletions(-)

commit 7ff4e4ee69bfd21a236af3f56e0490944141d8d5
Author: khaledh <khaledh@localhost>
Date:   Wed Apr 15 11:51:22 2009 +0000

    Updated Arabic translation.
    
    svn path=/trunk/; revision=9413

 po/ChangeLog |   4 ++
 po/ar.po     | 169 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 72 insertions(+), 101 deletions(-)

commit 2fc7fe12476aae2bd22f4bc6afb7816fe8ac729e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 14 21:58:01 2009 +0000

    close gtkrc files after use so we don't run out of file descriptors (bug
    
    2009-04-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_details): close gtkrc files after use so
        we don't run out of file descriptors (bug #578835)
    
    svn path=/trunk/; revision=9412

 capplets/common/ChangeLog     | 5 +++++
 capplets/common/gtkrc-utils.c | 2 ++
 2 files changed, 7 insertions(+)

commit 004051922d3ddd0ea31827b615641432e6901ff9
Author: Petr Kovar <pknbe@volny.cz>
Date:   Mon Apr 13 23:40:10 2009 +0000

    Fixed Czech translation.
    
    2009-04-14  Petr Kovar  <pknbe@volny.cz>
    
        * cs.po: Fixed Czech translation.
    
    svn path=/trunk/; revision=9411

 po/ChangeLog |  4 ++++
 po/cs.po     | 59 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 33 insertions(+), 30 deletions(-)

commit 77f77abd1d473a407016b837baddaa085b055381
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Mon Apr 13 17:07:36 2009 +0000

    Updated Greek translation (g-c-c)
    
    svn path=/trunk/; revision=9410

 po/ChangeLog |   4 +
 po/el.po     | 553 ++++++++++++++++-------------------------------------------
 2 files changed, 150 insertions(+), 407 deletions(-)

commit 8bf93d0df89379f7ee0a14bdd659f3401f8654d0
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Sat Apr 11 18:56:49 2009 +0000

    Make all mnemonics work
    
    svn path=/trunk/; revision=9409

 capplets/display/ChangeLog             | 4 ++++
 capplets/display/display-capplet.glade | 3 +++
 2 files changed, 7 insertions(+)

commit 346c3022b6e934d062a06a7cf30487d3d393426a
Author: Benjamin Berg <benjamin@sipsolutions.net>
Date:   Sat Apr 11 16:20:38 2009 +0000

    Only delete the theme if the user pressed OK (bug #578694)
    
    2009-04-11  Benjamin Berg  <benjamin@sipsolutions.net>
    
        * theme-util.c: (theme_delete):
        Only delete the theme if the user pressed OK (bug #578694)
    
    svn path=/trunk/; revision=9408

 capplets/appearance/ChangeLog    | 5 +++++
 capplets/appearance/theme-util.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 91ab19351c867ad871f116162c2596805c4ecd3f
Author: rsabiq <rsabiq@localhost>
Date:   Fri Apr 10 12:13:21 2009 +0000

    Slightly updated Crimean Tatar (Crimean Turkish) translation.
    
    svn path=/trunk/; revision=9407

 po/crh.po | 1384 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 710 insertions(+), 674 deletions(-)

commit ad442600ae85868f2a57d6e626fbed5dfe2eabaf
Author: Reşat SABIQ <tilde.birlik@gmail.com>
Date:   Fri Apr 10 11:56:30 2009 +0000

    crh Added Crimean Tatar (Crimean Turkish) translation.
    
    2009-04-10  Reşat SABIQ <tilde.birlik@gmail.com>
    
        * LINGUAS: crh
        * crh.po: Added Crimean Tatar (Crimean Turkish) translation.
    
    svn path=/trunk/; revision=9406

 po/ChangeLog |    5 +
 po/LINGUAS   |    1 +
 po/crh.po    | 4159 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 4165 insertions(+)

commit 53e393526528fe80d63d99e19b8a354d8012f870
Author: Goran Rakic <grakic@src.gnome.org>
Date:   Fri Apr 10 11:14:02 2009 +0000

    Updated Serbian translation (by Miloš Popović)
    
    svn path=/trunk/; revision=9405

 po/sr@latin.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 9d06517942f5160c6b9937cf8477a0379ffd5bb4
Author: Goran Rakic <grakic@src.gnome.org>
Date:   Fri Apr 10 11:13:56 2009 +0000

    Updated Serbian translation (by Miloš Popović)
    
    svn path=/trunk/; revision=9404

 po/sr.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 1bdcb07aacffdcc4b414b40f3a846c90549b406e
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Mon Apr 6 17:06:00 2009 +0000

    Fix custom entries getting out of sync with gconf
    
    svn path=/trunk/; revision=9403

 capplets/default-applications/ChangeLog          | 5 +++++
 capplets/default-applications/gnome-da-capplet.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 244953b6b68d2892f0b480abcc54be9bc4423749
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sun Apr 5 18:00:08 2009 +0000

    Reviewed Greek translatin (g-control-center) by alefteris
    
    svn path=/trunk/; revision=9402

 po/ChangeLog |   4 +
 po/el.po     | 458 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 225 insertions(+), 237 deletions(-)

commit cdc83ad01e83085697bcda33fd44161ec37351f7
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Apr 4 20:42:09 2009 +0000

    Updated French translation (fixes proposed by Bruno Brouard).
    
    2009-04-04  Claude Paroz  <claude@2xlibre.net>
    
        * fr.po: Updated French translation (fixes proposed by Bruno Brouard).
    
    svn path=/trunk/; revision=9401

 po/ChangeLog |   4 ++
 po/fr.po     | 211 ++---------------------------------------------------------
 2 files changed, 9 insertions(+), 206 deletions(-)

commit 0f943122ff1da32c29ef297c241777c08400dd4b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Apr 2 16:40:37 2009 +0000

    make activating a section header row expand or collapse the section as
    
    2009-04-02  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (start_editing_kb_cb): make
        activating a section header row expand or collapse the section as
        expected instead of crashing (bug #577474)
    
    svn path=/trunk/; revision=9400

 capplets/keybindings/ChangeLog                     |  8 ++++++++
 capplets/keybindings/gnome-keybinding-properties.c | 14 +++++++++++---
 2 files changed, 19 insertions(+), 3 deletions(-)

commit 0ff079d5653f1c7544642b39f05536f5bd67cf12
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:   Wed Apr 1 20:06:25 2009 +0000

    Updated German translation by Andre Klapper.
    
    2009-04-01  Christian Kirbach  <Christian.Kirbach@googlemail.com>
    
        * de.po: Updated German translation by Andre Klapper.
    
    svn path=/trunk/; revision=9399

 po/ChangeLog |  4 ++++
 po/de.po     | 64 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 36 insertions(+), 32 deletions(-)

commit 72ed4d44600d7176e3d497c45ac1c44e28335932
Author: Federico Mena Quintero <federico@novell.com>
Date:   Tue Mar 31 01:56:27 2009 +0000

    bnc486093 (RANDR) - Ensure that there will be a backup file before committing changes
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9398

 capplets/display/ChangeLog        |  7 +++++++
 capplets/display/xrandr-capplet.c | 27 +++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

commit 2211e92c07918f28f78c06ed1b70193b3773eee1
Author: Raivis Dejus <rdejus@src.gnome.org>
Date:   Mon Mar 30 19:15:18 2009 +0000

    Updated Latvian translation.
    
    * lv.po: Updated Latvian translation.
    
    svn path=/trunk/; revision=9397

 po/ChangeLog |    4 +
 po/lv.po     | 5091 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 2458 insertions(+), 2637 deletions(-)

commit d54aee2771d6a38eb4b6a90cb02d94a9781c04b5
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Mar 30 17:37:23 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9396

 po/ChangeLog | 4 ++++
 po/es.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 16cbfe94eafa4e2cf1d197811589c08c7d9f5175
Author: Marcel Telka <marcel@telka.sk>
Date:   Fri Mar 27 13:59:23 2009 +0000

    Updated Slovak translation by Pavol Šimo.
    
    2009-03-27  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation by Pavol Šimo.
    
    svn path=/trunk/; revision=9395

 po/ChangeLog |    4 +
 po/sk.po     | 1499 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 903 insertions(+), 600 deletions(-)

commit 757eda2aa01d38a00dbc58b672b4e2a741ff337b
Author: Manoj Kumar Giri <mgiri@src.gnome.org>
Date:   Wed Mar 25 13:02:35 2009 +0000

    Added entries for Oriya language Translation updation.
    
    svn path=/trunk/; revision=9394

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7b90bb662e475075a1036cb4718063faabe54c34
Author: Manoj Kumar Giri <mgiri@src.gnome.org>
Date:   Wed Mar 25 13:01:14 2009 +0000

    Updated Oriya Translation.
    
    svn path=/trunk/; revision=9393

 po/or.po | 909 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 463 insertions(+), 446 deletions(-)

commit 4a27c88bccc694811969a89f120fa9b4aefdfdd2
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:   Tue Mar 24 04:51:17 2009 +0000

    updated kn.po
    
    svn path=/trunk/; revision=9392

 po/kn.po | 270 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 127 insertions(+), 143 deletions(-)

commit 98b92e00301f6528664cf413d057fa6fb6cdd6c4
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:   Tue Mar 24 04:47:06 2009 +0000

    updated kn.po
    
    svn path=/trunk/; revision=9391

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 1dcb9d1c9e699805a3881565b419d3b0a1508405
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Mar 23 18:35:17 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9390

 po/ChangeLog |  4 ++++
 po/es.po     | 76 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 41 insertions(+), 39 deletions(-)

commit 8ab0045295d94e47f3f2d45670752f6ade700ae1
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:   Mon Mar 23 07:10:48 2009 +0000

    updated kn.po
    
    svn path=/trunk/; revision=9389

 po/ChangeLog |    4 +
 po/kn.po     | 2429 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1267 insertions(+), 1166 deletions(-)

commit 77f9f0d7cbeac5d8b3e4b8cf664a9d83966c3256
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Mar 22 17:58:34 2009 +0000

    Updated Spansih translation
    
    svn path=/trunk/; revision=9388

 po/es.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 3421e3c599cdb454b7112abf31356dae98e575ef
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Mar 22 16:55:45 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9387

 po/es.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1d75923b582fce300ad76f5a2b6aad1eeabb1744
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Mar 22 16:45:04 2009 +0000

    Udpated Spanish translation
    
    svn path=/trunk/; revision=9386

 po/es.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ff482ce64bec6585aa2c1d5cbd86b9d545d84c43
Author: Aron Xu <aronxu@src.gnome.org>
Date:   Sun Mar 22 13:50:13 2009 +0000

    Updated Simplified Chinese translations by M Zhang <mymzhang at gmail dot com>
    
    svn path=/trunk/; revision=9385

 help/zh_CN/zh_CN.po | 127 +++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 91 insertions(+), 36 deletions(-)

commit dd4fe6f27ab46489f2838200a9047ab93c8bdefd
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Mar 22 13:38:29 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9384

 po/ChangeLog | 4 ++++
 po/es.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit f9f0ad578dfd48a962756ecfff2a6bc192093d81
Author: Goran Rakic <grakic@src.gnome.org>
Date:   Sat Mar 21 19:39:46 2009 +0000

    Updated Serbian translation by Miloš Popović.
    
    svn path=/trunk/; revision=9383

 po/ChangeLog   |    4 +
 po/sr.po       | 1954 ++++++++++++++++++++++++++++++++------------------------
 po/sr@latin.po | 1954 ++++++++++++++++++++++++++++++++------------------------
 3 files changed, 2272 insertions(+), 1640 deletions(-)

commit 4ec217c6b2095eaad2f8786b8ed8b4f5c433f121
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Mar 20 18:51:48 2009 +0000

    (RANDR) - Simplify calls to dbus-glib which cannot fail; remove two unneeded/cryptic error messages.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9382

 capplets/display/ChangeLog        | 10 +++++++++
 capplets/display/xrandr-capplet.c | 44 ++++++++++++++++-----------------------
 2 files changed, 28 insertions(+), 26 deletions(-)

commit 021cfa9d24ca745f705c2e95d749fadca847f0b3
Author: miloc <miloc@localhost>
Date:   Fri Mar 20 17:38:42 2009 +0000

    Updated Italian translation
    
    svn path=/trunk/; revision=9381

 po/ChangeLog |   4 +
 po/it.po     | 629 ++++-------------------------------------------------------
 2 files changed, 45 insertions(+), 588 deletions(-)

commit d71df31d40d7293e7ed8b7374813b72cd686cf89
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Fri Mar 20 17:10:19 2009 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=9380

 po/sl.po | 60 ++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 34 insertions(+), 26 deletions(-)

commit 4912e3162dae739af9a4744a30dcce3f52ec0d4b
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Mar 20 14:52:29 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9379

 po/ChangeLog |  4 ++++
 po/es.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit bcb64de7e6293f65db9a01e2e2e6bf319e97bdba
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Fri Mar 20 08:03:29 2009 +0000

    Updated Japanese translation.
    
    2009-03-20  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
        * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=9378

 po/ChangeLog |  4 ++++
 po/ja.po     | 67 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 40 insertions(+), 31 deletions(-)

commit 0963677a5a0a98fbfcad1f970db37c6e7a7dd372
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 19 23:49:12 2009 +0000

    bgo576006 (RANDR) - ChangeLog for the changes above
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9377

 capplets/display/ChangeLog | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit 6ea3c02290362ae3e9b4e9259bc72fc0b4ac45d2
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Mar 19 23:48:58 2009 +0000

    bgo576006 (RANDR) - Pass a transient parent id to the ApplyConfiguration call from gnome-settings-daemon,
    so that it can make its confirmation window a child of the parent.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9376

 capplets/display/xrandr-capplet.c | 93 ++++++++++++++++++++++++++++++++-------
 1 file changed, 77 insertions(+), 16 deletions(-)

commit 1332826f015117cbc67df674725009eddb24e205
Author: Jürg Billeter <j@bitron.ch>
Date:   Thu Mar 19 19:01:16 2009 +0000

    Updated German translation.
    
    2009-03-19  Jürg Billeter  <j@bitron.ch>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=9375

 po/ChangeLog | 4 ++++
 po/de.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4ced2119f68b9e8ce79e48c5fcd3a2889476a8d9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 19 18:44:01 2009 +0000

    search the GTK+ icon theme search path for icon themes, not just selected
    
    2009-03-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_init): search the GTK+ icon theme
        search path for icon themes, not just selected directories (fixes
        bug #575906)
    
    svn path=/trunk/; revision=9374

 capplets/common/ChangeLog          |  6 +++++
 capplets/common/gnome-theme-info.c | 45 +++++++++++++++-----------------------
 2 files changed, 24 insertions(+), 27 deletions(-)

commit d0b55a8864d64ef0856a6987fab03da5f19f4b7f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Mar 18 21:00:11 2009 +0000

    after removing an image set the cursor to the newly selected wallpaper so
    
    2009-03-18  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_remove_wallpaper): after removing an
        image set the cursor to the newly selected wallpaper so that
        keyboard navigation works as expected (bug #575075)
    
    svn path=/trunk/; revision=9373

 capplets/appearance/ChangeLog            | 6 ++++++
 capplets/appearance/appearance-desktop.c | 7 ++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit e67f2ab7f7a7afc1c4d2e2761b8cc7d1e26e59ea
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Wed Mar 18 16:54:38 2009 +0000

    Added Greek translation by Marios Zindilis
    
    svn path=/trunk/; revision=9372

 help/ChangeLog   |  5 +++
 help/Makefile.am |  2 +-
 help/el/el.po    | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 98 insertions(+), 1 deletion(-)

commit 56115045503f4b872312b4cdbd90e5fb40e4f85c
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Wed Mar 18 09:20:25 2009 +0000

    Updated Arabic translation
    
    svn path=/trunk/; revision=9371

 po/ChangeLog |    4 +
 po/ar.po     | 2070 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 1335 insertions(+), 739 deletions(-)

commit 11dbe1d1ee2f04bd79ab4b955e18cfda2b19422a
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Mar 17 23:02:58 2009 +0000

    Translation updated.
    
    2009-03-18  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=9370

 po/ChangeLog | 4 ++++
 po/hu.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 350b1928ec21ef3afec1cceb26975be6e5257666
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Mar 17 08:59:35 2009 +0000

    Updated Norwegian bokmål translation.
    
    2009-03-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9369

 po/ChangeLog |   4 +
 po/nb.po     | 305 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 160 insertions(+), 149 deletions(-)

commit 9012e193e1fa7042f3b51d2586907c1dd16960ea
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Mar 17 00:03:15 2009 +0000

    release 2.26.0
    
    2009-03-16  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: release 2.26.0
    
    svn path=/trunk/; revision=9367

 ChangeLog    |  5 +++++
 NEWS         | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 configure.in |  2 +-
 3 files changed, 67 insertions(+), 2 deletions(-)

commit 5299c833378dfd46191ab47bc1939166b3997cc5
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Mon Mar 16 21:46:05 2009 +0000

    Updated Turkish Translation
    
    svn path=/trunk/; revision=9366

 po/ChangeLog |    4 +
 po/tr.po     | 1762 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 1059 insertions(+), 707 deletions(-)

commit c4c51e87c1cf294db9c552bfa7d5f1940b92d70f
Author: Wouter Bolsterlee <wbolster@svn.gnome.org>
Date:   Mon Mar 16 20:10:37 2009 +0000

    Updated Dutch translation by Tino Meinen.
    
    2009-03-16  Wouter Bolsterlee  <wbolster@svn.gnome.org>
    
        * nl.po: Updated Dutch translation by Tino Meinen.
    
    svn path=/trunk/; revision=9365

 po/ChangeLog |    4 +
 po/nl.po     | 2046 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1185 insertions(+), 865 deletions(-)

commit 2586ccb4e4cb0d672dd98f2bd21fc2973be38c4e
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Mar 16 19:45:38 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9364

 po/ChangeLog | 4 ++++
 po/sv.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit c39e0941e6c5984c45b3ab0ccbf8a5dcfa976c33
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Mon Mar 16 14:55:59 2009 +0000

    updating for Gnome Punjabi Translation by A S Alam
    
    svn path=/trunk/; revision=9363

 po/pa.po | 530 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 284 insertions(+), 246 deletions(-)

commit 8010483acf99c7205b1da58b282d6b9bc7695b11
Author: Krishnababu Krothapalli <kkrothap@src.gnome.org>
Date:   Mon Mar 16 13:32:30 2009 +0000

    Updated Telugu Translations
    
    svn path=/trunk/; revision=9362

 po/te.po | 124 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 42 insertions(+), 82 deletions(-)

commit 11b39126d6937dc48c5c7096fad3e4962cc5ac86
Author: Krishnababu Krothapalli <kkrothap@src.gnome.org>
Date:   Mon Mar 16 13:32:04 2009 +0000

    Updated Changelog entry
    
    svn path=/trunk/; revision=9361

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d60a36f957a74f3e484c723d42a95e5a0e84858e
Author: Manoj Kumar Giri <mgiri@src.gnome.org>
Date:   Mon Mar 16 12:03:09 2009 +0000

    Added entries for Oriya language Translation updation.
    
    svn path=/trunk/; revision=9360

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit c2976c41a87a130b4388efc5391f1f32e934bd93
Author: Manoj Kumar Giri <mgiri@src.gnome.org>
Date:   Mon Mar 16 12:01:40 2009 +0000

    Updated Oriya Translation.
    
    svn path=/trunk/; revision=9359

 po/or.po | 618 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 339 insertions(+), 279 deletions(-)

commit 35f9d51ddd2afb78c8df1a7e3af7a0cdcc135a99
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Mar 16 10:57:23 2009 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2009-03-16  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=9358

 po/ChangeLog |   5 +++
 po/bg.po     | 103 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 60 insertions(+), 48 deletions(-)

commit a9573986202083316d8ce4a8ba2b14d216af8be0
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Mon Mar 16 09:50:16 2009 +0000

    Updated assamese translations
    
    svn path=/trunk/; revision=9357

 po/ChangeLog |   4 +
 po/as.po     | 290 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 122 insertions(+), 172 deletions(-)

commit 5026a3b6a4cf6b3677572fdae7e25005ef5d0186
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Mon Mar 16 09:48:45 2009 +0000

    Updated assamese translations
    
    svn path=/trunk/; revision=9356

 po/ChangeLog |    4 +
 po/as.po     | 2741 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 1659 insertions(+), 1086 deletions(-)

commit a20d0de4291e463fbdee4db5bb4cdcc66611d4cf
Author: Krishnababu Krothapalli <kkrothap@src.gnome.org>
Date:   Mon Mar 16 06:31:54 2009 +0000

    Updated Telugu Translation
    
    svn path=/trunk/; revision=9355

 po/te.po | 353 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 147 insertions(+), 206 deletions(-)

commit ea341a67d2cd06ba37faf34676b880a12d3278fa
Author: Krishnababu Krothapalli <kkrothap@src.gnome.org>
Date:   Mon Mar 16 06:31:28 2009 +0000

    Updated ChangeLog entry
    
    svn path=/trunk/; revision=9354

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit b45025aa5432a9fc9028e92d476d57774fc58451
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Mon Mar 16 06:18:07 2009 +0000

    maithili added
    
    svn path=/trunk/; revision=9353

 po/ChangeLog |    5 +
 po/LINGUAS   |    1 +
 po/mai.po    | 3444 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 3450 insertions(+)

commit f0fca1a98f3ea0d2aba0fc48c87129a10486e048
Author: Petr Kovar <pknbe@volny.cz>
Date:   Mon Mar 16 05:01:30 2009 +0000

    Added Czech translation by Lucas Lommer. Added cs to DOC_LINGUAS.
    
    2009-03-16  Petr Kovar  <pknbe@volny.cz>
    
        * cs/cs.po: Added Czech translation by Lucas Lommer.
        * Makefile.am: Added cs to DOC_LINGUAS.
    
    svn path=/trunk/; revision=9352

 help/ChangeLog   |  5 +++
 help/Makefile.am |  2 +-
 help/cs/cs.po    | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 103 insertions(+), 1 deletion(-)

commit 33fb414cf45c0cb279b1012fd30da51a5dc9a511
Author: Andre Klapper <a9016009@gmx.de>
Date:   Sun Mar 15 21:55:39 2009 +0000

    Updated Afrikaans translation on behalf of Friedel Wolff. Fixes bug
    
    2009-03-15  Andre Klapper  <a9016009@gmx.de>
    
        * af.po: Updated Afrikaans translation on behalf of Friedel Wolff.
        Fixes bug #574078.
    
    
    svn path=/trunk/; revision=9351

 po/ChangeLog |    7 +-
 po/af.po     | 6033 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 3548 insertions(+), 2492 deletions(-)

commit bf84b8c7b5ae4d3f718c59cc13dde1a38de478a2
Author: Felix I <ifelix@src.gnome.org>
Date:   Sat Mar 14 17:00:56 2009 +0000

    tamil translation updated
    
    svn path=/trunk/; revision=9350

 po/ChangeLog |   4 +
 po/ta.po     | 371 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 179 insertions(+), 196 deletions(-)

commit 93aebfe0bd9296cea07c3a3eddf171df79ee3017
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sat Mar 14 12:32:46 2009 +0000

    Updated Galician translation
    
    svn path=/trunk/; revision=9349

 po/ChangeLog |    4 +
 po/gl.po     | 2400 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1340 insertions(+), 1064 deletions(-)

commit 9a1ddc434a0e198e3bf7435e5339517d30885f77
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Fri Mar 13 18:31:31 2009 +0000

    Updated Greek Translation by Jennie Petoumenou.
    
    svn path=/trunk/; revision=9348

 po/ChangeLog |    4 +
 po/el.po     | 2212 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 1419 insertions(+), 797 deletions(-)

commit e5801cb704015a5013ed39b6a165fc57a67f5f14
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Fri Mar 13 10:53:23 2009 +0000

    Updated Malayalam Translation
    
    svn path=/trunk/; revision=9347

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit b4002d3e58930ba239df393b7a73926bdf143bd4
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Fri Mar 13 10:53:14 2009 +0000

    Updated Malayalam Translation
    
    svn path=/trunk/; revision=9346

 po/ml.po | 1759 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1026 insertions(+), 733 deletions(-)

commit 64dd51c354e5e69a8b820f131bf00c7b53c011a2
Author: Sandeep Shedmake <sandeeps@src.gnome.org>
Date:   Fri Mar 13 08:53:19 2009 +0000

    Updated Marathi Translations
    
    svn path=/trunk/; revision=9345

 po/ChangeLog |    4 +
 po/mr.po     | 1687 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 979 insertions(+), 712 deletions(-)

commit 83c5e391f02f2c750676a719f33635e0c04bb1c0
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Fri Mar 13 06:38:49 2009 +0000

    Added Entry for Bengali India Translation Updation
    
    svn path=/trunk/; revision=9344

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 163e1f4eaac3504c902e36c58cca83f524597806
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Fri Mar 13 06:38:31 2009 +0000

    Updated Bengali India Translation
    
    svn path=/trunk/; revision=9343

 po/bn_IN.po | 1673 ++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 965 insertions(+), 708 deletions(-)

commit c2007b9783bca2ea684f6d4ed8aa0cc980d662da
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Mar 12 22:39:09 2009 +0000

    Updated Portuguese translation.
    
    2009-03-12  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=9342

 po/ChangeLog |  4 +++
 po/pt.po     | 86 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 51 insertions(+), 39 deletions(-)

commit c93e865a5f171e966545840680629366c44cb729
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Mar 12 10:27:17 2009 +0000

    Fix warning when selecting a finger to enroll in the combo box (Closes:
    
    2009-03-12  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-about-me-fingerprint.c (finger_combobox_changed):
        Fix warning when selecting a finger to enroll in the combo box
        (Closes: #574974)
    
    
    svn path=/trunk/; revision=9341

 capplets/about-me/ChangeLog                    | 6 ++++++
 capplets/about-me/gnome-about-me-fingerprint.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit bdaa0cb8020f629f01407d9cf6b7bb8e9ac596aa
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Wed Mar 11 21:26:20 2009 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=9340

 po/ChangeLog |   4 +
 po/he.po     | 411 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 302 insertions(+), 113 deletions(-)

commit 38de654eea40fb559dc67467900cc7e890347ce6
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Mar 11 15:14:11 2009 +0000

    bgo574865 (RANDR) - Don't leave a dangling pointer for the current_output when the RANDR configuration changes
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9339

 capplets/display/ChangeLog        | 13 +++++++++++++
 capplets/display/xrandr-capplet.c | 12 ++++--------
 2 files changed, 17 insertions(+), 8 deletions(-)

commit 5ed35ac1671cffad070c8c3338680cb4853c79fe
Author: Krishnababu Krothapalli <kkrothap@src.gnome.org>
Date:   Wed Mar 11 12:49:05 2009 +0000

    Updated Telugu Translation
    
    svn path=/trunk/; revision=9338

 po/te.po | 2547 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 1133 insertions(+), 1414 deletions(-)

commit 074dfdb7c3112bec99c3fd13417ff6198dcbac7e
Author: Krishnababu Krothapalli <kkrothap@src.gnome.org>
Date:   Wed Mar 11 12:48:04 2009 +0000

    Updated Changelog entry
    
    svn path=/trunk/; revision=9337

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 4cd96a9881bb2dd8bcba41f743808902b967a7c3
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Mar 11 09:48:27 2009 +0000

    Make the strings of the Rotation dialog appear translated. Bug #574693.
    
    2009-03-11  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * xrandr-capplet.c: Make the strings of the Rotation dialog appear
        translated. Bug #574693.
    
    svn path=/trunk/; revision=9336

 capplets/display/ChangeLog        | 5 +++++
 capplets/display/xrandr-capplet.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 72c826a4c5299055544503567b426e650f540fe3
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Tue Mar 10 13:17:55 2009 +0000

    Updated Gujarati Translations.
    
    svn path=/trunk/; revision=9335

 po/ChangeLog |   4 +
 po/gu.po     | 378 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 183 insertions(+), 199 deletions(-)

commit 63dbd9ad4d3b14434f3c7aad7efba2bd4f7a3da0
Author: Tommi Vainikainen <thv@iki.fi>
Date:   Tue Mar 10 11:07:38 2009 +0000

    Updated Finnish translation.
    
    2009-03-10  Tommi Vainikainen  <thv@iki.fi>
    
        * fi.po: Updated Finnish translation.
    
    svn path=/trunk/; revision=9334

 po/ChangeLog |  4 ++++
 po/fi.po     | 72 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 42 insertions(+), 34 deletions(-)

commit 7d94b76f928d94d2ae7d2dbfe0788e1ccd4e5b18
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Tue Mar 10 09:29:57 2009 +0000

    Updated German translation.
    
    2009-03-10  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=9333

 po/ChangeLog |  4 ++++
 po/de.po     | 72 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 42 insertions(+), 34 deletions(-)

commit 86ccbe5667af71e10f71bbc4b99dcb9d82bc0e86
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Tue Mar 10 09:01:03 2009 +0000

    Updated Russian translation.
    
    2009-03-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
        * ru.po: Updated Russian translation.
    
    
    svn path=/trunk/; revision=9332

 po/ChangeLog |    4 +
 po/ru.po     | 1565 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 895 insertions(+), 674 deletions(-)

commit 7a162434bedcbefcc6a16f0c2996aff380fff970
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Tue Mar 10 06:50:21 2009 +0000

    hindi updated by Rajesh Ranjan
    
    svn path=/trunk/; revision=9331

 po/ChangeLog |    4 +
 po/hi.po     | 2062 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1087 insertions(+), 979 deletions(-)

commit e20c8d201b9b25babd6ee2f2eb76b0a8c442a3dc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Mar 9 22:24:17 2009 +0000

    Translation updated.
    
    2009-03-09  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=9330

 po/hu.po | 93 ++++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 56 insertions(+), 37 deletions(-)

commit edda486eb9b54f8d80561e68e7c4b2bed15a8bad
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun Mar 8 18:37:29 2009 +0000

    Updated Czech translation.
    
    2009-03-08  Petr Kovar  <pknbe@volny.cz>
    
        * cs.po: Updated Czech translation.
    
    svn path=/trunk/; revision=9328

 po/ChangeLog |    4 +
 po/cs.po     | 1528 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 871 insertions(+), 661 deletions(-)

commit 9d19c6991389e44335d15c34209e972024160a2b
Author: Mark Krapivner <markkr@src.gnome.org>
Date:   Sun Mar 8 15:58:09 2009 +0000

    Updated Hebrew translation
    
    svn path=/trunk/; revision=9327

 po/ChangeLog |   4 +
 po/he.po     | 356 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 184 insertions(+), 176 deletions(-)

commit 7dce0c03a33f1270a02aad7d659bd6d56a383321
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Sat Mar 7 23:11:18 2009 +0000

    Updated Lithuanian translation.
    
    2009-03-08  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    
    svn path=/trunk/; revision=9326

 po/ChangeLog |   4 +
 po/lt.po     | 517 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 295 insertions(+), 226 deletions(-)

commit 572d2b8415f30414d1211d3862615ad7e173f6fd
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Sat Mar 7 20:24:58 2009 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=9325

 po/sl.po | 71 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 38 insertions(+), 33 deletions(-)

commit 7c9e9f938bb909e22bc27264c7dc1be72fe4191c
Author: miloc <miloc@localhost>
Date:   Sat Mar 7 14:51:27 2009 +0000

    Updated Italian translation
    
    svn path=/trunk/; revision=9324

 po/ChangeLog |  4 ++++
 po/it.po     | 76 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 44 insertions(+), 36 deletions(-)

commit f0c272dcbf0413a0718a1e517e0addbfc4f64b84
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sat Mar 7 04:59:27 2009 +0000

    Fixed wrong translation.
    
    2009-03-07  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
        * ja.po: Fixed wrong translation.
    
    svn path=/trunk/; revision=9323

 po/ChangeLog |   4 +++
 po/ja.po     | 116 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 62 insertions(+), 58 deletions(-)

commit c57ec2834ee308a1edcefa3886016ac702719903
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 6 19:23:16 2009 +0000

    fix mnemonics conflict on the custom shortcut window
    
    2009-03-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.glade: fix mnemonics conflict on the
        custom shortcut window
    
    svn path=/trunk/; revision=9322

 capplets/keybindings/ChangeLog                         | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 38bde3894ff5553a33023f75b555a0a29e4dd18f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 6 19:19:22 2009 +0000

    fix mnemonics conflict for web browser and mail reader command widgets.
    
    2009-03-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-default-applications-properties.glade: fix mnemonics conflict
        for web browser and mail reader command widgets. There's another
        conflict for the "Run in terminal" checkbox but that one will have to
        wait until string freeze is over
    
    svn path=/trunk/; revision=9321

 capplets/default-applications/ChangeLog                            | 7 +++++++
 .../gnome-default-applications-properties.glade                    | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit aab94771015cd39eb07927f80de707b0644efe49
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Mar 5 22:23:04 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9320

 po/ChangeLog |  4 ++++
 po/es.po     | 66 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 39 insertions(+), 31 deletions(-)

commit 34c30ebccba1399c3bb1cf04f8c864280e4d0468
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Thu Mar 5 09:27:12 2009 +0000

    Updated Polish translation
    
    2009-03-05  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=9319

 po/ChangeLog | 4 ++++
 po/pl.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 5cda4460c394e03d91eba947a344cfa1261766cc
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Thu Mar 5 08:44:18 2009 +0000

    Updated Thai translation.
    
    2009-03-05  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=9318

 po/ChangeLog |  4 ++++
 po/th.po     | 64 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 38 insertions(+), 30 deletions(-)

commit cbbbd4b4cdf3cc4b992ea8682c68f6c979fc280f
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Thu Mar 5 03:44:09 2009 +0000

    Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=9317

 po/ChangeLog |  5 +++++
 po/pt_BR.po  | 69 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 42 insertions(+), 32 deletions(-)

commit 7cd3bab550cdef30ebf8a15335fedc45525cd3c1
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Thu Mar 5 00:01:23 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9316

 po/ChangeLog |  4 ++++
 po/sv.po     | 52 +++++++++++++++++++++++++++++-----------------------
 2 files changed, 33 insertions(+), 23 deletions(-)

commit 870557ba7e49ba4271459b82c7168feb8f3f51fb
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Mar 4 07:30:48 2009 +0000

    Updated British English translation.
    
    2009-03-04  Philip Withnall  <philip@tecnocode.co.uk>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=9315

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 52 ++++++++++++++++++++++++++++------------------------
 2 files changed, 32 insertions(+), 24 deletions(-)

commit ce1b18b9c1891a3cd40086083719195c9fdd7f84
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Mar 3 20:35:22 2009 +0000

    Translation updated.
    
    2009-03-03  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=9314

 po/ChangeLog |  4 ++++
 po/hu.po     | 62 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 41 insertions(+), 25 deletions(-)

commit 8703458a3a035f96d793cfcaeb70ef5858c35d1a
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Tue Mar 3 20:12:04 2009 +0000

    Updated Polish translation
    
    2009-03-03  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=9313

 po/ChangeLog |  4 +++
 po/pl.po     | 92 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 50 insertions(+), 46 deletions(-)

commit fda6f932302d89fb2e10dbe9dfc9d951b433d9af
Author: Thomas Hindoe Paaboel Andersen <thomashpa@src.gnome.org>
Date:   Tue Mar 3 19:36:03 2009 +0000

    Revert change to GtkUIManager. It broke string freeze.
    
    svn path=/trunk/; revision=9312

 ChangeLog               |  5 +++
 typing-break/drwright.c | 98 ++++++++++++++++++++++++++++++-------------------
 2 files changed, 65 insertions(+), 38 deletions(-)

commit b14516684f2bdd9ec6e0516b3567e192d3d2faaf
Author: Felix I <ifelix@src.gnome.org>
Date:   Tue Mar 3 11:26:53 2009 +0000

    tamil translation updated
    
    svn path=/trunk/; revision=9310

 po/ChangeLog |    4 +
 po/ta.po     | 1709 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1002 insertions(+), 711 deletions(-)

commit 793f71fad7f5d19b1c9405f9b973066f51f893f5
Author: Christian Kirbach <ckirbach@src.gnome.org>
Date:   Tue Mar 3 07:28:47 2009 +0000

    Updated German translation.
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=9308

 po/ChangeLog |    4 +
 po/de.po     | 1998 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1166 insertions(+), 836 deletions(-)

commit f1a29fc6dcbff9f7a1a21e5202afb21114a8bb59
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 2 23:06:10 2009 +0000

    Stop the font thumbnailer eating all the CPU, and limit the resources to
    
    2009-03-02  Bastien Nocera  <hadess@hadess.net>
    
        * font-viewer/Makefile.am:
        * font-viewer/font-thumbnailer.c (main):
        * font-viewer/totem-resources.c (set_resource_limits),
        (time_monitor), (totem_resources_monitor_start),
        (totem_resources_monitor_stop):
        * font-viewer/totem-resources.h: Stop the font thumbnailer
        eating all the CPU, and limit the resources to 30 seconds
        and 256MB of RAM, which should be plenty (Closes: #573795)
    
    
    svn path=/trunk/; revision=9306

 ChangeLog                      |  11 ++++
 font-viewer/Makefile.am        |   2 +-
 font-viewer/font-thumbnailer.c |   7 +++
 font-viewer/totem-resources.c  | 123 +++++++++++++++++++++++++++++++++++++++++
 font-viewer/totem-resources.h  |  33 +++++++++++
 5 files changed, 175 insertions(+), 1 deletion(-)

commit a84019b447b060c9ec61611b95404cb82c54748b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 2 21:57:20 2009 +0000

    release 2.25.92
    
    2009-03-02  Jens Granseuer  <jensgr@gmx.net>
    
        * NEWS:
        * configure.in: release 2.25.92
    
    svn path=/trunk/; revision=9304

 ChangeLog                      |  7 +++++
 NEWS                           | 62 ++++++++++++++++++++++++++++++++++++++++++
 capplets/about-me/ChangeLog    |  2 ++
 capplets/appearance/ChangeLog  |  2 ++
 capplets/display/ChangeLog     |  2 ++
 capplets/keybindings/ChangeLog |  2 ++
 capplets/keyboard/ChangeLog    |  2 ++
 configure.in                   |  2 +-
 po/ChangeLog                   |  2 ++
 9 files changed, 82 insertions(+), 1 deletion(-)

commit 06389bb831bf6c9f9ce13cd1c4089a985ba2a1e2
Author: miloc <miloc@localhost>
Date:   Mon Mar 2 19:57:40 2009 +0000

    Updated Italian translation
    
    svn path=/trunk/; revision=9303

 po/ChangeLog |   4 ++
 po/it.po     | 164 ++++++++++++++++++-----------------------------------------
 2 files changed, 53 insertions(+), 115 deletions(-)

commit 0121f5a32980c0345a535168230d949e3c0cf2d6
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Mar 2 12:30:13 2009 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2009-03-02  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=9302

 po/ChangeLog |    5 +
 po/bg.po     | 1629 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 925 insertions(+), 709 deletions(-)

commit cc21c396b4fe178affd5fbe9992fee23cc4e93cc
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Mon Mar 2 11:56:25 2009 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=9301

 po/sl.po | 1818 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1048 insertions(+), 770 deletions(-)

commit b27f0cabb37cda25cd9acc0027479dddf21730f9
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Sun Mar 1 07:08:53 2009 +0000

    Translation updated by Ivar Smolin
    
    2009-03-01  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=9300

 po/ChangeLog |    4 +
 po/et.po     | 1673 ++++++++++++++++++++--------------------------------------
 2 files changed, 578 insertions(+), 1099 deletions(-)

commit e5c2bcb08b5736dabc1797bd695906fff975452c
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Feb 28 22:49:55 2009 +0000

    Translation updated.
    
    2009-02-28  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=9299

 po/ChangeLog |   4 +++
 po/hu.po     | 108 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 52 insertions(+), 60 deletions(-)

commit 372da54f301a8c1e54736ab849ee01032509eea7
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Feb 28 21:30:20 2009 +0000

    Updated Portuguese translation.
    
    2009-02-28  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=9298

 po/ChangeLog |    4 +
 po/pt.po     | 1942 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1130 insertions(+), 816 deletions(-)

commit 5d45797036038bde90c3675a4ad096c016c4fc7f
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Feb 28 16:19:02 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9297

 po/ChangeLog |   4 ++
 po/sv.po     | 118 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 60 insertions(+), 62 deletions(-)

commit bb8133c6115212c3709141b6e0465d7fd4945c51
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Feb 28 15:59:32 2009 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=9296

 po/ChangeLog |   4 ++
 po/fi.po     | 118 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 61 insertions(+), 61 deletions(-)

commit 27f4fba4ef0751d70ec63cd5f388f0bffc2d3644
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Sat Feb 28 15:47:46 2009 +0000

    Updated Italian translation.
    
    svn path=/trunk/; revision=9295

 po/ChangeLog |    4 +
 po/it.po     | 2491 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1323 insertions(+), 1172 deletions(-)

commit 446a361c225d3c7d1cac0a30332621c39f7eeda4
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Feb 28 10:04:07 2009 +0000

    Updated British English translation.
    
    2009-02-28  Philip Withnall  <philip@tecnocode.co.uk>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=9294

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 50 +++++++++++++++++++++++---------------------------
 2 files changed, 27 insertions(+), 27 deletions(-)

commit 8a69c57d145fb86c2b67d65844ee6b549358d999
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Feb 27 19:05:33 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9293

 po/ChangeLog |   4 +++
 po/es.po     | 114 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 58 insertions(+), 60 deletions(-)

commit 135fbbfcacadfa8e251848c2e22f11db52f63851
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 27 17:56:39 2009 +0000

    remove sound notifications button icon that no longer exists (bug #570906)
    
    2009-02-27  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.c: (create_dialog): remove sound
        notifications button icon that no longer exists (bug #570906)
    
    svn path=/trunk/; revision=9292

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 9 +++------
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 146ef65c1cbb0d16c102e6f116651796c4cfa423
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Feb 27 14:06:35 2009 +0000

    Updated Thai translation.
    
    2009-02-27  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=9291

 po/ChangeLog |   4 +++
 po/th.po     | 110 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 57 insertions(+), 57 deletions(-)

commit 232073891806fed2f4af13c965e09cb7eb55a9ee
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Fri Feb 27 13:57:06 2009 +0000

    Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=9290

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 78 ++++++++++++++++++++++++++++--------------------------------
 2 files changed, 41 insertions(+), 41 deletions(-)

commit 1c29b115e665102e97970b2960ffd35cd0d42c78
Author: Thomas Hindoe Paaboel Andersen <thomashpa@src.gnome.org>
Date:   Thu Feb 26 19:19:04 2009 +0000

    Use GtkUIManager instead of deprecated GtkItemFactory. Bug #572325
    
    svn path=/trunk/; revision=9289

 ChangeLog               |  5 +++
 typing-break/drwright.c | 98 +++++++++++++++++++------------------------------
 2 files changed, 43 insertions(+), 60 deletions(-)

commit 6f93ad356d310d6f107bc0935a6b5c43db490511
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Wed Feb 25 21:01:40 2009 +0000

    Updated be@latin.po
    
    svn path=/trunk/; revision=9288

 po/ChangeLog   |    4 +
 po/be@latin.po | 2040 ++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1179 insertions(+), 865 deletions(-)

commit 279ffeb73a2e80850daaf0f713f35fbe42850a4a
Author: Thomas Hindoe Paaboel Andersen <thomashpa@src.gnome.org>
Date:   Mon Feb 23 19:22:31 2009 +0000

    Trivial change of deprecated GtkType to GType. More fixage of bug #572325
    
    svn path=/trunk/; revision=9287

 capplets/about-me/ChangeLog        | 4 ++++
 capplets/about-me/eel-gtk-macros.h | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit db19d1ab1c84edd9d56fcac6028c17951a7eae41
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Feb 23 19:00:49 2009 +0000

    Updated British English translation.
    
    2009-02-23  Philip Withnall  <philip@tecnocode.co.uk>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=9286

 po/ChangeLog |    4 +
 po/en_GB.po  | 1936 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1130 insertions(+), 810 deletions(-)

commit 1ed76a4387cf6db054faa34f8949b3ea4ac1a429
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Feb 23 18:38:27 2009 +0000

    for shortcuts without a description simply show "<Unknown Action>" instead
    
    2009-02-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (append_keys_to_tree),
        (update_custom_shortcut): for shortcuts without a description simply
        show "<Unknown Action>" instead of (unhelpful) parts of its GConf
        path (bug #572808)
    
    svn path=/trunk/; revision=9285

 capplets/keybindings/ChangeLog                     | 7 +++++++
 capplets/keybindings/gnome-keybinding-properties.c | 6 ++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit bc85298dcb164d7069fb866c2d344af8d0267cda
Author: Thomas Hindoe Paaboel Andersen <thomashpa@src.gnome.org>
Date:   Mon Feb 23 18:15:51 2009 +0000

    Replace following deprecated gtk symbols: gtk_box_pack_start_defaults, gtk_widget_set_usize, and GTK_CHECK_* Bug #572325
    
    svn path=/trunk/; revision=9284

 ChangeLog                                           |  8 ++++++++
 capplets/keybindings/eggcellrendererkeys.h          | 10 +++++-----
 capplets/keybindings/gnome-keybinding-properties.c  |  2 +-
 capplets/keyboard/gnome-keyboard-properties-xkbot.c |  2 +-
 4 files changed, 15 insertions(+), 7 deletions(-)

commit e5208bc543c4a3149e3bb230246949af38e52903
Author: Thomas Hindoe Paaboel Andersen <thomashpa@src.gnome.org>
Date:   Sun Feb 22 22:01:40 2009 +0000

    Replace deprecated GTK symbols. Fixes part of bug #572325
    
    svn path=/trunk/; revision=9283

 ChangeLog                               |  6 ++++++
 capplets/appearance/appearance-font.c   |  5 ++---
 capplets/mouse/gnome-mouse-properties.c |  8 ++++----
 typing-break/drw-utils.c                | 26 +++++++++++++-------------
 4 files changed, 25 insertions(+), 20 deletions(-)

commit e09d3371e88947c9e56ed773a6704ddcec970ca9
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Sat Feb 21 19:53:39 2009 +0000

    Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=9282

 po/ChangeLog |   5 ++
 po/pt_BR.po  | 188 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 107 insertions(+), 86 deletions(-)

commit 1264bf29406a274350aba04067de6ecc3b604262
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 20 23:17:07 2009 +0000

    GTK_DIALOG_NO_SEPARATOR cannot be used with GtkMessageDialog
    
    2009-02-21  Jens Granseuer  <jensgr@gmx.net>
    
        * xrandr-capplet.c: (error_message): GTK_DIALOG_NO_SEPARATOR cannot be
        used with GtkMessageDialog
    
    svn path=/trunk/; revision=9281

 capplets/display/ChangeLog        | 5 +++++
 capplets/display/xrandr-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c9362a670bb7d8f9d7123dbadd5c0e724829af08
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 20 19:51:44 2009 +0000

    don't forget to save the shortcut command, too (bug #572501)
    
    2009-02-20  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (update_custom_shortcut): don't
        forget to save the shortcut command, too (bug #572501)
    
    svn path=/trunk/; revision=9280

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit 53c0f283cf7481f7d6c7b5136a3232a0e8b9fb4a
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Feb 20 16:14:13 2009 +0000

    Translation updated.
    
    2009-02-20  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=9279

 po/ChangeLog |  4 ++++
 po/hu.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 83fc72127e59056d9c7dcb1162a2641c72266b81
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Feb 20 00:49:01 2009 +0000

    RANDR - Make the color of monitor labels consistent with the per-monitor popups
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9278

 capplets/display/ChangeLog        | 5 +++++
 capplets/display/xrandr-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 805d3406f17cf8d85927bf8f230a4a34b61f031c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 19 19:36:54 2009 +0000

    fix message markup appearing in dialog (bug #572453)
    
    2009-02-19  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_real): fix message markup
        appearing in dialog (bug #572453)
    
    svn path=/trunk/; revision=9277

 capplets/appearance/ChangeLog         |  5 +++++
 capplets/appearance/theme-installer.c | 17 ++++++-----------
 2 files changed, 11 insertions(+), 11 deletions(-)

commit 91457e6f53dba62a04346e3e812e00ab303c9da1
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Thu Feb 19 13:19:16 2009 +0000

    Updated Catalan translation
    
    svn path=/trunk/; revision=9276

 po/ChangeLog |   4 +
 po/ca.po     | 617 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 272 insertions(+), 349 deletions(-)

commit 3bbde052351c710af69c1922dec72dc0f98ecc92
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 18 18:51:28 2009 +0000

    Patch by: Jonas Bonn
    
    2009-02-18  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Jonas Bonn
    
        * font-viewer/font-thumbnailer.c: (main): initialize the type system.
        Fixes hangs when thumbnailing (bug #572189)
    
    svn path=/trunk/; revision=9275

 ChangeLog                      | 7 +++++++
 font-viewer/font-thumbnailer.c | 4 +++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 456cde5c52f88097330e010774fb6153eebe8c1e
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Feb 17 22:47:03 2009 +0000

    Updated Korean translation
    
    svn path=/trunk/; revision=9274

 po/ChangeLog |   4 +
 po/ko.po     | 385 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 208 insertions(+), 181 deletions(-)

commit 718ed2b5c5a47d66812e1c719fe52043842e48b8
Author: Chao-Hsiung Liao <chliao@src.gnome.org>
Date:   Tue Feb 17 13:36:32 2009 +0000

    2.25.91
    
    svn path=/trunk/; revision=9273

 po/ChangeLog |   5 ++
 po/zh_HK.po  | 207 +++++++++++++++++++++++++++++++----------------------------
 po/zh_TW.po  | 207 +++++++++++++++++++++++++++++++----------------------------
 3 files changed, 225 insertions(+), 194 deletions(-)

commit ccf6dfe7c47aca6ea6419e2d57aebe851f789835
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Feb 17 08:34:22 2009 +0000

    Updated Thai translation.
    
    2009-02-17  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=9272

 po/ChangeLog |    4 +
 po/th.po     | 1676 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 972 insertions(+), 708 deletions(-)

commit 0a2e4e6051cdccb88ede17887b4db604dc9ef10c
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Feb 16 16:46:31 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9271

 po/sv.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1ab1e809a49f86c6b7f32eff483e95c8e1cdc174
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Feb 16 13:44:52 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9270

 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 14b342d4209b985af5c74d17362b96753b63aa54
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Feb 15 14:38:32 2009 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=9269

 po/ChangeLog |    4 +
 po/fi.po     | 3103 +++++++++++++++++-----------------------------------------
 2 files changed, 883 insertions(+), 2224 deletions(-)

commit b4c5f758b86a90d0ca4e59ac2b91c56101bf7156
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Sun Feb 15 12:57:41 2009 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=9268

 po/ChangeLog |    4 +
 po/da.po     | 1508 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 915 insertions(+), 597 deletions(-)

commit d6116202a10599c4edb4986cb19b5af19aa4a166
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Sat Feb 14 23:02:51 2009 +0000

    Updated Polish translation
    
    2009-02-15  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=9267

 po/ChangeLog |    4 +
 po/pl.po     | 1031 +++++++++++++---------------------------------------------
 2 files changed, 237 insertions(+), 798 deletions(-)

commit c9f98fe9a115cd489ac38e2ea9744bef1c3310db
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Feb 14 14:49:35 2009 +0000

    Updated French translation by Laurent Coudeur and Claude Paroz.
    
    2009-02-14  Claude Paroz  <claude@2xlibre.net>
    
        * fr.po: Updated French translation by Laurent Coudeur and Claude Paroz.
    
    svn path=/trunk/; revision=9266

 po/ChangeLog |    4 +
 po/fr.po     | 1784 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 1112 insertions(+), 676 deletions(-)

commit 41fd25746962025d9b156c94b082c75074db5ba9
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Feb 14 13:55:58 2009 +0000

    fixed initial layout preview, #550721
    
    svn path=/trunk/; revision=9265

 capplets/keyboard/ChangeLog                            | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit d036772282407c53f4393ced5a6bd6d4cd365338
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Feb 14 09:11:07 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9264

 po/ChangeLog |   4 ++
 po/sv.po     | 146 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 83 insertions(+), 67 deletions(-)

commit e95fd08156d7174d12f80eb8b1c2dd85ddbeccd5
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Feb 14 02:01:12 2009 +0000

    Translation updated.
    
    2009-02-14  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=9263

 po/ChangeLog |   4 +
 po/hu.po     | 285 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 145 insertions(+), 144 deletions(-)

commit 475e7603b7ba24829efde2f4bddd8c613a1a5377
Author: Jani Monoses <janimo@src.gnome.org>
Date:   Fri Feb 13 19:29:28 2009 +0000

    Updated Romanian translations from Adi Roiban
    
    svn path=/trunk/; revision=9262

 po/ChangeLog |    5 +
 po/ro.po     | 4089 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 1937 insertions(+), 2157 deletions(-)

commit 5934173d717d92cf55de1e78f54fc1aa54b27846
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Feb 13 11:13:14 2009 +0000

    2009-02-13    vi.po    Updated Vietnamese translation
    
    Clytie Siddall <clytie@riverland.net.au>
    
    svn path=/trunk/; revision=9261

 po/ChangeLog |   4 ++
 po/vi.po     | 145 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 84 insertions(+), 65 deletions(-)

commit 03e03c5207d53110b9571930400d20c6a87612f1
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Fri Feb 13 08:49:49 2009 +0000

    Updated Basque translation.
    
    2009-02-13  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=9260

 po/ChangeLog |   4 ++
 po/eu.po     | 186 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 114 insertions(+), 76 deletions(-)

commit f29c62e940a1f3ba94f2f3f0d31f48bf15e576fc
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Feb 12 22:22:32 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9259

 po/ChangeLog |   4 ++
 po/es.po     | 153 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 86 insertions(+), 71 deletions(-)

commit 115c97910061465347f03dcc8ade7f1d724666bf
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Thu Feb 12 14:46:09 2009 +0000

    Updated Japanese translation.
    
    2009-02-12  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
        * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=9258

 po/ChangeLog |    4 +
 po/ja.po     | 1588 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 910 insertions(+), 682 deletions(-)

commit 3c6c697c349869a8d18bc69efb7a971023f05d4b
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Wed Feb 11 23:10:14 2009 +0000

    Add visual bell settings
    
    svn path=/trunk/; revision=9257

 capplets/keyboard/ChangeLog                        |   8 ++
 capplets/keyboard/gnome-keyboard-properties-a11y.c |  64 +++++++++++
 capplets/keyboard/gnome-keyboard-properties.glade  | 120 +++++++++++++++++++++
 3 files changed, 192 insertions(+)

commit fe18fb4357fb892707f1fccf871b5eb367b51e51
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Wed Feb 11 22:30:07 2009 +0000

    Updated Basque translation.
    
    2009-02-11  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=9256

 po/ChangeLog |    4 +
 po/eu.po     | 1416 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 812 insertions(+), 608 deletions(-)

commit 66100ae8e84c3b160146a1e038589e1eecfe94a5
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Feb 11 03:11:24 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9255

 po/ChangeLog |   4 +
 po/sv.po     | 258 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 164 insertions(+), 98 deletions(-)

commit 879faa3e59d39601285c17ce573133da0c9aaefc
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Tue Feb 10 09:06:30 2009 +0000

    Added Asturian translation on behalf of Mikel González
    
    svn path=/trunk/; revision=9254

 po/ChangeLog |    4 +
 po/ast.po    | 1459 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 905 insertions(+), 558 deletions(-)

commit 49cfd993c1c3e2ba7f69268649e093c685949350
Author: Thomas Hindoe Paaboel Andersen <thomashpa@src.gnome.org>
Date:   Mon Feb 9 13:52:54 2009 +0000

    Replace gdk_pixbuf_unref with g_object_unref
    
    svn path=/trunk/; revision=9253

 ChangeLog                               | 6 ++++++
 capplets/common/gconf-property-editor.c | 2 +-
 font-viewer/font-thumbnailer.c          | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit a19fea501e8193d08445a5f6b03a1b240c042882
Author: Jonh Wendell <jwendell@gnome.org>
Date:   Mon Feb 9 12:51:13 2009 +0000

    Brazilian Portuguese translation updated by Andre Gondim and myself.
    
    2009-02-09  Jonh Wendell  <jwendell@gnome.org>
    
        * pt_BR.po: Brazilian Portuguese translation updated by Andre Gondim
        and myself.
    
    
    svn path=/trunk/; revision=9252

 po/ChangeLog |   5 +
 po/pt_BR.po  | 784 +++++++++++++++--------------------------------------------
 2 files changed, 198 insertions(+), 591 deletions(-)

commit 81492186614920c4257628f22d725a644c826ae0
Author: Mark Krapivner <markkr@src.gnome.org>
Date:   Sun Feb 8 20:38:16 2009 +0000

    Updated Hebrew translation
    
    svn path=/trunk/; revision=9251

 po/ChangeLog |   4 +
 po/he.po     | 785 +++++++++++++++++++++++------------------------------------
 2 files changed, 307 insertions(+), 482 deletions(-)

commit 2a70178e83cbae20e2ee252c03aa9ca8d06691d9
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Feb 8 12:41:34 2009 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=9250

 po/ChangeLog |   4 +++
 po/vi.po     | 112 ++++++++++++++++++++++-------------------------------------
 2 files changed, 46 insertions(+), 70 deletions(-)

commit 661f38d5faec2af8067078c4b1bad8cc5dc77602
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Feb 8 12:34:44 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9249

 po/ChangeLog |   4 +
 po/es.po     | 313 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 178 insertions(+), 139 deletions(-)

commit 1aefe849897b0a1b2608dd04a065dda04466c5bc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 8 11:43:21 2009 +0000

    change window title and menu entry name to "Display"/"Display Preferences"
    
    2009-02-08  Jens Granseuer  <jensgr@gmx.net>
    
        * display-capplet.glade:
        * display-properties.desktop.in.in: change window title and menu entry
        name to "Display"/"Display Preferences" to be consistent with other
        settings dialogs (bug #570907)
    
    svn path=/trunk/; revision=9248

 capplets/display/ChangeLog                        | 7 +++++++
 capplets/display/display-capplet.glade            | 2 +-
 capplets/display/display-properties.desktop.in.in | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit f0b1aef18c09a1e5ebbabef54ca1a1d2993b9593
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Feb 7 13:18:05 2009 +0000

    Updated Norwegian bokmål translation.
    
    2009-02-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9247

 po/ChangeLog |   4 +
 po/nb.po     | 269 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 143 insertions(+), 130 deletions(-)

commit 8786acaa3a027ae82ba4410c91c1a29ed68d12f3
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Feb 7 13:10:46 2009 +0000

    restored Help button in options, b.g.o#556952
    
    svn path=/trunk/; revision=9246

 capplets/keyboard/ChangeLog                        |  6 +++++
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 28 ++++++++++++++--------
 capplets/keyboard/gnome-keyboard-properties.glade  |  1 +
 3 files changed, 25 insertions(+), 10 deletions(-)

commit 4acded1a0be01b87acf77b0aa5ef79c445dc6331
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sat Feb 7 12:58:55 2009 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=9245

 po/ChangeLog |    4 +
 po/vi.po     | 1997 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 885 insertions(+), 1116 deletions(-)

commit 667d3c3badf95baa7b96a944156ad956428fdbdc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Feb 6 13:21:03 2009 +0000

    Translation updated.
    
    2009-02-06  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=9244

 po/ChangeLog |    4 +
 po/hu.po     | 1495 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 863 insertions(+), 636 deletions(-)

commit de9c4b5d96db21912f29c1af3742307710493632
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Feb 5 21:21:07 2009 +0000

    bnc472226 (RANDR) - ChangeLog for the changes above
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9243

 capplets/display/ChangeLog | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit df57fe082a3fd21afb2a033a82f5bdb367191576
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Feb 5 21:20:54 2009 +0000

    bnc472226 (RANDR) - Use an async D-bus call to avoid blocking the GUI while gnome-settings-daemon changes the RANDR parameters
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9242

 capplets/display/xrandr-capplet.c | 49 ++++++++++++++++++++++++++++++---------
 1 file changed, 38 insertions(+), 11 deletions(-)

commit 5e0e21f11e36765578b67b278c502006b96f1639
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Feb 5 21:20:40 2009 +0000

    bnc472226 (RANDR) - Put the D-bus connection and proxy in the main App structure, not in local variables.
    We'll need this to maintain state for the D-bus async callback.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9241

 capplets/display/xrandr-capplet.c | 36 +++++++++++++++++++++++-------------
 1 file changed, 23 insertions(+), 13 deletions(-)

commit 18edc5202f76a85968e48a99900e84aa1ffd388d
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Thu Feb 5 12:58:04 2009 +0000

    Updated Polish translation
    
    2009-02-05  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=9240

 po/ChangeLog |    4 +
 po/pl.po     | 1724 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 1035 insertions(+), 693 deletions(-)

commit 0d5406b068821f205a4b769c67e5c589ad39c990
Author: Sweta Kothari <swkothar@src.gnome.org>
Date:   Thu Feb 5 06:27:43 2009 +0000

    Committed Translation by Sweta Kothari
    
    svn path=/trunk/; revision=9239

 po/ChangeLog |    4 +
 po/gu.po     | 1525 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 878 insertions(+), 651 deletions(-)

commit 876e2efa5ef686524432fca6ae7f6277c17541bc
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Feb 4 22:59:50 2009 +0000

    bnc434729 (RANDR) - Realign the outputs after changing the resolution of one of them
    2009-02-04  Federico Mena Quintero  <federico@novell.com>
    
        https://bugzilla.novell.com/show_bug.cgi?id=434729 - Realign the
        outputs when changing the resolution of one of them, so one
        doesn't get overlapping monitors (when the resolution becomes
        bigger) or disjoint monitors (when the resolution becomes smaller).
    
        * xrandr-capplet.c (on_resolution_changed): Align the monitors.
        (realign_outputs_after_resolution_change): New function.  The
        algorithm here could certainly be improved...
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9238

 capplets/display/ChangeLog        | 11 +++++++
 capplets/display/xrandr-capplet.c | 67 +++++++++++++++++++++++++++++----------
 2 files changed, 61 insertions(+), 17 deletions(-)

commit 950c137ea51fbca1d4045ec05a89630d25358bd9
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 4 22:30:58 2009 +0000

    post-release bump to 2.25.91
    
    2009-02-04  Vincent Untz  <vuntz@gnome.org>
    
        * configure.in: post-release bump to 2.25.91
    
    svn path=/trunk/; revision=9237

 ChangeLog                                      | 6 ++++++
 capplets/about-me/ChangeLog                    | 2 ++
 capplets/accessibility/at-properties/ChangeLog | 2 ++
 capplets/appearance/ChangeLog                  | 2 ++
 capplets/common/ChangeLog                      | 2 ++
 capplets/default-applications/ChangeLog        | 2 ++
 capplets/display/ChangeLog                     | 2 ++
 capplets/keybindings/ChangeLog                 | 2 ++
 capplets/keyboard/ChangeLog                    | 2 ++
 capplets/localization/ChangeLog                | 2 ++
 capplets/mouse/ChangeLog                       | 2 ++
 capplets/network/ChangeLog                     | 2 ++
 capplets/windows/ChangeLog                     | 2 ++
 configure.in                                   | 2 +-
 help/ChangeLog                                 | 2 ++
 libwindow-settings/ChangeLog                   | 2 ++
 po/ChangeLog                                   | 2 ++
 shell/ChangeLog                                | 2 ++
 typing-break/ChangeLog                         | 2 ++
 19 files changed, 41 insertions(+), 1 deletion(-)

commit 654595597008bb29ef5c00a4b887a24984e04712
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 4 22:30:15 2009 +0000

    version 2.25.90
    
    2009-02-04  Vincent Untz  <vuntz@gnome.org>
    
        * NEWS:
        * configure.in: version 2.25.90
    
    svn path=/trunk/; revision=9235

 ChangeLog    |  5 ++++
 NEWS         | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 configure.in |  2 +-
 3 files changed, 87 insertions(+), 2 deletions(-)

commit aeca1008db2e2ddabb77ce5c0a74c2478ed36021
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 4 22:24:14 2009 +0000

    updated
    
    2009-02-04  Vincent Untz  <vuntz@gnome.org>
    
        * POTFILES.skip: updated
    
    svn path=/trunk/; revision=9234

 po/ChangeLog     | 4 ++++
 po/POTFILES.skip | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 806b5f90c623100a109cca207606eb40530ce497
Author: Chao-Hsiung Liao <chliao@src.gnome.org>
Date:   Wed Feb 4 13:15:28 2009 +0000

    2.25.3
    
    svn path=/trunk/; revision=9233

 po/ChangeLog |    5 +
 po/zh_HK.po  | 1950 +++++++++++++++++++++++++++++++++++---------------------
 po/zh_TW.po  | 1990 +++++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 2491 insertions(+), 1454 deletions(-)

commit 2b8b464ef286e02979a26232d93b69ead06ce197
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 1 19:59:47 2009 +0000

    fix email addresses being generated by g-a-m always being saved as type
    
    2009-02-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_focus_out): fix email addresses being
        generated by g-a-m always being saved as type "OTHER" which could
        result in addresses being mixed up (bug #570113)
    
    svn path=/trunk/; revision=9232

 capplets/about-me/ChangeLog        | 6 ++++++
 capplets/about-me/gnome-about-me.c | 1 +
 2 files changed, 7 insertions(+)

commit 5e934ab31805aec3f8fc314abb5625a36c7b9693
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 1 18:22:54 2009 +0000

    fix compiler warnings
    
    2009-02-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_load_photo), (about_me_update_photo),
        (about_me_setup_dialog): fix compiler warnings
    
    svn path=/trunk/; revision=9231

 capplets/about-me/ChangeLog        | 5 +++++
 capplets/about-me/gnome-about-me.c | 9 +++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit fbc3a151c31b69abf0f0e12cf500bff8bf7e6901
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 1 18:15:17 2009 +0000

    define GNOME_DESKTOP_USE_UNSTABLE_API to fix build
    
    2009-02-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: define GNOME_DESKTOP_USE_UNSTABLE_API to fix
        build
    
    svn path=/trunk/; revision=9230

 capplets/about-me/ChangeLog        | 5 +++++
 capplets/about-me/gnome-about-me.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit c4da7bfabff00d6e493e76d0beb426104d8f3b08
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Feb 1 16:39:25 2009 +0000

    Added files in capplets/network. Fixes bug #570094
    
    2009-02-01  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * POTFILES.in: Added files in capplets/network. Fixes bug #570094
    
    svn path=/trunk/; revision=9229

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 3 +++
 2 files changed, 7 insertions(+)

commit fde43e37b096611492cb5b9cd3c7c8f3020b89ed
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Sun Feb 1 15:37:24 2009 +0000

    Updated Lithuanian translation.
    
    2009-02-01  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    
    svn path=/trunk/; revision=9228

 po/ChangeLog |    4 +
 po/lt.po     | 1864 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1069 insertions(+), 799 deletions(-)

commit c35c55c4342bb5db92281f1b8e51c45801977bc0
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun Feb 1 11:57:33 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9227

 po/ChangeLog |   4 +
 po/sv.po     | 316 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 133 insertions(+), 187 deletions(-)

commit 68a80abe3b9bafb4d11123bc6594f97f4b66b405
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jan 31 16:39:43 2009 +0000

    really make libcanberra-gtk optional
    
    2009-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: really make libcanberra-gtk optional
    
    svn path=/trunk/; revision=9226

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 854c2ca50be269aaf8b76f41236377d521dfc581
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jan 31 16:31:58 2009 +0000

    modify test statement for better portability
    
    2009-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: modify test statement for better portability
    
    svn path=/trunk/; revision=9225

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1a01a9a67029f60c6b73a1d850cb48ca727ff036
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jan 31 16:29:35 2009 +0000

    Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
    2009-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
        * configure.in: add optional dependency on libcanberra-gtk for bug
        #169473
    
    2009-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
        * Makefile.am:
        * drw-break-window.c: (drw_break_window_init), (clock_timeout_cb):
        play a sound when the display is locked or unlocked (bug #169473)
    
    svn path=/trunk/; revision=9224

 ChangeLog                       |  7 +++++++
 configure.in                    |  7 +++++++
 typing-break/ChangeLog          |  8 +++++++-
 typing-break/Makefile.am        |  5 +++++
 typing-break/drw-break-window.c | 10 ++++++++++
 5 files changed, 36 insertions(+), 1 deletion(-)

commit 9b77c585df677d78aab2d63697bf4cb421cd2ad4
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Jan 30 17:46:04 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9223

 po/ChangeLog |   4 +
 po/es.po     | 319 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 151 insertions(+), 172 deletions(-)

commit 51b6288fe81a0d9e15e39cd048e255439e1be7e2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 30 17:25:40 2009 +0000

    allow setting a repeat delay of up to 2 seconds (bug #569612)
    
    2009-01-30  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: allow setting a repeat delay of
        up to 2 seconds (bug #569612)
    
    svn path=/trunk/; revision=9222

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d616bc67813461486ad428ca2214fe87957085af
Author: Manoj Kumar Giri <mgiri@src.gnome.org>
Date:   Fri Jan 30 12:47:57 2009 +0000

    Added entry for Oriya language Translation updation
    
    svn path=/trunk/; revision=9221

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit ddef444011c0a9c72a99208255451a86f7d22b26
Author: Manoj Kumar Giri <mgiri@src.gnome.org>
Date:   Fri Jan 30 12:47:29 2009 +0000

    Updated Oriya Translation
    
    svn path=/trunk/; revision=9220

 po/or.po | 4426 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 2196 insertions(+), 2230 deletions(-)

commit 59004fc5ebe9958e6821eaadab1393411da6fc79
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jan 30 12:43:19 2009 +0000

    Fix potential crasher when web_radiobutton_toggled_cb is called and the
    
    2009-01-30  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-da-capplet.c (web_radiobutton_toggled_cb): Fix potential
        crasher when web_radiobutton_toggled_cb is called and the
        browser in GConf doesn't exist on the system anymore
    
    
    svn path=/trunk/; revision=9219

 capplets/default-applications/ChangeLog          | 6 ++++++
 capplets/default-applications/gnome-da-capplet.c | 2 ++
 2 files changed, 8 insertions(+)

commit c25d4f239d54e61504310bdc2ae32d7536841e9a
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Wed Jan 28 20:56:06 2009 +0000

    reviewed by: Jens Granseuer
    
    2009-01-28  Luca Ferretti  <elle.uca@libero.it>
    
        reviewed by: Jens Granseuer
    
        * data/appearance.glade:
        * gnome-wp-info.c: (gnome_wp_info_new): Use "Desktop Background"
        instead "Wallpaper" as per GDP glossary (Fixes bug #569382)
    
    
    svn path=/trunk/; revision=9218

 capplets/appearance/ChangeLog             | 8 ++++++++
 capplets/appearance/data/appearance.glade | 2 +-
 capplets/appearance/gnome-wp-info.c       | 2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)

commit 7db5219ee9f0a841bda89b2dee9065ab1ce41d13
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 28 18:12:26 2009 +0000

    update the entry with the correct command for the selected option instead
    
    2009-01-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-da-capplet.c: (web_combo_changed_cb): update the entry with
        the correct command for the selected option instead of always using
        the default
    
    svn path=/trunk/; revision=9217

 capplets/default-applications/ChangeLog          |  6 ++++++
 capplets/default-applications/gnome-da-capplet.c | 13 ++++++++++++-
 2 files changed, 18 insertions(+), 1 deletion(-)

commit 4be1294945d79b37a60821e3f11de21f855883ac
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 28 12:06:38 2009 +0000

    Make Enter work as expected in the custom key shortcut edit dialogue
    
    2009-01-28  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybinding-properties.c (setup_dialog): Make Enter
        work as expected in the custom key shortcut edit dialogue
    
    
    svn path=/trunk/; revision=9216

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 ++
 2 files changed, 7 insertions(+)

commit 1069e323e81e3dcb9ddb422233c753c7a9a02889
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 28 12:01:15 2009 +0000

    Only print warnings for non-custom keybindings, Set the GConf key for the
    
    2009-01-28  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybinding-properties.c (append_keys_to_tree),
        (edit_custom_shortcut), (update_custom_shortcut): Only print
        warnings for non-custom keybindings, Set the GConf key for
        the description when editing existing custom key shortcuts,
        Avoid warnings when the description for a custom key shortcut
        is empty
    
    
    svn path=/trunk/; revision=9215

 capplets/keybindings/ChangeLog                     |  9 +++++++++
 capplets/keybindings/gnome-keybinding-properties.c | 23 ++++++++++++++++------
 2 files changed, 26 insertions(+), 6 deletions(-)

commit d6169f8cdbd5343b213fb3f6769e753d77d5dbe0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 28 11:35:08 2009 +0000

    Print a warning when a key doesn't have a schema, so no description, makes
    
    2009-01-28  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybinding-properties.c (append_keys_to_tree):
        Print a warning when a key doesn't have a schema, so no
        description, makes debugging things like:
        https://bugzilla.redhat.com/show_bug.cgi?id=482813
        easier
    
    
    svn path=/trunk/; revision=9214

 capplets/keybindings/ChangeLog                     | 8 ++++++++
 capplets/keybindings/gnome-keybinding-properties.c | 6 ++++++
 2 files changed, 14 insertions(+)

commit 7a54cb970e1b5d24aa0fa046f09fec437c159a3a
Author: Jonh Wendell <jwendell@gnome.org>
Date:   Tue Jan 27 17:12:38 2009 +0000

    Brazilian Portuguese translation updated by Henrique P. Machado.
    
    2009-01-27  Jonh Wendell  <jwendell@gnome.org>
    
        * pt_BR.po: Brazilian Portuguese translation updated by Henrique P. Machado.
    
    
    svn path=/trunk/; revision=9213

 po/ChangeLog |    4 +
 po/pt_BR.po  | 1920 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1107 insertions(+), 817 deletions(-)

commit daf42aa7dede71f0f379f7c485a22c09188ab3e2
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Tue Jan 27 14:46:06 2009 +0000

    Updated Catalan translation by Joan Duran
    
    svn path=/trunk/; revision=9212

 po/ChangeLog   |    5 +
 po/POTFILES.in |    3 -
 po/ca.po       | 1747 +++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 1024 insertions(+), 731 deletions(-)

commit 8e496279433c22f1d1ba35a8101acd2a39da29df
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Tue Jan 27 03:14:00 2009 +0000

    updating for Punjabi by A S Alam
    
    svn path=/trunk/; revision=9211

 po/pa.po | 1760 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1025 insertions(+), 735 deletions(-)

commit 7c1b15bed61ae69fd8276becbc6ca44b073f7dac
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jan 26 21:37:27 2009 +0000

    don't crash if we don't have an output (bug #569218)
    
    2009-01-26  Jens Granseuer  <jensgr@gmx.net>
    
        * xrandr-capplet.c: (rebuild_rate_combo),
        (rebuild_resolution_combo): don't crash if we don't have an output
        (bug #569218)
    
    svn path=/trunk/; revision=9210

 capplets/display/ChangeLog        |  6 ++++++
 capplets/display/xrandr-capplet.c | 12 +++++++-----
 2 files changed, 13 insertions(+), 5 deletions(-)

commit 70284272a7d6139875dc1e8697d70d23167171da
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jan 25 11:28:25 2009 +0000

    fix argument type warnings by casting to appropriate type
    
    2009-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (add_custom_shortcut): fix argument
        type warnings by casting to appropriate type
    
    svn path=/trunk/; revision=9209

 capplets/keybindings/ChangeLog                     |  5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 26 +++++++++++-----------
 2 files changed, 18 insertions(+), 13 deletions(-)

commit a62dabe380126a1ee340180369c8654864e54d38
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jan 25 11:25:09 2009 +0000

    don't define GNOME_DESKTOP_USE_UNSTABLE_API globally
    
    2009-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: don't define GNOME_DESKTOP_USE_UNSTABLE_API globally
    
    2009-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * gnome-wp-info.h:
        * gnome-wp-item.h: define GNOME_DESKTOP_USE_UNSTABLE_API in Makefile
        instead of individual headers
    
    svn path=/trunk/; revision=9208

 ChangeLog                           | 4 ++++
 capplets/appearance/ChangeLog       | 7 +++++++
 capplets/appearance/Makefile.am     | 2 ++
 capplets/appearance/gnome-wp-info.h | 1 -
 capplets/appearance/gnome-wp-item.h | 1 -
 configure.in                        | 2 --
 6 files changed, 13 insertions(+), 4 deletions(-)

commit 65d2e5c3e5e58b6cd2cc7dc04f78e54661f0c218
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jan 25 11:05:45 2009 +0000

    add GnomeThemeElement parameter to the ThemeChangedCallback so that the
    
    2009-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (handle_change_signal), (update_theme_index),
        (update_common_theme_dir_index):
        * gnome-theme-info.h: add GnomeThemeElement parameter to the
        ThemeChangedCallback so that the receiver can determine what part of
        the theme changed (part of bug #568595)
    
    2009-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        Fix newly installed themes appearing twice in the GTK themes list if
        the package contains themes for both GTK and metacity (bug #568595)
    
        * appearance-style.c: (changed_on_disk_cb): check the new
        GnomeThemeElement parameter instead of the theme properties to
        determine what part of the theme changed
        * appearance-themes.c: (theme_changed_on_disk_cb): use new callback
        signature
    
    svn path=/trunk/; revision=9206

 capplets/appearance/ChangeLog           | 11 +++++++++++
 capplets/appearance/appearance-style.c  |  9 +++++----
 capplets/appearance/appearance-themes.c |  1 +
 capplets/common/ChangeLog               |  8 ++++++++
 capplets/common/gnome-theme-info.c      | 26 +++++++++++++-------------
 capplets/common/gnome-theme-info.h      |  1 +
 6 files changed, 39 insertions(+), 17 deletions(-)

commit 19f8c86dc1bd0c15084f3dba6a3fc9e97985ba87
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sat Jan 24 12:50:44 2009 +0000

    Updated Korean translation
    
    svn path=/trunk/; revision=9205

 po/ChangeLog |    4 +
 po/ko.po     | 1830 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1082 insertions(+), 752 deletions(-)

commit 763c7f1a8f8fe9eb3cac7a35a44539df17b701ef
Author: Lu Gan <ganlu@src.gnome.org>
Date:   Sat Jan 24 11:23:09 2009 +0000

    Updated Chinese Simplified translation
    
    svn path=/trunk/; revision=9204

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1733 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1010 insertions(+), 727 deletions(-)

commit 7dcb35dc18c090cacb75e8c9a903e543c3686e83
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Wed Jan 21 13:38:38 2009 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=9203

 po/ChangeLog |    4 +
 po/he.po     | 1624 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 1018 insertions(+), 610 deletions(-)

commit 4b1422710ecba14099a578fd8ecb86dffa8b04be
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 20 19:46:22 2009 +0000

    Fix the https handler never being set (Closes: #568408)
    
    2009-01-20  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-da-capplet.c (web_radiobutton_toggled_cb),
        (web_combo_changed_cb), (web_combo_conv_to_widget): Fix the https
        handler never being set (Closes: #568408)
    
    
    svn path=/trunk/; revision=9202

 capplets/default-applications/ChangeLog          | 6 ++++++
 capplets/default-applications/gnome-da-capplet.c | 5 +++++
 2 files changed, 11 insertions(+)

commit 5444fb3b7ad2ad05ed46ac74fe4dcd5647247409
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Mon Jan 19 10:09:29 2009 +0000

    Update Icon key to new name too
    
    2009-01-19  Luca Ferretti  <elle.uca@libero.it>
    
        * gnome-network-properties.desktop.in.in: Update Icon key to
        new name too
    
    svn path=/trunk/; revision=9201

 capplets/network/ChangeLog                              | 5 +++++
 capplets/network/gnome-network-properties.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d017f4bd842c0c26fc0a74dd29aa33fb53001403
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Jan 16 22:13:43 2009 +0000

    hide Options help button, b.g.o#556952
    
    svn path=/trunk/; revision=9200

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c1072bc682e1b1837f3ad57d7a16e44861a610b1
Author: Thierry Randrianiriana <thierryr@src.gnome.org>
Date:   Fri Jan 16 13:53:54 2009 +0000

     po/mg.po: Updated Malagasy translation
    
    svn path=/trunk/; revision=9199

 po/ChangeLog | 326 ++++++++++++++++++++++++++++++-----------------------------
 po/mg.po     |  17 +---
 2 files changed, 170 insertions(+), 173 deletions(-)

commit 4f1b6aafba338a267b6c1b911ceb33358b2eca09
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Tue Jan 13 14:32:37 2009 +0000

    Renamed from gnome-network-preferences to gnome-network-properties. Closes
    
    2009-01-13  Luca Ferretti  <elle.uca@libero.it>
    
        * configure.in:
        * capplets/network/*:
        Renamed from gnome-network-preferences to gnome-network-properties.
        Closes bug #554342
    
    
    svn path=/trunk/; revision=9198

 ChangeLog                                          |    7 +
 capplets/network/Makefile.am                       |   22 +-
 capplets/network/gnome-network-preferences.c       | 1240 -----------------
 .../gnome-network-preferences.desktop.in.in        |   14 -
 capplets/network/gnome-network-preferences.glade   | 1472 --------------------
 capplets/network/gnome-network-properties.c        | 1240 +++++++++++++++++
 .../network/gnome-network-properties.desktop.in.in |   14 +
 capplets/network/gnome-network-properties.glade    | 1472 ++++++++++++++++++++
 .../icons/16x16/gnome-network-preferences.png      |  Bin 824 -> 0 bytes
 .../icons/16x16/gnome-network-preferences.svg      |  364 -----
 .../icons/16x16/gnome-network-properties.png       |  Bin 0 -> 824 bytes
 .../icons/16x16/gnome-network-properties.svg       |  364 +++++
 .../icons/22x22/gnome-network-preferences.png      |  Bin 1081 -> 0 bytes
 .../icons/22x22/gnome-network-preferences.svg      |  452 ------
 .../icons/22x22/gnome-network-properties.png       |  Bin 0 -> 1081 bytes
 .../icons/22x22/gnome-network-properties.svg       |  452 ++++++
 .../icons/24x24/gnome-network-preferences.png      |  Bin 1081 -> 0 bytes
 .../icons/24x24/gnome-network-properties.png       |  Bin 0 -> 1081 bytes
 .../icons/32x32/gnome-network-preferences.png      |  Bin 1855 -> 0 bytes
 .../icons/32x32/gnome-network-preferences.svg      |  518 -------
 .../icons/32x32/gnome-network-properties.png       |  Bin 0 -> 1855 bytes
 .../icons/32x32/gnome-network-properties.svg       |  518 +++++++
 .../icons/48x48/gnome-network-preferences.png      |  Bin 3191 -> 0 bytes
 .../icons/48x48/gnome-network-properties.png       |  Bin 0 -> 3191 bytes
 .../icons/scalable/gnome-network-preferences.svg   |  628 ---------
 .../icons/scalable/gnome-network-properties.svg    |  628 +++++++++
 configure.in                                       |    2 +-
 27 files changed, 4707 insertions(+), 4700 deletions(-)

commit 20bba09e6919a587e53bd71426026440bf8a0945
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 12 13:42:49 2009 +0000

    Updated Norwegian bokmål translation.
    
    2009-01-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9197

 po/ChangeLog |   4 ++
 po/nb.po     | 151 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 82 insertions(+), 73 deletions(-)

commit 909f35f3d7d215a528cc5e078e91fb7a1e9ab2cd
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jan 11 01:10:09 2009 +0000

    memleak fixed
    
    svn path=/trunk/; revision=9196

 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 3 +++
 1 file changed, 3 insertions(+)

commit 0200b23f7d9a43651c5411aa18670e9239831252
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Jan 10 02:19:23 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9195

 po/ChangeLog |   4 ++
 po/es.po     | 154 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 82 insertions(+), 76 deletions(-)

commit d980abf06203d04e7fd97603870d120371218a5f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 10 02:05:56 2009 +0000

    space is before all other non-control chars
    
    svn path=/trunk/; revision=9194

 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3654f8527588ad5633a8449cabc61f4bce0e9050
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 10 01:57:31 2009 +0000

    sort options by description
    
    svn path=/trunk/; revision=9193

 capplets/keyboard/ChangeLog                        |   4 +
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 132 ++++++++++++---------
 2 files changed, 83 insertions(+), 53 deletions(-)

commit b325a45460606a5c45ff57904a1506d7f611f1ea
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Fri Jan 9 21:43:11 2009 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9192

 po/ChangeLog |    4 +
 po/sv.po     | 1616 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 939 insertions(+), 681 deletions(-)

commit 8ccc717158f83462b1051a3a889136d70721c9c0
Author: Nurali Abdurahmonov <anurali@src.gnome.org>
Date:   Thu Jan 8 02:35:48 2009 +0000

    fixed nplurals for uzbek translations
    
    svn path=/trunk/; revision=9191

 po/uz.po          | 2 +-
 po/uz@cyrillic.po | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit e8e20020874aeeb41a6d4d99972f653376c107c9
Author: Nurali Abdurahmonov <anurali@src.gnome.org>
Date:   Thu Jan 8 02:31:52 2009 +0000

    added uzbek translations by nurali
    
    svn path=/trunk/; revision=9190

 po/ChangeLog      |    6 +
 po/LINGUAS        |    2 +
 po/uz.po          | 3872 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/uz@cyrillic.po | 3872 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 7752 insertions(+)

commit ea6b78e870330dbb91475708ae6e61bb7bede217
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jan 7 23:28:46 2009 +0000

    Desensitize the Resolution combo when the output is off
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9189

 capplets/display/ChangeLog        |  2 ++
 capplets/display/xrandr-capplet.c | 22 +++++++---------------
 2 files changed, 9 insertions(+), 15 deletions(-)

commit 53f721544dbf475783ae58d4ee8da9ad9717e680
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jan 7 23:28:25 2009 +0000

    Let the user turn on outputs which were off
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9188

 capplets/display/xrandr-capplet.c | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

commit 262658abc513d5422ffd4d62e10a81ec83a917b1
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jan 7 23:28:08 2009 +0000

    Don't re-select the current output when flipping workspaces
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9187

 capplets/display/ChangeLog        | 6 ++++++
 capplets/display/xrandr-capplet.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit fabb6bd6dc1500f77d700a608145e6610b41634a
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jan 7 23:27:49 2009 +0000

    bnc433939 - Add On/Off radio buttons for the monitors
    2008-12-18  Federico Mena Quintero  <federico@novell.com>
    
        https://bugzilla.novell.com/show_bug.cgi?id=433939 - It's not
        obvious how to turn on a new monitor.
    
        * display-capplet.glade: Add On/Off radio buttons for the selected
        monitor, as it is hard to find that the on/off state is actually
        set by the Resolution combo.
    
        * xrandr-capplet.c (rebuild_gui): Don't set sensitivity of
        resolution_combo here...
        (rebuild_resolution_combo): ... but do it here instead.  This is
        so that we can match the state of the monitor on/off buttons.
        (rebuild_on_off_radios): New function.  We set the on/off radio
        buttons based on the "on" state of the current output.
        (monitor_on_off_toggled_cb): New callback; we toggle the current
        output's on/off state.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9186

 capplets/display/ChangeLog             | 18 +++++++
 capplets/display/display-capplet.glade | 87 +++++++++++++++++++++++++++-------
 capplets/display/xrandr-capplet.c      | 85 ++++++++++++++++++++++++++++++++-
 3 files changed, 172 insertions(+), 18 deletions(-)

commit 23f974558f1d5f93e3bcd0bbe22f96a2ab329839
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Jan 7 23:27:30 2009 +0000

    Fix a variable type
    2008-12-18  Federico Mena Quintero  <federico@novell.com>
    
        * xrandr-capplet.c (select_current_output_from_dialog_position):
        Fix the type of the "output" variable.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9185

 capplets/display/ChangeLog        | 5 +++++
 capplets/display/xrandr-capplet.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 78cd96248de35b16403a2c6e48876a5cdf989378
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 5 06:17:07 2009 +0000

    Updated Norwegian bokmål translation.
    
    2009-01-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9183

 po/ChangeLog |   4 +
 po/nb.po     | 497 +++++++++++++----------------------------------------------
 2 files changed, 107 insertions(+), 394 deletions(-)

commit c6050ee4a29b34402a88b01d09f5b0556502482c
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Jan 1 19:44:41 2009 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9182

 po/ChangeLog |   4 +
 po/es.po     | 591 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 264 insertions(+), 331 deletions(-)

commit a4f09695255ddd6d362dc4f6ca44b4d97292816f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 18 19:30:08 2008 +0000

    upd 2.25.3
    
    2008-12-18  Bastien Nocera  <hadess@hadess.net>
    
        * NEWS: upd
        * configure.in: 2.25.3
    
    
    svn path=/trunk/; revision=9178

 ChangeLog                                      |  7 +++++++
 NEWS                                           | 21 +++++++++++++++++++++
 capplets/about-me/ChangeLog                    |  2 ++
 capplets/accessibility/at-properties/ChangeLog |  2 +-
 capplets/appearance/ChangeLog                  |  1 +
 capplets/common/ChangeLog                      |  1 +
 capplets/default-applications/ChangeLog        |  2 +-
 capplets/display/ChangeLog                     | 24 +++++++++++++-----------
 capplets/keybindings/ChangeLog                 |  1 +
 capplets/keyboard/ChangeLog                    |  2 +-
 capplets/localization/ChangeLog                |  2 +-
 capplets/mouse/ChangeLog                       |  2 +-
 capplets/network/ChangeLog                     |  7 ++++---
 capplets/windows/ChangeLog                     |  2 +-
 configure.in                                   |  2 +-
 help/ChangeLog                                 |  2 ++
 libwindow-settings/ChangeLog                   |  1 +
 po/ChangeLog                                   |  2 ++
 shell/ChangeLog                                |  1 +
 typing-break/ChangeLog                         |  3 +++
 20 files changed, 66 insertions(+), 21 deletions(-)

commit 0a37bbbf2b47afb6d695c63832a631f576797808
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 18 19:25:00 2008 +0000

    Remove sound capplet files
    
    2008-12-18  Bastien Nocera  <hadess@hadess.net>
    
        * POTFILES.in: Remove sound capplet files
    
    
    svn path=/trunk/; revision=9177

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 7 -------
 2 files changed, 4 insertions(+), 7 deletions(-)

commit 1394953ef6677a9b7c9fefd2d39b60a4907c80c9
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Dec 18 19:09:21 2008 +0000

    bnc450141 - Hide the Help button in the display capplet, as it does nothing
    2008-12-16  Federico Mena Quintero  <federico@novell.com>
    
        https://bugzilla.novell.com/show_bug.cgi?id=450141 - Help button
        in the Display capplet does nothing.
    
        * xrandr-capplet.c (run_application): Hide the Help button as we
        have no help to show for this capplet yet.
        (hide_help_button): New function.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9176

 capplets/display/ChangeLog        |  9 +++++++++
 capplets/display/xrandr-capplet.c | 29 +++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

commit ae0f6009472cd17af69c5af1bd34c828451de816
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Dec 18 19:06:50 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9175

 po/ChangeLog |   4 +
 po/es.po     | 265 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 164 insertions(+), 105 deletions(-)

commit f42819f2d25cb5d196de56240abf341731156f11
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 18 19:06:17 2008 +0000

    Remove docs for the sound capplet
    
    2008-12-18  Bastien Nocera  <hadess@hadess.net>
    
        * C/config-sound.xml:
        * Makefile.am:
        * es/config-sound.xml: Remove docs for the sound capplet
    
    
    svn path=/trunk/; revision=9174

 help/C/config-sound.xml  | 47 -----------------------------------------------
 help/ChangeLog           |  6 ++++++
 help/Makefile.am         |  2 +-
 help/es/config-sound.xml | 47 -----------------------------------------------
 4 files changed, 7 insertions(+), 95 deletions(-)

commit 002e5163ac614eba3ed83bcd1bbec8bde6372b23
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 18 11:19:25 2008 +0000

    Remove the sound capplet, it's now in gnome-media itself, removes
    
    2008-12-18  Bastien Nocera  <hadess@hadess.net>
    
        * capplets/Makefile.am:
        * capplets/sound/Makefile.am:
        * capplets/sound/gnome-settings-sound.desktop.in.in:
        * capplets/sound/icons/16x16/gnome-sound-properties.svg:
        * capplets/sound/icons/22x22/gnome-sound-properties.svg:
        * capplets/sound/icons/32x32/gnome-sound-properties.svg:
        * capplets/sound/icons/scalable/gnome-sound-properties.svg:
        * capplets/sound/mixer-support.c:
        * capplets/sound/mixer-support.h:
        * capplets/sound/pipeline-tests.c:
        * capplets/sound/pipeline-tests.h:
        * capplets/sound/sound-properties-capplet.c:
        * capplets/sound/sound-properties.glade:
        * capplets/sound/sound-theme-definition.h:
        * capplets/sound/sound-theme-file-utils.c:
        * capplets/sound/sound-theme-file-utils.h:
        * capplets/sound/sound-theme.c:
        * capplets/sound/sound-theme.h:
        * configure.in: Remove the sound capplet, it's now in gnome-media
        itself, removes libcanberra-gtk and GStreamer dependencies
        (Closes: #564871)
    
    
    svn path=/trunk/; revision=9173

 ChangeLog                                          |   24 +
 capplets/Makefile.am                               |    6 +-
 capplets/sound/ChangeLog                           |  913 ---------------
 capplets/sound/Makefile.am                         |   65 -
 capplets/sound/gnome-settings-sound.desktop.in.in  |   14 -
 .../sound/icons/16x16/gnome-sound-properties.png   |  Bin 917 -> 0 bytes
 .../sound/icons/16x16/gnome-sound-properties.svg   |  585 ---------
 .../sound/icons/22x22/gnome-sound-properties.png   |  Bin 1424 -> 0 bytes
 .../sound/icons/22x22/gnome-sound-properties.svg   |  595 ----------
 .../sound/icons/24x24/gnome-sound-properties.png   |  Bin 1431 -> 0 bytes
 .../sound/icons/32x32/gnome-sound-properties.png   |  Bin 2308 -> 0 bytes
 .../sound/icons/32x32/gnome-sound-properties.svg   |  633 ----------
 .../sound/icons/48x48/gnome-sound-properties.png   |  Bin 3755 -> 0 bytes
 .../icons/scalable/gnome-sound-properties.svg      |  554 ---------
 capplets/sound/mixer-support.c                     |  140 ---
 capplets/sound/mixer-support.h                     |   47 -
 capplets/sound/pipeline-tests.c                    |  187 ---
 capplets/sound/pipeline-tests.h                    |   36 -
 capplets/sound/sound-properties-capplet.c          | 1206 -------------------
 capplets/sound/sound-properties.glade              | 1208 -------------------
 capplets/sound/sound-theme-definition.h            |   71 --
 capplets/sound/sound-theme-file-utils.c            |  166 ---
 capplets/sound/sound-theme-file-utils.h            |   38 -
 capplets/sound/sound-theme.c                       | 1237 --------------------
 capplets/sound/sound-theme.h                       |   31 -
 configure.in                                       |   64 -
 26 files changed, 25 insertions(+), 7795 deletions(-)

commit 34f643bb92644b0c93116fd5aaca5d0ed3a48aac
Author: Frederic Peters <fpeters@src.gnome.org>
Date:   Tue Dec 16 11:40:36 2008 +0000

    Declare variable, fix build.
    
    * xrandr-capplet.c: (select_current_output_from_dialog_position):
    Declare variable, fix build.
    
    
    svn path=/trunk/; revision=9172

 capplets/display/ChangeLog        | 5 +++++
 capplets/display/xrandr-capplet.c | 2 ++
 2 files changed, 7 insertions(+)

commit e16c9d3715d24a3b8ad9daf2e696dd0213bd199e
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Dec 15 23:19:32 2008 +0000

    Don't duplicate code to pick the current output
    2008-12-15  Federico Mena Quintero  <federico@novell.com>
    
        * xrandr-capplet.c (on_screen_changed): Use
        select_current_output_from_dialog_position() instead of selecting
        an output ourselves.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9171

 capplets/display/ChangeLog        |  6 ++++++
 capplets/display/xrandr-capplet.c | 36 +++++++++---------------------------
 2 files changed, 15 insertions(+), 27 deletions(-)

commit 3545215c2151cddc4519d4a70dfcd707808d8790
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Dec 15 23:19:16 2008 +0000

    Select the RANDR output which contains the configuration window
    2008-12-15  Federico Mena Quintero  <federico@novell.com>
    
        * xrandr-capplet.c (select_current_output_from_dialog_position):
        New function.
        (dialog_map_event_cb): New GtkWidget::map-event handler for the
        toplevel dialog.  When the dialog gets mapped, we make the current
        output be the one which actually contains the dialog window, so
        that the user can edit the monitor which he's looking at.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9170

 capplets/display/ChangeLog        |   9 +++
 capplets/display/xrandr-capplet.c | 130 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 139 insertions(+)

commit 93bb5a2011da91662e7f65b57e6d6c7db137dd49
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Dec 15 21:03:55 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-12-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9169

 po/ChangeLog |    4 +
 po/nb.po     | 1039 ++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 761 insertions(+), 282 deletions(-)

commit 42da2562f54eb11f2ef1ebfffe545a3931163e12
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Dec 15 18:59:57 2008 +0000

    Show which monitor is being edited in the 'Monitor' label
    2008-12-15  Federico Mena Quintero  <federico@novell.com>
    
        * display-capplet.glade: Put the "Monitor" label inside an event
        box, so we can change the background color of the event box.  Give
        names to both widgets: current_monitor_label,
        current_monitor_event_box.
    
        * xrandr-capplet.c (rebuild_gui): When a monitor is selected,
        update the "Monitor" label to include the monitor's name and color
        so the user will know which monitor he is editing.
        (rebuild_current_monitor_label): New function.
        (struct App): New fields current_monitor_label,
        current_monitor_event_box.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9168

 capplets/display/ChangeLog             | 14 ++++++++++++
 capplets/display/display-capplet.glade | 38 ++++++++++++++++++++-------------
 capplets/display/xrandr-capplet.c      | 39 ++++++++++++++++++++++++++++++++++
 3 files changed, 76 insertions(+), 15 deletions(-)

commit ded9c324a58c0758b3131e7fc3e9004d2b90096e
Author: Federico Mena Quintero <federico@novell.com>
Date:   Mon Dec 15 18:59:44 2008 +0000

    bnc381030 - Prettify the Display capplet's dialog
    2008-12-12  Federico Mena Quintero  <federico@novell.com>
    
        https://bugzilla.novell.com/show_bug.cgi?id=381030 - Prettify the
        Display capplet's dialog
    
        * display-capplet.glade: Use the HIG's recommended colons,
        capitalization, and spacing.  Use headers to separate the Monitor
        options from the Panel icon option.  Add instructions on how to
        operate the draggable monitors.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9167

 capplets/display/ChangeLog             |  10 ++
 capplets/display/display-capplet.glade | 216 ++++++++++++++++++++++++++-------
 2 files changed, 182 insertions(+), 44 deletions(-)

commit 4423ae56def9cc3197c2ac3e98419dc00566f7c8
Author: Federico Mena Quintero <federico@novell.com>
Date:   Fri Dec 12 23:37:28 2008 +0000

    Un-overlap the monitors when turning off mirrored screens
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9166

 capplets/display/ChangeLog        |  9 ++++++++
 capplets/display/xrandr-capplet.c | 47 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

commit fdca72c520aa2fbd710a17db2c7546cddca00314
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 8 19:12:12 2008 +0000

    Print "Done!" as a status message when we're done enrolling, add support
    
    2008-12-08  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-about-me-fingerprint.c (enroll_result),
        (assistant_prepare):
        * gnome-about-me-fingerprint.glade: Print "Done!" as a
        status message when we're done enrolling, add support for
        enrollment stages > 1 (Closes: #562504)
    
    
    svn path=/trunk/; revision=9165

 capplets/about-me/ChangeLog                        |  8 +++++
 capplets/about-me/gnome-about-me-fingerprint.c     | 37 +++++++++++++++++----
 capplets/about-me/gnome-about-me-fingerprint.glade | 38 ++++++++++++++++++++--
 3 files changed, 74 insertions(+), 9 deletions(-)

commit c205cbbe945be6b72cf4ad2cc38bbe1f18e3b7b9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Dec 8 18:46:49 2008 +0000

    Add title to enrollment window
    
    2008-12-08  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-about-me-fingerprint.c (enroll_fingerprints):
        Add title to enrollment window
    
    
    svn path=/trunk/; revision=9164

 capplets/about-me/ChangeLog                    | 5 +++++
 capplets/about-me/gnome-about-me-fingerprint.c | 1 +
 2 files changed, 6 insertions(+)

commit e2e81772dd9104a9756beda95b9f4cf915883f4f
Author: Federico Mena Quintero <federico@novell.com>
Date:   Thu Dec 4 00:33:28 2008 +0000

    Use GError from gnome_rr_*
    2008-12-03  Federico Mena Quintero  <federico@novell.com>
    
        * xrandr-capplet.c (rebuild_rotation_combo): Pass a NULL error
        argument to gnome_rr_config_applicable; we should really show why
        that rotation is not available.
        (apply): Use the new DBus interface from the XRANDR plugin in
        g-s-d instead of an X client message.  Display an error if g-s-d
        couldn't apply the monitor configuration.
        (on_detect_displays): Display an error if detecting the displays fails.
        (run_application): Display error messages.
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=9163

 capplets/display/ChangeLog        | 12 +++++
 capplets/display/xrandr-capplet.c | 93 +++++++++++++++++++++++----------------
 2 files changed, 66 insertions(+), 39 deletions(-)

commit 89754a6b3a13f2037580aab364fe750f38646eda
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Tue Dec 2 18:00:25 2008 +0000

    2.25.2 ready
    
    svn path=/trunk/; revision=9161

 ChangeLog                   | 2 ++
 capplets/about-me/ChangeLog | 2 ++
 2 files changed, 4 insertions(+)

commit 3cdaaa232ae1e9d8042bcbb64bf7bef769a075c4
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Tue Dec 2 17:16:23 2008 +0000

    Fix libslab dependencies so it builds
    
    svn path=/trunk/; revision=9160

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9d2f772bbda7f75e3687837da0b9bd98d6662ab3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Dec 2 16:40:19 2008 +0000

    add fprintd-marshal.list to EXTRA_DIST.
    
    2008-12-02  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: add fprintd-marshal.list to EXTRA_DIST.
    
    svn path=/trunk/; revision=9159

 capplets/about-me/ChangeLog   | 4 +++-
 capplets/about-me/Makefile.am | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 8640021f19336fbba6ec7135ee9f1d3fd149e6bb
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Dec 2 16:37:29 2008 +0000

    prepare for 2.25.2 release.
    
    2008-12-02  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * *ChangeLog: prepare for 2.25.2 release.
    
    svn path=/trunk/; revision=9158

 ChangeLog                                      |  5 +++
 NEWS                                           | 49 ++++++++++++++++++++++++--
 capplets/about-me/ChangeLog                    |  2 ++
 capplets/accessibility/at-properties/ChangeLog |  2 ++
 capplets/appearance/ChangeLog                  |  2 ++
 capplets/common/ChangeLog                      |  2 ++
 capplets/default-applications/ChangeLog        |  2 ++
 capplets/display/ChangeLog                     |  2 ++
 capplets/keybindings/ChangeLog                 |  2 ++
 capplets/keyboard/ChangeLog                    |  2 ++
 capplets/localization/ChangeLog                |  2 ++
 capplets/mouse/ChangeLog                       |  2 ++
 capplets/network/ChangeLog                     |  2 ++
 capplets/sound/ChangeLog                       |  2 ++
 capplets/windows/ChangeLog                     |  2 ++
 help/ChangeLog                                 |  1 +
 libwindow-settings/ChangeLog                   |  2 ++
 po/ChangeLog                                   |  2 ++
 shell/ChangeLog                                |  1 +
 typing-break/ChangeLog                         |  2 ++
 20 files changed, 86 insertions(+), 2 deletions(-)

commit ffaf3ebc8621073436398f551feeebda3fccc552
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 30 12:58:38 2008 +0000

    don't recognize "" as a valid engine for certain odd GTK themes (see bug
    
    2008-11-30  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_details): don't recognize "" as a valid
        engine for certain odd GTK themes (see bug #315286 for an example)
    
    svn path=/trunk/; revision=9157

 capplets/common/ChangeLog     | 5 +++++
 capplets/common/gtkrc-utils.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 934dce46c38165fe874998b7e3f606759f92204d
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Nov 30 12:09:27 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9156

 po/ChangeLog |   4 +
 po/es.po     | 407 +++++++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 333 insertions(+), 78 deletions(-)

commit 0e14d6efaf7f786effbf521a64c20eb15309cc8d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 29 09:53:18 2008 +0000

    don't leak the filename
    
    2008-11-29  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (file_theme_type): don't leak the filename
    
    svn path=/trunk/; revision=9155

 capplets/appearance/ChangeLog         | 4 ++++
 capplets/appearance/theme-installer.c | 1 +
 2 files changed, 5 insertions(+)

commit 64becacf35b026e59803334a06258e94d73e3eef
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 28 12:09:11 2008 +0000

    Fix fingerprint buttons always being unsensitive with PolicyKit support
    
    2008-11-28  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-about-me.c (create_fingerprint_button): Fix fingerprint
        buttons always being unsensitive with PolicyKit support
    
    
    svn path=/trunk/; revision=9154

 capplets/about-me/ChangeLog        | 5 +++++
 capplets/about-me/gnome-about-me.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b83b10d8b1ab49a81a121157b6c39264995452d4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 27 22:09:05 2008 +0000

    Optionally check for PolicyKit
    
    2008-11-27  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: Optionally check for PolicyKit
    
    2008-11-27  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * fingerprint-strings.h:
        * fprintd-marshal.list:
        * gnome-about-me-fingerprint.c:
        * gnome-about-me-fingerprint.glade:
        * gnome-about-me-fingerprint.h:
        * gnome-about-me.c (create_fingerprint_button),
        (about_me_load_info), (about_me_fingerprint_button_clicked_cb),
        (about_me_setup_dialog), (main):
        * gnome-about-me.glade: Add support for enrolling fingerprints
        using the fprintd D-Bus service (Closes: #561881)
    
    2008-11-27  Bastien Nocera  <hadess@hadess.net>
    
        * POTFILES.in: Add new files from the fingerprint
        enrollment support
    
    
    svn path=/trunk/; revision=9153

 ChangeLog                                          |   4 +
 capplets/about-me/ChangeLog                        |  14 +
 capplets/about-me/Makefile.am                      |  20 +-
 capplets/about-me/fingerprint-strings.h            | 111 ++++
 capplets/about-me/fprintd-marshal.list             |   1 +
 capplets/about-me/gnome-about-me-fingerprint.c     | 579 +++++++++++++++++++++
 capplets/about-me/gnome-about-me-fingerprint.glade | 344 ++++++++++++
 capplets/about-me/gnome-about-me-fingerprint.h     |  27 +
 capplets/about-me/gnome-about-me.c                 |  63 +++
 capplets/about-me/gnome-about-me.glade             |  34 +-
 configure.in                                       |   5 +
 po/ChangeLog                                       |   5 +
 po/POTFILES.in                                     |   3 +
 13 files changed, 1206 insertions(+), 4 deletions(-)

commit 3b04b8642ca88694baf8446f86ff99fc6390fcc7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Nov 27 19:52:54 2008 +0000

    don't try to delete the directory twice; fixes cleaning up after theme
    
    2008-11-27  Jens Granseuer  <jensgr@gmx.net>
    
        * capplet-util.c: (directory_delete_recursive): don't try to delete
        the directory twice; fixes cleaning up after theme installations, for
        example (bug #562371)
    
    svn path=/trunk/; revision=9151

 capplets/common/ChangeLog      | 6 ++++++
 capplets/common/capplet-util.c | 5 ++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 23b2f39aae32fac6546465bb6e69ba46054c94cf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Nov 27 19:50:53 2008 +0000

    really remove the temporary directory when the transfer is cancelled
    
    2008-11-27  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (transfer_cancel_cb): really remove the
        temporary directory when the transfer is cancelled
    
    svn path=/trunk/; revision=9150

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/theme-installer.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 36da326ab0aab4ba5c9af484aba21d5d0116e8d2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 23 10:31:23 2008 +0000

    Patch by: <dmacks@netspace.org>
    
    2008-11-23  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: <dmacks@netspace.org>
    
        * configure.in: remove eel dependency from libslab (bug #561944)
    
    svn path=/trunk/; revision=9149

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f5c26281b73b52aaec8d6a8c059237b0016d65ca
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Nov 20 18:43:38 2008 +0000

    Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
    2008-11-20  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
        capplets/sound/mixer-support.[ch]:
        capplets/appearance/*.[ch]:
        capplets/common/*.[ch]:
        capplets/keybindings/egg*.[ch]:
        capplets/keyboard/gnome-keyboard-properties-a11y.h:
        shell/control-center.c:
        typing-break/*.[ch]:
        only include top-level headers for glib and GTK+ (bug #561562)
    
    svn path=/trunk/; revision=9148

 ChangeLog                                          | 13 +++++++++++++
 capplets/appearance/gedit-message-area.h           |  2 +-
 capplets/appearance/gnome-wp-item.h                |  2 +-
 capplets/common/capplet-stock-icons.c              |  3 +--
 capplets/common/capplet-stock-icons.h              |  4 ++--
 capplets/common/file-transfer-dialog.h             |  2 +-
 capplets/keybindings/eggaccelerators.c             |  2 +-
 capplets/keybindings/eggaccelerators.h             |  2 +-
 capplets/keybindings/eggcellrendererkeys.h         |  2 +-
 capplets/keyboard/gnome-keyboard-properties-a11y.h |  2 +-
 capplets/sound/mixer-support.c                     |  4 ++--
 capplets/sound/mixer-support.h                     |  2 +-
 shell/control-center.c                             |  8 --------
 typing-break/drw-break-window.h                    |  2 +-
 typing-break/drw-monitor.c                         |  2 +-
 typing-break/drw-utils.h                           |  2 +-
 typing-break/drwright.c                            |  1 -
 17 files changed, 29 insertions(+), 26 deletions(-)

commit 07eda34c364537f4cd872f4c7c22e1a4077dd44a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Nov 20 18:26:55 2008 +0000

    Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
    2008-11-20  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
        * drw-selection.c: (drw_selection_reset),
        (drw_selection_find_existing): use g_object_unref instead of the
        deprecated gdk_window_unref (bug #561679)
    
    svn path=/trunk/; revision=9147

 typing-break/ChangeLog       |  8 ++++++++
 typing-break/drw-selection.c | 22 +++++++++++-----------
 2 files changed, 19 insertions(+), 11 deletions(-)

commit 4bf0fec26241684aaa3bf752f06c8df275c807da
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Nov 20 18:16:59 2008 +0000

    Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
    2008-11-20  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
        * gnome-wp-xml.c: (gnome_wp_xml_get_bool): use g_ascii_strcasecmp
        instead of the deprecated g_strcasecmp (bug #560424)
    
    svn path=/trunk/; revision=9146

 capplets/appearance/ChangeLog      | 7 +++++++
 capplets/appearance/gnome-wp-xml.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit cabbecfa4b863348edd601c259df25fdb864a540
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Nov 18 20:04:02 2008 +0000

    fix another leak, an invalid free, and a simplify error handling
    
    2008-11-18  Jens Granseuer  <jensgr@gmx.net>
    
        * font-viewer/font-view.c: (add_face_info), (set_icon):
        * font-viewer/ftstream-vfs.c: (vfs_stream_open): fix another
        leak, an invalid free, and a simplify error handling
    
    svn path=/trunk/; revision=9144

 ChangeLog                  |  6 ++++++
 font-viewer/font-view.c    | 22 ++++++++++------------
 font-viewer/ftstream-vfs.c |  4 ++--
 3 files changed, 18 insertions(+), 14 deletions(-)

commit afbe70bca07cb562b9c14eb05d5853ef16e0d221
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 18 17:59:38 2008 +0000

    don't leak icon_name.
    
    2008-11-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * font-viewer/font-view.c (set_icon): don't leak icon_name.
    
        * font-viewer/ftstream-vfs.c (vfs_stream_open): don't leak
        GFile pointer.
    
    svn path=/trunk/; revision=9143

 ChangeLog                  |  7 +++++++
 font-viewer/font-view.c    | 22 +++++++++++-----------
 font-viewer/ftstream-vfs.c |  7 ++++---
 3 files changed, 22 insertions(+), 14 deletions(-)

commit 8cff6042abbe39b95337430e9001f9181c206176
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Nov 18 17:46:12 2008 +0000

    added missing GFileInfo declaration.
    
    2008-11-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * font-viewer/font-view.c (set_icon): added missing
        GFileInfo declaration.
    
    2008-11-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Bug 561319 – Remove gnome-vfs dependency from font-viewer
    
        Patch from Saleem Abdulrasool <compnerd@compnerd.org>
    
        * font-viewer/*:
        * configure.in: Remove gnome-vfs dependency for font-viewer.
    
    svn path=/trunk/; revision=9142

 ChangeLog                      | 14 ++++++
 configure.in                   |  2 +-
 font-viewer/font-thumbnailer.c | 14 +++---
 font-viewer/font-view.c        | 99 +++++++++++++++++++++++++++---------------
 font-viewer/ftstream-vfs.c     | 76 ++++++++++++++++++--------------
 5 files changed, 129 insertions(+), 76 deletions(-)

commit f4efa053dabb4cbee2c35b325bb6a4b2fdd8237a
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Tue Nov 11 05:14:51 2008 +0000

    Respect lockdown for keybindings
    
    svn path=/trunk/; revision=9141

 capplets/keybindings/ChangeLog                     |  5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 13 ++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

commit bf65e99ba7cce535021aa8db4fc4c46280d28e50
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Nov 9 15:32:44 2008 +0000

    Updated Italian translation from stable branch.
    
    2008-11-09  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation from stable branch.
    
    svn path=/trunk/; revision=9140

 po/ChangeLog |   4 ++
 po/it.po     | 180 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 112 insertions(+), 72 deletions(-)

commit c992255f217402adeac0626fc7d5118e0553691a
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Nov 9 11:47:42 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=9139

 po/ChangeLog |   4 +
 po/es.po     | 683 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 453 insertions(+), 234 deletions(-)

commit 411a22d977312c56b78f79626cd15a32903e8fe7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Nov 9 10:22:04 2008 +0000

    Add libgnomeui back to LIBSLAB FLAGS.
    
    2008-11-09  Kjartan Maraas  <kmaraas@gnome.org>
    
        * configure.in: Add libgnomeui back to LIBSLAB FLAGS.
    
    svn path=/trunk/; revision=9138

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6422a5d50c7307f6fc44d706efa810012242bdb4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Nov 9 10:01:01 2008 +0000

    Add missing argument to capplet_init().
    
    2008-11-09  Kjartan Maraas  <kmaraas@gnome.org>
    
        * appearance-main.c: (init_appearance_data):
        Add missing argument to capplet_init().
    
    svn path=/trunk/; revision=9137

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/appearance-main.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f67e103d1991f58e95e412ccd9630389ee2caafd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 8 11:37:05 2008 +0000

    don't initialize gettext and gtk twice
    
    2008-11-08  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (init_appearance_data), (main): don't
        initialize gettext and gtk twice
    
    svn path=/trunk/; revision=9136

 capplets/appearance/ChangeLog         |  5 +++++
 capplets/appearance/appearance-main.c | 30 +++++++++++++-----------------
 2 files changed, 18 insertions(+), 17 deletions(-)

commit d7d5f8d5b950f8f1d4efda19a32cbb733f34cf70
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 8 10:20:52 2008 +0000

    Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
    2008-11-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Maxim Ermilov <zaspire@rambler.ru>
    
        * gnome-network-preferences.c: (cb_dialog_response),
        (copy_location_create_key), (copy_location),
        (get_current_location), (location_combo_separator),
        (cb_current_location), (update_locations),
        (cb_location_new_text_changed), (location_new),
        (cb_location_changed), (cb_delete_button_clicked), (setup_dialog):
        * gnome-network-preferences.glade: add support for network profiles
        (bug #477040)
    
    svn path=/trunk/; revision=9135

 capplets/network/ChangeLog                       |  13 +
 capplets/network/gnome-network-preferences.c     | 657 ++++++++++++++++++++++-
 capplets/network/gnome-network-preferences.glade | 161 +++++-
 3 files changed, 829 insertions(+), 2 deletions(-)

commit d35680790c982e6976a3a9c89a659365bb564ec7
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Nov 5 14:54:05 2008 +0000

    post-release bump to 2.25.2.
    
    2008-11-05  Vincent Untz  <vuntz@gnome.org>
    
        * configure.in: post-release bump to 2.25.2.
    
    svn path=/trunk/; revision=9134

 ChangeLog                                      | 6 ++++++
 capplets/about-me/ChangeLog                    | 2 ++
 capplets/accessibility/at-properties/ChangeLog | 2 ++
 capplets/appearance/ChangeLog                  | 2 ++
 capplets/common/ChangeLog                      | 2 ++
 capplets/default-applications/ChangeLog        | 2 ++
 capplets/display/ChangeLog                     | 2 ++
 capplets/keybindings/ChangeLog                 | 2 ++
 capplets/keyboard/ChangeLog                    | 2 ++
 capplets/localization/ChangeLog                | 2 ++
 capplets/mouse/ChangeLog                       | 2 ++
 capplets/network/ChangeLog                     | 2 ++
 capplets/sound/ChangeLog                       | 2 ++
 capplets/windows/ChangeLog                     | 2 ++
 configure.in                                   | 2 +-
 help/ChangeLog                                 | 2 ++
 libwindow-settings/ChangeLog                   | 2 ++
 po/ChangeLog                                   | 2 ++
 shell/ChangeLog                                | 2 ++
 typing-break/ChangeLog                         | 2 ++
 20 files changed, 43 insertions(+), 1 deletion(-)

commit c7422731808beb8918e4205118e0c79dbe5452ab
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Nov 5 14:53:37 2008 +0000

    version 2.25.1
    
    2008-11-05  Vincent Untz  <vuntz@gnome.org>
    
        * NEWS:
        * configure.in: version 2.25.1
    
    svn path=/trunk/; revision=9132

 ChangeLog    |  5 +++++
 NEWS         | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 76 insertions(+), 1 deletion(-)

commit a6ffc1057ee26dde6caa0aaf8a1c7b6f7b19e0b6
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Nov 5 14:48:25 2008 +0000

    updated
    
    2008-11-05  Vincent Untz  <vuntz@gnome.org>
    
        * POTFILES.skip: updated
    
    svn path=/trunk/; revision=9131

 po/ChangeLog     |  4 ++++
 po/POTFILES.skip | 11 +----------
 2 files changed, 5 insertions(+), 10 deletions(-)

commit dab2c7e2126bb531123ffe209d924b50b4f39a73
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Thu Oct 30 11:58:01 2008 +0000

    Update Ukrainian translation.
    
    2008-10-30 Maxim Dziumanenko <dziumanenko@gmail.com>
    
            * Update Ukrainian translation.
    
    
    svn path=/trunk/; revision=9130

 po/ChangeLog |   4 +
 po/uk.po     | 826 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 492 insertions(+), 338 deletions(-)

commit d178f241d9d60a8428e7f5e5d341a1f743e20ca7
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Oct 27 22:44:57 2008 +0000

    show/hide 'default' column, b.g.o#555261
    
    svn path=/trunk/; revision=9128

 capplets/keyboard/ChangeLog                        |   6 +
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  52 ++--
 capplets/keyboard/gnome-keyboard-properties.glade  | 280 +++++++++++----------
 3 files changed, 182 insertions(+), 156 deletions(-)

commit fab37a0965b5c2a421c9419202394325692e8853
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Sun Oct 26 23:15:42 2008 +0000

    Stop linking to the gnome libraries, except in the shell and in the font
    
    Sun Oct 26 19:15:22 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * configure.in: Stop linking to the gnome libraries, except in the
        shell and in the font viewer.
    
    
    svn path=/trunk/; revision=9127

 ChangeLog               | 5 +++++
 configure.in            | 6 +++---
 font-viewer/Makefile.am | 6 +++---
 shell/Makefile.am       | 4 ++--
 4 files changed, 13 insertions(+), 8 deletions(-)

commit 2f4279fc08781cd99425a32d6473f1d6144dbfdc
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Sun Oct 26 22:06:47 2008 +0000

    +Sun Oct 26 18:06:45 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-keybinding-properties.c (cb_dialog_response): Make it
    +   compile again.
    +
    
    
    svn path=/trunk/; revision=9126

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9630d9f5820feda0d33750fd6efd7d3775d02398
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 26 20:44:27 2008 +0000

    bump gnome-desktop requirement to 2.25.1
    
    2008-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: bump gnome-desktop requirement to 2.25.1
    
    svn path=/trunk/; revision=9125

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5a4fc137bd2b649afb2bf097969d7d08c2ad613d
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Oct 26 18:41:34 2008 +0000

    >-------Bug 114796 – binding to arbitrary shell commands
    
    2008-10-26  Matthias Clasen  <mclasen@redhat.com>
    
    >-------Bug 114796 – binding to arbitrary shell commands
    
    >-------* gnome-keybinding-properties.c:
    >-------* gnome-keybinding-properties.glade: Add UI for adding and
    >-------removing named custom shortcuts.
    
    
    svn path=/trunk/; revision=9124

 capplets/keybindings/ChangeLog                     |   8 +
 capplets/keybindings/gnome-keybinding-properties.c | 477 ++++++++++++++++++---
 .../keybindings/gnome-keybinding-properties.glade  | 237 +++++++++-
 3 files changed, 665 insertions(+), 57 deletions(-)

commit cf10136f995037816f6a885b6e4e850650ff2a90
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Sun Oct 26 16:36:12 2008 +0000

    Merged from branch gnome-2-24 fixes in Brazilian Portuguese translation.
    
    2008-10-26  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Merged from branch gnome-2-24 fixes in Brazilian Portuguese
        translation.
    
    svn path=/trunk/; revision=9123

 po/ChangeLog |  5 +++++
 po/pt_BR.po  | 13 +++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit 76bf98c6181b92fa5b4330b118f46295dbaa8ff0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 26 13:47:11 2008 +0000

    declare variable at beginning of code block, fixes build with gcc 2.x
    
    2008-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkbot.c: (xkb_options_popup_dialog):
        declare variable at beginning of code block, fixes build with gcc 2.x
    
    svn path=/trunk/; revision=9121

 capplets/keyboard/ChangeLog                         | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 6 ++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 54ed1aef6a8b767d02fe5b5e6f9606d5a5d6655f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 26 13:45:17 2008 +0000

    scroll the options window when the keyboard focus moves out of the visible
    
    2008-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkbot.c: (option_focused_cb),
        (xkb_options_add_option), (xkb_options_add_group):
        * gnome-keyboard-properties.glade: scroll the options window when the
        keyboard focus moves out of the visible part (bug #557944)
    
    svn path=/trunk/; revision=9120

 capplets/keyboard/ChangeLog                        |  7 ++++++
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 28 +++++++++++++++++++++-
 capplets/keyboard/gnome-keyboard-properties.glade  |  2 +-
 3 files changed, 35 insertions(+), 2 deletions(-)

commit be828108f8f7d1bdcae64e34431c0b3c716f516e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 26 12:22:51 2008 +0000

    fix error handling even more - don't free the error twice
    
    2008-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        * capplet-util.c: (capplet_help): fix error handling even more - don't
        free the error twice
    
    svn path=/trunk/; revision=9119

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit ce8999af5512c18365d4ff6149a07558957909de
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 26 10:26:11 2008 +0000

    fix error handling
    
    2008-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        * capplet-util.c: (capplet_help): fix error handling
    
    svn path=/trunk/; revision=9118

 capplets/common/ChangeLog      |  4 ++++
 capplets/common/capplet-util.c | 23 +++++++++++------------
 2 files changed, 15 insertions(+), 12 deletions(-)

commit 1b2850962d2c3b2c02ebcde7aa2276616bc9008a
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Sun Oct 26 03:12:07 2008 +0000

    +Sat Oct 25 23:11:58 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * appearance.h: Don't define GNOME_DESKTOP_USE_UNSTABLE_API
    +
    +   * appearance-main.c: Don't include gnome-desktop-thumbnail.h
    +
    
    
    svn path=/trunk/; revision=9117

 capplets/appearance/ChangeLog         | 6 ++++++
 capplets/appearance/appearance-main.c | 3 +--
 capplets/appearance/appearance.h      | 1 -
 3 files changed, 7 insertions(+), 3 deletions(-)

commit f9765e8db6083af0dd273bf7f05c3abc352f2d78
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Sun Oct 26 03:05:51 2008 +0000

    +Sat Oct 25 23:05:22 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * main.c: Use dbus methods to log out instead of GnomeClient.
    +
    
    
    svn path=/trunk/; revision=9116

 capplets/accessibility/at-properties/ChangeLog |  4 ++
 capplets/accessibility/at-properties/main.c    | 80 ++++++++++++++++++++++++--
 2 files changed, 78 insertions(+), 6 deletions(-)

commit d99e8a9d764cdf8294eb697151f92213bdb0c2e4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 25 13:56:21 2008 +0000

    bump required GTK+ version to 2.13.1
    
    2008-10-25  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: bump required GTK+ version to 2.13.1
    
    svn path=/trunk/; revision=9115

 ChangeLog    | 4 ++++
 configure.in | 9 +--------
 2 files changed, 5 insertions(+), 8 deletions(-)

commit 3db580dbaa3ca484d4e6e107274b61fa90806391
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 23:39:03 2008 +0000

    +Fri Oct 24 19:38:31 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * main.c (create_dialog): Remove gnome.h
    +
    +Fri Oct 24 19:38:52 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-keyboard-properties.c: Don't include gnome.h
    +
    
    
    svn path=/trunk/; revision=9114

 capplets/keyboard/ChangeLog                   | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.c | 1 -
 capplets/localization/ChangeLog               | 4 ++++
 capplets/localization/main.c                  | 1 -
 4 files changed, 8 insertions(+), 2 deletions(-)

commit 9961c9d4ad50262ef0746a9e564b1ab4356a6ccf
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 23:36:14 2008 +0000

    Unlink the .face file instead of calling gnome_config functions.
    
    Fri Oct 24 19:33:12 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * gnome-about-me.c (about_me_update_photo): Unlink the .face file
        instead of calling gnome_config functions.
    
    
    svn path=/trunk/; revision=9113

 capplets/about-me/ChangeLog                 |  5 +++++
 capplets/about-me/gnome-about-me-password.c |  2 +-
 capplets/about-me/gnome-about-me.c          | 10 +++++-----
 3 files changed, 11 insertions(+), 6 deletions(-)

commit 3a227fbc66c88ca46117998ad0532f04132ce9fd
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 23:22:41 2008 +0000

    +Fri Oct 24 19:16:46 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-about-me.c (main): Remove unused GnomeProgram variable
    +
    +Fri Oct 24 19:19:46 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * sound-properties-capplet.c (setup_dialog): Delete code for
    +   legacy config options
    +
    +Fri Oct 24 19:18:37 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * capplet-util.c: Include <stdlib.h>
    +   * capplet-util.h: Delete COPY_FROM_LEGACY macro
    +
    +Fri Oct 24 19:16:10 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-keyboard-properties.c (main): Remove copying of legacy settings
    +
    
    
    svn path=/trunk/; revision=9112

 capplets/about-me/ChangeLog                   |  4 ++
 capplets/about-me/gnome-about-me.c            |  1 -
 capplets/accessibility/at-properties/main.c   |  1 +
 capplets/appearance/theme-util.c              |  1 +
 capplets/common/ChangeLog                     |  5 ++
 capplets/common/capplet-util.c                |  1 +
 capplets/common/capplet-util.h                | 11 +---
 capplets/keyboard/ChangeLog                   |  4 ++
 capplets/keyboard/gnome-keyboard-properties.c | 83 +++++++--------------------
 capplets/sound/ChangeLog                      |  7 ++-
 capplets/sound/sound-properties-capplet.c     | 59 ++++++-------------
 11 files changed, 60 insertions(+), 117 deletions(-)

commit d552cfc0f3d64da452a49b976b6bfb96b5e3a805
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 23:05:28 2008 +0000

    +Fri Oct 24 19:04:38 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gconf-property-editor.c: Delete unused function
    +   gconf_property_editor_new_filename()
    +
    
    
    svn path=/trunk/; revision=9111

 capplets/common/ChangeLog               |  5 +++++
 capplets/common/gconf-property-editor.c | 27 +--------------------------
 capplets/common/gconf-property-editor.h |  8 ++------
 3 files changed, 8 insertions(+), 32 deletions(-)

commit 2d77d32397b5ca3961ef948017d2f2da91a36f55
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 22:59:54 2008 +0000

    Get rid of gnome include
    
    Fri Oct 24 18:59:34 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * sound-properties-capplet.c: Get rid of gnome include
    
    
    svn path=/trunk/; revision=9110

 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6a34b073f1fe0224eed18cf53219ace75c8366ab
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 22:50:58 2008 +0000

    +Fri Oct 24 18:31:25 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * main.c (main): Use capplet_init() instead of gnome_program_init()
    +
    +Fri Oct 24 18:46:11 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * appearance-main.c: Get rid of gnome includes
    +
    +Fri Oct 24 18:32:16 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * appearance-main.c (main): Use capplet_init()
    +
    
    
    svn path=/trunk/; revision=9109

 capplets/about-me/gnome-about-me.c             | 11 +----------
 capplets/accessibility/at-properties/ChangeLog |  4 ++++
 capplets/accessibility/at-properties/main.c    | 12 +-----------
 capplets/appearance/ChangeLog                  |  8 ++++++++
 capplets/appearance/appearance-main.c          | 16 +---------------
 capplets/keyboard/gnome-keyboard-properties.c  | 11 ++---------
 capplets/localization/main.c                   | 11 +----------
 7 files changed, 18 insertions(+), 55 deletions(-)

commit 7e6bfa50f7ba979d27e5e51ef647674fda7b9482
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Oct 24 22:43:25 2008 +0000

    small fix - remember sorted list of expanders
    
    svn path=/trunk/; revision=9108

 capplets/keyboard/ChangeLog                         | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 2 ++
 2 files changed, 7 insertions(+)

commit 34590d63b1cf826e55f03a927cb7d4341446b352
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 22:39:00 2008 +0000

    Only call set_translation_domain() if the context is non-NULL
    
    Fri Oct 24 18:38:47 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * capplet-util.c (capplet_init): Only call
        set_translation_domain() if the context is non-NULL
    
    
    svn path=/trunk/; revision=9107

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 5 ++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 06a74d0ef18ff3785ffcfdbf5a892731ce5d76b2
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 22:29:43 2008 +0000

    Use capplet_init()
    
    Fri Oct 24 18:28:54 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * sound-properties-capplet.c (main): Use capplet_init()
    
    Fri Oct 24 18:29:14 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * capplet-util.c: Call g_option_context_set_translation_domain on
        the context.
    
    
    svn path=/trunk/; revision=9106

 capplets/common/ChangeLog                 |  5 +++++
 capplets/common/capplet-util.c            |  4 ++++
 capplets/mouse/gnome-mouse-properties.c   | 14 ++++----------
 capplets/sound/ChangeLog                  |  4 ++++
 capplets/sound/sound-properties-capplet.c | 14 +-------------
 5 files changed, 18 insertions(+), 23 deletions(-)

commit 2f8de6c511c78d3db9cf8b7986181fe6a7da7801
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 22:22:58 2008 +0000

    ==> common/ChangeLog <==
    Fri Oct 24 18:22:06 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * capplet-util.[ch]: Add new capplet_init() function
    
    ==> default-applications/ChangeLog <==
    Fri Oct 24 18:22:22 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * gnome-da-capplet.c (main): Use new capplet_init() function
    
    
    
    svn path=/trunk/; revision=9105

 capplets/common/ChangeLog                        |  4 ++++
 capplets/common/capplet-util.c                   | 24 ++++++++++++++++++++++++
 capplets/common/capplet-util.h                   |  1 +
 capplets/default-applications/ChangeLog          |  4 ++++
 capplets/default-applications/gnome-da-capplet.c | 15 ++++-----------
 5 files changed, 37 insertions(+), 11 deletions(-)

commit 0855f4bf5ef35d615c4508b0fa8ff75a3d63bfff
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 21:55:11 2008 +0000

    Print a newline after the error message
    
    Fri Oct 24 17:55:00 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * gnome-mouse-properties.c (main): Print a newline after the error message
    
    
    
    svn path=/trunk/; revision=9104

 capplets/mouse/ChangeLog                | 4 ++++
 capplets/mouse/gnome-mouse-properties.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 621d9dcc4458e2e916612c75e9e4a17285dc8c1b
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 21:54:30 2008 +0000

    +Fri Oct 24 17:54:17 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-da-capplet.c (main): Fix to use gtk_init_with_args() correctly.
    +
    
    
    svn path=/trunk/; revision=9103

 capplets/default-applications/ChangeLog          |  4 ++++
 capplets/default-applications/gnome-da-capplet.c | 11 ++++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 1c2c68aa78f47c6eeea30a252abc77ec7c6c9bb2
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 21:50:29 2008 +0000

    +Fri Oct 24 17:50:21 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-mouse-properties.c (main): Use gtk_init_with_args()
    +   instead of gnome_program_init()
    +
    
    
    svn path=/trunk/; revision=9102

 capplets/mouse/ChangeLog                |  5 +++++
 capplets/mouse/gnome-mouse-properties.c | 22 ++++++++--------------
 2 files changed, 13 insertions(+), 14 deletions(-)

commit 22c99b375b9c8dd5674f9d8238cd7c7b60176571
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Oct 24 21:48:21 2008 +0000

    missing ChangeLog entry
    
    svn path=/trunk/; revision=9101

 capplets/keyboard/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 854ed3cc0621a7a547ad48b78cf733f88d7a0646
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 21:35:00 2008 +0000

    +Fri Oct 24 17:31:40 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-da-capplet.c (main): Replace use of gnome_program_init()
    +   with gtk_init_with_args()
    +
    
    
    svn path=/trunk/; revision=9100

 capplets/default-applications/ChangeLog          | 5 +++++
 capplets/default-applications/gnome-da-capplet.c | 9 ++-------
 2 files changed, 7 insertions(+), 7 deletions(-)

commit 18c19b9be3302ffe805804ba6becb058ac2e42bd
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 21:27:14 2008 +0000

    +Fri Oct 24 17:21:56 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * capplet-stock-icons.c (capplet_register_stock_icons): Get rid of
    +   gnome_program_locate_file()
    +
    
    
    svn path=/trunk/; revision=9099

 capplets/common/ChangeLog             | 5 +++++
 capplets/common/Makefile.am           | 1 +
 capplets/common/capplet-stock-icons.c | 6 +++---
 3 files changed, 9 insertions(+), 3 deletions(-)

commit 5978fd729cc81b89fad06ddd195bef7e6dc1342f
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 21:19:15 2008 +0000

    +Fri Oct 24 17:17:47 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * Get rid of a number of unnecessary gnome.h includes
    +
    +   * capplets/keybindings/gnome-keybinding-properties.c: Use
    +   gtk_init() instead of gnome_program_init().
    +
    +   * A couple of formatting fixes
    +
    
    
    svn path=/trunk/; revision=9098

 ChangeLog                                              | 9 +++++++++
 capplets/appearance/appearance-desktop.c               | 5 ++---
 capplets/appearance/appearance-font.c                  | 1 +
 capplets/appearance/appearance-style.c                 | 1 +
 capplets/appearance/appearance-themes.c                | 4 ++--
 capplets/appearance/appearance.h                       | 1 +
 capplets/appearance/gnome-wp-info.c                    | 5 ++---
 capplets/appearance/gnome-wp-info.h                    | 1 +
 capplets/appearance/gnome-wp-item.c                    | 1 -
 capplets/appearance/gnome-wp-item.h                    | 2 +-
 capplets/appearance/theme-installer.c                  | 1 +
 capplets/appearance/theme-save.c                       | 2 ++
 capplets/common/theme-thumbnail.c                      | 1 -
 capplets/keybindings/gnome-keybinding-properties.c     | 9 +++------
 capplets/keyboard/gnome-keyboard-properties-xkb.c      | 3 ++-
 capplets/keyboard/gnome-keyboard-properties-xkblt.c    | 2 +-
 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c | 1 -
 capplets/keyboard/gnome-keyboard-properties-xkbmc.c    | 2 +-
 capplets/keyboard/gnome-keyboard-properties-xkbot.c    | 3 ++-
 capplets/keyboard/gnome-keyboard-properties-xkbpv.c    | 1 -
 capplets/mouse/gnome-mouse-accessibility.c             | 1 +
 capplets/sound/pipeline-tests.c                        | 2 +-
 22 files changed, 34 insertions(+), 24 deletions(-)

commit 8f5ad19d6d2b63c8b212fd77b9391954e54ae4f5
Author: S%G�%@ren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 20:59:58 2008 +0000

    Use gtk_init() instead of gnome_program_init().
    
    Fri Oct 24 16:58:35 2008  S%G�%@ren Sandmann  <sandmann@redhat.com>
    
        * gnome-network-preferences.c: Use gtk_init() instead of
        gnome_program_init().
    
    
    svn path=/trunk/; revision=9097

 capplets/network/ChangeLog                   | 5 +++++
 capplets/network/gnome-network-preferences.c | 8 ++------
 2 files changed, 7 insertions(+), 6 deletions(-)

commit f172baa55a856b2a3acfa63d45b63250fd2ca8fa
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Fri Oct 24 20:57:16 2008 +0000

    +Fri Oct 24 16:56:50 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-window-properties.c: Use gtk_init() instead of
    +   gnome_program_init().
    +
    +Fri Oct 24 16:56:23 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-wm-manager.c (gnome_wm_manager_init): Use correct path for
    +   window manager properties
    +
    
    
    svn path=/trunk/; revision=9096

 capplets/windows/ChangeLog                 | 5 +++++
 capplets/windows/gnome-window-properties.c | 9 ++++-----
 libwindow-settings/ChangeLog               | 5 +++++
 libwindow-settings/gnome-wm-manager.c      | 2 +-
 4 files changed, 15 insertions(+), 6 deletions(-)

commit 043246ef7dad8201187796c91fb1e9705530d153
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 20:08:55 2008 +0000

    Use glib path builders instead of the ones in libgnome.
    
    Fri Oct 24 16:08:17 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * gnome-wm-manager.c (gnome_wm_manager_init): Use glib path
        builders instead of the ones in libgnome.
    
    
    svn path=/trunk/; revision=9095

 libwindow-settings/ChangeLog          |  5 +++++
 libwindow-settings/Makefile.am        |  3 ++-
 libwindow-settings/gnome-wm-manager.c | 10 ++++------
 3 files changed, 11 insertions(+), 7 deletions(-)

commit 1616422ded58c86883d04b879ca644aa9a16c341
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 19:42:26 2008 +0000

    Use gtk_show_uri() instead of gnome_help_display_desktop()
    
    Fri Oct 24 15:42:11 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * Use gtk_show_uri() instead of gnome_help_display_desktop()
    
    
    svn path=/trunk/; revision=9094

 ChangeLog                                          |  4 ++++
 capplets/accessibility/at-properties/main.c        |  1 -
 capplets/appearance/appearance-font.c              |  1 -
 capplets/appearance/appearance-main.c              | 15 ++++--------
 capplets/appearance/appearance-style.c             |  2 +-
 capplets/common/capplet-util.c                     | 27 ++++++++++++++++------
 capplets/common/capplet-util.h                     |  2 +-
 capplets/default-applications/gnome-da-capplet.c   |  2 +-
 capplets/keybindings/gnome-keybinding-properties.c |  1 -
 capplets/keyboard/gnome-keyboard-properties.c      |  3 +--
 capplets/mouse/gnome-mouse-properties.c            |  1 -
 capplets/network/gnome-network-preferences.c       |  2 --
 capplets/sound/sound-properties-capplet.c          |  1 -
 capplets/windows/gnome-window-properties.c         |  1 -
 14 files changed, 33 insertions(+), 30 deletions(-)

commit bba36b9e3787e2d59e4023903b8ccdbbc61970b1
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Fri Oct 24 18:44:52 2008 +0000

    Use GnomeDesktopThumbnailFactory instead of GnomeThumbnailFactory
    
    Fri Oct 24 14:44:16 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * Use GnomeDesktopThumbnailFactory instead of
        GnomeThumbnailFactory
    
    
    svn path=/trunk/; revision=9093

 ChangeLog                                | 5 +++++
 capplets/about-me/gnome-about-me.c       | 8 ++++----
 capplets/appearance/appearance-desktop.c | 4 ++--
 capplets/appearance/appearance-main.c    | 4 ++--
 capplets/appearance/appearance-themes.c  | 6 +++---
 capplets/appearance/appearance.h         | 4 ++--
 capplets/appearance/gnome-wp-info.c      | 4 ++--
 capplets/appearance/gnome-wp-info.h      | 4 ++--
 capplets/appearance/gnome-wp-item.c      | 4 ++--
 capplets/appearance/gnome-wp-item.h      | 6 +++---
 configure.in                             | 2 ++
 11 files changed, 29 insertions(+), 22 deletions(-)

commit 6de2389398e743e686350b7efefce46e50e72f6a
Author: Mario Blättermann <mariobl@src.gnome.org>
Date:   Fri Oct 24 13:23:40 2008 +0000

    Added German translation
    
    svn path=/trunk/; revision=9092

 help/ChangeLog   |   5 ++
 help/Makefile.am |   2 +-
 help/de/de.po    | 144 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 150 insertions(+), 1 deletion(-)

commit 9deea2b3a2bae3fac826f1afd45e7792e698b27a
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Fri Oct 24 10:08:46 2008 +0000

    Translation updated by Priit Laes
    
    2008-10-24  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Priit Laes
    
    svn path=/trunk/; revision=9090

 po/ChangeLog |  4 ++++
 po/et.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit d560268155b54a3dbfd116e048368093081b9062
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Fri Oct 24 10:01:02 2008 +0000

    Translation updated by Priit Laes
    
    2008-10-24  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Priit Laes
    
    svn path=/trunk/; revision=9088

 po/ChangeLog |   4 +
 po/et.po     | 392 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 274 insertions(+), 122 deletions(-)

commit 5a410f2706879dd308a0d431e16a69c8eb7f9898
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Thu Oct 23 14:01:32 2008 +0000

    Added Asturian translation on behalf of Mikel González
    
    svn path=/trunk/; revision=9086

 po/ChangeLog |    5 +
 po/LINGUAS   |    1 +
 po/ast.po    | 3626 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 3632 insertions(+)

commit 9bc8cee0bdb34ab685a68e55d93770db9a3d8d41
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Oct 21 19:25:25 2008 +0000

    Added Valencian (Southern Catalan) translation based on the Catalan file.
    
    svn path=/trunk/; revision=9084

 help/ChangeLog                  |    7 +
 help/Makefile.am                |    2 +-
 help/ca@valencia/ca@valencia.po |   93 +
 po/ChangeLog                    |    6 +
 po/LINGUAS                      |    1 +
 po/ca@valencia.po               | 5084 +++++++++++++++++++++++++++++++++++++++
 6 files changed, 5192 insertions(+), 1 deletion(-)

commit 95d0d2b6ef9248469b343e6942353c3d3adfa3a0
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Oct 20 00:34:57 2008 +0000

    Bug 556977 – avoid duplicate custom keybindings
    
    2008-10-19  Matthias Clasen  <mclasen@redhat.com>
    
            Bug 556977 – avoid duplicate custom keybindings
    
            * capplets/keybindings/gnome-keybinding-properties.c: Filter
            out custom keybindings that are also listed in xml files.
    
    
    svn path=/trunk/; revision=9083

 ChangeLog                                          |  7 +++
 capplets/keybindings/gnome-keybinding-properties.c | 52 +++++++++++++++++++++-
 2 files changed, 58 insertions(+), 1 deletion(-)

commit c2d6ffeeba036184c320a117d363c0bd74a12211
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Oct 19 22:36:40 2008 +0000

    Bug 556967 – fix editability of group headings
    
    2008-10-19  Matthias Clasen  <mclasen@redhat.com>
    
            Bug 556967 – fix editability of group headings
    
            * capplets/keybindings/gnome-keybinding-properties.c
            (description_set_func): Don't let section headings be editable.
    
    
    svn path=/trunk/; revision=9081

 ChangeLog                                          | 7 +++++++
 capplets/keybindings/gnome-keybinding-properties.c | 3 +++
 2 files changed, 10 insertions(+)

commit 457bec685eb39308505576d4171535e1ad12ef97
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 19 13:24:50 2008 +0000

    actually connect the stickykeys_two_key_off button (bug #556818)
    
    2008-10-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-a11y.c: (setup_a11y_tabs): actually connect
        the stickykeys_two_key_off button (bug #556818)
    
    svn path=/trunk/; revision=9079

 capplets/keyboard/ChangeLog                        | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-a11y.c | 5 +++++
 2 files changed, 10 insertions(+)

commit d15e7cb23dba42ee124c1d018af0a6c21d20d624
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Oct 18 23:45:22 2008 +0000

    update group highlighting dynamically
    
    svn path=/trunk/; revision=9077

 capplets/keyboard/ChangeLog                        |  5 ++
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 64 +++++++++++++++++++---
 2 files changed, 61 insertions(+), 8 deletions(-)

commit 4b4db8eac76d90d39bd36df57efb42b82fa2ec7e
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Oct 18 14:19:45 2008 +0000

    Updated Thai translation (merged from gnome-2-24 branch).
    
    2008-10-18  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation (merged from gnome-2-24 branch).
    
    
    svn path=/trunk/; revision=9076

 po/ChangeLog |   4 +
 po/th.po     | 466 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 257 insertions(+), 213 deletions(-)

commit 135ba71f85cbda751ada0e8f8a147ca18fa7da31
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Oct 18 00:14:52 2008 +0000

    Fixed group sorting, sort without formatting
    
    svn path=/trunk/; revision=9074

 capplets/keyboard/ChangeLog                         | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 3dd0effe07f4f61b5cdb7eef16c2d888c09dec0d
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Thu Oct 16 22:44:15 2008 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=9073

 po/ChangeLog |   4 +
 po/da.po     | 282 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 160 insertions(+), 126 deletions(-)

commit f58b4d6e3be67fbf2612dca5bb7ea21ed90f0818
Author: Marcel Telka <marcel@telka.sk>
Date:   Thu Oct 16 22:40:17 2008 +0000

    Updated Slovak translation by Pavol Šimo.
    
    2008-10-16  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation by Pavol Šimo.
    
    svn path=/trunk/; revision=9071

 po/ChangeLog |    4 +
 po/sk.po     | 1808 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1019 insertions(+), 793 deletions(-)

commit c1b5235250a2980c7e92e33675544f7d1206f3b1
Author: Davyd Madeley <davyd@madeley.id.au>
Date:   Thu Oct 16 14:12:26 2008 +0000

    readd to POTFILES.in
    
    2008-10-16  Davyd Madeley  <davyd@madeley.id.au>
    
            * po/POTFILES.in: readd to POTFILES.in
    
    svn path=/trunk/; revision=9069

 ChangeLog      | 4 ++++
 po/POTFILES.in | 4 ++++
 2 files changed, 8 insertions(+)

commit d7696237c8cdc8467f0751ecdce36e60c13c9075
Author: Davyd Madeley <davyd@madeley.id.au>
Date:   Thu Oct 16 13:52:09 2008 +0000

    - hook gnome-font-viewer and gnome-thumbnail font back into the build -
    
    2008-10-16  Davyd Madeley  <davyd@madeley.id.au>
    
            * configure.in:
            * font-viewer/Makefile.am:
            * Makefile.am:
            - hook gnome-font-viewer and gnome-thumbnail font back into the build
            - need to check to see if the strings were lost from the translations
    
    svn path=/trunk/; revision=9068

 ChangeLog               | 8 ++++++++
 Makefile.am             | 2 +-
 configure.in            | 2 ++
 font-viewer/Makefile.am | 7 +++----
 4 files changed, 14 insertions(+), 5 deletions(-)

commit a6e07cf5f6f7a93a483361aab95c720b4950f1bf
Author: Davyd Madeley <davyd@madeley.id.au>
Date:   Wed Oct 15 14:46:43 2008 +0000

    remove properly resurrect gnome-font-viewer and gnome-thumbnail-font from
    
    2008-10-15  Davyd Madeley  <davyd@madeley.id.au>
    
            * vfs-methods/: remove properly
            * font-viewer/: resurrect gnome-font-viewer and gnome-thumbnail-font
              from revision 8786 (not yet added to toplevel Makefile)
    
    svn path=/trunk/; revision=9066

 ChangeLog                                   |   6 +
 font-viewer/Makefile.am                     |  47 +++
 font-viewer/font-thumbnailer.c              | 390 ++++++++++++++++++++++
 font-viewer/font-view.c                     | 483 ++++++++++++++++++++++++++++
 font-viewer/fontilus.schemas.in             | 109 +++++++
 font-viewer/ftstream-vfs.c                  | 143 ++++++++
 font-viewer/gnome-font-viewer.desktop.in.in |  14 +
 vfs-methods/Makefile.am                     |   1 -
 8 files changed, 1192 insertions(+), 1 deletion(-)

commit 61d2cbfcba42c485282cb5b7eba4d3e108208748
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Mon Oct 13 21:18:06 2008 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=9065

 po/ChangeLog |   4 ++
 po/da.po     | 230 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 122 insertions(+), 112 deletions(-)

commit d443415830672078cce6d59080142daac7484dd6
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun Oct 12 17:38:47 2008 +0000

    Updated Czech translation.
    
    2008-10-12  Petr Kovar  <pknbe@volny.cz>
    
        * cs.po: Updated Czech translation.
    
    svn path=/trunk/; revision=9062

 po/ChangeLog |   4 +
 po/cs.po     | 293 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 164 insertions(+), 133 deletions(-)

commit 17479dd4d8eb29a7be6d704baa023a6b195a0891
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Sat Oct 11 17:14:52 2008 +0000

    Merged from branch gnome-2-24.
    
    2008-10-11  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Merged from branch gnome-2-24.
    
    svn path=/trunk/; revision=9060

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 124 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 67 insertions(+), 61 deletions(-)

commit 1d11ba802c0da086e66f6e176d3ec6bbeb9fec9e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 11 13:37:41 2008 +0000

    Add CAPPLET_CFLAGS to INCLUDES to make it build.
    
    2008-10-11  Kjartan Maraas  <kmaraas@gnome.org>
    
        * Makefile.am: Add CAPPLET_CFLAGS to INCLUDES to make
        it build.
    
    svn path=/trunk/; revision=9059

 capplets/common/ChangeLog   | 5 +++++
 capplets/common/Makefile.am | 1 +
 2 files changed, 6 insertions(+)

commit 6a3b82a1f6afa2ed7af3b3cf2be9af5015d80b49
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat Oct 11 13:34:47 2008 +0000

    post-release bump to 2.24.1.
    
    2008-09-24  Vincent Untz  <vuntz@gnome.org>
    
        * configure.in: post-release bump to 2.24.1.
    
    ==================== 2.24.0.1 ====================
    
    2008-09-24  Vincent Untz  <vuntz@gnome.org>
    
    svn path=/trunk/; revision=9058

 capplets/appearance/ChangeLog         | 8 ++++++++
 capplets/appearance/appearance-font.c | 3 ++-
 capplets/appearance/theme-installer.c | 8 +++++---
 capplets/appearance/theme-util.c      | 2 +-
 4 files changed, 16 insertions(+), 5 deletions(-)

commit b67f53a8ff2f88ae592edd1308fea4ac280da74b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 11 13:34:08 2008 +0000

    Fix GCC warnings from -Wformat-security.
    
    2008-10-11  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gconf-property-editor.c: (peditor_image_set_filename):
        Fix GCC warnings from -Wformat-security.
    
    svn path=/trunk/; revision=9057

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 1 +
 2 files changed, 6 insertions(+)

commit 001451250717c65ca775825d0ece455403c12d61
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 10 09:17:52 2008 +0000

    Simple patch to make the filechooser default to a sensible directory
    
    2008-10-10  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * sound-theme.c (get_sound_filename): Simple patch to make
        the filechooser default to a sensible directory
    
    
    svn path=/trunk/; revision=9056

 capplets/sound/ChangeLog     | 6 ++++++
 capplets/sound/Makefile.am   | 1 +
 capplets/sound/sound-theme.c | 2 ++
 3 files changed, 9 insertions(+)

commit be3affe13279a2de3519cc30476be9babe471fd8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Oct 10 08:41:22 2008 +0000

    Fix build failure caused by last commit
    
    2008-10-10  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-default-applications.xml.in: Fix build failure caused by last
        commit
    
    
    svn path=/trunk/; revision=9055

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit a2c5329cef2b0879360e748bee2d271f69fa8be4
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Oct 9 10:02:04 2008 +0000

    add Listen to the list of media players. Patch by Julien Lavergne
    
    2008-10-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-default-applications.xml.in: add Listen to the list of media
        players. Patch by Julien Lavergne
    
    svn path=/trunk/; revision=9054

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 9 +++++++++
 2 files changed, 14 insertions(+)

commit 62e8868136a65b227c4e8fd6776400d3dfcdb6b4
Author: S%G�%@ren Sandmann <sandmann@redhat.com>
Date:   Thu Oct 9 01:22:08 2008 +0000

    XOR the old and the new regions instead of subtracting old from new. Fixes
    
    Wed Oct  8 21:20:21 2008  S%G�%@ren Sandmann  <sandmann@redhat.com>
    
        * scrollarea.c (foo_scroll_area_size_allocate): XOR the old and
        the new regions instead of subtracting old from new. Fixes bug
        551566, reported by Christian Persch.
    
    
    
    svn path=/trunk/; revision=9052

 capplets/display/ChangeLog    | 6 ++++++
 capplets/display/scrollarea.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit bb704bbd11ad4a9fe385c667f0ed443c8389c424
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Thu Oct 9 01:17:20 2008 +0000

    +Wed Oct  8 21:15:04 2008  S%G�%@ren Sandmann  <sandmann@redhat.com>
    +
    +   * xrandr-capplet.c: Make use of new clone mode API in
    +   gnome-desktop
    +
    
    
    svn path=/trunk/; revision=9051

 capplets/display/ChangeLog        |  5 +++
 capplets/display/xrandr-capplet.c | 76 +--------------------------------------
 2 files changed, 6 insertions(+), 75 deletions(-)

commit 8e8f10d92bbc13cd19fd2e0dd514963d70c761e2
Author: Christian Persch <chpe@gnome.org>
Date:   Wed Oct 8 21:16:53 2008 +0000

    Correct some HIG problems. Remove/#if 0 some unused code. Bug #551511.
    
    2008-10-08  Christian Persch  <chpe@gnome.org>
    
        * display-capplet.glade: Correct some HIG problems.
        * xrandr-capplet.c: (show_error), (add_key), (run_application):
        Remove/#if 0 some unused code. Bug #551511.
    
    svn path=/trunk/; revision=9050

 capplets/display/ChangeLog             |   6 +
 capplets/display/Makefile.am           |   4 +-
 capplets/display/display-capplet.glade | 600 +++++++++++++++++++--------------
 capplets/display/xrandr-capplet.c      |  31 +-
 4 files changed, 362 insertions(+), 279 deletions(-)

commit 5214a5263f7d8ff8ae196b1cddf13ac171ffa46b
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Wed Oct 8 11:43:53 2008 +0000

    Updated cinnamon-control-center(trunk) Greek translation
    
    svn path=/trunk/; revision=9049

 po/ChangeLog |   4 +
 po/el.po     | 631 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 292 insertions(+), 343 deletions(-)

commit 8dbe5804f8f51f0509f6cc7999d738a24d168b2a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 7 16:57:20 2008 +0000

    fix preview orientation when using left or right rotation. The XRandR
    
    2008-10-07  Jens Granseuer  <jensgr@gmx.net>
    
        * xrandr-capplet.c: (paint_output): fix preview orientation when using
        left or right rotation. The XRandR coordinate system is rotated
        counter-clockwise (bug #555241)
    
    svn path=/trunk/; revision=9044

 capplets/display/ChangeLog        | 6 ++++++
 capplets/display/xrandr-capplet.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit c32f08efb1d474eccd3ab787c26ee24325af9385
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 7 16:15:00 2008 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2008-10-07  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * appearance-main.c: (main_window_response):
        * appearance-style.c: (style_response_cb): connect the help buttons
        to the most appropriate sections in the user guide (bug #554957)
    
    svn path=/trunk/; revision=9043

 capplets/appearance/ChangeLog          |  8 ++++++++
 capplets/appearance/appearance-main.c  | 32 ++++++++++++++++++++++++++++++++
 capplets/appearance/appearance-style.c |  3 ++-
 3 files changed, 42 insertions(+), 1 deletion(-)

commit ae314d20c2dd80b4dcbc056ef2f1524f5c385c89
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 7 16:09:55 2008 +0000

    revert r9025 and reinstate the help buttons
    
    2008-10-07  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: revert r9025 and reinstate the help buttons
    
    svn path=/trunk/; revision=9042

 capplets/appearance/ChangeLog             |  4 ++++
 capplets/appearance/data/appearance.glade | 26 ++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

commit ffeca1bfb0be9d2fcdd34d849c2e3c7e2c786a11
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Oct 6 17:36:44 2008 +0000

    Bug 554962 – maixmize horizontally/vertically doesn't work with metacity
    
    2008-10-06  Matthias Clasen  <mclasen@redhat.com>
    
            Bug 554962 – maixmize horizontally/vertically doesn't work with
            metacity
    
            * metacity-window-manager.c: Use the right values for the
            h/v maximization titlebar doubleclick action.
    
    
    svn path=/trunk/; revision=9038

 libwindow-settings/ChangeLog                 |  8 ++++++++
 libwindow-settings/metacity-window-manager.c | 10 ++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit 5b822c8ca6161cbf86bc4bc4dc54ec9345d74778
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Oct 6 16:34:52 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-10-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9036

 po/ChangeLog | 4 ++++
 po/nb.po     | 6 ++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 06d7e558026fe09653b9e9aff357198d4c4d4e04
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Oct 6 00:42:13 2008 +0000

    Translation updated.
    
    2008-10-06  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=9034

 po/ChangeLog |   4 ++
 po/hu.po     | 156 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 95 insertions(+), 65 deletions(-)

commit ac8dedf887bade6d843d4e95b663801c41de91a8
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun Oct 5 08:53:17 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9032

 po/ChangeLog |   4 ++
 po/sv.po     | 188 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 119 insertions(+), 73 deletions(-)

commit bf9c9b8101e2bc407f2132e1749e5deaf63354bc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Oct 3 12:07:50 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-10-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=9031

 po/ChangeLog |   4 ++
 po/nb.po     | 173 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 94 insertions(+), 83 deletions(-)

commit 82cf48eec43278c427080935b87e520ea972a403
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Fri Oct 3 00:20:05 2008 +0000

    Updated Georgian translation
    
    svn path=/trunk/; revision=9030

 po/ka.po | 2506 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1584 insertions(+), 922 deletions(-)

commit ec5d31f994867ed56265936d623ce3174bd59954
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Thu Oct 2 11:49:06 2008 +0000

    Updated Galician Translation
    
    svn path=/trunk/; revision=9028

 po/ChangeLog |   4 ++
 po/gl.po     | 142 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 76 insertions(+), 70 deletions(-)

commit 5656a96f7a29a1140ab51b7e76c61a285e8b0dd3
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Tue Sep 30 18:50:40 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-09-30  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=9026

 po/ChangeLog |  4 ++++
 po/et.po     | 14 ++++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit 3eea54d597c7c226d0a237b4063bbdaa0141801e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Sep 29 20:37:41 2008 +0000

    really remove the non-working help button (bug #473181)
    
    2008-09-29  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: really remove the non-working help button
        (bug #473181)
    
    svn path=/trunk/; revision=9025

 capplets/appearance/ChangeLog             |  5 +++++
 capplets/appearance/data/appearance.glade | 26 --------------------------
 2 files changed, 5 insertions(+), 26 deletions(-)

commit 608b7201231da92ef71726ea19b0379643874385
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Sep 29 20:02:49 2008 +0000

    use translated names for icon themes if available (bug #554272)
    
    2008-09-29  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_icon_theme): use translated names for
        icon themes if available (bug #554272)
    
    svn path=/trunk/; revision=9023

 capplets/common/ChangeLog          |  5 +++++
 capplets/common/gnome-theme-info.c | 11 +++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit b03a3487d0e596cfcd2cc52caa2cf9240d88b95a
Author: Wouter Bolsterlee <wbolster@svn.gnome.org>
Date:   Mon Sep 29 15:12:44 2008 +0000

    Updated Dutch translation by Wouter Bolsterlee.
    
    2008-09-29  Wouter Bolsterlee  <wbolster@svn.gnome.org>
    
        * nl.po: Updated Dutch translation by Wouter Bolsterlee.
    
    
    svn path=/trunk/; revision=9021

 po/ChangeLog |   4 +++
 po/nl.po     | 107 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 60 insertions(+), 51 deletions(-)

commit 3016369ca62431d73ffa8b815fdae5c235bf63f3
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Sep 29 14:27:02 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=9020

 po/ChangeLog |   4 +
 po/sv.po     | 269 +++++++++++++++++++++++++----------------------------------
 2 files changed, 117 insertions(+), 156 deletions(-)

commit 01e42e9d09e74084ff907c07326a3f994946ec0c
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Sep 29 06:59:20 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=9018

 po/ChangeLog | 4 ++++
 po/fi.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit f8306fda39b1e15e355c2abab66d1fb2774f834d
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Sep 29 03:39:25 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=9016

 po/ChangeLog |   4 ++
 po/fi.po     | 231 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 132 insertions(+), 103 deletions(-)

commit 86e9de5af23fb042a531d4c7bf19ea354815c36f
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Sep 28 16:11:54 2008 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2008-09-28  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=9014

 po/ChangeLog |   5 +++
 po/bg.po     | 107 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 63 insertions(+), 49 deletions(-)

commit 5c0c85f134c9c741107e27859019607888e59cfd
Author: Goran Rakic <grakic@src.gnome.org>
Date:   Sun Sep 28 03:17:24 2008 +0000

    Updated Serbian translation
    
    svn path=/trunk/; revision=9012

 po/ChangeLog   | 4 ++++
 po/sr.po       | 8 ++++----
 po/sr@latin.po | 8 ++++----
 3 files changed, 12 insertions(+), 8 deletions(-)

commit 84e76ca94c6a2f04068792be710456cef77643c9
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Sat Sep 27 17:55:17 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=9009

 po/ChangeLog |   4 ++
 po/he.po     | 204 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 126 insertions(+), 82 deletions(-)

commit a5f3fc3c419cecdbb5c0ed22b1892f99239f7aca
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Sep 26 19:03:43 2008 +0000

    Patch by: Matt Keenan <matt.keenan@sun.com>
    
    2008-09-26  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matt Keenan <matt.keenan@sun.com>
    
        * xrandr-capplet.c: (show_error), (run_application): show an error
        dialog instead of crashing when initialization fails due to XRandR
        not being available (bug #553762)
    
    svn path=/trunk/; revision=9003

 capplets/display/ChangeLog        |  8 ++++++++
 capplets/display/xrandr-capplet.c | 12 ++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 1aee7c2ad6fe1c5b59f4c1ba9cb79e7e4ed0195a
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Sep 24 16:50:50 2008 +0000

    post-release bump to 2.24.1.
    
    2008-09-24  Vincent Untz  <vuntz@gnome.org>
    
        * configure.in: post-release bump to 2.24.1.
    
    svn path=/trunk/; revision=9001

 ChangeLog                                      | 6 ++++++
 capplets/about-me/ChangeLog                    | 2 ++
 capplets/accessibility/at-properties/ChangeLog | 2 ++
 capplets/appearance/ChangeLog                  | 2 ++
 capplets/common/ChangeLog                      | 2 ++
 capplets/default-applications/ChangeLog        | 2 ++
 capplets/display/ChangeLog                     | 2 ++
 capplets/keybindings/ChangeLog                 | 2 ++
 capplets/keyboard/ChangeLog                    | 2 ++
 capplets/localization/ChangeLog                | 2 ++
 capplets/mouse/ChangeLog                       | 2 ++
 capplets/network/ChangeLog                     | 2 ++
 capplets/sound/ChangeLog                       | 2 ++
 capplets/windows/ChangeLog                     | 2 ++
 configure.in                                   | 2 +-
 help/ChangeLog                                 | 2 ++
 libwindow-settings/ChangeLog                   | 2 ++
 po/ChangeLog                                   | 2 ++
 shell/ChangeLog                                | 2 ++
 typing-break/ChangeLog                         | 2 ++
 20 files changed, 43 insertions(+), 1 deletion(-)

commit f42cc38fc256722106101999dcd106189a9e1bdc
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Sep 24 16:50:08 2008 +0000

    version 2.24.0.1
    
    2008-09-24  Vincent Untz  <vuntz@gnome.org>
    
        * NEWS:
        * configure.in: version 2.24.0.1
    
    svn path=/trunk/; revision=8999

 ChangeLog    | 5 +++++
 NEWS         | 5 +++++
 configure.in | 2 +-
 3 files changed, 11 insertions(+), 1 deletion(-)

commit 03df9b6cfdb8ead22b9bbc9a7f20a91f89642746
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Sep 24 16:26:41 2008 +0000

    make sure the GConf to widget conversion funtion has all the data it needs
    
    2008-09-24  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (conv_to_widget_cb), (prepare_list): make sure
        the GConf to widget conversion funtion has all the data it needs
        when it is called for the first time. Fixes a possible crash when
        starting the capplet (bug #553541)
    
    svn path=/trunk/; revision=8998

 capplets/appearance/ChangeLog          |  7 +++++++
 capplets/appearance/appearance-style.c | 22 +++++++++++++++-------
 2 files changed, 22 insertions(+), 7 deletions(-)

commit 40f8ff3975e63e20c15d7e6de5933941cb80bd5c
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Wed Sep 24 09:30:13 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-09-24  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8997

 po/ChangeLog |  4 ++++
 po/et.po     | 46 ++++++++++++++++++++--------------------------
 2 files changed, 24 insertions(+), 26 deletions(-)

commit fcd781a151e721a67de9ff92964c09bb9ad94ffb
Author: Vincent Untz <vuntz@src.gnome.org>
Date:   Tue Sep 23 09:46:51 2008 +0000

    Make NEWS UTF-8.
    
    svn path=/trunk/; revision=8996

 NEWS | 88 ++++++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 44 insertions(+), 44 deletions(-)

commit a6b958ac0f9c8ec2c9ab7d9936af25935514b0a9
Author: Vincent Untz <vuntz@src.gnome.org>
Date:   Tue Sep 23 09:41:33 2008 +0000

    Update NEWS for translators.
    
    svn path=/trunk/; revision=8995

 NEWS | 46 +++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 45 insertions(+), 1 deletion(-)

commit 67ae086b6f9e5e0f3cf6952d6cb33ad22a60b6da
Author: Timo Jyrinki <tjyrinki@src.gnome.org>
Date:   Tue Sep 23 08:03:02 2008 +0000

    updated Finnish translation (some typo fixes etc.)
    
    svn path=/trunk/; revision=8994

 po/ChangeLog |   4 ++
 po/fi.po     | 227 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 107 insertions(+), 124 deletions(-)

commit 5b52c68b6786065221690fc0f5f2ac64b9ad4809
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Mon Sep 22 16:34:40 2008 +0000

    2.24.0 update
    
    2008-09-22  Sebastien Bacher  <seb128@ubuntu.com>
    
        * configure.in, NEWS: 2.24.0 update
    
    svn path=/trunk/; revision=8993

 ChangeLog    |  4 ++++
 NEWS         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 53 insertions(+), 1 deletion(-)

commit 092ae22c35671ac42bf93e4a0322fb4968c2ac83
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Mon Sep 22 12:19:33 2008 +0000

    Updated Italian translation.
    
    2008-09-22  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8992

 po/ChangeLog |  4 ++++
 po/it.po     | 77 +++++++++++++++++++++++++++---------------------------------
 2 files changed, 38 insertions(+), 43 deletions(-)

commit f439a9bff2d8c3fa4ebcc728ee47f44549c92f89
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Mon Sep 22 07:13:45 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-09-22  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8991

 po/ChangeLog |  4 ++++
 po/et.po     | 17 ++++++++---------
 2 files changed, 12 insertions(+), 9 deletions(-)

commit 044df14961e5fd3e9c122f358a26c65d19e6478d
Author: Maxim V. Dziumanenko <mdziumanenko@src.gnome.org>
Date:   Sun Sep 21 22:50:04 2008 +0000

    svn path=/trunk/; revision=8990
    
    
    
    svn path=/trunk/; revision=8990

 po/uk.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 86765a332a5f6c7fe64daec90792764e59d93d50
Author: Maxim V. Dziumanenko <mdziumanenko@src.gnome.org>
Date:   Sun Sep 21 22:10:14 2008 +0000

    svn path=/trunk/; revision=8989
    
    
    
    svn path=/trunk/; revision=8989

 po/uk.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 26eb538b4dc382a4c61928f38accbe0103b008dd
Author: Mugurel Tudor <mugurelu@gnome.ro>
Date:   Sun Sep 21 20:59:37 2008 +0000

    Updated Romanian translation by Mişu Moldovan <dumol@gnome.ro>
    
    2008-09-21  Mugurel Tudor  <mugurelu@gnome.ro>
    
        * ro.po: Updated Romanian translation by
        Mişu Moldovan <dumol@gnome.ro>
    
    svn path=/trunk/; revision=8988

 po/ChangeLog |    5 +
 po/ro.po     | 6453 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 3770 insertions(+), 2688 deletions(-)

commit 694c09a4a89bcfb2f110aeff957c6d8d94ff0830
Author: Maxim V. Dziumanenko <mdziumanenko@src.gnome.org>
Date:   Sun Sep 21 14:35:45 2008 +0000

    svn path=/trunk/; revision=8987
    
    
    
    svn path=/trunk/; revision=8987

 po/uk.po | 1803 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 971 insertions(+), 832 deletions(-)

commit a69f7a2d11a3183b7664a8b7d735be9302312537
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 21 14:20:10 2008 +0000

    set GtkAdjustment page size to 0 to avoid problems due to newly enforced
    
    2008-09-21  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/appearance/data/appearance.glade:
        * capplets/keyboard/gnome-keyboard-properties.glade:
        * capplets/network/gnome-network-preferences.glade:
        set GtkAdjustment page size to 0 to avoid problems due to newly
        enforced value boundaries in GTK+ 2.14.  See bug #551740 for a
        description of the problem.
    
    svn path=/trunk/; revision=8986

 capplets/appearance/ChangeLog                     | 6 ++++++
 capplets/appearance/data/appearance.glade         | 2 +-
 capplets/keyboard/ChangeLog                       | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 4 ++--
 capplets/network/ChangeLog                        | 6 ++++++
 capplets/network/gnome-network-preferences.glade  | 8 ++++----
 6 files changed, 25 insertions(+), 7 deletions(-)

commit 8664a0a4d32a8c2ad73c4fa89b32d0220e7e8bb4
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sun Sep 21 09:47:23 2008 +0000

    Updated Japanese translation.
    
    2008-09-21  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=8985

 po/ChangeLog |  4 +++
 po/ja.po     | 85 +++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 59 insertions(+), 30 deletions(-)

commit f07ce0b57ee255415223600243d11b82d960d1ac
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Sep 21 08:48:57 2008 +0000

    Updated Thai translation.
    
    2008-09-21  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8984

 po/ChangeLog | 4 ++++
 po/th.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 77d0f98fc22ad44f203a0fe90d7bddf4850ba9eb
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Sep 21 08:46:56 2008 +0000

    Updated Thai translation.
    
    2008-09-21  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8983

 po/ChangeLog |  4 ++++
 po/th.po     | 44 ++++++++++++++++++++++----------------------
 2 files changed, 26 insertions(+), 22 deletions(-)

commit 12d636cd57a7a2dfb13991871222b0af5bc5f900
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Sun Sep 21 02:00:12 2008 +0000

    Updated Lithuanian translation.
    
    2008-09-21  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    
    svn path=/trunk/; revision=8982

 po/lt.po | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 101 insertions(+), 5 deletions(-)

commit eaf83766c910c5e310abc8ca8e6ee33c7fc6a11c
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Sun Sep 21 01:46:32 2008 +0000

    Updated Lithuanian translation.
    
    2008-09-21  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    
    svn path=/trunk/; revision=8981

 po/ChangeLog |    4 +
 po/lt.po     | 1784 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 966 insertions(+), 822 deletions(-)

commit 51e77ef8793548251bc835496967156c09d6a129
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Sat Sep 20 20:23:24 2008 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=8980

 po/ChangeLog |    4 +
 po/da.po     | 1896 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1049 insertions(+), 851 deletions(-)

commit 0f8021e21104f35b7088f4f509c0640eb87a1a38
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Sep 20 19:28:25 2008 +0000

    Updated Italian translation.
    
    2008-09-20  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8979

 po/ChangeLog |  4 ++++
 po/it.po     | 10 ++++------
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 63345ca712eb899cc4757d43953738bafb923d19
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Sep 20 10:01:28 2008 +0000

    Updated Translation
    
    svn path=/trunk/; revision=8978

 po/ChangeLog |  4 ++++
 po/sq.po     | 14 ++++++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit 003d1a365de6f4822d1ffd12113018d48204c975
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Sat Sep 20 09:22:37 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-09-20  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8977

 po/ChangeLog |  4 ++++
 po/et.po     | 15 ++++++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)

commit 6cb21c6e8675e12827883db48aa27fdec9d21905
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sat Sep 20 08:57:40 2008 +0000

    Updated Greek Translation
    
    svn path=/trunk/; revision=8976

 po/ChangeLog |    4 +
 po/el.po     | 1568 +++++++++++++++++++++++++---------------------------------
 2 files changed, 671 insertions(+), 901 deletions(-)

commit 8cd52a3a470d04b656c0e3f0e152526ccb9aad2c
Author: Goran Rakic <grakic@src.gnome.org>
Date:   Fri Sep 19 18:33:01 2008 +0000

    Updated Serbian translation (by Miloš Popović)
    
    svn path=/trunk/; revision=8975

 po/ChangeLog   |    5 +
 po/LINGUAS     |    2 +-
 po/sr.po       | 4225 +++++++++++++++++++++++++----------------------
 po/sr@Latn.po  | 4675 ----------------------------------------------------
 po/sr@latin.po | 4950 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 7206 insertions(+), 6651 deletions(-)

commit 0b8024f324fdf8d6eb82fe2ad2a9c59d22c26db3
Author: Sweta Kothari <swkothar@src.gnome.org>
Date:   Fri Sep 19 10:05:17 2008 +0000

    Committed Translation by Sweta Kothari
    
    svn path=/trunk/; revision=8974

 po/ChangeLog |   4 ++
 po/gu.po     | 225 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 108 insertions(+), 121 deletions(-)

commit 7aaef64e865f58ca5e4488f9298e7c812ae80ca5
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Thu Sep 18 18:12:45 2008 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    * Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8973

 po/ChangeLog | 4 ++++
 po/ar.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 77134e824c26e2ac4d2172e17fcabadd9ea418d7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Sep 18 16:33:19 2008 +0000

    don't fail if the destination files already exist and the user tries to
    
    2008-09-18  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-save.c: (write_theme_to_disk): don't fail if the destination
        files already exist and the user tries to overwrite them (bug #552671)
    
    svn path=/trunk/; revision=8972

 capplets/appearance/ChangeLog    | 5 +++++
 capplets/appearance/theme-save.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit e218119145d5e67ec8bbe364f7dc932bc4faf61c
Author: Iñaki Larrañaga Murgoitio <dooteo@src.gnome.org>
Date:   Thu Sep 18 10:58:00 2008 +0000

    o2008-09-18 Inaki Larrañaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8971

 po/ChangeLog |  4 ++++
 po/eu.po     | 65 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 50 insertions(+), 19 deletions(-)

commit c3e1f1918bfeaf3135560eb28df9177da49571f1
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Thu Sep 18 10:46:56 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8970

 po/ChangeLog |  4 ++++
 po/fi.po     | 71 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 52 insertions(+), 23 deletions(-)

commit 6173eb83440623238609b2554bf31de05c0c4764
Author: Chao-Hsiung Liao <chliao@src.gnome.org>
Date:   Thu Sep 18 03:04:30 2008 +0000

    2.23.90
    
    svn path=/trunk/; revision=8969

 po/ChangeLog |   5 +
 po/zh_HK.po  | 671 +++++++++++++++++++-------------------------------------
 po/zh_TW.po  | 706 ++++++++++++++++++++---------------------------------------
 3 files changed, 461 insertions(+), 921 deletions(-)

commit c8ab96d00f8aa3d47a539bf297aeee1b44828360
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Thu Sep 18 02:02:57 2008 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    * Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8968

 po/ChangeLog |   4 +
 po/ar.po     | 437 +++++++++++++++--------------------------------------------
 2 files changed, 114 insertions(+), 327 deletions(-)

commit f8cff82135cfafdd2871eaea9fffae6c114c8073
Author: Felix I <ifelix@src.gnome.org>
Date:   Wed Sep 17 07:37:29 2008 +0000

    Tamil translation updated
    
    svn path=/trunk/; revision=8967

 po/ChangeLog |    4 +
 po/ta.po     | 3454 ++++++++++++++++++++++++----------------------------------
 2 files changed, 1409 insertions(+), 2049 deletions(-)

commit e240e97950d88dc165a6057c1609ffd487e0b9e6
Author: Praveen Arimbrathodiyil <apravi@src.gnome.org>
Date:   Wed Sep 17 04:05:47 2008 +0000

    Malayalam translation updated by Ashik Salahudeen
    
    svn path=/trunk/; revision=8966

 po/ChangeLog |    4 +
 po/ml.po     | 3293 ++++++++++++++++++++++++----------------------------------
 2 files changed, 1381 insertions(+), 1916 deletions(-)

commit 28615793c61094a752702e1bc6a9f0f73b21b27f
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Tue Sep 16 19:57:16 2008 +0000

    Added Entry for Bengali India Translation Updation
    
    svn path=/trunk/; revision=8965

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 906106d164ad9f54f3a35279d308c76de28a7647
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Tue Sep 16 19:57:01 2008 +0000

    Updated Bengali India Translation
    
    svn path=/trunk/; revision=8964

 po/bn_IN.po | 247 ++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 140 insertions(+), 107 deletions(-)

commit c256bbc9c3af7ec985c35f25718a097655056646
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Tue Sep 16 18:13:09 2008 +0000

    Updated Italian translation.
    
    2008-09-16  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8963

 po/it.po | 38 ++++++++++++++++++++++++--------------
 1 file changed, 24 insertions(+), 14 deletions(-)

commit 07d8a81a762c7b88cd1c12ed9425eb8c7093f727
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Tue Sep 16 17:45:45 2008 +0000

    Updated Italian translation.
    
    2008-09-16  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8962

 po/ChangeLog |    4 +
 po/it.po     | 2053 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1190 insertions(+), 867 deletions(-)

commit 5793bc9f7375fb7c01b7bca65f1a0f7792c11962
Author: Gabor Keleman <kelemeng@src.gnome.org>
Date:   Tue Sep 16 11:03:27 2008 +0000

    Small update
    
    svn path=/trunk/; revision=8961

 po/hu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e37815d8b52a3a12cd0438cc5e395a9b4d4fd0bc
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Mon Sep 15 19:10:08 2008 +0000

    Updated Translation
    
    svn path=/trunk/; revision=8960

 po/ChangeLog |    4 +
 po/sq.po     | 4991 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 2436 insertions(+), 2559 deletions(-)

commit 33a819d3ccc65774071dc8e8221029735b989854
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Sep 15 19:03:17 2008 +0000

    Translation updated.
    
    2008-09-15  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=8959

 po/ChangeLog | 4 ++++
 po/hu.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 56b74bb4c6ae8a34f121651b0c363ff0ccf34fd8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Sep 15 17:04:31 2008 +0000

    Patch by: Nirbheek Chauhan <nirbheek.chauhan@gmail.com>
    
    2008-09-15  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Nirbheek Chauhan <nirbheek.chauhan@gmail.com>
    
        * configure.in: add --without-libcanberra to skip building the sound
        capplet (bug #551765)
    
    svn path=/trunk/; revision=8958

 ChangeLog    |  7 +++++++
 configure.in | 27 +++++++++++++++++++--------
 2 files changed, 26 insertions(+), 8 deletions(-)

commit 6501a81b064085a50542eb4e2c0d10c587d6adb0
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Mon Sep 15 09:36:58 2008 +0000

    Updated Arabic Translation by Khaled Hosny.
    
    * Updated Arabic Translation by Khaled Hosny.
    
    svn path=/trunk/; revision=8957

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 0cc39ad8214601be7c7222903f85ec2935521a99
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Mon Sep 15 05:35:42 2008 +0000

    Updated Dzongkha Translation
    
    svn path=/trunk/; revision=8956

 po/ChangeLog |    4 +
 po/dz.po     | 3012 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 1515 insertions(+), 1501 deletions(-)

commit 93a435d53b5767a307720af5961dfb1f8fa456c0
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sun Sep 14 10:14:42 2008 +0000

    Updated Arabic Translation by Khaled Hosny.
    
    * Updated Arabic Translation by Khaled Hosny.
    
    svn path=/trunk/; revision=8954

 po/ar.po | 252 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 110 insertions(+), 142 deletions(-)

commit 3afb1dc6ac24df178516f6ac0c06acaed53436af
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Sat Sep 13 23:43:10 2008 +0000

    Terminology fixes in Brazilian Portuguese translation.
    
    2008-09-13  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po:Terminology fixes in Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8953

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 25 +++++++++++--------------
 2 files changed, 15 insertions(+), 14 deletions(-)

commit 7bb20749fd26345f5ce16f6dbdc43554f944905a
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Sep 13 08:02:44 2008 +0000

    Translation updated.
    
    2008-09-13  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=8952

 po/ChangeLog |    4 +
 po/hu.po     | 1624 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 736 insertions(+), 892 deletions(-)

commit ee1cec8b2c0c93481ff4456d98071ff3e15d615f
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Sat Sep 13 02:54:12 2008 +0000

    Updated Turkish Translation
    
    svn path=/trunk/; revision=8951

 po/ChangeLog |    4 +
 po/tr.po     | 2066 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1142 insertions(+), 928 deletions(-)

commit ae8aebf268a64d6ccd5c82f645c999c123276ff5
Author: Christian Persch <chpe@src.gnome.org>
Date:   Fri Sep 12 17:16:17 2008 +0000

    Reduce spacings to HIG-conform values. Bug #551878.
    
        * gnome-window-properties.glade: Reduce spacings to HIG-conform
        values. Bug #551878.
    
    svn path=/trunk/; revision=8950

 capplets/windows/ChangeLog                     |   5 +
 capplets/windows/gnome-window-properties.glade | 243 +++++++++++++++----------
 2 files changed, 150 insertions(+), 98 deletions(-)

commit 7d32fddf51fe4de5de159c3c65f0fa9df2bfcceb
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Sep 12 06:21:05 2008 +0000

    Updated British English translation.
    
    2008-09-12  Philip Withnall  <philip@tecnocode.co.uk>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=8949

 po/ChangeLog |   4 +++
 po/en_GB.po  | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
 2 files changed, 104 insertions(+), 10 deletions(-)

commit 60eb16ea485fb0fe30a5bc66b9066d006e66e992
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Sep 11 22:57:08 2008 +0000

    fixed mnemonic, 551871
    
    svn path=/trunk/; revision=8948

 capplets/keyboard/gnome-keyboard-properties.glade | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 4a44d78f33d99dd40016524db6278358d2124b57
Author: Sandeep Shedmake <sandeeps@src.gnome.org>
Date:   Thu Sep 11 19:10:09 2008 +0000

    Updated Marathi Translations
    
    svn path=/trunk/; revision=8947

 po/mr.po | 1675 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 763 insertions(+), 912 deletions(-)

commit 5972414d8174741fbc47b11be2fbe0a76568fef9
Author: Sandeep Shedmake <sandeeps@src.gnome.org>
Date:   Thu Sep 11 19:09:52 2008 +0000

    Updated Marathi Translations
    
    svn path=/trunk/; revision=8946

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit ac7e9e31db10f977d3dd3ff880845d81c3454fe6
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Thu Sep 11 18:42:22 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8945

 po/ChangeLog |   4 ++
 po/sv.po     | 137 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 105 insertions(+), 36 deletions(-)

commit 69f7db5e45243d4e2b822fba4938192ffb21ecb2
Author: Sweta Kothari <swkothar@src.gnome.org>
Date:   Wed Sep 10 08:00:07 2008 +0000

    Committed Translation by Sweta Kothari
    
    svn path=/trunk/; revision=8944

 po/ChangeLog |   4 +
 po/gu.po     | 247 +++++++++++++++++++++++------------------------------------
 2 files changed, 98 insertions(+), 153 deletions(-)

commit 6f8052378e3433bdc7f781d7414861f9308061bf
Author: Sweta Kothari <swkothar@src.gnome.org>
Date:   Wed Sep 10 05:45:48 2008 +0000

    Committed Translation by Sweta Kothari
    
    svn path=/trunk/; revision=8943

 po/ChangeLog |    4 +
 po/gu.po     | 3205 ++++++++++++++++++++++++----------------------------------
 2 files changed, 1326 insertions(+), 1883 deletions(-)

commit e3c4c53ec9188b17687c8123f3ab99630d8ababb
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Tue Sep 9 13:29:25 2008 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8942

 po/sl.po | 1423 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 714 insertions(+), 709 deletions(-)

commit ce4d21142349837b7ac52a7a2bab698afac3857b
Author: Robert Sedak <rsedak@src.gnome.org>
Date:   Tue Sep 9 09:44:13 2008 +0000

    Update: Croatian Language
    
    svn path=/trunk/; revision=8941

 po/ChangeLog | 4 ++++
 po/hr.po     | 8 ++++++++
 2 files changed, 12 insertions(+)

commit 4b84f0581929c9d0e23574d26bb5d00c7ff89ace
Author: Robert Sedak <rsedak@src.gnome.org>
Date:   Mon Sep 8 09:27:06 2008 +0000

    Update: Croatian Language
    
    svn path=/trunk/; revision=8940

 po/ChangeLog |    4 +
 po/hr.po     | 4822 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 2422 insertions(+), 2404 deletions(-)

commit f7f40cc7f0befd2f44777b327ca55a99a0363358
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Mon Sep 8 06:21:59 2008 +0000

    Updated German translation.
    
    2008-09-08  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8939

 po/ChangeLog |   4 +
 po/de.po     | 249 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 117 insertions(+), 136 deletions(-)

commit b4a740dceccc2ecd7cf9ca5eee346d161e7ae5a9
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun Sep 7 20:23:08 2008 +0000

    Updated Portuguese translation.
    
    2008-09-07  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=8938

 po/ChangeLog |   4 +
 po/pt.po     | 328 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 161 insertions(+), 171 deletions(-)

commit a9c1c7f810db8d1be63b21bfb218a1c58831d89a
Author: Reinout van Schouwen <reinouts@gnome.org>
Date:   Sun Sep 7 17:57:45 2008 +0000

    Updated Dutch translation (msgctxt)
    
    2008-09-07  Reinout van Schouwen <reinouts@gnome.org>
    
        * nl.po: Updated Dutch translation (msgctxt)
    
    
    svn path=/trunk/; revision=8937

 po/ChangeLog |   4 ++
 po/nl.po     | 142 +++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 122 insertions(+), 24 deletions(-)

commit 5c7cdaa816b4efe215431cb13cacc409b7924d4f
Author: Reinout van Schouwen <reinouts@gnome.org>
Date:   Sun Sep 7 17:41:16 2008 +0000

    Updated Dutch translation
    
    2008-09-07  Reinout van Schouwen <reinouts@gnome.org>
    
        * nl.po: Updated Dutch translation
    
    
    svn path=/trunk/; revision=8936

 po/ChangeLog |    4 +
 po/nl.po     | 2142 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1267 insertions(+), 879 deletions(-)

commit 1fb092e6031283215690b4be6283ba93a2b1b5d6
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Sun Sep 7 04:16:25 2008 +0000

    Updated Brazilian Portuguese translation.
    
    2008-09-07  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8935

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 40 ++++++++++++++++++++++++++++++++--------
 2 files changed, 36 insertions(+), 8 deletions(-)

commit 030aef80653697a0f540fdd628f2366da20276a5
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun Sep 7 00:20:30 2008 +0000

    Updated Czech translation.
    
    2008-09-07  Petr Kovar  <pknbe@volny.cz>
    
        * cs.po: Updated Czech translation.
    
    svn path=/trunk/; revision=8934

 po/ChangeLog |  4 ++++
 po/cs.po     | 78 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 49 insertions(+), 33 deletions(-)

commit 94adbe2d1a747926605635da44ca54ecb9803e69
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Sep 6 23:15:07 2008 +0000

    Updated British English translation.
    
    2008-09-07  Philip Withnall  <philip@tecnocode.co.uk>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=8933

 po/ChangeLog |    4 +
 po/en_GB.po  | 1775 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 950 insertions(+), 829 deletions(-)

commit f06f49184d553a64ac9d36a95e0b2f8c9660ea5b
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Sat Sep 6 22:12:19 2008 +0000

    Minor fixes to Catalan translation
    
    svn path=/trunk/; revision=8932

 po/ChangeLog |  4 ++++
 po/ca.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 1ebe8363ba6a70552782ef7053b97578848993f0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Sep 6 09:19:42 2008 +0000

    Patch by: Bruce Cowan <bugs@bcowan.fastmail.co.uk>
    
    2008-09-06  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Bruce Cowan <bugs@bcowan.fastmail.co.uk>
    
        * xrandr-capplet.c: (paint_background): use theme colours for the
        background (bug #545117)
    
    svn path=/trunk/; revision=8931

 capplets/display/ChangeLog        |  7 +++++++
 capplets/display/xrandr-capplet.c | 16 +++++++++++-----
 2 files changed, 18 insertions(+), 5 deletions(-)

commit 5e458589d39f0ef51ccb90bc40bf1f450d86adf1
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Sep 6 07:01:56 2008 +0000

    Updated zh_CN translation.
    
    svn path=/trunk/; revision=8930

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1004 ++++++++++++++++++++++------------------------------------
 2 files changed, 377 insertions(+), 631 deletions(-)

commit 3db2ae21074cb08c1cbeb8800099352f2bc16917
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Sep 5 23:29:10 2008 +0000

    accomodate latest changes in libxklavier: counting on utf-8 in descriptions
    
    svn path=/trunk/; revision=8929

 capplets/keyboard/ChangeLog                         | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c   | 6 +++---
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 7 +------
 3 files changed, 10 insertions(+), 9 deletions(-)

commit dab7c11694e32ceadb810096bd3588a67a90dab5
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Fri Sep 5 19:53:23 2008 +0000

    Updated Catalan translation by Joan Duran
    
    svn path=/trunk/; revision=8928

 po/ChangeLog |    4 +
 po/ca.po     | 1974 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1080 insertions(+), 898 deletions(-)

commit 4267e0e7d6e3a2e09e6e68128fcddd10bb87020c
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Fri Sep 5 14:23:37 2008 +0000

    Updated German translation.
    
    2008-09-05  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8927

 po/ChangeLog |  4 ++++
 po/de.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 187822a5d7b43f0cdac9d6a0abe514a48d996971
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Fri Sep 5 13:15:25 2008 +0000

    Updated Polish translation
    
    2008-09-05  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=8926

 po/ChangeLog |   4 +
 po/pl.po     | 947 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 737 insertions(+), 214 deletions(-)

commit ece517cf9cc9bed78c55e5def53c1d31fae5ed82
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Sep 5 11:50:53 2008 +0000

    Patch by Nirbheek Chauhan
    
    2008-09-05  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Patch by Nirbheek Chauhan
    
        * configure.in:
        * capplets/appearance/appearance-themes.c:
        * capplets/appearance/appearance.h: removed last gnome-vfs leftovers.
    
    svn path=/trunk/; revision=8925

 ChangeLog                               | 8 ++++++++
 capplets/appearance/appearance-themes.c | 1 -
 capplets/appearance/appearance.h        | 1 -
 configure.in                            | 2 --
 4 files changed, 8 insertions(+), 4 deletions(-)

commit d6f132763ce3e451825b877b57b7b2df7993d7c6
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Fri Sep 5 06:51:41 2008 +0000

    Updated German translation.
    
    2008-09-05  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8924

 po/ChangeLog |   4 +
 po/de.po     | 243 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 137 insertions(+), 110 deletions(-)

commit 031c818fe783f3d02f8c26851d3295940f936e16
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Sep 5 05:28:06 2008 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2008-09-05  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=8923

 po/ChangeLog |   5 +++
 po/bg.po     | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 107 insertions(+), 3 deletions(-)

commit 36956a7978c386f7d425360f8ba52b1ad9915d2a
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Thu Sep 4 20:44:22 2008 +0000

    Updated Korean translation
    
    svn path=/trunk/; revision=8922

 po/ChangeLog |    4 +
 po/ko.po     | 1895 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1059 insertions(+), 840 deletions(-)

commit 385c385481c03215b0807e48e8f993c30b142886
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Sep 4 13:17:34 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-09-04  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8921

 po/ChangeLog |  4 ++++
 po/nb.po     | 43 ++++++++++++++++++++++++++++++++++++-------
 2 files changed, 40 insertions(+), 7 deletions(-)

commit 86be455ef619605dba2c96273cbc98ddd2d692f1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Sep 3 21:30:52 2008 +0000

    use a11y icon instead of searchtool (bug #550742)
    
    2008-09-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-at-session.desktop.in.in: use a11y icon instead of searchtool
        (bug #550742)
    
    svn path=/trunk/; revision=8920

 capplets/default-applications/ChangeLog                      | 5 +++++
 capplets/default-applications/gnome-at-session.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1eba9413d08385aba2967b271b12920321deddf9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Sep 3 21:10:00 2008 +0000

    don't advertise startup-notify. The script doesn't support it (bug
    
    2008-09-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-at-session.desktop.in.in: don't advertise startup-notify. The
        script doesn't support it (bug #550694)
    
    svn path=/trunk/; revision=8919

 capplets/default-applications/ChangeLog                      | 5 +++++
 capplets/default-applications/gnome-at-session.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 21ac90166a1eb975feaafa8494ba95a3928e0f6f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Sep 3 21:04:39 2008 +0000

    chosing first variant by default, #550722
    
    svn path=/trunk/; revision=8918

 capplets/keyboard/ChangeLog                            |  5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c | 11 +++--------
 2 files changed, 8 insertions(+), 8 deletions(-)

commit 25ab1737259fae0eb4e68b2b94e383256ca58e2e
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Wed Sep 3 19:31:52 2008 +0000

    Updated German translation.
    
    2008-09-03  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8917

 po/ChangeLog | 4 ++++
 po/de.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a313f243db6f40644d9d01df6306e55d7d6193cd
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Wed Sep 3 18:57:55 2008 +0000

    Updated German translation.
    
    2008-09-03  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8916

 po/ChangeLog |    4 +
 po/de.po     | 1923 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1076 insertions(+), 851 deletions(-)

commit a549092a77e7fc2143a48d034e06dde5ec872646
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Wed Sep 3 02:42:37 2008 +0000

    committing for some translation error in Punjabi files: Amanpreet Singh Alam
    
    svn path=/trunk/; revision=8915

 po/pa.po | 1426 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 879 insertions(+), 547 deletions(-)

commit 8f77ccc2ad552a8c9e1608ac81ed6f65d57070fa
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 2 15:22:43 2008 +0000

    properly initialize the callback data (bug #550263)
    
    2008-09-02  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_job_schedule): properly
        initialize the callback data (bug #550263)
    
    svn path=/trunk/; revision=8914

 capplets/common/ChangeLog              | 5 +++++
 capplets/common/file-transfer-dialog.c | 1 +
 2 files changed, 6 insertions(+)

commit 828bbfe184384cc68348b32e4db94f96889fd503
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Sep 2 10:58:14 2008 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2008-09-02  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=8913

 po/ChangeLog |  5 +++++
 po/bg.po     | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 0471008b424e5c89f505f9ac4cc22fc9f18ab90c
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Sep 2 10:49:53 2008 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2008-09-02  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=8912

 po/ChangeLog |    5 +
 po/bg.po     | 1365 +++++++++++++++++++++++-----------------------------------
 2 files changed, 533 insertions(+), 837 deletions(-)

commit e0af94fdddf1be4783ea29fd8f0202373da30d38
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   Tue Sep 2 08:09:50 2008 +0000

    Updated Vietnamese translation
    
    2008-09-02  Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
    
        * vi.po: Updated Vietnamese translation
    
    
    svn path=/trunk/; revision=8911

 po/ChangeLog |    4 +
 po/vi.po     | 1247 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 661 insertions(+), 590 deletions(-)

commit 8bb801eb6c689deb3701b5c34c5315c8175c6932
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Mon Sep 1 09:46:15 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-09-01  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8910

 po/ChangeLog |   4 +
 po/et.po     | 316 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 155 insertions(+), 165 deletions(-)

commit bc2c917ef5bcbd3d0c12867d4c97f6d6913840ef
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Sun Aug 31 23:27:44 2008 +0000

    Updated Russian translation.
    
    2008-09-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
        * ru.po: Updated Russian translation.
    
    
    svn path=/trunk/; revision=8909

 po/ru.po | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 103 insertions(+), 3 deletions(-)

commit 50c9a275862cd0c591c0ecf3a21ae0731f1a9811
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Sun Aug 31 23:10:13 2008 +0000

    Updated Russian translation.
    
    2008-09-01  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
        * ru.po: Updated Russian translation.
    
    
    svn path=/trunk/; revision=8908

 po/ChangeLog |    6 +-
 po/ru.po     | 1525 ++++++++++++++++++++++++----------------------------------
 2 files changed, 638 insertions(+), 893 deletions(-)

commit 36c3073b0d365adfa182f3767d5fc164d605a358
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sat Aug 30 16:09:47 2008 +0000

    Updated Galician translation
    
    svn path=/trunk/; revision=8907

 po/ChangeLog |  4 ++++
 po/gl.po     | 35 ++++++++++++++++++++++++++++++-----
 2 files changed, 34 insertions(+), 5 deletions(-)

commit b2433d1fec6e248dfa80b944df79341f09b56ca3
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Aug 30 13:01:30 2008 +0000

    Updated Thai translation.
    
    2008-08-30  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8906

 po/ChangeLog |  4 ++++
 po/th.po     | 39 +++++++++++++++++++++++++++++++--------
 2 files changed, 35 insertions(+), 8 deletions(-)

commit f530c05fbeb6c9402da4c85155bc6acfc55cf5e3
Author: Seán de Búrca <sdeburca@svn.gnome.org>
Date:   Sat Aug 30 00:53:30 2008 +0000

    Updated Irish translation.
    
    2008-08-29  Seán de Búrca  <sdeburca@svn.gnome.org>
    
            * ga.po: Updated Irish translation.
    
    svn path=/trunk/; revision=8905

 po/ChangeLog |   4 +
 po/ga.po     | 439 +++++++++++++++++++++++++----------------------------------
 2 files changed, 187 insertions(+), 256 deletions(-)

commit c11e15c2319a47d3726f22b271ab0ed97228c17c
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Aug 29 18:12:25 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8904

 po/ChangeLog |  4 ++++
 po/es.po     | 49 +++++++++++++++++++++++++++++++++++++------------
 2 files changed, 41 insertions(+), 12 deletions(-)

commit ca0d4dc1813bcd60472acb070c513379a8c67e7b
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Fri Aug 29 09:30:07 2008 +0000

    Updating macedonian translation, Arangel Angov <arangel@linux.net.mk>
    
    svn path=/trunk/; revision=8903

 po/mk.po | 69 +++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 47 insertions(+), 22 deletions(-)

commit 9aa93fe608e7a20ae9933a6f0752f89df5d52dae
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Fri Aug 29 08:57:00 2008 +0000

    Arangel Angov <arangel@linux.net.mk> * mk.po: Updated Macedonian translation
    
    svn path=/trunk/; revision=8902

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 648eec44f60875e2312b301ae5f08129f592311f
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Fri Aug 29 08:56:30 2008 +0000

    Arangel Angov <arangel@linux.net.mk> * mk.po: Updated Macedonian translation
    
    svn path=/trunk/; revision=8901

 po/mk.po | 1605 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 718 insertions(+), 887 deletions(-)

commit 3aa9a5ea98f0ab4f66a497567ac0714e9da47e74
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Aug 28 21:14:42 2008 +0000

    Updated French translation.
    
    2008-08-28  Claude Paroz  <claude@2xlibre.net>
    
        * fr.po: Updated French translation.
    
    svn path=/trunk/; revision=8900

 po/ChangeLog |   4 +
 po/fr.po     | 842 +++++++++++++++++++++++------------------------------------
 2 files changed, 326 insertions(+), 520 deletions(-)

commit 6ebf5124c271548b908e1cdd1578ff8a71b29624
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Thu Aug 28 21:12:36 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8899

 po/sv.po | 120 +++++++++++++++++++++------------------------------------------
 1 file changed, 40 insertions(+), 80 deletions(-)

commit e0bfd52fb6391a6f1ba8a23b437533d3e211d98c
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Aug 28 20:51:35 2008 +0000

    reviewed by: Jens Granseuer <jensgr@gmx.net>
    
    2008-08-28  Claude Paroz  <claude@2xlibre.net>
    
        reviewed by: Jens Granseuer  <jensgr@gmx.net>
    
        * sound-theme-definition.h: add context to event sound names.
        * sound-theme.c: (setup_sound_theme_custom): replace gettext by g_dpgettext2 to
        use context information added in sound-theme-definition.h (bug #549489)
    
    svn path=/trunk/; revision=8898

 ChangeLog                               |  5 +++++
 capplets/sound/ChangeLog                |  8 +++++++
 capplets/sound/sound-theme-definition.h | 38 ++++++++++++++++-----------------
 capplets/sound/sound-theme.c            |  6 +++---
 configure.in                            |  1 +
 5 files changed, 36 insertions(+), 22 deletions(-)

commit dbcae482bfd22f9bcac088744883e27205fbcecb
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Thu Aug 28 20:17:21 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8897

 po/ChangeLog |   4 +
 po/sv.po     | 657 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 349 insertions(+), 312 deletions(-)

commit fc960aef0ba1bd633a958cc670048d715e9564bd
Author: Timo Jyrinki <tjyrinki@src.gnome.org>
Date:   Thu Aug 28 10:56:40 2008 +0000

    fix one erronous translation
    
    svn path=/trunk/; revision=8896

 po/fi.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit f702c510f899d56a584635e14466accca5454c14
Author: Petr Kovar <pknbe@volny.cz>
Date:   Wed Aug 27 22:24:35 2008 +0000

    Updated Czech translation.
    
    2008-08-28  Petr Kovar  <pknbe@volny.cz>
    
        * cs.po: Updated Czech translation.
    
    svn path=/trunk/; revision=8895

 po/ChangeLog |    4 +
 po/cs.po     | 1699 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 769 insertions(+), 934 deletions(-)

commit 8e9b493f718f37d151f989411af77b4fed4a3a20
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 27 11:44:52 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-08-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8894

 po/ChangeLog |   4 ++
 po/nb.po     | 228 +++++++++++++++++++----------------------------------------
 2 files changed, 78 insertions(+), 154 deletions(-)

commit 44674def3c77f041f5c3dc3f8c25d98261508a8d
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Wed Aug 27 10:17:30 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8893

 po/ChangeLog |   4 +
 po/fi.po     | 300 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 135 insertions(+), 169 deletions(-)

commit 8a0f8610af80a3628b69889677b0ef26d8da2861
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Wed Aug 27 04:14:37 2008 +0000

    Updated Brazilian Portuguese translation.
    
    2008-08-27  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8892

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 220 +++++++++++++++++++++++++----------------------------------
 2 files changed, 98 insertions(+), 126 deletions(-)

commit ac6bbb4b9ee0b5de298f03126719fb1c241ce4c0
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Tue Aug 26 17:08:16 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8891

 po/ChangeLog |   4 +
 po/he.po     | 697 ++++++++++++-----------------------------------------------
 2 files changed, 138 insertions(+), 563 deletions(-)

commit 41e4eccffe1a87cc3dd4a72e847fa44e86ae8654
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Tue Aug 26 14:16:54 2008 +0000

    Updated Arabic Translation by Khaled Hosny.
    
    * Updated Arabic Translation by Khaled Hosny.
    
    svn path=/trunk/; revision=8890

 po/ar.po | 381 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 177 insertions(+), 204 deletions(-)

commit bab5f2804f6ed5ab2451d35a2bf2cd40ace816c1
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Tue Aug 26 10:38:43 2008 +0000

    Updated Basque translation.
    
    2008-08-26  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8889

 po/ChangeLog |    4 +
 po/eu.po     | 1653 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 733 insertions(+), 924 deletions(-)

commit 8b7067ee8382c96d59381580344b04b8765f80e8
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Tue Aug 26 07:48:54 2008 +0000

    Added Entry for Bengali India Translation Updation
    
    svn path=/trunk/; revision=8888

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d51c4b6d03a82f11ab6243ff6a951c772b438187
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Tue Aug 26 07:48:37 2008 +0000

    Updated Bengali India Translation
    
    svn path=/trunk/; revision=8887

 po/bn_IN.po | 2363 ++++++++++++++++++++---------------------------------------
 1 file changed, 786 insertions(+), 1577 deletions(-)

commit 45a77a105366ba826b4d34ed726175caacaecc17
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Aug 25 18:51:52 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8886

 po/ChangeLog |   4 +
 po/es.po     | 332 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 161 insertions(+), 175 deletions(-)

commit 86df8caeb4172f33a1fd8074deb1623d1fe4d34c
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Mon Aug 25 16:54:55 2008 +0000

    Updated Polish translation
    
    2008-08-25  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=8885

 po/ChangeLog |   4 +
 po/pl.po     | 282 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 118 insertions(+), 168 deletions(-)

commit 209d8d4cc310504efa0cf0c2cf25755fc593190e
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Mon Aug 25 16:50:30 2008 +0000

    Updated Galician translation
    
    svn path=/trunk/; revision=8884

 po/ChangeLog |   4 +
 po/gl.po     | 288 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 131 insertions(+), 161 deletions(-)

commit 6af0173c0293e355675b0bbb83cab51ee5e0c4ec
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Aug 25 14:28:14 2008 +0000

    Remove vanished libslab/libslab-bookmarkfile.c. Updated Thai translation.
    
    2008-08-25  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * POTFILES.in: Remove vanished libslab/libslab-bookmarkfile.c.
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8883

 po/ChangeLog   |   5 ++
 po/POTFILES.in |   1 -
 po/th.po       | 273 +++++++++++++++++++++++++--------------------------------
 3 files changed, 122 insertions(+), 157 deletions(-)

commit 12f0be1d5489426906f0d6dc8f330c3eda27f1ca
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sun Aug 24 15:39:37 2008 +0000

    Updated Japanese translation.
    
    2008-08-25  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=8882

 po/ChangeLog |   4 +
 po/ja.po     | 236 ++++++++++++++++++++---------------------------------------
 2 files changed, 82 insertions(+), 158 deletions(-)

commit f0c8f1cb26c6c9f789994a8c05d66c2aa56d2364
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 23 12:24:29 2008 +0000

    Patch by: Wang Xin <jedy.wang@sun.com>
    
    2008-08-23  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Wang Xin <jedy.wang@sun.com>
    
        * at-properties.desktop.in.in: improve tooltip wording (bug #545256)
    
    svn path=/trunk/; revision=8881

 capplets/accessibility/at-properties/ChangeLog                   | 6 ++++++
 capplets/accessibility/at-properties/at-properties.desktop.in.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 5151805d25649764b1223fe894e5d70a71e66574
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 23 12:19:36 2008 +0000

    don't use the term "accelerator" in the UI (bug #547276)
    
    2008-08-23  Jens Granseuer  <jensgr@gmx.net>
    
        * eggcellrendererkeys.c:
        * gnome-keybinding-properties.glade: don't use the term "accelerator"
        in the UI (bug #547276)
    
    svn path=/trunk/; revision=8880

 capplets/keybindings/ChangeLog                     |  6 ++
 capplets/keybindings/eggcellrendererkeys.c         | 72 +++++++++++-----------
 .../keybindings/gnome-keybinding-properties.glade  |  2 +-
 3 files changed, 43 insertions(+), 37 deletions(-)

commit d9ec606ca0b1ea1844e40ed91702a75a8473c4a9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 22 17:12:03 2008 +0000

    when a hidden theme is selected, and therefore becomes visible, create a
    
    2008-08-22  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (conv_to_widget_cb), (create_thumbnail),
        (prepare_list): when a hidden theme is selected, and therefore
        becomes visible, create a thumbnail for it (bug #547301)
    
    svn path=/trunk/; revision=8879

 capplets/appearance/ChangeLog          |  6 ++++++
 capplets/appearance/appearance-style.c | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

commit a4312299437b9bb357e04f69933cd96ed43368db
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 21 16:04:15 2008 +0000

    Patch by: Brian Cameron <brian.cameron@sun.com>
    
    2008-08-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Brian Cameron <brian.cameron@sun.com>
    
        * sound-theme.c: (set_combox_for_theme_name): trying to print NULL
        strings crashes on Solaris (bug #548586)
    
    svn path=/trunk/; revision=8878

 capplets/sound/ChangeLog     | 7 +++++++
 capplets/sound/sound-theme.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit b15552fdd9ecfdb50fc5e8f32b5d7897cd730a5d
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Thu Aug 21 02:49:44 2008 +0000

    Brazilian Portuguese translation updated by Djavan Fagundes.
    
    2008-08-20  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Brazilian Portuguese translation updated by Djavan
        Fagundes.
    
    svn path=/trunk/; revision=8877

 po/ChangeLog |   5 +++
 po/pt_BR.po  | 118 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 62 insertions(+), 61 deletions(-)

commit fc0496578c0f586d85eb312fa2497ee3e2875c5c
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Wed Aug 20 16:20:01 2008 +0000

    Updated Polish translation
    
    2008-08-20  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=8876

 po/ChangeLog |  4 ++++
 po/pl.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 1acc03b4a43afc743b4697c7648055c6d6104d66
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Aug 20 16:11:08 2008 +0000

    Clarification comment for translators on 'Mirror Screens'
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=8875

 capplets/display/xrandr-capplet.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 30bf9982bab96957c307f4f219b5ca954a72a8a8
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Aug 20 16:08:13 2008 +0000

    bnc381027 - Use 'Mirror Screens' for consistency with the checkbox
    2008-08-20  Federico Mena Quintero  <federico@novell.com>
    
        * xrandr-capplet.c (get_display_name): Use "Mirror Screens"
        instead of "Cloned Output" in the display of monitors, to be
        consistent with the corresponding checkbox from the Glade file.
        Fixes https://bugzilla.novell.com/show_bug.cgi?id=381027
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=8874

 capplets/display/ChangeLog        | 7 +++++++
 capplets/display/xrandr-capplet.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit a26c6238a00a6c73cb10502041fd898f0a4fb0b6
Author: Tomasz Dominikowski <tdominikowski@aviary.pl>
Date:   Wed Aug 20 14:07:05 2008 +0000

    Updated Polish translation
    
    2008-08-20  Tomasz Dominikowski  <tdominikowski@aviary.pl>
    
        * pl.po: Updated Polish translation
    
    svn path=/trunk/; revision=8873

 po/ChangeLog |    4 +
 po/pl.po     | 2423 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 1084 insertions(+), 1343 deletions(-)

commit 2f0e686793ea399b11b0e6a239f4dd8002ff4d97
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Aug 18 17:55:43 2008 +0000

    updated for 2.23.90.
    
    2008-08-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: updated for 2.23.90.
    
    svn path=/trunk/; revision=8871

 ChangeLog    |  5 +++++
 NEWS         | 45 +++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 51 insertions(+), 1 deletion(-)

commit 1f5656ec029269ca19f4e0fd8a2d4e865cdd2a53
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Sun Aug 17 14:32:37 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-08-17  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8870

 po/ChangeLog |  4 ++++
 po/et.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 28c2d573d9353484532227fad1122eaa397af970
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Sun Aug 17 07:58:57 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8869

 po/ChangeLog |    4 +
 po/he.po     | 1010 +++++-----------------------------------------------------
 2 files changed, 79 insertions(+), 935 deletions(-)

commit 87c639d9bf1c024dffa8ab99556c5aaa1195dcae
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 16 13:18:27 2008 +0000

    don't leak the theme engine path
    
    2008-08-16  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gtk_theme_info_missing_engine): don't leak
        the theme engine path
    
    svn path=/trunk/; revision=8868

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit eef20ec03ead5890c0afc3642fb2cffea6d88079
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 16 13:06:02 2008 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2008-08-16  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * sound-theme.c: (play_sound_at_path),
        (custom_treeview_button_press_event_cb),
        (activatable_cell_renderer_pixbuf_activate),
        (activatable_cell_renderer_pixbuf_init),
        (activatable_cell_renderer_pixbuf_class_init),
        (setup_sound_theme_custom): make the event sound preview button
        listen to the "activate" signal so it becomes accessible via
        keyboard (bug #547808)
    
    svn path=/trunk/; revision=8867

 capplets/sound/ChangeLog     |  13 +++++
 capplets/sound/sound-theme.c | 130 ++++++++++++++++++++++++++++++-------------
 2 files changed, 104 insertions(+), 39 deletions(-)

commit eb329311de1ffaab051f5a1492d04161a99445bc
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sat Aug 16 11:05:08 2008 +0000

    Updated Belarusian Latin translation by Ihar Hrachyshka.
    
    svn path=/trunk/; revision=8866

 po/ChangeLog   |   4 +
 po/be@latin.po | 940 +++++++++++++++++++++++++++++++--------------------------
 2 files changed, 514 insertions(+), 430 deletions(-)

commit 72c4c5e6bd5d79dcc7c3c66a82a257938518e576
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 16 10:48:20 2008 +0000

    Keep track of hidden themes, too, so that e.g. we don't erroneously show
    
    2008-08-16  Jens Granseuer  <jensgr@gmx.net>
    
        Keep track of hidden themes, too, so that e.g. we don't erroneously
        show "GTK theme missing" when a metatheme references a hidden GTK
        theme (part of bug #547301)
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme),
        (read_icon_theme), (read_cursor_theme): don't skip hidden themes,
        initialize the hidden property
        (gnome_theme_info_find_all_helper): only return non-hidden themes
        * gnome-theme-info.h: add hidden property to all theme types
    
    svn path=/trunk/; revision=8865

 capplets/common/ChangeLog          | 12 ++++++++++++
 capplets/common/gnome-theme-info.c | 33 ++++++++++++++++++---------------
 capplets/common/gnome-theme-info.h |  4 ++++
 3 files changed, 34 insertions(+), 15 deletions(-)

commit e0ec9acbbbd9ce2df27fffe72480d3c5205a8a1e
Author: Federico Mena Quintero <federico@novell.com>
Date:   Sat Aug 16 02:00:48 2008 +0000

    Paint the outputs with the color from GnomeRRLabeler
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=8864

 capplets/display/ChangeLog        |  6 ++++++
 capplets/display/xrandr-capplet.c | 20 ++++++++++++++++----
 2 files changed, 22 insertions(+), 4 deletions(-)

commit a4a7ac50fbbd8517c4afe7674ba796a5b86d35b6
Author: Federico Mena Quintero <federico@novell.com>
Date:   Sat Aug 16 02:00:35 2008 +0000

    Create a GnomeRRLabeler when getting a new screen configuration
    
    Signed-off-by: Federico Mena Quintero <federico@novell.com>
    
    svn path=/trunk/; revision=8863

 capplets/display/ChangeLog        | 7 +++++++
 capplets/display/xrandr-capplet.c | 9 +++++++++
 2 files changed, 16 insertions(+)

commit 3f2068f5028ef23a047f5f015bbdbe8e72f22da9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Aug 15 13:14:23 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-08-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8862

 po/ChangeLog |   4 +
 po/nb.po     | 284 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 118 insertions(+), 170 deletions(-)

commit ace6f32345b3d88d09be5658a1aa5598bf2d2442
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 14 17:57:51 2008 +0000

    remove help button as long as we don't have any help to show (bug #473181)
    
    2008-08-14  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: remove help button as long as we don't have
        any help to show (bug #473181)
    
    svn path=/trunk/; revision=8861

 capplets/appearance/ChangeLog             |  5 +++++
 capplets/appearance/data/appearance.glade | 10 ----------
 2 files changed, 5 insertions(+), 10 deletions(-)

commit 9378c6c29ddff63068160c0db02307ad81aab4ca
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Thu Aug 14 08:20:27 2008 +0000

    Updated Thai translation.
    
    2008-08-14  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8860

 po/ChangeLog |   4 +
 po/th.po     | 878 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 473 insertions(+), 409 deletions(-)

commit f17b86066dcfc7d541d328b02b0841391a9cfe4c
Author: Seán de Búrca <sdeburca@svn.gnome.org>
Date:   Wed Aug 13 11:09:21 2008 +0000

    Updated Irish translation.
    
    2008-08-13  Seán de Búrca  <sdeburca@svn.gnome.org>
    
            * ga.po: Updated Irish translation.
    
    svn path=/trunk/; revision=8859

 po/ChangeLog |    4 +
 po/ga.po     | 2640 ++++++++++++++++++++++++----------------------------------
 2 files changed, 1072 insertions(+), 1572 deletions(-)

commit 1005432c5758556ff9d2d570b069b6271ce0e75e
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Wed Aug 13 03:16:57 2008 +0000

    Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8858

 po/pt_BR.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit c2e743dfa3d83a9671856987827c82b12199aa14
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Tue Aug 12 21:42:02 2008 +0000

    Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8857

 po/ChangeLog |   4 +-
 po/pt_BR.po  | 208 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 113 insertions(+), 99 deletions(-)

commit 9dec28d9597cfd01f204b2e9e8a3786e0462123f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 12 21:36:19 2008 +0000

    when adding an unknown theme to the list because it has been selected use
    
    2008-08-12  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (conv_to_widget_cb), (prepare_list): when
        adding an unknown theme to the list because it has been selected use
        the corresponding default icon to represent it
    
    svn path=/trunk/; revision=8856

 capplets/appearance/ChangeLog          | 6 ++++++
 capplets/appearance/appearance-style.c | 7 ++++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 71e3280c3c354c039479f98bccabe5dc61734fce
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 12 16:45:22 2008 +0000

    make sure we have a notification theme before trying to save it (bug
    
    2008-08-12  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set): make sure we have a
        notification theme before trying to save it (bug #547448)
    
    svn path=/trunk/; revision=8855

 capplets/common/ChangeLog           |  5 +++++
 capplets/common/gnome-theme-apply.c | 11 +++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 51825e82fcdad8562f91d48c88cf535b4f19ceda
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Tue Aug 12 13:03:56 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8854

 po/ChangeLog |    4 +
 po/fi.po     | 1723 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 976 insertions(+), 751 deletions(-)

commit 324a3e084e7f41e4ebeeb8f9a9a2aa9683a3a232
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Tue Aug 12 12:15:38 2008 +0000

    Updated Portuguese translation.
    
    2008-08-12  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=8853

 po/ChangeLog |    4 +
 po/pt.po     | 1748 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 996 insertions(+), 756 deletions(-)

commit fc63bace52e9fa70459d611fab107774ae5d64cc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Aug 11 20:30:49 2008 +0000

    fail gracefully if we cannot get a screen
    
    2008-08-11  Jens Granseuer  <jensgr@gmx.net>
    
        * xrandr-capplet.c: (run_application): fail gracefully if we cannot
        get a screen
    
    2008-08-11  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: require gnome-desktop 2.23.90
    
    svn path=/trunk/; revision=8852

 ChangeLog                         |  4 ++++
 capplets/display/ChangeLog        |  5 +++++
 capplets/display/xrandr-capplet.c | 13 +++++++++++--
 configure.in                      |  2 +-
 4 files changed, 21 insertions(+), 3 deletions(-)

commit fb36ebb3a31022d806757f107cd6cfcf9a018467
Author: Chao-Hsiung Liao <chliao@src.gnome.org>
Date:   Sun Aug 10 22:37:21 2008 +0000

    2.23.6
    
    svn path=/trunk/; revision=8851

 po/ChangeLog |    5 +
 po/zh_HK.po  | 1647 ++++++++++++++++++++++++++++++++-------------------------
 po/zh_TW.po  | 1649 +++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 1879 insertions(+), 1422 deletions(-)

commit fd18ace29e67fe5cacfcc928872990ead624abb0
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Sun Aug 10 13:42:22 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-08-10  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8850

 po/ChangeLog |    4 +
 po/et.po     | 1639 ++++++++++++----------------------------------------------
 2 files changed, 337 insertions(+), 1306 deletions(-)

commit 003cf2602d9d25aac9a941b59e2a9ad0529f44bc
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sat Aug 9 23:33:47 2008 +0000

    Updated Japanese translation.
    
    2008-08-10  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=8849

 po/ChangeLog |    4 +
 po/ja.po     | 1511 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 714 insertions(+), 801 deletions(-)

commit 21ded784f80a4000363e3044343b231a70cd7089
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 8 17:51:22 2008 +0000

    replace all uses of g_print by g_debug
    
    2008-08-08  Jens Granseuer  <jensgr@gmx.net>
    
        * xrandr-capplet.c: (on_screen_changed), (rebuild_gui),
        (print_edge), (on_output_event), (paint_output), (on_area_paint),
        (check_required_virtual_size), (apply), (run_application): replace
        all uses of g_print by g_debug
    
    svn path=/trunk/; revision=8848

 capplets/display/ChangeLog        |  7 +++++++
 capplets/display/xrandr-capplet.c | 44 +++++++++++++++++++++------------------
 2 files changed, 31 insertions(+), 20 deletions(-)

commit 84963ec8ef3a3adebe6f463083e08b9774fd080e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 8 17:47:04 2008 +0000

    don't leak the application or the GladeXML
    
    2008-08-08  Jens Granseuer  <jensgr@gmx.net>
    
        * xrandr-capplet.c: (run_application), (main): don't leak the
        application or the GladeXML
    
    svn path=/trunk/; revision=8847

 capplets/display/ChangeLog        |   5 +
 capplets/display/xrandr-capplet.c | 219 +++++++++++++++++++-------------------
 2 files changed, 116 insertions(+), 108 deletions(-)

commit f34d90a0429b8bfa6d36ca1b0ae2fae0db4a9244
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Fri Aug 8 13:03:49 2008 +0000

    Updated Galician translation
    
    svn path=/trunk/; revision=8846

 po/ChangeLog |   4 ++
 po/gl.po     | 120 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 70 insertions(+), 54 deletions(-)

commit 03d62204297f7f36d2e2ea4e124015b9a2aa6755
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Aug 7 21:38:47 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8845

 po/ChangeLog |   4 +++
 po/es.po     | 108 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 58 insertions(+), 54 deletions(-)

commit 2dadfef80ed6961df9b96af50dcbe70d621d6c33
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 7 20:19:32 2008 +0000

    Based on a patch by: Bastien Nocera <hadess@hadess.net>
    
    2008-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Bastien Nocera <hadess@hadess.net>
    
        * sound-properties.glade:
        * sound-theme-definition.h: HIG fixes and improved wording (bug
        #545219)
    
    svn path=/trunk/; revision=8844

 capplets/sound/ChangeLog                |  8 ++++++++
 capplets/sound/sound-properties.glade   | 10 +++++-----
 capplets/sound/sound-theme-definition.h | 10 +++++-----
 3 files changed, 18 insertions(+), 10 deletions(-)

commit fefdab5ca4adedd1dffc9e73904f45a0a0b5d7eb
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Thu Aug 7 14:20:27 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8843

 po/ChangeLog |   4 +
 po/he.po     | 728 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 399 insertions(+), 333 deletions(-)

commit 90462b4737ac5f3f741dec55bad6b078b4668079
Author: Og B. Maciel <ogmaciel@src.gnome.org>
Date:   Thu Aug 7 02:53:44 2008 +0000

    Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8842

 po/ChangeLog |    4 +
 po/pt_BR.po  | 1526 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 799 insertions(+), 731 deletions(-)

commit 330fd8c42fddc7cb77930b2e72263cd1bbb5e62b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 6 18:35:47 2008 +0000

    fix warning due to left-over developer code (bug #546583)
    
    2008-08-06  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-properties-capplet.c: (create_dialog): fix warning due to
        left-over developer code (bug #546583)
    
    svn path=/trunk/; revision=8841

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 9 +++------
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 6fa37863fd7d9e9e5b1e1e06bc688a31ded05cd4
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Wed Aug 6 08:30:45 2008 +0000

    Updated Arabic Translation by Khaled Hosny.
    
    svn path=/trunk/; revision=8840

 po/ChangeLog |   4 ++
 po/ar.po     | 212 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 106 insertions(+), 110 deletions(-)

commit 5b8b3ac61d2b221dc79b7c8195bc659efa40d7c6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 5 11:53:49 2008 +0000

    updated for 2.23.6.
    
    2008-08-04  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: updated for 2.23.6.
    
    svn path=/trunk/; revision=8838

 ChangeLog    |  5 +++++
 NEWS         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 54 insertions(+), 1 deletion(-)

commit 8c8934b0b69f2aed7beadf6d16195ab0ea6b6c34
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 5 11:47:55 2008 +0000

    added missing file to _SOURCES.
    
    2008-08-04  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: added missing file to _SOURCES.
    
    svn path=/trunk/; revision=8837

 capplets/sound/ChangeLog   | 4 ++++
 capplets/sound/Makefile.am | 1 +
 2 files changed, 5 insertions(+)

commit 517de0961d338b0473b8a61e90229ed66b7a935e
Author: S%G�%@ren Sandmann <sandmann@redhat.com>
Date:   Tue Aug 5 07:21:28 2008 +0000

    Draw rotated outputs rotated.
    
    Tue Aug  5 03:19:23 2008  S%G�%@ren Sandmann  <sandmann@redhat.com>
    
        * xrandr-capplet.c (paint_output): Draw rotated outputs rotated.
    
    
    svn path=/trunk/; revision=8836

 capplets/display/ChangeLog        |  4 ++++
 capplets/display/xrandr-capplet.c | 48 ++++++++++++++++++++++++++++++++++++---
 2 files changed, 49 insertions(+), 3 deletions(-)

commit a5cf3f28cfc2b0f89048bed9fd1853bb6c877adf
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Aug 3 17:32:12 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8835

 po/ChangeLog |   4 +
 po/es.po     | 368 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 205 insertions(+), 167 deletions(-)

commit 05ce6eaabee57b0a9ff108d1f32ddbab6b7d2b14
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 3 08:23:24 2008 +0000

    if the metatheme loaded doesn't define a notification theme don't set it
    
    2008-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set): if the metatheme loaded
        doesn't define a notification theme don't set it to "standard" (bug
        #546036)
    
    svn path=/trunk/; revision=8834

 capplets/common/ChangeLog           | 6 ++++++
 capplets/common/gnome-theme-apply.c | 8 ++------
 2 files changed, 8 insertions(+), 6 deletions(-)

commit bdcf243ddf0d581b1e563d43d23ff6d35bc0a97e
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Sat Aug 2 20:13:39 2008 +0000

    Terminology fixes by Fabrício Godoy.
    
    2008-08-02  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Terminology fixes by Fabrício Godoy.
    
    svn path=/trunk/; revision=8833

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 36 +++++++++++++++++++-----------------
 2 files changed, 23 insertions(+), 17 deletions(-)

commit ee3ab41e5dcaed1ce9a3d84a599ce544803f66ab
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 2 12:59:44 2008 +0000

    Based on a patch by: Alexander Schwenn <alesch@xelaris.net>
    
    2008-08-02  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Alexander Schwenn <alesch@xelaris.net>
    
        * sound-properties-capplet.c: (filter_device_generic),
        (filter_device_alsa), (filter_device_oss),
        (get_device_description), (device_added_alsa), (device_added_oss): add
        some filtering for OSS devices and create more useful device
        descriptions (bug #545275)
    
    svn path=/trunk/; revision=8832

 capplets/sound/ChangeLog                  |  10 +++
 capplets/sound/sound-properties-capplet.c | 141 +++++++++++++++++++++++++++---
 2 files changed, 138 insertions(+), 13 deletions(-)

commit 1b2d3b0509becc607794897fb9c45df5704eefb2
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Fri Aug 1 17:17:02 2008 +0000

    Use an existing icon
    
    svn path=/trunk/; revision=8831

 capplets/mouse/ChangeLog                          | 7 +++++++
 capplets/mouse/gnome-mouse-properties.c           | 2 +-
 capplets/mouse/gnome-settings-mouse.desktop.in.in | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit 59b48aa800e2460a483e7a5dfb40e3aa4d470c21
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Thu Jul 31 14:34:29 2008 +0000

    Updated Galician translation
    
    svn path=/trunk/; revision=8830

 po/ChangeLog   |   4 ++
 po/POTFILES.in |   1 -
 po/gl.po       | 177 +++++++++++++++++++++++++++------------------------------
 3 files changed, 88 insertions(+), 94 deletions(-)

commit 961e02739c93334b0f325c2e301261749166f338
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jul 30 16:03:37 2008 +0000

    remove libsounds from SUBDIRS, too
    
    2008-07-30  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: remove libsounds from SUBDIRS, too
    
    svn path=/trunk/; revision=8829

 ChangeLog   | 4 ++++
 Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4bede81a0a67a3a21affc88b8ab0ce13610115f7
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 29 22:45:18 2008 +0000

    "touch" the custom theme directory every time we make a change (Closes:
    
    2008-07-29  Bastien Nocera  <hadess@hadess.net>
    
        * sound-theme-file-utils.c (custom_theme_update_time):
        * sound-theme-file-utils.h:
        * sound-theme.c (save_custom_theme): "touch" the custom theme
        directory every time we make a change (Closes: #545373)
    
    
    svn path=/trunk/; revision=8828

 capplets/sound/ChangeLog                |  7 +++++++
 capplets/sound/sound-theme-file-utils.c | 14 ++++++++++++++
 capplets/sound/sound-theme-file-utils.h |  2 ++
 capplets/sound/sound-theme.c            |  2 ++
 4 files changed, 25 insertions(+)

commit 7a1896a34b97cabbfaad05cf61ef1b14858833e9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 29 21:10:04 2008 +0000

    make theme installation from GIO-supported sources work (including drag
    
    2008-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main):
        * appearance-themes.c: (theme_drag_data_received_cb):
        * theme-installer.c: (gnome_theme_install),
        (gnome_theme_installer_run):
        * theme-installer.h: make theme installation from GIO-supported
        sources work (including drag and drop) (bug #545335)
    
    svn path=/trunk/; revision=8827

 capplets/appearance/ChangeLog           |  9 ++++++
 capplets/appearance/appearance-main.c   |  9 ++++--
 capplets/appearance/appearance-themes.c |  6 ++--
 capplets/appearance/theme-installer.c   | 52 ++++++++++++---------------------
 capplets/appearance/theme-installer.h   |  2 +-
 5 files changed, 36 insertions(+), 42 deletions(-)

commit ff258486a60dd2b9c3527cd8aae10a1a801837c0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 29 20:21:47 2008 +0000

    make the file transfer dialog work with GFiles instead gchar paths
    
    2008-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_job_destroy),
        (file_transfer_job_schedule), (file_transfer_dialog_copy_async):
        make the file transfer dialog work with GFiles instead gchar paths
        internally
    
    2008-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_from_uri): file transfer
        dialog now uses GFiles internally, so update the caller
    
    svn path=/trunk/; revision=8826

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/theme-installer.c  |  9 ++++----
 capplets/common/ChangeLog              |  7 +++++++
 capplets/common/file-transfer-dialog.c | 38 +++++++++++++++++-----------------
 4 files changed, 36 insertions(+), 23 deletions(-)

commit 15dc0f2a790d72c6fbf625433744807fec2e2962
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 29 18:30:28 2008 +0000

    fix build without libcanberra
    
    2008-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/Makefile.am:
        * configure.in: fix build without libcanberra
    
    svn path=/trunk/; revision=8824

 ChangeLog            | 5 +++++
 capplets/Makefile.am | 2 +-
 configure.in         | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit ebc660f2230ee90419da7580e48a03190e5cf5a9
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jul 29 12:12:34 2008 +0000

    Patch from James Westby <jw+debian@jameswestby.net>
    
    2008-07-29  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Patch from James Westby <jw+debian@jameswestby.net>
    
        * gnome-da-capplet.c (combo_conv_from_widget): don't return NULL, but
        the already set 'ret' variable, to allow Custom commands to work (bug
        #545280)
    
    svn path=/trunk/; revision=8823

 capplets/default-applications/ChangeLog          | 8 ++++++++
 capplets/default-applications/gnome-da-capplet.c | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 5b7ea158a0af50296d53213950b4729a904cd19a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 29 09:56:39 2008 +0000

    Never mind, the define is actually used
    
    2008-07-29  Bastien Nocera  <hadess@hadess.net>
    
        * sound-theme.c (setup_sound_theme_custom): Never mind, the define is
        actually used
    
    
    svn path=/trunk/; revision=8822

 capplets/sound/ChangeLog     | 5 +++++
 capplets/sound/sound-theme.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit dee271f30f236c7988682e3ceef2ddec192e6a0d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 29 08:16:27 2008 +0000

    Remove visual-bell.png, unused now
    
    2008-07-29  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am: Remove visual-bell.png, unused now
    
    
    svn path=/trunk/; revision=8821

 capplets/sound/ChangeLog       |   4 ++++
 capplets/sound/Makefile.am     |   3 ---
 capplets/sound/visual-bell.png | Bin 2381 -> 0 bytes
 3 files changed, 4 insertions(+), 3 deletions(-)

commit 68f14a1f11a66ca60da5920542b6865864980dfe
Author: Soren Sandmann <sandmann@redhat.com>
Date:   Tue Jul 29 05:38:02 2008 +0000

    Add a check box to turn on and off display icon.
    
    Tue Jul 29 01:35:31 2008  Soren Sandmann  <sandmann@redhat.com>
    
        * xrandr-capplet.c: Add a check box to turn on and off display icon.
    
    
    svn path=/trunk/; revision=8820

 capplets/display/ChangeLog             |   4 +
 capplets/display/display-capplet.glade | 640 +++++++++++++--------------------
 capplets/display/xrandr-capplet.c      |  26 +-
 3 files changed, 288 insertions(+), 382 deletions(-)

commit e2d17cf1448f5c9725519ba24d93f22b8ba0dfd8
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Tue Jul 29 01:29:26 2008 +0000

    Updated Arabic Translation by Khaled Hosny.
    
    svn path=/trunk/; revision=8819

 po/ChangeLog |   4 +
 po/ar.po     | 994 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 547 insertions(+), 451 deletions(-)

commit 4b3d8c69577f5b745f1702bbfe589a3072fe99a1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 29 00:40:08 2008 +0000

    Remove unused define
    
    2008-07-29  Bastien Nocera  <hadess@hadess.net>
    
        * sound-theme.c: Remove unused define
    
    
    svn path=/trunk/; revision=8818

 capplets/sound/ChangeLog     | 4 ++++
 capplets/sound/sound-theme.c | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 452957595e9221d9d80822de28a41aede317f828
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jul 29 00:38:14 2008 +0000

    Make sure we require libcanberra 0.4 to get the .disabled support
    
    2008-07-29  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: Make sure we require libcanberra 0.4
        to get the .disabled support
    
    
    svn path=/trunk/; revision=8817

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 07ac9b7c5d0c643e407e04b53394153459a096e5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 28 20:51:28 2008 +0000

    fix critical warning when music directory isn't set
    
    2008-07-28  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-theme.c: (get_sound_filename): fix critical warning when music
        directory isn't set
    
        * (setting_column_edited): fix more leaks
    
        * (theme_changed_custom_reinit): when resetting a theme, also reset
        the preview icon status
    
    svn path=/trunk/; revision=8816

 capplets/sound/ChangeLog     | 10 ++++++++++
 capplets/sound/sound-theme.c | 22 ++++++++++++++++------
 2 files changed, 26 insertions(+), 6 deletions(-)

commit 0a36199bb61cb228f54d666dc041fea5db11a121
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 28 20:12:58 2008 +0000

    plug some leaks, simplify and/or clarify some code
    
    2008-07-28  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-theme.c: (load_index_theme_name),
        (set_combox_for_theme_name), (theme_combobox_changed),
        (setup_sound_theme), (get_sound_filename), (dump_theme),
        (setting_column_edited), (setup_sound_theme_custom): plug some leaks,
        simplify and/or clarify some code
    
    svn path=/trunk/; revision=8815

 capplets/sound/ChangeLog     |  8 +++++
 capplets/sound/sound-theme.c | 84 +++++++++++++++++++-------------------------
 2 files changed, 44 insertions(+), 48 deletions(-)

commit 0b295549ddfd65da5c76ba064c6363800738f35f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 28 19:45:24 2008 +0000

    don't preview sounds for insensitive rows
    
    2008-07-28  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-theme.c: (custom_treeview_button_press_event_cb): don't
        preview sounds for insensitive rows
    
    svn path=/trunk/; revision=8814

 capplets/sound/ChangeLog     | 5 +++++
 capplets/sound/sound-theme.c | 9 ++++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit fa3263b0fb5b9fac2dc947a7f78dba8e97475bf4
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Mon Jul 28 19:20:48 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8813

 po/ChangeLog |   4 +
 po/gl.po     | 286 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 195 insertions(+), 95 deletions(-)

commit 5cc13a9b718fc0c36524c247ac53e95b1e17add3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 28 18:29:54 2008 +0000

    When selecting a non-custom sound (such as disabled, or builtin), don't
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * sound-theme.c (setting_set_func), (fill_custom_model),
        (save_sounds), (count_customised_sounds), (setting_column_edited):
        When selecting a non-custom sound (such as disabled, or builtin),
        don't remove the previous custom file's filename from the tree store,
        When a custom file was previously selected, always show it in the
        combo box drop-down (Closes: #545055)
    
    
    svn path=/trunk/; revision=8812

 capplets/sound/ChangeLog     |  9 +++++++++
 capplets/sound/sound-theme.c | 47 +++++++++++++++++++++++++++++---------------
 2 files changed, 40 insertions(+), 16 deletions(-)

commit 9341801a3467ecd9b3bfeb4b50975703b5922e51
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jul 28 18:08:23 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-07-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8811

 po/ChangeLog |   4 +
 po/nb.po     | 677 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 283 insertions(+), 398 deletions(-)

commit ee2b7e711b896bda43626d64ec0f6a29c29d223e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 28 17:35:38 2008 +0000

    When selecting custom files, listen to "update-preview", and try to play
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * sound-theme.c (play_sound_preview), (get_sound_filename):
        When selecting custom files, listen to "update-preview", and try
        to play everything that the user might select (Closes: #545056)
    
    
    svn path=/trunk/; revision=8810

 capplets/sound/ChangeLog     |  6 ++++++
 capplets/sound/sound-theme.c | 27 +++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

commit e8779d1c8bea155ae268108557d9d1a04c756c2e
Author: Bastien Nocera <hadess@src.gnome.org>
Date:   Mon Jul 28 14:52:27 2008 +0000

    Fix changelog
    
    svn path=/trunk/; revision=8809

 ChangeLog                | 7 -------
 capplets/sound/ChangeLog | 7 +++++++
 2 files changed, 7 insertions(+), 7 deletions(-)

commit 2f22b9318e4160b47b70e2909210eb068c29ef4a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 28 14:45:41 2008 +0000

    Fix permissions on the custom theme directory, otherwise not even the user
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * sound-theme.c (save_custom_theme): Fix permissions on the
        custom theme directory, otherwise not even the user can read the files
        in there
    
    
    svn path=/trunk/; revision=8808

 capplets/sound/ChangeLog     | 6 ++++++
 capplets/sound/sound-theme.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 2d9043878a7a63bd1d85792e07f3ed2b112b0021
Author: Lennart Poettering <lpoetter@src.gnome.org>
Date:   Mon Jul 28 14:11:36 2008 +0000

    Pass 'cache control' and 'enable' properties to ca_gtk_play_for_widget()
    
    svn path=/trunk/; revision=8807

 ChangeLog                    | 7 +++++++
 capplets/sound/sound-theme.c | 4 ++++
 2 files changed, 11 insertions(+)

commit 946ecfafb67895a24c7f497dd8c9dd53eaf0ac8f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 28 13:28:05 2008 +0000

    Fix build for the previous change
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * theme-installer.c (cleanup_tmp_dir):
        * theme-util.c (theme_delete): Fix build for the previous change
    
    
    svn path=/trunk/; revision=8806

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/theme-installer.c | 3 ++-
 capplets/appearance/theme-util.c      | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit 8ed8f4c9ce3d6194e63be0a3b1bf8325813d24d4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jul 28 11:08:24 2008 +0000

    Remove libsounds and esound usage, check for libcanberra instead (Closes:
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * configure.in: Remove libsounds and esound usage, check for
        libcanberra instead (Closes: #542979)
    
    
    svn path=/trunk/; revision=8805

 configure.in | 38 ++++++++++----------------------------
 1 file changed, 10 insertions(+), 28 deletions(-)

commit 6297a3ea37382abff572d9fdb6b40d02386f1c23
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Mon Jul 28 05:06:35 2008 +0000

    Revert the last change
    
    svn path=/trunk/; revision=8804

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 75bfe5bca1f77d79f1a0f8b06db448f9233da875
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Jul 27 23:45:04 2008 +0000

    Add a few more files to translate, from the libcanberra support
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * POTFILES.in: Add a few more files to translate, from the
        libcanberra support
    
    
    svn path=/trunk/; revision=8803

 po/ChangeLog   | 5 +++++
 po/POTFILES.in | 2 ++
 2 files changed, 7 insertions(+)

commit 2cac70eea329ad71044c1f688d32329224bb3d2b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Jul 27 23:32:35 2008 +0000

    Remove libsounds and esound usage, check for libcanberra instead (Closes:
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * configure.in: Remove libsounds and esound usage, check for
        libcanberra instead (Closes: #542979)
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * theme-util.c:
        * theme-util.h: Remove the directory deletion helpers, and
        move them to the common sub-directory
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * capplet-util.c (directory_delete_recursive),
        (capplet_file_delete_recursive):
        * capplet-util.h: Move directory deletion helper function
        from the appearance capplet into a common directory
    
    2008-07-28  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * sound-properties-capplet.c (create_dialog), (setup_dialog),
        (get_legacy_settings):
        * sound-properties.glade:
        * sound-theme-definition.h:
        * sound-theme-file-utils.[ch]:
        * sound-theme.[ch]: Remove separate bell settings tab, remove
        libsounds dependency, add freedesktop sound theme support through
        libcanberra (Closes: #542979)
    
    
    svn path=/trunk/; revision=8802

 ChangeLog                                 |    6 +
 capplets/appearance/ChangeLog             |    6 +
 capplets/appearance/theme-util.c          |   61 --
 capplets/appearance/theme-util.h          |    2 +-
 capplets/common/ChangeLog                 |   10 +-
 capplets/common/Makefile.am               |   10 +-
 capplets/common/capplet-util.c            |   70 ++
 capplets/common/capplet-util.h            |    2 +
 capplets/sound/ChangeLog                  |   12 +
 capplets/sound/Makefile.am                |   16 +-
 capplets/sound/sound-properties-capplet.c |  114 +--
 capplets/sound/sound-properties.glade     |  314 ++++----
 capplets/sound/sound-theme-definition.h   |   71 ++
 capplets/sound/sound-theme-file-utils.c   |  152 ++++
 capplets/sound/sound-theme-file-utils.h   |   36 +
 capplets/sound/sound-theme.c              | 1135 +++++++++++++++++++++++++++++
 capplets/sound/sound-theme.h              |   31 +
 17 files changed, 1705 insertions(+), 343 deletions(-)

commit 16ad9834cace8775b1b27e243c59413bafe2f7ce
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Sun Jul 27 23:11:35 2008 +0000

    More broken icons
    
    svn path=/trunk/; revision=8801

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit eeeb09ea0af74b5700e17315a8d02d320beb3678
Author: Leonardo Ferreira Fontenelle <leonardof@gnome.org>
Date:   Sun Jul 27 16:27:25 2008 +0000

    Fixed translation of "lock" (by Vladimir Melo).
    
    2008-07-27  Leonardo Ferreira Fontenelle  <leonardof@gnome.org>
    
        * pt_BR.po: Fixed translation of "lock" (by Vladimir Melo).
    
    svn path=/trunk/; revision=8800

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 11 +++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit b12c81b9ed527bbb827bb92e0897d373ecf399ab
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sat Jul 26 10:51:30 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8799

 po/ChangeLog |  4 ++++
 po/gl.po     | 76 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 49 insertions(+), 31 deletions(-)

commit 20868f5edd1c9c4136d70afc82b275e73d3a804c
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Jul 26 10:42:37 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8798

 po/ChangeLog |    4 +
 po/sv.po     | 1464 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 775 insertions(+), 693 deletions(-)

commit 42cec0571a3193e4ce0e070bdcbf0f67bb572876
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Jul 26 09:54:31 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8797

 po/ChangeLog |  4 ++++
 po/es.po     | 75 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 44 insertions(+), 35 deletions(-)

commit 4a8637592ad2411df7bd0faac2f3bccd9a8fdf38
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jul 26 09:13:40 2008 +0000

    Based on a patch by: Denis Washington <denisw@svn.gnome.org>
    
    2008-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Denis Washington <denisw@svn.gnome.org>
    
        * gnome-keybinding-properties.c: (binding_name), (show_error),
        (accel_edited_callback): when trying to assign a shortcut that is
        already in use, ask the user whether to reassign it instead of
        refusing to do anything (bug #133318)
    
    svn path=/trunk/; revision=8796

 capplets/keybindings/ChangeLog                     |   9 ++
 capplets/keybindings/gnome-keybinding-properties.c | 118 ++++++++++++++++-----
 2 files changed, 102 insertions(+), 25 deletions(-)

commit bb97264fdde6a0e7dc35df153e4141d4bf6eacde
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Thu Jul 24 20:19:50 2008 +0000

    configure.in NEWS Updated for 2.23.5
    
    Thu Jul 24 15:34:50 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * configure.in
        * NEWS
        Updated for 2.23.5
    
        * configure.in, Makefile.am
        Make typing-break a conditional to make it distcheck
    
    
    svn path=/trunk/; revision=8794

 ChangeLog    |  9 +++++++++
 Makefile.am  |  6 +++++-
 NEWS         | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  6 ++++--
 4 files changed, 65 insertions(+), 3 deletions(-)

commit 47a1063481d028881cacb04c25db0dd9dfe6598c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 24 16:34:17 2008 +0000

    use -x instead of -e as exec_flag for Terminator (bug #544058)
    
    2008-07-24  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-default-applications.xml.in: use -x instead of -e as exec_flag
        for Terminator (bug #544058)
    
    svn path=/trunk/; revision=8793

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c2834b8eb9f2fbe6b1390242772b0171bdb2b472
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Jul 21 20:59:21 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8792

 po/ChangeLog |   4 +
 po/es.po     | 270 +++++++++++++----------------------------------------------
 2 files changed, 62 insertions(+), 212 deletions(-)

commit dfb3ffda0c9d2163d0d49e7a7324197bddc73fee
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 20 09:38:36 2008 +0000

    don't delete ~/.icons when deleting the last icon theme (bug #543763)
    
    2008-07-20  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-util.c: (theme_delete): don't delete ~/.icons when deleting
        the last icon theme (bug #543763)
    
    svn path=/trunk/; revision=8791

 capplets/appearance/ChangeLog    |  5 +++++
 capplets/appearance/theme-util.c | 16 ++++++++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

commit 8e7530a1cf10d0f26a19111bb87e8df17c1bd9a7
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sat Jul 19 07:47:49 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8790

 po/ChangeLog |   4 +
 po/gl.po     | 688 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 336 insertions(+), 356 deletions(-)

commit 0ba78d2c2021122b6a6b191746c85f39b5a0425b
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Fri Jul 18 22:05:10 2008 +0000

    Fixed POTFILES.in so l10n.gnome.org can update stats
    
    svn path=/trunk/; revision=8789

 po/POTFILES.in | 5 -----
 1 file changed, 5 deletions(-)

commit 56d5198b1612c1b0bfbf679761a5b10023d0a0b1
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jul 18 08:53:42 2008 +0000

    removed VFS methods code.
    
    2008-07-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * Makefile.am:
        * vfs-methods/*: removed VFS methods code.
    
    svn path=/trunk/; revision=8788

commit 60405416ebd3dea5edcc13425564733e37fe8e02
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jul 18 08:53:01 2008 +0000

    removed VFS methods code.
    
    2008-07-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * Makefile.am:
        * vfs-methods/*: removed VFS methods code.
    
    svn path=/trunk/; revision=8787

 ChangeLog                                          |   6 +
 Makefile.am                                        |   2 +-
 configure.in                                       |  55 --
 vfs-methods/fontilus/ChangeLog                     | 498 -------------
 vfs-methods/fontilus/Makefile.am                   |  70 --
 vfs-methods/fontilus/font-method.c                 | 820 ---------------------
 vfs-methods/fontilus/font-method.conf              |   2 -
 vfs-methods/fontilus/font-method.directory.in      |   6 -
 vfs-methods/fontilus/font-view.c                   | 483 ------------
 vfs-methods/fontilus/fontilus-context-menu.c       | 229 ------
 vfs-methods/fontilus/fontilus.schemas.in           | 109 ---
 vfs-methods/fontilus/ftstream-vfs.c                | 143 ----
 .../fontilus/gnome-font-viewer.desktop.in.in       |  14 -
 vfs-methods/fontilus/thumbnailer.c                 | 390 ----------
 vfs-methods/themus/ChangeLog                       | 488 ------------
 vfs-methods/themus/Makefile.am                     |  92 ---
 vfs-methods/themus/apply-font.glade                | 233 ------
 vfs-methods/themus/theme-method.c                  | 692 -----------------
 vfs-methods/themus/theme-method.conf               |   2 -
 vfs-methods/themus/theme-method.directory.in       |   6 -
 vfs-methods/themus/theme-thumbnailer.c             | 159 ----
 vfs-methods/themus/themus-properties-main.c        | 130 ----
 vfs-methods/themus/themus-properties-view.c        | 246 -------
 vfs-methods/themus/themus-properties-view.h        |  49 --
 vfs-methods/themus/themus-theme-applier.c          | 137 ----
 .../themus/themus-theme-applier.desktop.in.in      |  16 -
 vfs-methods/themus/themus.schemas.in               |  57 --
 27 files changed, 7 insertions(+), 5127 deletions(-)

commit d7a1af47f5cab6f33005233b4bc9bda69cb1e40e
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Jul 17 18:34:16 2008 +0000

    Updated French translation by Bruno Brouard and Claude Paroz.
    
    2008-07-17  Claude Paroz  <claude@2xlibre.net>
    
        * fr.po: Updated French translation by Bruno Brouard and Claude Paroz.
    
    svn path=/trunk/; revision=8786

 po/ChangeLog |    4 +
 po/fr.po     | 1161 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 608 insertions(+), 557 deletions(-)

commit d9b191f55467477305bdce2e4852bfb887946280
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Wed Jul 16 08:02:07 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8785

 po/ChangeLog |   4 +
 po/he.po     | 710 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 363 insertions(+), 351 deletions(-)

commit 8d42670499cca8854dba44c9c8cd2321579dba2b
Author: S%G�%@ren Sandmann <sandmann@redhat.com>
Date:   Tue Jul 15 22:51:02 2008 +0000

    Don't allow dragging when there is only one connected monitor.
    
    Tue Jul 15 18:48:43 2008  S%G�%@ren Sandmann  <sandmann@redhat.com>
    
        * xrandr-capplet.c: Don't allow dragging when there is only one
        connected monitor.
    
    
    svn path=/trunk/; revision=8784

 capplets/display/ChangeLog        |  5 +++++
 capplets/display/xrandr-capplet.c | 38 +++++++++++++++++++++++++++-----------
 2 files changed, 32 insertions(+), 11 deletions(-)

commit 8ae8397e50e75799beb1408f928da500667d8354
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 15 22:03:57 2008 +0000

    add capplets/default-applications/gnome-default-applications.pc to
    
    2008-07-15  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: add
        capplets/default-applications/gnome-default-applications.pc to
        generated files
    
    2008-07-15  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: install the default apps list in the default-apps
        subdirectory
        * gnome-da-xml.c: (gnome_da_xml_load_list): load everything from there
        * gnome-default-applications.pc.in: add file so that applications can
        query where to put their extensions
    
    svn path=/trunk/; revision=8783

 ChangeLog                                          |  6 +++++
 capplets/default-applications/ChangeLog            | 16 +++++++++++++
 capplets/default-applications/Makefile.am          | 10 +++++----
 capplets/default-applications/gnome-da-xml.c       | 26 +++++-----------------
 .../gnome-default-applications.pc.in               | 10 +++++++++
 configure.in                                       |  1 +
 6 files changed, 44 insertions(+), 25 deletions(-)

commit d0e7d2a09ce223c1aa8cfe99cb20528c9533c1e6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 15 21:37:12 2008 +0000

    Patch by: Aprotim Sanyal <aprotim@google.com>
    
    2008-07-15  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Aprotim Sanyal <aprotim@google.com>
    
        * gnome-da-xml.c: (gnome_da_xml_load_list): make it possible for apps
        to install additional XML files to extend the list of available
        applications (bug #527304)
    
    svn path=/trunk/; revision=8782

 capplets/default-applications/ChangeLog      |  8 ++++++++
 capplets/default-applications/gnome-da-xml.c | 21 ++++++++++++++++++++-
 2 files changed, 28 insertions(+), 1 deletion(-)

commit 536abe1a33b0241bf0618811c3bde9bd216c7781
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Tue Jul 15 18:23:31 2008 +0000

            Bug 533611 - add notification themes to the metatheme format
    
            * appearance-themes.c: When loading a metatheme from GConf, read
            the notification theme from /apps/notification-daemon/theme.
    
            * appearance-theme-save.c: When saving a metatheme to disk,
            save the notification theme with the key NotificationTheme.
    
            * appearance-theme-util.h: Add a define for the GConf key
            used for notification theme.
    
    
            * gnome-theme-apply.c: When applying a metatheme, apply
            the notification theme, too.
    
            * gnome-theme-info.h: Add a notification_theme_name field
            to the metatheme info struct.
    
            * gnome-theme-info.c: When reading a metatheme from a keyfile,
            handle notification themes.
    
    
    svn path=/trunk/; revision=8781

 capplets/appearance/ChangeLog           | 13 +++++++++++++
 capplets/appearance/appearance-themes.c |  2 ++
 capplets/appearance/theme-save.c        |  6 ++++++
 capplets/appearance/theme-util.h        |  1 +
 capplets/common/ChangeLog               | 13 +++++++++++++
 capplets/common/gnome-theme-apply.c     | 13 +++++++++++++
 capplets/common/gnome-theme-info.c      |  9 +++++++++
 capplets/common/gnome-theme-info.h      |  1 +
 8 files changed, 58 insertions(+)

commit 5eda759c1bd9c8416ee2328afb936ae35582bad4
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Jul 15 16:22:37 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8780

 po/ChangeLog |   4 +++
 po/es.po     | 115 ++++++++++++++---------------------------------------------
 2 files changed, 30 insertions(+), 89 deletions(-)

commit f231906a57f4748c48b88df2a174f2402685092b
Author: Claude Paroz <claude@2xlibre.net>
Date:   Mon Jul 14 19:46:41 2008 +0000

    Updated file list.
    
    2008-07-14  Claude Paroz  <claude@2xlibre.net>
    
        * POTFILES.in: Updated file list.
    
    svn path=/trunk/; revision=8779

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 13f6a9ef0372635f165742f3ca6d805822817ba0
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Thu Jul 10 18:49:58 2008 +0000

    Remove this obsolete file.
    
    Thu Jul 10 14:46:37 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * main.c: Remove this obsolete file.
    
        * xrandr-capplet.c: Remove debug spew; add translation.
    
        * TODO: Various updates.
    
    
    svn path=/trunk/; revision=8778

 capplets/display/ChangeLog        |   8 +
 capplets/display/TODO             |  36 +-
 capplets/display/main.c           | 915 --------------------------------------
 capplets/display/xrandr-capplet.c |  45 +-
 4 files changed, 65 insertions(+), 939 deletions(-)

commit 373cb340690df84b38a26caef08650090bbeed49
Author: Gerd Kohlberger <gerdk@svn.gnome.org>
Date:   Tue Jul 8 15:00:12 2008 +0000

    Remove pa.po from toplevel help dir. A newer version is in the right
    
    2008-07-08  Gerd Kohlberger  <gerdk@svn.gnome.org>
    
        Remove pa.po from toplevel help dir. A newer version is in
        the right location (pa/pa.po). See the changelog entry from
        2007-01-25.
    
    
    svn path=/trunk/; revision=8777

 help/ChangeLog |   6 ++++
 help/pa.po     | 102 ---------------------------------------------------------
 2 files changed, 6 insertions(+), 102 deletions(-)

commit bd287f7dac124bf24c2dd7581bce09a9ab1147a7
Author: Gerd Kohlberger <gerdk@svn.gnome.org>
Date:   Tue Jul 8 14:36:19 2008 +0000

    Decrease lower boundary of dwell delay to 0.2.
    
    2008-07-08  Gerd Kohlberger  <gerdk@svn.gnome.org>
    
        * gnome-mouse-properties.glade: Decrease lower boundary of dwell
        delay to 0.2.
    
    
    svn path=/trunk/; revision=8776

 capplets/mouse/ChangeLog                    | 5 +++++
 capplets/mouse/gnome-mouse-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c730e50dacee17121cc2a55882cd8a519d715dbd
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Mon Jul 7 17:10:18 2008 +0000

    Updated Belarusian Latin translation by Ihar Hrachyshka.
    
    svn path=/trunk/; revision=8775

 po/ChangeLog   |    5 +
 po/be@latin.po | 1012 +++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 594 insertions(+), 423 deletions(-)

commit 45627e45aaf572acd43b13521c377fa45e0ace01
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sun Jul 6 03:38:07 2008 +0000

    updating for Gurmukhi Script Punjabi Language by ASB
    
    svn path=/trunk/; revision=8774

 po/pa.po | 1392 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 638 insertions(+), 754 deletions(-)

commit 52dd56e649b287f7620f6fc043c66bda7a4b97dc
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Jul 5 03:30:52 2008 +0000

    Updated Thai translation.
    
    2008-07-05  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8773

 po/ChangeLog |   4 ++
 po/th.po     | 184 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 105 insertions(+), 83 deletions(-)

commit 3b4d3d0a65b91acaa3ae8855c302d70722ad442d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jul 2 20:51:16 2008 +0000

    Patch by: Andrey Gusev <ronne@list.ru>
    
    2008-07-02  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Andrey Gusev <ronne@list.ru>
    
        * drw-break-window.c: (drw_break_window_init): make the typing break
        window modal so it properly locks the screen when apps like firefox
        are running in fullscreen mode (bug #441786)
    
    svn path=/trunk/; revision=8772

 typing-break/ChangeLog          | 8 ++++++++
 typing-break/drw-break-window.c | 1 +
 2 files changed, 9 insertions(+)

commit 5290bb2533e495ecf224483c14c66ed6b3b43fb0
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Wed Jul 2 18:23:52 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8771

 po/ChangeLog |   4 +
 po/oc.po     | 950 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 540 insertions(+), 414 deletions(-)

commit feacdff5031623c61ba74cc6320cf8889cb288f7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 27 16:52:18 2008 +0000

    Based on a patch by: Andrey Gusev <ronne@list.ru>
    
    2008-06-27  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Andrey Gusev <ronne@list.ru>
    
        * drwright.c: (break_window_postpone_cb): when postponing a break
        don't go right back to warn state, but award some bonus time according
        to the already elapsed break time (bug #133295)
    
    svn path=/trunk/; revision=8770

 typing-break/ChangeLog  |  8 ++++++++
 typing-break/drwright.c | 12 ++++++++----
 2 files changed, 16 insertions(+), 4 deletions(-)

commit ccffbf099985984e5cca246a49001b8f611b08f8
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Jun 27 12:51:11 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8769

 po/ChangeLog |   4 +
 po/es.po     | 243 ++++++++++++++++++++---------------------------------------
 2 files changed, 84 insertions(+), 163 deletions(-)

commit c72db1954fd378143269794c53d9cc25fc3db0cf
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jun 24 23:44:17 2008 +0000

    Add missing file. Updated Norwegian bokmål translation.
    
    2008-06-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Add missing file.
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8768

 po/ChangeLog   |   5 ++
 po/POTFILES.in |   1 +
 po/nb.po       | 168 ++++++++++++++++++++-------------------------------------
 3 files changed, 64 insertions(+), 110 deletions(-)

commit d6c6b7362ca5ac76fd3f6b6d1603e27d7e70cac8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 21 10:20:57 2008 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2008-06-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * at-properties.desktop.in.in:
        * main.c: (setup_dialog): use standard icon name from the icon naming
        spec (bug #539336)
    
    2008-06-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * appearance-main.c: (main):
        * data/gnome-appearance-properties.desktop.in.in: use standard icon
        name from the icon naming spec (bug #539339)
    
    2008-06-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * gnome-keybinding-properties.c: (setup_dialog):
        * keybinding.desktop.in.in: update icon name to use what
        gnome-icon-theme uses (bug #539338)
    
    2008-06-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * gnome-keyboard-properties.c: (main):
        * keyboard.desktop.in.in: use standard icon name from the icon naming
        spec (bug #539340)
    
    2008-06-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * gnome-window-properties.c: (main):
        * window-properties.desktop.in.in: update icon name to use what
        gnome-icon-theme uses (bug #539343)
    
    svn path=/trunk/; revision=8767

 capplets/accessibility/at-properties/ChangeLog                    | 8 ++++++++
 capplets/accessibility/at-properties/at-properties.desktop.in.in  | 2 +-
 capplets/accessibility/at-properties/main.c                       | 2 +-
 capplets/appearance/ChangeLog                                     | 8 ++++++++
 capplets/appearance/appearance-main.c                             | 2 +-
 .../appearance/data/gnome-appearance-properties.desktop.in.in     | 2 +-
 capplets/keybindings/ChangeLog                                    | 8 ++++++++
 capplets/keybindings/gnome-keybinding-properties.c                | 2 +-
 capplets/keybindings/keybinding.desktop.in.in                     | 2 +-
 capplets/keyboard/ChangeLog                                       | 8 ++++++++
 capplets/keyboard/gnome-keyboard-properties.c                     | 2 +-
 capplets/keyboard/keyboard.desktop.in.in                          | 2 +-
 capplets/windows/ChangeLog                                        | 8 ++++++++
 capplets/windows/gnome-window-properties.c                        | 2 +-
 capplets/windows/window-properties.desktop.in.in                  | 2 +-
 15 files changed, 50 insertions(+), 10 deletions(-)

commit cb2c6b7770d0f0de128a19beb8ba42bf8d4d6365
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 18 17:53:37 2008 +0000

    fix cairo include
    
    2008-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * scrollarea.h: fix cairo include
    
    svn path=/trunk/; revision=8766

 capplets/display/ChangeLog    | 4 ++++
 capplets/display/scrollarea.h | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9b9c37a68ec1dda0c112954b0cf487587d63b390
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 18 17:48:39 2008 +0000

    bump gnome-desktop requirement to 2.23.5
    
    2008-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: bump gnome-desktop requirement to 2.23.5
    
    svn path=/trunk/; revision=8765

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b89a70f268a8bd80a728a51c289077828ec0e927
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 18 17:47:31 2008 +0000

    require intltool >= 0.40
    
    2008-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * configure.in: require intltool >= 0.40
    
    svn path=/trunk/; revision=8764

 ChangeLog    |  5 +++++
 Makefile.am  | 10 ++--------
 configure.in |  2 +-
 3 files changed, 8 insertions(+), 9 deletions(-)

commit 4f948808c91c38e0fa7cf08d3a02e9a8ea1273d1
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Wed Jun 18 17:08:25 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-06-18  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8763

 po/ChangeLog |   4 +
 po/et.po     | 888 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 522 insertions(+), 370 deletions(-)

commit 324f02cea30445e2e1fa78a8098282602ada961d
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Tue Jun 17 23:52:37 2008 +0000

    +Tue Jun 17 19:51:03 2008  S�ren Sandmann  <sandmann@redhat.com>
    +
    +   * Merge randr-12 to trunk
    +
    +Tue Jun 17 18:29:46 2008  S�ren Sandmann  <sandmann@redhat.com>
    +
    +   * Port to changes in gnome-desktop
    +
    +2008-06-04  Federico Mena Quintero  <federico@novell.com>
    +
    +   * xrandr-capplet.c (driver_is_randr_10): New function, currently
    +   unused, to detect whether the graphics driver used in the X server
    +   only supports the RANDR 1.0 API.  We may find this information
    +   useful to tell the user that not all the features in the capplet
    +   will work as intended, or to actually disable features that won't work.
    +
    +2008-05-29  Federico Mena Quintero  <federico@novell.com>
    +
    +   * xrandr-capplet.c (apply): Before applying the settings, check if
    +   the X server supports the Virtual size we need.
    +   (check_required_virtual_size): New function; does the checking
    +   against what the X server supports.
    +   This still needs to present a friendly dialog box.
    +   (compute_virtual_size_for_configuration): New function.
    +
    +Wed May 14 18:16:10 2008  S�ren Sandmann  <sandmann@redhat.com>
    +
    +   * xrandr-capplet.c: Add GNOME_DESKTOP_USE_UNSTABLE_API define
    +
    +   * scrollarea.[ch]: Add copyright statement
    +
    +2008-05-14  Soren Sandmann Pedersen  <sandmann@redhat.com>
    +
    +   * *: Check in new RandR 1.2 enabled capplet
    +
    
    
    svn path=/trunk/; revision=8762

 capplets/appearance/appearance-desktop.c |    7 +
 capplets/display/ChangeLog               |   35 +
 capplets/display/Makefile.am             |   11 +-
 capplets/display/TODO                    |  815 +++++++++++++
 capplets/display/build.sh                |    1 +
 capplets/display/display-capplet.glade   |  387 ++++++
 capplets/display/foo-marshal.c           |  279 +++++
 capplets/display/foo-marshal.h           |   63 +
 capplets/display/scrollarea.c            | 1920 ++++++++++++++++++++++++++++++
 capplets/display/scrollarea.h            |  124 ++
 capplets/display/xrandr-capplet.c        | 1708 ++++++++++++++++++++++++++
 11 files changed, 5349 insertions(+), 1 deletion(-)

commit 29d0d290051216f797bf68d1be0cf3f02d718e5f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 16 15:48:47 2008 +0000

    update for 2.23.4 Increased gnome-desktop version requirement
    
    2008-06-16  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: update for 2.23.4
        Increased gnome-desktop version requirement
    
    svn path=/trunk/; revision=8758

 ChangeLog    |  6 ++++++
 NEWS         | 22 ++++++++++++++++++++++
 configure.in |  4 ++--
 3 files changed, 30 insertions(+), 2 deletions(-)

commit ebaacdc9643bd6c527bdd7a7dafb437239fc73d9
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 16 15:48:24 2008 +0000

    skip themus files
    
    2008-06-16  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * POTFILES.in:
        * POTFILES.skip: skip themus files
    
    svn path=/trunk/; revision=8757

 po/ChangeLog     | 5 +++++
 po/POTFILES.in   | 8 --------
 po/POTFILES.skip | 8 ++++++++
 3 files changed, 13 insertions(+), 8 deletions(-)

commit 02ea07d4744c89637b7f6eb4a4dfef8f645b3143
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jun 15 17:45:40 2008 +0000

    Provide a Tango style application icon for Preferred Applications capplet
    
    2008-06-15  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am:
        * icons/*:
    
        Provide a Tango style application icon for Preferred Applications
        capplet (bug 397312). Artwork by Jakub Steiner <jimmac@ximian.com>.
    
    svn path=/trunk/; revision=8756

 capplets/default-applications/ChangeLog            |     8 +
 capplets/default-applications/Makefile.am          |    25 +
 .../16x16/gnome-settings-default-applications.png  |   Bin 0 -> 748 bytes
 .../22x22/gnome-settings-default-applications.png  |   Bin 0 -> 1310 bytes
 .../24x24/gnome-settings-default-applications.png  |   Bin 0 -> 1340 bytes
 .../32x32/gnome-settings-default-applications.png  |   Bin 0 -> 1727 bytes
 .../48x48/gnome-settings-default-applications.png  |   Bin 0 -> 2825 bytes
 .../icons/svg/preferred-applications.svg           | 12680 +++++++++++++++++++
 8 files changed, 12713 insertions(+)

commit f02941bf840fe784ea71692b953b97c3bcb500b4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 15 13:54:57 2008 +0000

    Patch by: Andrey Gusev <ronne@list.ru>
    
    2008-06-15  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Andrey Gusev <ronne@list.ru>
    
        * drwright.c: (update_icon), (blink_timeout_cb),
        (maybe_change_state), (update_tooltip), (break_window_postpone_cb):
        when postponing a voluntary break, go back to the state before taking
        the break instead of going to warn state as we do when a regular
        break is postponed (bug #134595)
    
    svn path=/trunk/; revision=8755

 typing-break/ChangeLog  | 10 ++++++++++
 typing-break/drwright.c | 49 +++++++++++++++++++++++--------------------------
 2 files changed, 33 insertions(+), 26 deletions(-)

commit 96fa8aee2589d5897333ab8b85de37a8f2388bd8
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Wed Jun 11 21:37:04 2008 +0000

    Updated Arabic Translation by Khaled Hosny.
    
    svn path=/trunk/; revision=8754

 po/ChangeLog |    4 +
 po/ar.po     | 1833 +++++++++++++++-------------------------------------------
 2 files changed, 476 insertions(+), 1361 deletions(-)

commit 568e96ab707de0b6e1921bf95c3aee316aab4547
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Jun 11 20:21:20 2008 +0000

    Translation updated.
    
    2008-06-11  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=8753

 po/ChangeLog | 4 ++++
 po/hu.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 3736af989e1079a0e51cc7701d2a1ba362520a7b
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Jun 11 10:36:50 2008 +0000

    Updated Thai translation.
    
    2008-06-11  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8752

 po/ChangeLog |   4 +
 po/th.po     | 949 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 547 insertions(+), 406 deletions(-)

commit 49806c70efc6f2dd9226ed0e37d1d8ca5fb5e00b
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Jun 8 12:19:13 2008 +0000

    Updated zh_CN translation.
    
    svn path=/trunk/; revision=8751

 po/ChangeLog |   4 +
 po/zh_CN.po  | 863 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 489 insertions(+), 378 deletions(-)

commit 7262b092120f69e0e93e6b0a694b77b5a263cd25
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jun 7 16:33:00 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-06-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8750

 po/ChangeLog |   4 ++
 po/nb.po     | 218 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 107 insertions(+), 115 deletions(-)

commit bbb5e2c49fac0f6727f398a7d48e805fd97b3f7c
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Jun 7 13:33:09 2008 +0000

    Updated Spansih translation
    
    svn path=/trunk/; revision=8749

 po/ChangeLog |   4 +
 po/es.po     | 387 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 207 insertions(+), 184 deletions(-)

commit 1147b57debb7f42da612e76793c0ecc3b2d1ffae
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 3 22:11:26 2008 +0000

    updated for 2.23.3
    
    2008-06-04  Jens Granseuer  <jensgr@gmx.net>
    
        * NEWS: updated for 2.23.3
    
    svn path=/trunk/; revision=8746

 ChangeLog |  6 ++++++
 NEWS      | 31 +++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

commit f1dcfe1a2c836f05922848a9fb7a763bc4acdef8
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Tue Jun 3 19:56:42 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8745

 po/ChangeLog |  4 ++++
 po/gl.po     | 64 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 35 insertions(+), 33 deletions(-)

commit a7328c3a1ca9c1420844d4d392c48812db234c50
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Mon Jun 2 06:36:04 2008 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=8744

 po/ChangeLog |  4 ++++
 po/vi.po     | 59 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 31 insertions(+), 32 deletions(-)

commit 59701e3a60fc1d757dae6f18ec3c453c400efef8
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jun 1 22:27:55 2008 +0000

    Delay the creation of the wallpaper file chooser dialog to save time on
    
    2008-06-01  Thomas Wood  <thos@gnome.org>
    
        * appearance-desktop.c: (wp_props_wp_selected), (wp_load_stuffs),
        (wp_select_after_realize), (desktop_init), (desktop_shutdown):
    
        Delay the creation of the wallpaper file chooser dialog to save time on
        start up.
    
    svn path=/trunk/; revision=8743

 capplets/appearance/ChangeLog            |   8 ++
 capplets/appearance/appearance-desktop.c | 126 ++++++++++++++++++-------------
 2 files changed, 80 insertions(+), 54 deletions(-)

commit 4da6d2f501985264f5d573fbd302c22a028c148c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jun 1 16:57:56 2008 +0000

    Remove some redundant and unused code
    
    2008-06-01  Thomas Wood  <thos@gnome.org>
    
        * capplet-util.c:
        * capplet-util.h:
    
        Remove some redundant and unused code
    
    svn path=/trunk/; revision=8742

 capplets/common/ChangeLog      |   7 ++
 capplets/common/capplet-util.c | 264 -----------------------------------------
 capplets/common/capplet-util.h |  43 +------
 3 files changed, 8 insertions(+), 306 deletions(-)

commit c8f2e99ecd33912932ce44c6bd2bbd28070f9ae7
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jun 1 16:36:35 2008 +0000

    Remove themus from build.
    
    2008-06-01  Thomas Wood  <thos@gnome.org>
    
        * configure.in:
        * vfs-methods/Makefile.am:
        Remove themus from build.
    
    svn path=/trunk/; revision=8741

 ChangeLog               |  6 ++++++
 configure.in            | 27 +--------------------------
 vfs-methods/Makefile.am |  2 +-
 3 files changed, 8 insertions(+), 27 deletions(-)

commit 727f99a6a9332a807282cc0aebd448cb885be50a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 1 15:00:18 2008 +0000

    make editing the shortcut action work for custom bindings
    
    2008-06-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (create_dialog), (accel_set_func),
        (description_set_func), (keybinding_key_changed),
        (keybinding_description_changed), (clear_old_model),
        (append_keys_to_tree), (parse_start_tag),
        (append_keys_to_tree_from_file), (append_keys_to_tree_from_gconf),
        (cb_check_for_uniqueness), (accel_edited_callback),
        (accel_cleared_callback), (description_edited_callback),
        (real_start_editing_cb), (start_editing_cb), (setup_dialog):
        make editing the shortcut action work for custom bindings
    
    svn path=/trunk/; revision=8740

 capplets/keybindings/ChangeLog                     |  12 ++
 capplets/keybindings/gnome-keybinding-properties.c | 232 ++++++++++++++-------
 2 files changed, 173 insertions(+), 71 deletions(-)

commit 9cccf17fe812ae0332b65af709ea9b791c97c831
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Jun 1 13:19:25 2008 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=8739

 po/ChangeLog |   4 +
 po/vi.po     | 454 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 234 insertions(+), 224 deletions(-)

commit def5682789be22b31e8d2056e804a7acebffccda
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Jun 1 11:48:32 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8738

 po/ChangeLog |   4 +
 po/gl.po     | 341 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 177 insertions(+), 168 deletions(-)

commit c1c3dc2067666fb0200e49b6febd5c141e2b94d1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 31 12:54:37 2008 +0000

    add initial support for editing custom shortcuts (bug #114796).
    
    2008-05-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (append_keys_to_tree),
        (parse_start_tag), (append_keys_to_tree_from_file),
        (append_keys_to_tree_from_gconf), (reload_key_entries): add
        initial support for editing custom shortcuts (bug #114796).
        Adding/deleting shortcuts is not yet possible
    
    svn path=/trunk/; revision=8737

 capplets/keybindings/ChangeLog                     |   8 ++
 capplets/keybindings/gnome-keybinding-properties.c | 113 +++++++++++++++++----
 2 files changed, 101 insertions(+), 20 deletions(-)

commit 1cf5fbe409f8ff6670e167c64207d5867880b3a6
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Sat May 31 06:07:40 2008 +0000

    Make sure the data we produce is actually a list of uris, not a list of
    
    Sat May 31 02:05:32 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * appearance-desktop.c (wp_drag_get_data): Make sure the data we
        produce is actually a list of uris, not a list of paths. (Prevents
        crash when someone drags a thumbnail back into the list).
    
        * appearance-desktop.c (wp_add_image): Be robust against NULL
        filenames; this can happen if someone drops an http url on the
        dialog.
    
    
    svn path=/trunk/; revision=8736

 capplets/appearance/ChangeLog            | 10 ++++++++++
 capplets/appearance/appearance-desktop.c | 17 ++++++++++++++---
 2 files changed, 24 insertions(+), 3 deletions(-)

commit 1917d0261bf77376840aebeee3e6f0a5d90679b3
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Sat May 31 04:44:16 2008 +0000

    +Sat May 31 00:41:20 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-wp-item.c (options_lookup): The gconf string is "zoom",
    +   not "zoomed".
    +
    
    
    svn path=/trunk/; revision=8735

 capplets/appearance/ChangeLog       | 5 +++++
 capplets/appearance/gnome-wp-item.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 2140bc90bea065b9905ee5c0e762c2b2ac794e79
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Sat May 31 04:41:14 2008 +0000

    +Fri May 30 23:01:57 2008  Søren Sandmann  <sandmann@redhat.com>
    +
    +   * gnome-wp-item.c (set_bg_properties): Update to match API change
    +   in libcinnamon-desktop.
    +
    
    
    svn path=/trunk/; revision=8734

 capplets/appearance/ChangeLog       | 5 +++++
 capplets/appearance/gnome-wp-item.c | 2 +-
 configure.in                        | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 0b7371155f47b84aed1a8c7d16ac2f5e5ea81199
Author: William Jon McCann <jmccann@redhat.com>
Date:   Thu May 29 22:03:22 2008 +0000

    Don't use deprecated GTK+ symbol.
    
    2008-05-29  William Jon McCann  <jmccann@redhat.com>
    
        * eggcellrendererkeys.c (egg_cell_renderer_keys_class_init):
        Don't use deprecated GTK+ symbol.
    
    
    svn path=/trunk/; revision=8733

 capplets/keybindings/ChangeLog             | 5 +++++
 capplets/keybindings/eggcellrendererkeys.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d3e75b38a39f2ece30b0ae33740b5b55d23d0d21
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun May 25 13:29:18 2008 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=8725

 po/ChangeLog |    4 +
 po/vi.po     | 2559 ++++++++++++++++++++--------------------------------------
 2 files changed, 868 insertions(+), 1695 deletions(-)

commit 90d606a4962ebd87ffabf0e3eb64781cd34cf1a1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 24 17:19:26 2008 +0000

    return to using paths instead of URIs since most of the code using them
    
    2008-05-24  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme),
        (read_icon_theme), (read_cursor_theme), (read_cursor_fonts),
        (update_theme_index): return to using paths instead of URIs since
        most of the code using them expects paths
    
    2008-05-24  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-util.c: (theme_is_writable), (theme_delete): expect
        a path instead of an URI in theme_info->path
    
    svn path=/trunk/; revision=8724

 capplets/appearance/ChangeLog      |  5 +++++
 capplets/appearance/theme-util.c   |  4 ++--
 capplets/common/ChangeLog          |  7 +++++++
 capplets/common/gnome-theme-info.c | 27 ++++++++++++---------------
 4 files changed, 26 insertions(+), 17 deletions(-)

commit 2a6e126db2b6f70b7c20e703a7a4fb41d8387750
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 24 16:46:45 2008 +0000

    also delete the directory itself
    
    2008-05-24  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-util.c: (directory_delete_recursive): also delete the
        directory itself
    
    svn path=/trunk/; revision=8723

 capplets/appearance/ChangeLog    | 5 +++++
 capplets/appearance/theme-util.c | 3 +++
 2 files changed, 8 insertions(+)

commit dbe40b95fc6da7af08dcc6b262db92fcf94399c6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 24 16:40:59 2008 +0000

    fix up last commit
    
    2008-05-24  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (cleanup_tmp_dir): fix up last commit
    
    svn path=/trunk/; revision=8722

 capplets/appearance/ChangeLog         | 4 ++++
 capplets/appearance/theme-installer.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2c323085cb737c23cda2b06469c8f0a3d062b5e0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 24 16:34:05 2008 +0000

    Based on a patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
    2008-05-24  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
        Port the last remaining bits of gnome-vfs to gio (bug
        #524401).
    
        * appearance-main.c: (init_appearance_data):
        * theme-installer.c: (cleanup_tmp_dir), (file_theme_type),
        (transfer_cancel_cb), (gnome_theme_install_real),
        (transfer_done_cb): use gio instead of gnome-vfs
    
        * theme-util.c:
        * theme-util.h: make file_delete_recursive public
    
        * gnome-wp-info.c: include string.h to avoid warning
    
    svn path=/trunk/; revision=8721

 capplets/appearance/ChangeLog         | 17 ++++++
 capplets/appearance/appearance-main.c |  1 -
 capplets/appearance/gnome-wp-info.c   |  1 +
 capplets/appearance/theme-installer.c | 98 +++++++++++++++++++++--------------
 capplets/appearance/theme-util.c      |  2 +-
 capplets/appearance/theme-util.h      |  1 +
 6 files changed, 80 insertions(+), 40 deletions(-)

commit c9dd628887b4904cdb3dd2c8e0401cd510a5349e
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Mon May 19 01:09:23 2008 +0000

    Updated Arabic Translation by Anas Husseini.
    
    svn path=/trunk/; revision=8720

 po/ChangeLog |   4 +
 po/ar.po     | 884 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 524 insertions(+), 364 deletions(-)

commit d63e05bc7f21c870b52ced4d571602ea680d9b2e
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 18 21:34:17 2008 +0000

    Convert to use GConfPropertyEditor and remove a lot of duplicated code in
    
    2008-05-18  Thomas Wood  <thos@gnome.org>
    
        * gnome-da-capplet.c: Convert to use GConfPropertyEditor and remove
        a lot of duplicated code in the process.
    
    svn path=/trunk/; revision=8719

 capplets/default-applications/ChangeLog          |    5 +
 capplets/default-applications/gnome-da-capplet.c | 1045 ++++++----------------
 2 files changed, 290 insertions(+), 760 deletions(-)

commit e544be375bec607cf49fc450fe7567d56ea0eac1
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 18 21:33:07 2008 +0000

    Allow the data property to be read as well as written.
    
    2008-05-18  Thomas Wood  <thos@gnome.org>
    
        * gconf-property-editor.c: (gconf_property_editor_class_init),
        (gconf_property_editor_get_prop): Allow the data property to be
        read as well as written.
    
    svn path=/trunk/; revision=8718

 capplets/common/ChangeLog               | 6 ++++++
 capplets/common/gconf-property-editor.c | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 4edaa68a86dbe8450b075ad9c4414f0d3bcdfc41
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 17 21:53:39 2008 +0000

    use G_DEFINE_TYPE to get rid of the boilerplate code and remove a number
    
    2008-05-18  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (gconf_property_editor_init),
        (gconf_property_editor_class_init),
        (gconf_property_editor_finalize), (gconf_peditor_new),
        (gconf_peditor_new_boolean), (gconf_peditor_new_integer_valist),
        (gconf_peditor_new_string_valist), (gconf_peditor_new_color),
        (gconf_peditor_new_combo_box),
        (gconf_peditor_new_combo_box_with_enum),
        (gconf_peditor_new_select_radio),
        (gconf_peditor_new_numeric_range),
        (gconf_peditor_widget_set_guard), (gconf_peditor_new_enum_toggle),
        (peditor_image_set_filename), (peditor_image_clicked_cb),
        (gconf_peditor_new_image),
        (gconf_peditor_new_select_radio_with_enum): use G_DEFINE_TYPE to
        get rid of the boilerplate code and remove a number of unnecessary
        casts
    
    svn path=/trunk/; revision=8717

 capplets/common/ChangeLog               | 18 +++++++
 capplets/common/gconf-property-editor.c | 93 +++++++++------------------------
 2 files changed, 44 insertions(+), 67 deletions(-)

commit 5e14bcf3118d4926356edba4e810d7929eaf45de
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat May 17 16:56:46 2008 +0000

    post-release bump to 2.23.3
    
    2008-05-17  Vincent Untz  <vuntz@gnome.org>
    
        * configure.in: post-release bump to 2.23.3
    
    svn path=/trunk/; revision=8716

 ChangeLog                                      | 6 ++++++
 capplets/about-me/ChangeLog                    | 2 ++
 capplets/accessibility/at-properties/ChangeLog | 2 ++
 capplets/appearance/ChangeLog                  | 2 ++
 capplets/common/ChangeLog                      | 2 ++
 capplets/default-applications/ChangeLog        | 2 ++
 capplets/display/ChangeLog                     | 2 ++
 capplets/keybindings/ChangeLog                 | 2 ++
 capplets/keyboard/ChangeLog                    | 2 ++
 capplets/localization/ChangeLog                | 2 ++
 capplets/mouse/ChangeLog                       | 2 ++
 capplets/network/ChangeLog                     | 2 ++
 capplets/sound/ChangeLog                       | 2 ++
 capplets/windows/ChangeLog                     | 2 ++
 configure.in                                   | 2 +-
 help/ChangeLog                                 | 2 ++
 libwindow-settings/ChangeLog                   | 2 ++
 po/ChangeLog                                   | 2 ++
 shell/ChangeLog                                | 2 ++
 typing-break/ChangeLog                         | 2 ++
 vfs-methods/fontilus/ChangeLog                 | 2 ++
 vfs-methods/themus/ChangeLog                   | 2 ++
 22 files changed, 47 insertions(+), 1 deletion(-)

commit c8253a00b9ac9a93b0b1973d3e212b515600257a
Author: Vincent Untz <vuntz@gnome.org>
Date:   Sat May 17 16:45:43 2008 +0000

    updated
    
    2008-05-17  Vincent Untz  <vuntz@gnome.org>
    
        * POTFILES.in: updated
    
    svn path=/trunk/; revision=8714

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 26e8043b54780378389cc9c84792960794b839ea
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Sat May 17 15:32:59 2008 +0000

    don't require libbackground to build
    
    2008-05-17  Sebastien Bacher  <seb128@ubuntu.com>
    
        * configure.in: don't require libbackground to build
    
    
    svn path=/trunk/; revision=8713

 ChangeLog    | 4 ++++
 configure.in | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 763df6a85250f9e9aa3d110f65f97e8f99d89891
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 17 09:56:54 2008 +0000

    updated for 2.23.2
    
    2008-05-17  Jens Granseuer  <jensgr@gmx.net>
    
        * NEWS:
        * configure.in: updated for 2.23.2
    
    svn path=/trunk/; revision=8712

 ChangeLog    |  5 +++++
 NEWS         | 42 ++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 48 insertions(+), 1 deletion(-)

commit bfeca03824d95fef010032661b72fbf54c46cf66
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 17 09:06:40 2008 +0000

    remove unused files
    
    2008-05-17  Jens Granseuer  <jensgr@gmx.net>
    
        * bonobo-property-editor-range.c:
        * bonobo-property-editor-range.h: remove unused files
    
    svn path=/trunk/; revision=8711

 capplets/common/ChangeLog                      |  5 ++
 capplets/common/bonobo-property-editor-range.c | 70 --------------------------
 capplets/common/bonobo-property-editor-range.h |  8 ---
 3 files changed, 5 insertions(+), 78 deletions(-)

commit 09c6ad1d6d7353887cc15c996639e3a1df9879bf
Author: Søren Sandmann Pedersen <ssp@src.gnome.org>
Date:   Sat May 17 04:33:42 2008 +0000

    Delete libbackground dummy
    
    svn path=/trunk/; revision=8710

commit 8c9c2abbacfcf538a91113a1727cbd15ade03e7b
Author: Søren Sandmann <sandmann@redhat.com>
Date:   Sat May 17 02:00:50 2008 +0000

    Delete this directory since it's not used any more
    
    Fri May 16 21:55:52 2008  Søren Sandmann  <sandmann@redhat.com>
    
        * libbackground: Delete this directory since it's not used any
        more
    
    
    svn path=/trunk/; revision=8708

 ChangeLog                   |    5 +
 Makefile.am                 |    2 +-
 capplets/common/Makefile.am |    3 +-
 libbackground/ChangeLog     |  535 --------------
 libbackground/Makefile.am   |   12 -
 libbackground/applier.c     | 1699 -------------------------------------------
 libbackground/applier.h     |   76 --
 libbackground/preferences.c |  509 -------------
 libbackground/preferences.h |  108 ---
 9 files changed, 7 insertions(+), 2942 deletions(-)

commit 97cd93b9ef565339b5242a9dafb94d965fbf90d9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 16 17:57:53 2008 +0000

    drop gnome-vfs dependency (part of bug #524401)
    
    2008-05-16  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-network-preferences.c: (get_hostname_from_uri),
        (extract_proxy_host), (main): drop gnome-vfs dependency (part of bug
        #524401)
    
    svn path=/trunk/; revision=8707

 capplets/network/ChangeLog                   |  6 +++
 capplets/network/gnome-network-preferences.c | 61 ++++++++++++++++++++--------
 2 files changed, 51 insertions(+), 16 deletions(-)

commit 82e738e22d8956786a70c3df7b17105c59c95048
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed May 14 12:09:00 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-05-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8703

 po/ChangeLog |   4 ++
 po/nb.po     | 180 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 103 insertions(+), 81 deletions(-)

commit e0e32e8c5e5053da524588848287922f2f074af8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 13 19:28:40 2008 +0000

    Patch by: Laszlo Peter <laca@sun.com>
    
    2008-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Laszlo Peter <laca@sun.com>
    
        * gnome-about-me.c: (get_user_login): fix build on Solaris when
        _POSIX_PTHREAD_SEMANTICS is defined (bug #532893)
    
    svn path=/trunk/; revision=8702

 capplets/about-me/ChangeLog        | 7 +++++++
 capplets/about-me/gnome-about-me.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit c67b1cad91e35ee688275c7b5d61813f86b6831d
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri May 9 19:07:26 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8701

 po/ChangeLog |   4 ++
 po/es.po     | 163 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 88 insertions(+), 79 deletions(-)

commit 2dac98599affbf6d1bfea14ef79dcacc98e04673
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Thu May 8 21:52:50 2008 +0000

    Updated French translation.
    
    2008-05-08  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation.
    
    svn path=/trunk/; revision=8700

 po/ChangeLog | 4 ++++
 po/fr.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 33afa2a33462cf8053af23bebbfded17aaa897a2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 8 19:10:14 2008 +0000

    also show a missing theme engine in the GTK themes list and offer to
    
    2008-05-08  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (style_message_area_response_cb),
        (update_message_area), (gtk_theme_changed), (style_init):
        * appearance.h:
        * data/appearance.glade: also show a missing theme engine in the
        GTK themes list and offer to install it via packagekit
    
    svn path=/trunk/; revision=8698

 capplets/appearance/ChangeLog             |  8 +++
 capplets/appearance/appearance-style.c    | 96 ++++++++++++++++++++++++++++++-
 capplets/appearance/appearance.h          |  3 +
 capplets/appearance/data/appearance.glade | 25 +++++---
 4 files changed, 122 insertions(+), 10 deletions(-)

commit a854fc712c666b948f0f0257d068e7409fb83cdf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 8 19:01:51 2008 +0000

    Patch by: Ben LeMasurier <ben.lemasurier@gmail.com>
    
    2008-05-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Ben LeMasurier <ben.lemasurier@gmail.com>
    
        * e-image-chooser.c: (e_image_chooser_init), (set_image_from_data),
        (image_drag_motion_cb), (image_drag_drop_cb): fix scaling the image
        on the user photo button (bug #309629)
    
    svn path=/trunk/; revision=8697

 capplets/about-me/ChangeLog         |  8 ++++++
 capplets/about-me/e-image-chooser.c | 51 +++++++++++--------------------------
 2 files changed, 23 insertions(+), 36 deletions(-)

commit 140deb2526fc63c25dcf2bd08fda8511791d9464
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 7 20:23:19 2008 +0000

    split out the check for the missing theme engine because we also need it
    
    2008-05-07  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gtk_theme_info_missing_engine),
        (gnome_theme_meta_info_validate):
        * gnome-theme-info.h: split out the check for the missing theme
        engine because we also need it for the packagekit support
    
    svn path=/trunk/; revision=8696

 capplets/common/ChangeLog          |  7 ++++
 capplets/common/gnome-theme-info.c | 76 +++++++++++++++++++++++---------------
 capplets/common/gnome-theme-info.h |  2 +
 3 files changed, 56 insertions(+), 29 deletions(-)

commit a780f374cbe60b49b05d2c28e25b905163d62131
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 7 20:19:36 2008 +0000

    Add support for installing missing GTK+ theme engines via packagekit (bug
    
    2008-05-07  Jens Granseuer  <jensgr@gmx.net>
    
        Add support for installing missing GTK+ theme engines via
        packagekit (bug #511065)
    
        * appearance-themes.c: (theme_message_area_response_cb),
        (theme_message_area_update): when we detect a missing engine,
        check if packagekit is available on the session bus. If it is show
        an install button to pull the corresponding package
        * appearance.h:
        * theme-util.c: (packagekit_available), (theme_install_file):
        * theme-util.h: add support functions
    
    svn path=/trunk/; revision=8695

 capplets/appearance/ChangeLog           | 13 ++++++
 capplets/appearance/appearance-themes.c | 32 +++++++++++++-
 capplets/appearance/appearance.h        |  1 +
 capplets/appearance/theme-util.c        | 76 ++++++++++++++++++++++++++++++++-
 capplets/appearance/theme-util.h        |  3 ++
 5 files changed, 121 insertions(+), 4 deletions(-)

commit fcfc55091e6e6412b6ae92ac44c77373b7780af2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 7 19:54:43 2008 +0000

    Patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
    2008-05-07  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
        * theme-save.c: (setup_directory_structure), (write_theme_to_disk):
        replace some more gnome-vfs by gio (part of bug #524401)
    
    svn path=/trunk/; revision=8694

 capplets/appearance/ChangeLog    |  7 +++++
 capplets/appearance/theme-save.c | 56 +++++++++++++++++-----------------------
 2 files changed, 31 insertions(+), 32 deletions(-)

commit 15fbcb3bde6b73010342a092d07ffc705943c1d7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 6 18:37:55 2008 +0000

    fix error code when GTK engine is missing, and fix the function signature
    
    2008-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_meta_info_validate): fix error
        code when GTK engine is missing, and fix the function signature
    
    svn path=/trunk/; revision=8693

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 3c71eb63196f6eadb87f3db7611d6f0115002a9a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 6 17:41:57 2008 +0000

    move metatheme validation code here from the appearance capplet and add
    
    2008-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * gnome-theme-info.c: (gnome_theme_info_error_quark),
        (gnome_theme_meta_info_free), (gnome_theme_meta_info_validate):
        * gnome-theme-info.h: move metatheme validation code here from the
        appearance capplet and add proper error codes
    
    2008-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * appearance-themes.c: (theme_message_area_update): move metatheme
        validation code to common/gnome-theme-info.c
    
    svn path=/trunk/; revision=8692

 capplets/appearance/ChangeLog           |  6 +++
 capplets/appearance/Makefile.am         |  1 -
 capplets/appearance/appearance-themes.c | 70 ++------------------------------
 capplets/common/ChangeLog               |  8 ++++
 capplets/common/Makefile.am             |  2 +-
 capplets/common/gnome-theme-info.c      | 71 +++++++++++++++++++++++++++++++++
 capplets/common/gnome-theme-info.h      | 14 ++++++-
 7 files changed, 103 insertions(+), 69 deletions(-)

commit b6b9845852eae75d143cf2f2737a661f2e6da902
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 6 16:39:57 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-05-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8691

 po/ChangeLog |   4 +++
 po/nb.po     | 114 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 60 insertions(+), 58 deletions(-)

commit 9297cec08376b99be32bb77dfc351b5d08eddb87
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 4 13:44:45 2008 +0000

    doesn't need gnome-vfs any longer
    
    2008-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-test.c: (main): doesn't need gnome-vfs any longer
    
    svn path=/trunk/; revision=8690

 capplets/common/ChangeLog          | 4 ++++
 capplets/common/gnome-theme-test.c | 6 +-----
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 259efe410262cdc6697823ddc5e81f7975c5e04c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 4 13:39:46 2008 +0000

    even more gio migration
    
    2008-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init):
        * gnome-wp-info.c: (gnome_wp_info_new), (gnome_wp_info_free):
        * gnome-wp-info.h:
        * gnome-wp-item.c: (gnome_wp_item_new),
        (gnome_wp_item_update_description):
        * gnome-wp-item.h: even more gio migration
    
    svn path=/trunk/; revision=8689

 capplets/appearance/ChangeLog            |  9 ++++
 capplets/appearance/appearance-desktop.c |  2 -
 capplets/appearance/gnome-wp-info.c      | 71 +++++++++++++++++---------------
 capplets/appearance/gnome-wp-info.h      |  3 +-
 capplets/appearance/gnome-wp-item.c      | 23 +++++------
 capplets/appearance/gnome-wp-item.h      |  7 ++--
 6 files changed, 61 insertions(+), 54 deletions(-)

commit 225e3970720f10eaca5c780a110fa47c638f45d5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 4 10:55:39 2008 +0000

    fix more breakage due to recent changes in theme-info (bug #531284)
    
    2008-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnailer.c: (main): fix more breakage due to recent
        changes in theme-info (bug #531284)
    
    svn path=/trunk/; revision=8688

 vfs-methods/themus/ChangeLog           |  5 +++++
 vfs-methods/themus/theme-thumbnailer.c | 15 ++++++---------
 2 files changed, 11 insertions(+), 9 deletions(-)

commit cc954b549358f05c5f1af9e9e64a84c454e79a04
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Sat May 3 16:45:27 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8687

 po/ChangeLog |   4 +
 po/he.po     | 666 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 402 insertions(+), 268 deletions(-)

commit 506b53042320e6309e81406537fa88c590ce25a8
Author: Leonardo Ferreira Fontenelle <leonardof@src.gnome.org>
Date:   Thu May 1 23:15:28 2008 +0000

    Updated Brazilian Portuguese translation by Henrique P Machado.
    
    svn path=/trunk/; revision=8686

 po/ChangeLog |   5 +
 po/pt_BR.po  | 740 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 467 insertions(+), 278 deletions(-)

commit 9d7383da4f62602a31fd0954962a2019a2b060f4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 1 14:12:06 2008 +0000

    port a few more functions to gio (part of bug #524401)
    
    2008-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_get_mtime),
        (theme_drag_data_received_cb):
        * theme-util.c: (directory_delete_recursive),
        (file_delete_recursive), (theme_is_writable), (theme_delete): port a
        few more functions to gio (part of bug #524401)
    
    svn path=/trunk/; revision=8685

 capplets/appearance/ChangeLog           |   8 +++
 capplets/appearance/appearance-themes.c |  48 +++++++--------
 capplets/appearance/theme-util.c        | 105 ++++++++++++++++++++++++--------
 3 files changed, 109 insertions(+), 52 deletions(-)

commit a9e90ad5426135b0fcb6bf0b42d807ba4fb8d010
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 1 14:11:38 2008 +0000

    always use URIs instead for info->path; since gio cleanly distinguishes
    
    2008-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_cursor_theme), (read_cursor_fonts),
        (update_theme_index): always use URIs instead for info->path; since
        gio cleanly distinguishes path/uri (contrary to gnome-vfs), the
        random mix we have right now is becoming a nuisance
    
    svn path=/trunk/; revision=8684

 capplets/common/ChangeLog          | 7 +++++++
 capplets/common/gnome-theme-info.c | 6 +++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 565c037cc71a47e9df597a4cd3418dc97d555efc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 1 12:01:01 2008 +0000

    Based on a patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
    2008-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
        * appearance-desktop.c: (wp_drag_received), (wp_update_preview): more
        gio conversion (part of bug #524401)
    
    svn path=/trunk/; revision=8683

 capplets/appearance/ChangeLog            |  7 ++++++
 capplets/appearance/appearance-desktop.c | 43 ++++++++++++++++++++++----------
 2 files changed, 37 insertions(+), 13 deletions(-)

commit caac1b3140a4e50ac3f65d36d541563f63b23805
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Thu May 1 11:47:00 2008 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8682

 po/sl.po | 1909 ++++++++++++++++++++++++++------------------------------------
 1 file changed, 785 insertions(+), 1124 deletions(-)

commit d714ff7e492a024d0a0559d7dea04a8af22f9332
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 1 09:08:07 2008 +0000

    port from gnome-vfs to gio (part of bug #524401)
    
    2008-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-apply.c:
        * gnome-theme-info.c: (get_file_type), (add_theme_to_hash_by_name),
        (get_theme_from_hash_by_name), (gnome_theme_read_meta_theme),
        (read_icon_theme), (gdk_pixbuf_from_xcursor_image),
        (read_cursor_theme), (handle_change_signal), (update_theme_index),
        (update_gtk2_index), (update_keybinding_index),
        (update_metacity_index), (update_common_theme_dir_index),
        (update_meta_theme_index), (update_icon_theme_index),
        (update_cursor_theme_index), (gtk2_dir_changed),
        (keybinding_dir_changed), (metacity_dir_changed),
        (common_theme_dir_changed), (common_icon_theme_dir_changed),
        (add_common_theme_dir_monitor),
        (add_common_icon_theme_dir_monitor),
        (remove_common_theme_dir_monitor),
        (remove_common_icon_theme_dir_monitor), (top_theme_dir_changed),
        (top_icon_theme_dir_changed), (real_add_top_theme_dir_monitor),
        (add_top_theme_dir_monitor), (add_top_icon_theme_dir_monitor),
        (gnome_theme_init):
        * gnome-theme-info.h:
        * gnome-theme-test.c: (main): port from gnome-vfs to gio (part of
        bug #524401)
    
    2008-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): update for changes in the
        theme-info API
    
    2008-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-method.c: (vfs_module_init):
        * themus-properties-view.c: (themus_properties_view_init),
        (themus_properties_view_set_location):
        * themus-theme-applier.c: (main): update users of the theme-info
        API
    
    svn path=/trunk/; revision=8681

 capplets/appearance/ChangeLog               |    5 +
 capplets/appearance/appearance-themes.c     |    2 +-
 capplets/common/ChangeLog                   |   24 +
 capplets/common/gnome-theme-apply.c         |    4 +
 capplets/common/gnome-theme-info.c          | 1319 ++++++++++++---------------
 capplets/common/gnome-theme-info.h          |    9 +-
 capplets/common/gnome-theme-test.c          |    3 +-
 vfs-methods/themus/ChangeLog                |    8 +
 vfs-methods/themus/theme-method.c           |    2 +-
 vfs-methods/themus/themus-properties-view.c |   18 +-
 vfs-methods/themus/themus-theme-applier.c   |   19 +-
 11 files changed, 625 insertions(+), 788 deletions(-)

commit 79d007e929c7f58e40c0e45303f9b22960376bb5
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Wed Apr 30 19:20:08 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8680

 po/ChangeLog |   4 +
 po/es.po     | 286 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 159 insertions(+), 131 deletions(-)

commit 913d9e571be5ae92a54bf153d2c07c86ba8f776d
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Wed Apr 30 09:30:18 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8679

 po/ChangeLog |   4 +
 po/gl.po     | 764 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 477 insertions(+), 291 deletions(-)

commit bc94ce4d3a6de1ee7dc78ed901de5e4f727970be
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 29 23:37:50 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8678

 po/ChangeLog |   4 +
 po/nb.po     | 449 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 255 insertions(+), 198 deletions(-)

commit 055e12b94788ecdece8e655688d941e7acf0ce29
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Apr 28 22:01:03 2008 +0000

    dependency on iso-codes is in xklavier now
    
    svn path=/trunk/; revision=8677

 ChangeLog    |  8 ++++++++
 configure.in | 15 ---------------
 2 files changed, 8 insertions(+), 15 deletions(-)

commit 2fe1de6d0b61c004026ca7981061afd1f769c632
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Apr 28 21:55:26 2008 +0000

    removed second tab if not needed, dropped pseudo-statistical sorting
    
    svn path=/trunk/; revision=8676

 capplets/keyboard/ChangeLog                        |   8 +
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 185 ++++-----------------
 2 files changed, 43 insertions(+), 150 deletions(-)

commit 2c10bfc08404f2b558c6bf946cae38c498107654
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Apr 28 21:54:54 2008 +0000

    small layout fix
    
    svn path=/trunk/; revision=8675

 capplets/keyboard/gnome-keyboard-properties.glade | 258 +++++++++++-----------
 1 file changed, 129 insertions(+), 129 deletions(-)

commit 3fec72caf99b20fc2463261152b21de04f3e3c5f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Apr 28 21:54:28 2008 +0000

    unneeded file
    
    svn path=/trunk/; revision=8674

 capplets/keyboard/gnome-keyboard-properties-iso.c | 203 ----------------------
 1 file changed, 203 deletions(-)

commit 43702238f93192d7bb2373f50909c4faabd86198
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Apr 27 15:13:32 2008 +0000

    Support for countries and languages
    
    svn path=/trunk/; revision=8673

 capplets/keyboard/ChangeLog                        |   7 +
 capplets/keyboard/gnome-keyboard-properties-iso.c  | 203 +++++++++
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   8 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 504 ++++++++++++++-------
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |  89 ++--
 capplets/keyboard/gnome-keyboard-properties.glade  | 180 ++++++--
 6 files changed, 740 insertions(+), 251 deletions(-)

commit 1d9c873d18555379db3f2e05e9d5eb2a76b8c706
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Apr 27 15:12:16 2008 +0000

    depend on libxklavier 3.6
    
    svn path=/trunk/; revision=8672

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5b99f364eea0563c3daa30852b7156e4781909ff
Author: Gabor Kelemen <kelemeng@gnome.org>
Date:   Fri Apr 25 21:26:37 2008 +0000

    Translation updated.
    
    2008-04-25 Gabor Kelemen  <kelemeng@gnome.org>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=8671

 po/ChangeLog | 4 ++++
 po/hu.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 0a4cc0bd080cba2741b1f9ec42681452c4750936
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Apr 25 17:48:11 2008 +0000

    properly handle errors when trying to get an icon for the user
    
    2008-04-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_load_photo), (about_me_setup_dialog):
        properly handle errors when trying to get an icon for the user
    
    svn path=/trunk/; revision=8669

 capplets/about-me/ChangeLog        |  5 +++++
 capplets/about-me/gnome-about-me.c | 11 ++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 3dc2d8f34c03c6294e93037858afc82aba62dd3c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Apr 25 17:42:55 2008 +0000

    rebuild email addresses completely when saving. The email fields are
    
    2008-04-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_destroy), (about_me_update_email),
        (about_me_commit), (about_me_focus_out), (about_me_setup_email),
        (about_me_load_string_field), (about_me_setup_dialog): rebuild email
        addresses completely when saving. The email fields are synthetic in
        e-d-s which means they might be reshuffled at will so we never know
        quite where the address we saved at pos 3 will end up. This should
        finally fix problems with the home address not being saved, and
        addresses being swapped or the like (bug #317835)
    
    svn path=/trunk/; revision=8668

 capplets/about-me/ChangeLog        |  11 ++++
 capplets/about-me/gnome-about-me.c | 118 ++++++++++++++++++++++++++++---------
 2 files changed, 102 insertions(+), 27 deletions(-)

commit 8f1eace46449f05c531d86ca7cdd6e2e9ba82f75
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Apr 25 16:29:34 2008 +0000

    Patch by: Tim-Phillip Mueller <t.i.m@zen.co.uk>
    
    2008-04-25  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Tim-Phillip Mueller <t.i.m@zen.co.uk>
    
        * sound-properties-capplet.c: (add_device_with_probe),
        (device_added_alsa), (device_added_oss), (device_added_callback),
        (device_removed_callback), (setup_devices_by_capability),
        (setup_hal_devices), (setup_devices): add support for OSS 4 (bug
        #529720)
    
    svn path=/trunk/; revision=8667

 capplets/sound/ChangeLog                  |  10 ++
 capplets/sound/sound-properties-capplet.c | 178 +++++++++++++++++++++++++-----
 2 files changed, 161 insertions(+), 27 deletions(-)

commit 3a4c7b93025f7ecb84daac5d3158472194cdb800
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Apr 24 22:10:45 2008 +0000

    Don't close the Keyboard Layout Options window when the Help button is
    
    2008-04-24  Thomas Wood  <thos@gnome.org>
    
        * gnome-keyboard-properties-xkbot.c: (xkb_options_load_options),
        (xkb_options_popup_dialog):
        * gnome-keyboard-properties.glade:
    
        Don't close the Keyboard Layout Options window when the Help button is
        clicked. (bug #529772).
    
    2008-04-14  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c: getting rid of unneeded backup
        function
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-a11y.c: (setup_a11y_tabs):
        * gnome-keyboard-properties.c: (create_dialog), (setup_dialog):
        * gnome-keyboard-properties.glade: fix various string and layout
        issues (bug #521826)
    
    2008-03-24  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.c: (setup_dialog): don't show the typing
        break tab if the typing monitor is not available (bug #524034)
    
    2008-03-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_dnd_data_received): don't crash when called for a
        drag with no selected items (bug #523379)
    
    2008-03-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-a11y.c:
        (notifications_button_clicked_cb),
        (mousekeys_accel_time_to_widget),
        (mousekeys_accel_time_from_widget), (setup_a11y_tabs): fix leaks
        and remove unnecessary casts
    
    2008-02-05  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: don't mark padding strings as
        translatable (bug #514598)
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * keyboard-bell.png:
        * keyboard-cursor.png:
        * keyboard-repeat.png:
        * keyboard-volume.png: remove obsolete icons
        * gnome-keyboard-properties.c: (setup_dialog): don't initialize
        our custom stock icons since we don't use them any longer
    
    2008-01-16  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-keyboard-properties.glade:
        Don't mark stock labels as translatable. (Bug #508270)
    
    2008-01-14  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: added missing headers to SOURCES.
    
    2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-keyboard-properties.glade:
        Move "Type to test settings" entry beneath the notebook to make it
        easily accessible from all tabs. (Also handy for layout and a11y
        preferences.)
    
    2008-01-02  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-keyboard-properties.c: Add --a11y command-line option to
        show the Accessibility tab when started.
    
    2008-01-02  Denis Washington  <denisw@svn.gnome.org>
    
        Merge all keyboard accessibility options into the keyboard capplet.
    
        * gnome-keyboard-properties-a11y.[ch]: added
        * gnome-keyboard-properties.c: Remove the "Accessibility..." button,
        all a11y features are in the Keyboard dialog now.
    
    2007-12-17  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c, gnome-keyboard-properties-xkb.h,
        gnome-keyboard-properties-xkbpv.c,
        gnome-keyboard-properties-xkbltadd.c: moved printing to libgnomekbd
        (2.21.4.1)
    
    2007-12-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkbpv.c:
        (xkb_layout_preview_draw_page): try to make the printed header more
        self-explanatory (bug #503598)
    
    2007-12-11  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c, gnome-keyboard-properties-xkblt.c,
        gnome-keyboard-properties-xkb.h, gnome-keyboard-properties-xkbpv.c,
        gnome-keyboard-properties.glade, gnome-keyboard-properties-xkbltadd.c:
        making printing available,
        http://bugzilla.gnome.org/show_bug.cgi?id=502961
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: don't mark padding strings and stock
        items for translation (bug #502087)
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: the fine line between text fields
        and text boxes seems rather irrelevant here
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: don't include keyboard model
        description in glade file
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkb.c: (set_model_text): fix left-over
        GTK_ENTRY use from last commit
    
    2007-11-03  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-keyboard-properties-xkb.c:
        * gnome-keyboard-properties.glade: Replace text entry and
        "Choose..." button for keyboard model with a single chooser
        button.
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: rename first tab to "General"
    
    2007-11-03  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c, gnome-keyboard-properties-xkb.c,
        gnome-keyboard-properties-xkbot.c, gnome-keyboard-properties-xkb.h,
        gnome-keyboard-properties-xkbpv.c, gnome-keyboard-properties.glade,
        gnome-keyboard-properties-xkbltadd.c, gnome-keyboard-properties.c:
        moving layout options to separate popup, according to Denis's mockups.
    
    2007-10-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_prepare_selected_tree):
        Fix warnings from sparse. Don't use deprecated signal
        api from gtk+.
    
    2007-08-26  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties.glade: make Add label translatable,
        http://bugzilla.gnome.org/show_bug.cgi?id=470516
    
    2007-08-14  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c: disabling "delete" button for
        number of selected layouts < 1.
        http://bugzilla.gnome.org/show_bug.cgi?id=466749
    
    2007-07-24  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c, gnome-keyboard-properties.glade:
        eliminating up/down buttons in the layout list, making it look nicer.
    
    2007-07-23  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c: Implementing DND in the selected
        layouts list. http://bugzilla.gnome.org/show_bug.cgi?id=351936
    
    2007-07-11  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.h, gnome-keyboard-properties-xkbpv.c,
        gnome-keyboard-properties.glade, gnome-keyboard-properties-xkbltadd.c:
        improving the layout and sorting, thanks to Christian,
        http://bugzilla.gnome.org/show_bug.cgi?id=455353
        * gnome-keyboard-properties.glade: s/group/layout/ - because
        xkeyboard-config is going to have all UI strings as "layout".
        * gnome-keyboard-properties-xkblt.c: redraw the selected layouts
        window when "Separate layout per window" is toggled - otherwise
        "Default" radios are not repainted
    
    2007-05-19  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkbmc.c: make things buildable with
        libxklavier 3.2
        * gnome-keyboard-properties-xkb.c,
        gnome-keyboard-properties-xkbltadd.c: XklConfigItem is a GObject, so
        it has to be properly built (not on the stack but in heap)
    
    2007-05-17  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkbmc.c, gnome-keyboard-properties.glade:
        adding vendor list to the box (option, if there are vendors in
        base.xml)
    
    2007-05-05  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.c: (create_dialog):
        * gnome-keyboard-properties.glade: set button images via code instead
        of relying on glade, so they respect the gtk-button-images xsetting
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * keyboard.desktop.in.in: renamed Bugzilla product.
    
    2007-03-27  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.h, gnome-keyboard-properties-xkbpv.c,
        gnome-keyboard-properties.glade, gnome-keyboard-properties-xkbltadd.c:
        new version of the layout chooser, comboboxentry-based. Fully
        functional (I hope).
    
    2007-03-21  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c, Makefile.am,
        gnome-keyboard-properties-xkbltadd.c: split the layout chooser into
        separate C file
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
            Patch by: Andreas Koehler <andi5.py@gmx.net>
    
        * gnome-keyboard-properties.glade: use automatic instead of always
            scrollbar policy for the layout selection dialog (fixes #345884)
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_prepare_selected_tree): use a radio button instead of a
        checkbox to indicate the default layout. Fixes #389469.
    
    2007-02-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkblt.c: (def_group_in_gconf_changed):
        add another NULL check. Should really fix #398631.
    
    2007-01-21  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c: the capplet should not crash if
        default group is not set in GConf (i.e. GConf part of the g-c-c
        installation failed for some reason). Closing #398631
    
    2007-01-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties.c: (main): Fix a typo.
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * gnome-keyboard-properties.c (main): switched from popt to GOptionContext.
    
    2006-09-15  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #356074
    
        * gnome-keyboard-properties-xkb.c (set_model_text): make sure 'model'
        is never NULL. Original patch from Brian Cameron <brian.cameron@sun.com>.
    
    2006-08-07  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #348847
    
        * keyboard.desktop.in.in: fixed GNOME Bugzilla strings.
    
    2006-07-23  Sebastien Bacher  <seb128@debian.org>
    
        * keyboard.desktop.in.in:
        don't list the Application category, list the HardwareSettings one,
        patch by Vincent Fretin <vincent.fretin@gmail.com> (Closes: #344321)
    
    2006-07-08  Sergey Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties.glade: making model choser button more
        verbose. Closing #335833
    
    2006-07-06  Sergey Udaltsov <svu@gnome.org>
    
        Fixing the build process
    
    2006-06-25  Sergey Udaltsov <svu@gnome.org>
    
        *.c: massive libgswitchit API change
        (following standard GNOME naming conventions)
    
    2006-04-22  Sergey Udaltsov <svu@gnome.org>
    
        gnome-keyboard-properties-xkblt.c:
        Layout Preview window saves/restores geometry
    
    2006-03-02  Sergey Udaltsov <svu@gnome.org>
    
        Fixes #336396
    
        * gnome-keyboard-properties-xkblt.c: fixed the buttons sensitivity
        change.
    
    2006-01-26  Rodrigo Moya <rodrigownovell.com>
    
        Fixes #328748
    
        * gnome-keyboard-properties.c (blink_to_widget): remove space
        before punctuation.
    
    2006-01-22  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #168790
    
        * gnome-keyboard-properties.c (accessibility_button_clicked): dont
        use "capplet" in user-visible strings.
    
    2006-01-09  Sergey Udaltsov <svu@gnome.org>
    
        Fixes bug #326275
        * gnome-keyboard-properties.glade: fixing the window title
        capitalization
    
    2006-01-08  Sergey Udaltsov <svu@gnome.org>
    
        Fixes bug #326137
        * gnome-keyboard-properties.glade: making the window a bit larger
    
    2006-01-03  Jaap A. Haitsma <jaap@haitsma.org>
    
        Fixes bug #321549
    
        * gnome-keyboard-properties.c (create_dialog): don't leak
        GtkSizeGroup's.
    
    2005-11-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties.c: (setup_dialog): Remove unused
        code.
    
    2005-10-24  Muktha <muktha.narayan@wipro.com>
    
        Fixes part of #90932
    
        * gnome-keyboard-properties.glade: added accessible_description to
        some widgets.
    
    2005-07-15  Mark McLoughlin  <mark@skynet.ie>
    
        Re-work the way some of the XKB GConf keys are handled.
        See bug #310513
    
        * gnome-keyboard-properties-xkb.c:
        (set_model_text), (model_key_changed), (setup_model_entry),
        (setup_xkb_tabs): make the "model" entry not be a peditor
        to we can correctly display the XKB default if the GConf
        key is unset.
        (enable_disable_restoring): update for API change.
        (reset_to_defaults): reset to defaults by unsetting the
        GConf keys rather than setting overrideSettings to true.
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_get_selected_list): if the "layouts" key is unset,
        use the layouts list from the XKB defaults.
    
        * gnome-keyboard-properties-xkbot.c:
        (xkb_options_get_selected_list): ditto for the "options" key.
    
        * gnome-keyboard-properties-xkb.h: include gswitchit_config.h,
        declare xkb_options_load_options to avoid warnings, make
        xkb_(layouts|options)_get_selected_list() functions instead
        of macros.
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keyboard-properties-xkbot.c: (xkb_options_add_group):
        fix the build with gcc-2.95, patch from Jens Granseuer <jensgr@gmx.net>
        (Closes: #170159).
    
    2005-04-10  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkbpv.c: improving the preview layout
    
    2005-02-08  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keyboard-properties-xkb.c: (setup_xkb_tabs):
        * gnome-keyboard-properties-xkblt.c: (def_group_in_gconf_changed):
        patch by Kjartan Maraas <kmaraas@gnome.org>, some code cleanups
        (Closes: #166267).
    
    2005-01-19  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c,
        gnome-keyboard-properties-xkbot.c
        gnome-keyboard-properties.glade: big change in the layout options UI.
        Fixing #164090
    
    2005-01-16  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties.glade: fixed #159685
    
    2005-01-15  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkbmc.c: fixing long-outstanding bug
        with the current model selection.
    
    2005-01-08  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keyboard-properties.glade: fixed the mnemonics for some widgets
        (Closes: #163227).
    
    2005-01-05  Dennis Cranston <dennis_cranston@yahoo.com>
    
        * gnome-keyboard-properties.glade:  HIG corrections.
        Use HIG capitalization for buttons: "Reset to defaults" ->
        "Reset To Defaults".  Use HIG capitalization for window titles:
        "Choose a keyboard model" -> "Choose A Keyboard Model" &
        "Choose a layout" -> "Choose A Layout".  Add a missing ":"
        from "Model" -> "Model:". Remove the dialog separators.
        Use HIG widget padding to match the other capplet dialogs.
    
    2005-01-02  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c
        gnome-keyboard-properties-xkb.h
        gnome-keyboard-properties-xkblt.c
        gnome-keyboard-properties-xkbmc.c
        gnome-keyboard-properties-xkbpv.c: a bit of the code cleanup
    
    2005-01-02  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keyboard-properties.glade:
        patch from Heikki Paajanen <hepaajan@iki.fi> (based on the patch
        from Andrew Johnson <acjgenius@earthlink.net>)
        to not set "close" as the default button (Closes: #98202).
    
    2004-12-31  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.h,
        gnome-keyboard-properties-xkblt.c
        gnome-keyboard-properties-xkbpv.c: preview reimplemented! Hurray!
    
    2004-12-23  Sergey V. Udaltsov <svu@gnome.org>
    
        * use_cases.txt: just some memo (mostly for myself) regarding the
        use cases for the tests.
    
    2004-12-20  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c,
        gnome-keyboard-properties-xkb.h,
        gnome-keyboard-properties-xkblt.c,
        gnome-keyboard-properties-xkbmc.c,
        gnome-keyboard-properties-xkbot.c,
        gnome-keyboard-properties.c,
        gnome-keyboard-properties.glade: massive layout change. Layout chooser
        popup introduced
    
    2004-12-13  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c,
        gnome-keyboard-properties-xkb.h,
        gnome-keyboard-properties-xkblt.c,
        gnome-keyboard-properties-xkbmc.c,
        gnome-keyboard-properties-xkbot.c: reflect massive changes in
        libgswitchit
    
    2004-12-09  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c: using of the XklGetMaxNumGroups
    
    2004-11-29  Sergey V. Udaltsov <svu@gnome.org>
    
        * gnome-keyboard-properties-xkb.c: preview only makes sense for XKB backend
    
    2004-11-25  Sergey V. Udaltsov <svu@gnome.org>
    
        * libxklavier 1.12 compatibility
    
    2004-11-09  Mark McLoughlin  <mark@skynet.ie>
    
        * Makefile.am: install .desktop file in $(datadir)/applications.
    
        * keyboard.desktop.in: add OnlyShowIn=GNOME;
    
    2004-10-21  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keyboard-properties.glade:
        patch by Ross Burton <ross@burtonini.com> to fix the widget expansion
        (Closes: #151588).
    
    2004-10-15  Sergey V. Udaltsov <svu@gnome.org>
    
        * The preview is now dialog instead of window. More consistent
        behaviour. Fixing #154358
    
    2004-10-14  Jody Goldberg <jody@gnome.org>
    
        * Release 2.8.1
    
    2004-09-01  Sergey V. Udaltsov <svu@gnome.org>
    
        * The default switchcut (Alt*2) is introduced
    
    2004-08-20  Frederic Crozat  <fcrozat@mandrakesoft.com>
    
        * gnome-keyboard-properties.c: (main):
        Use themed icon for WM hint.
    
    2004-07-28  Richard Hult  <richard@imendio.com>
    
        * gnome-keyboard-properties.c (main): Switch to the right page for
        typing monitor preferences.
    
    2004-07-27  Sergey V. Udaltsov <svu@gnome.org>
    
        * The preview is separated to another window.
        Looks nicer IMHO - but it depends on POV.
    
    2004-07-26  Sergey V. Udaltsov <svu@gnome.org>
    
        * Now models are handled using the popup window.
        Looks a bit more polished.
    
    2004-07-22  Christian Neumair  <chris@gnome-de.org>
    
        * gnome-keyboard-properties.glade: Use GTK_SHADOW_IN shadow for
        all treeviews (consistency). Fixes #144050.
    
    2004-07-14  Sergey V. Udaltsov <svu@gnome.org>
    
        * Merged the preview tab branch.
    
    2004-04-15  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.1
    
    2004-04-01  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.0.3
    
    2004-03-30  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.0.1
    
    2004-03-23  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.0
    
    2004-03-11  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.4
    
    2004-02-13  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.3
    
    2004-02-12  Mark McLoughlin  <mark@skynet.ie>
    
        * gnome-keyboard-properties.c: (dialog_response): Update help link
        to point to user-guide.xml
    
    2004-01-14  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.2
    
    2004-01-11  Richard Hult  <richard@imendio.com>
    
        * gnome-keyboard-properties.glade:
        * gnome-keyboard-properties.c (setup_dialog): Enable markup for
        the break enabled toggle with code instead of with a custom child
        for the toggle since that doesn't work with new libglade. Fixes
        bug #131122.
    
    2003-12-30  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.1.1
    
    2003-12-30  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.1
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.0
    
    Mon Aug 11 11:50:36 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.glade: Patch from Elijah Newren
        <newren@math.utah.edu> to bring the possible repeat range in sync
        with the a11y capplet.
    
        * gnome-keyboard-properties.c: Patch from Elijah Newren to deal
        with the change in the peditor code.
    
    Fri Aug  1 15:04:39 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.glade: Patch from Dennis Cranston
        <dennis_cranston@yahoo.com> to add two more pixels of spacing
        between action area and vbox of prefrences dialog.
    
    Thu Jul 31 17:42:13 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (main): Add typing-break properties,
        #118323
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-keyboard-properties.glade,
          gnome-keyboard-properties.c:  Fixes for ui-review
          bug report #99531 and fixes for duplicate mnemonics.
    
    2003-07-07  Jody Goldberg <jody@gnome.org>
    
        * Release 2.3.4
    
    2003-06-27  Richard Hult  <richard@imendio.com>
    
        * gnome-keyboard-properties.c (setup_dialog): Use the right gconf
        key for allow_postpone preference.
    
        * gnome-keyboard-properties.glade: Remove warn time preference,
        it's not used in the code.
    
    Thu Jun 26 16:31:41 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (setup_dialog): use the correct
        schemas.
    
    Thu Jun 26 07:39:34 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-keyboard-properties.c: added the typing break (drwright)
        preferences
    
    2003-06-24  Jody Goldberg <jody@gnome.org>
    
        * Release 2.3.3
    
    2003-05-07  Jody Goldberg <jody@gnome.org>
    
        * Release 2.3.1
    
    2003-04-30  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : make the repeat bounds more
          reasonable.
    
    Tue Feb  4 17:09:18 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * Release 2.2.0.1
    
    Tue Jan 21 01:15:14 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * Release 2.2.0
    
    Thu Jan 16 02:41:09 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * Release 2.1.7
    
    2003-01-14  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (accessibility_button_clicked) : fix
              minor typo that disables the error dialog in the event of failure.
    
    2003-01-10  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.6
    
    2002-12-18  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.5
    
    2002-12-10  Rajkumar Sivasamy <rajkumar.siva@wipro.com>
    
        * gnome-keyboard-properties.glade: Set the visibility and focus
          of Custom radio button in Sound note book page to false.
          Fixes bug 99793
    
    2002-11-23  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.3
    
    2002-11-02  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.2
    
    2002-10-21  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.1
    
    2002-10-01  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.0.1
    
    2002-08-21  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.0
    
    2002-08-19  Ross Burton  <ross@burtonini.com>
    
        * keyboard.desktop.in: Fix the desktop file so that it validates.
    
    2002-08-15  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : fix label and make consistent with
          mouse capplet.
        * gnome-keyboard-properties.c (create_dialog) : use size groups.
    
    2002-08-08  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-keyboard-properties.glade:
    
        Set border widths nicely so things align.
    
    2002-08-01  Federico Mena Quintero  <federico@ximian.com>
    
        * gnome-keyboard-properties.glade: Made the file entry modal.
    
    2002-07-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (setup_dialog) : use the gconf_value_int_to_float
          convenience routines directly and convert the repeat speed and delay
          to use sliders.
    
        * gnome-keyboard-properties.c (accessibility_button_clicked) : produce
          a better warning for failure to launch the keyboard accessibility
          capplet.
    
    2002-06-17  Jody Goldberg <jody@gnome.org>
    
        * Release 2.0.0
    
    2002-06-10  jacob berkman  <jacob@ximian.com>
    
        * gnome-keyboard-properties.glade: hide the keyclick slider.
    
        fixes #78015
    
        reviewed/approved by jrb, luis, jody
    
    2002-05-28  Satyajit Kanungo <satyajit.kanungo@wipro.com>
    
            * gnome-keyboard-properties.c : Changed the help file link
              to get the help document from user-guide.
    
    
    Sun May 26 11:30:25 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-keyboard-properties.c (main): use APPID instead of argv[0]
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * gnome-keyboard-properties.c (get_legacy_settings): don't copy
        the volume, this setting is gone
        (main): dont' show_all() the dialog
    
        * gnome-keyboard-properties.glade: hide the "other" option button
    
        fixes for #78016
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : some minor tweakage.
    
    Mon May 13 17:32:25 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (delay_to_widget): hook up widget
        correctly.
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (dialog_response) : support help.
        * gnome-keyboard-properties.glade : add help.
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : long forgotten atk patch from Dave.
          Sorry.
    
    2002-04-22  Rachel Hestilow  <hestilow@ximian.com>
    
        * gnome-keyboard-properties.glade: Restore missing OptionMenu
        labels.
    
    Thu Apr 18 13:59:12 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-keyboard-properties.glade: cleanups.
    
        * gnome-keyboard-properties.c: remove accessibility pane and add a
        button.
    
    Wed Apr 10 18:06:25 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * keyboard.desktop.in (Exec): s/gnome2/gnome
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : click_volume range is 0..100
    
    2002-03-26  Lauris Kaplinski  <lauris@ximian.com>
    
        * gnome-keyboard-properties.c (bell_to_widget): Be nice on
        invalid and NULL Gconf values
    
    2002-03-25  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (volume_to_widget) : new.
        (volume_from_widget) : new.
        (setup_dialog) : use them here.
    
    2002-03-25  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (setup_accessibility) : Use
          gtk_label_new_with_mnemonic and add an accel to the label.
    
    2002-03-19  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (_to_widget) : fix signature.
        (*_from_widget) : fix signature.
    
    2002-03-13  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (setup_accessibility) : new.
        (main) : install the accessibility page.
    
    2002-03-19  Richard Hestilow  <hestilow@ximian.com>
    
        * gnome-keyboard-properties.c (bell_enums): Swap around. This
        was initially reversed because of a bug in gconf-peditor.
        Ideally this code should use the new enum functions, but
        the existing stuff works so I so no immediate need to rewrite
        it.
        (*_to/from_widget): Convert to new signature.
    
    2002-03-19  Lauris Kaplinski  <lauris@ximian.com>
    
        * gnome-keyboard-properties.c (bell_to_widget): Check that
        value actually is string - that fixes crash with broken schemas
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-keyboard-properties.c: (main):
    
        Activate the settings daemon if its not already running.
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties.c: s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * Make dialog Apply/Close.
    
    Fri Feb  8 23:53:10 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (dialog_response): hook up buttons.
    
    2002-01-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Install icon into the standard pixmaps directory
        so that Panel & Nautilus will pick up on it.
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (bin_PROGRAMS): Rename binary
        gnome2-keyboard-properties
    
    Tue Jan  8 15:49:15 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * .cvsignore: update
        * Makefile.am: Add gnome-keyboard-properties.c
        * gnome-keyboard-properties.c: New, much nicer capplet.
        * gnome-keyboard-properties.glade: glade file for above.
        * keyboard-bell.png:
        * keyboard-cursor.png:
        * keyboard-repeat.png:
        * keyboard-volume.png: Images for above.  Note,
        keyboard-cursor.png is my pathetic attempt at artwork, and will
        prolly change in the future.
    
    2001-12-20  Seth Nickell  <snickell@stanford.edu>
    
        * keyboard.desktop.in:
    
        Add Categories field so it shows up correctly in the
        panel menus.
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (dialog_button_clicked_cb): Update
        (main): Use a GtkDialog rather than a GnomeDialog; don't place a
        weak ref on gtk_main_quit
    
        * Makefile.am: Update
    
        * keyboard.desktop.in.in (Exec): Update
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (apply_settings): Comment out; pending
        removal to gnome-settings-daemon
        (setup_dialog): Set conversion functions
        (rate_to_widget, rate_from_widget, delay_to_widget)
        (delay_from_widget): Implement
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c: Port to GConf/GNOME 2.0. Many changes.
        (setup_dialog): Use correct widget name
        (create_dialog): Use gtk_image_ functions for the volume icon
        (get_int_from_changeset): Use return value of
        gconf_change_set_check_value to determine if the key is in the set
        (get_legacy_settings): Enable
    
    2001-10-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Make OAF file creation generic
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Remove support for disabling bonobo-conf build
    
        * Makefile.am: Change the binary name to
        keyboard-properties-control and create a wrapper script from
        ../common/wrapper-script.in to be named keyboard-properties
    
    2001-08-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.xml: Fixed default delay setting
    
    2001-07-31  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am (cappletname): add DISTDIR to install-data-local
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * RELEASE : 1.5.2
    
    2001-07-26  Joakim Ziegler  <joakim@ximian.com>
    
      * keyboard-properties.glade: Changed the label of the delay slider to be
      more intuitive.
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (apply_settings): Initialize the other
        fields of this data structure
        (apply_settings): Use lookup table to get the values to put in
        kbdsettings
        (apply_settings): Tweak the numbers a bit
    
        * Makefile.am (bonobo_sources): Remove bonobo-property-editor-range.[ch]
    
    2001-07-25  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am: remove the OAF_FILE_IN_RULE and copy it here
        (bonobo_sources): add bonobo-properties-editor-range.[ch]
    
        * Makefile.am: remove the DESKTOP_IN_RULE and copy the sed here
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (main): Pass in legacy files to capplet_init.
    
    2001-07-20  Chema Celorio  <chema@celorio.com>
    
        * RELEASE : 1.5.0
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Remove SUBDIRS
        Remove extraneous EXTRA_DIST
        (EXTRA_DIST): Make sure to include defaults and OAF files
    
        * keyboard.desktop.in.in (Exec): Update for bonoboization
    
        * Bonobo_Control_Capplet_keyboard_properties.oaf: Update to
        correct binary name
    
        * main.c (create_dialog): Use GNOMECC_GLADE_DIR rather than
        GLADE_DATADIR
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (create_dialog): Revert to old prototype.
        (setup_dialog): Moved signal_connect on demo button to here.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * Rewritten to use bonobo-conf.
    
    2001-07-18  Jakub Steiner <jimmac@ximian.com>
    
        * keyboard-capplet.png: use the 3d version.
    
    2001-07-17  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am: nice and clean just as we like it
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (EXTRA_DIST): Added missing icons_DATA
    
    2001-07-17  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am ($(desktop).in): desktop.in.in -> desktop.in ->desktop
        so that we can merge the incondir path.
        * add keyboard-capplet.png (by jimmac) an use it
    
    2001-07-10  Kai Lahmann <kl@linuxfaqs.de>
    
        * keyboard-properties.desktop: Fixed wrong binary name
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * prefs-widget.c (set_scale): Add appropriate casts
    
    2000-12-26  Jacob "Ulysses" Berkman  <jacob@helixcode.com>
    
        * keyboard-properties.glade: re-did the UI a bit
    
    2000-10-08  Bradford Hovinen  <hovinen@helixcode.com>
    
        * Makefile.am (EXTRA_DIST): Add translation file
    
    2000-09-12  Bradford Hovinen  <hovinen@helixcode.com>
    
        * preferences.c (preferences_clone): Added in missing code to copy
        preferences over
    
    
    svn path=/trunk/; revision=8666

 capplets/keyboard/ChangeLog                         |  9 +++++++++
 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 11 +++++++++--
 capplets/keyboard/gnome-keyboard-properties.glade   |  2 +-
 3 files changed, 19 insertions(+), 3 deletions(-)

commit 71ff159486d82bf45b99bed16b69b87234bb1582
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 21 18:22:17 2008 +0000

    fix a leak and some random cleanup
    
    2008-04-21  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_commit), (about_me_focus_out),
        (about_me_set_address_field), (about_me_setup_dialog): fix a leak
        and some random cleanup
    
    svn path=/trunk/; revision=8665

 capplets/about-me/ChangeLog        |  6 +++++
 capplets/about-me/gnome-about-me.c | 46 ++++++++++++++++----------------------
 2 files changed, 25 insertions(+), 27 deletions(-)

commit 2bbedf112fa0c6ca1e9d2691ed85423f048231a0
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 21 16:11:06 2008 +0000

    updated for 2.23.1.
    
    2008-04-21  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: updated for 2.23.1.
    
    svn path=/trunk/; revision=8663

 ChangeLog    |  5 +++++
 NEWS         | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 79 insertions(+), 1 deletion(-)

commit d381f4019ff475533303cf355fc34fecc1ab870c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 20 21:00:36 2008 +0000

    drop redundant GType stuff
    
    2008-04-20  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_dialog_finalize),
        (file_transfer_dialog_class_init): drop redundant GType stuff
    
    svn path=/trunk/; revision=8662

 capplets/common/ChangeLog              | 5 +++++
 capplets/common/file-transfer-dialog.c | 8 +-------
 2 files changed, 6 insertions(+), 7 deletions(-)

commit 10e93c23ad520ed19e7d3e8ce253f847e439feab
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 20 10:29:49 2008 +0000

    unref the thumbnail image after passing it to the callback. Callers will
    
    2008-04-20  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (message_from_child): unref the thumbnail image
        after passing it to the callback. Callers will have to ref it if they
        want to keep it until after the callback has returned
    
    2008-04-20  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_thumbnail_in_treeview):
        * appearance-themes.c: (theme_thumbnail_update),
        (theme_thumbnail_generate): adapt to modified refcounting in the
        thumbnailer; thumbnails don't need to be unref'ed unless we explicitly
        retain a reference
    
    svn path=/trunk/; revision=8661

 capplets/appearance/ChangeLog           | 8 ++++++++
 capplets/appearance/appearance-style.c  | 2 --
 capplets/appearance/appearance-themes.c | 7 +++----
 capplets/common/ChangeLog               | 6 ++++++
 capplets/common/theme-thumbnail.c       | 5 ++++-
 5 files changed, 21 insertions(+), 7 deletions(-)

commit ae6085786edd32f47e5c6c845d8dd02ae47d43eb
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Apr 19 22:42:05 2008 +0000

    introduced dependency on iso-codes
    
    svn path=/trunk/; revision=8660

 ChangeLog    |  4 ++++
 configure.in | 15 +++++++++++++++
 2 files changed, 19 insertions(+)

commit ba1f563662b55dbb8edc1caf71674961b9dbca32
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Apr 19 11:25:06 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8659

 po/ChangeLog |  4 ++++
 po/es.po     | 66 +++++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 56 insertions(+), 14 deletions(-)

commit 6cfdc4646080b80a62d48ac31c3c0f72f104305a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Apr 19 10:30:34 2008 +0000

    figure out where GTK+ expects its theme engines and make that info
    
    2008-04-19  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: figure out where GTK+ expects its theme engines and
        make that info available to interested capplets
    
    2008-04-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_details): accept NULL for the
        symbolic_colors parameter if the caller doesn't want that information
    
    2008-04-19  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * appearance-themes.c: (theme_validate),
        (theme_message_area_update), (themes_init):
        * appearance.h: show a warning message when the selected theme is
        incomplete (e.g. missing icon theme or gtk theme engine)
    
    svn path=/trunk/; revision=8658

 ChangeLog                               |   5 +
 capplets/appearance/ChangeLog           |   8 ++
 capplets/appearance/Makefile.am         |   1 +
 capplets/appearance/appearance-themes.c | 180 +++++++++++++++++++++++---------
 capplets/appearance/appearance.h        |   2 +
 capplets/common/ChangeLog               |   5 +
 capplets/common/gtkrc-utils.c           |   2 +
 configure.in                            |   5 +
 8 files changed, 159 insertions(+), 49 deletions(-)

commit 6a084df8d11c8227ff3ebfcb5c84c458b1082855
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Apr 17 18:47:42 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8657

 po/ChangeLog |   4 ++
 po/es.po     | 158 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 86 insertions(+), 76 deletions(-)

commit 2b50bd2ccb51362d838b3afae51adf17d1360300
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Apr 17 16:33:15 2008 +0000

    Patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
    2008-04-17  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Lincoln de Sousa <lincoln@minaslivre.org>
    
        * gnome-wp-xml.c (gnome_wp_file_changed), (gnome_wp_xml_add_monitor),
        (gnome_wp_xml_load_from_dir), (gnome_wp_xml_load_list): replace gnome-vfs by
        gio (part of bug #524401)
    
    svn path=/trunk/; revision=8656

 capplets/appearance/ChangeLog      |   8 +++
 capplets/appearance/gnome-wp-xml.c | 133 ++++++++++++++++++++++---------------
 2 files changed, 87 insertions(+), 54 deletions(-)

commit 20ec24c30c2d1730f2f0a2e7e43693de5a6dabbb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Apr 16 16:47:56 2008 +0000

    open the preferred applications dialog on the a11y page (bug #528196)
    
    2008-04-16  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (cb_at_preferences): open the preferred applications dialog
        on the a11y page (bug #528196)
    
    svn path=/trunk/; revision=8655

 capplets/accessibility/at-properties/ChangeLog | 5 +++++
 capplets/accessibility/at-properties/main.c    | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0c4f13adf40d0bc83680f7ad5f999bfa864acb72
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Apr 16 16:38:50 2008 +0000

    add -p/--show-page to open the dialog on a specific page (see bug #528196)
    
    2008-04-16  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-da-capplet.c: (show_dialog), (main):
        * gnome-default-applications-properties.glade: add -p/--show-page to
        open the dialog on a specific page (see bug #528196)
    
    svn path=/trunk/; revision=8654

 capplets/default-applications/ChangeLog            |  6 +++
 capplets/default-applications/gnome-da-capplet.c   | 43 ++++++++++++++++++++--
 .../gnome-default-applications-properties.glade    |  6 +--
 3 files changed, 49 insertions(+), 6 deletions(-)

commit 956ced0c51f61b30dfcdcd2d8698a9c9242d95a3
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Apr 14 20:42:04 2008 +0000

    dropping unneeded backup function
    
    svn path=/trunk/; revision=8653

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7716fbe14bfbf370235aace1ef8c5b4a97666b89
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Apr 14 00:35:49 2008 +0000

    Add a custom cell renderer for metatheme names to allow rounded corners on
    
    2008-04-14  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am:
        * appearance-themes.c: (themes_init):
        * caption-cellrenderer.c:
        * caption-cellrenderer.h:
    
        Add a custom cell renderer for metatheme names to allow rounded corners
        on the selection indicator. Fixes bug 500276.
    
    svn path=/trunk/; revision=8652

 capplets/appearance/ChangeLog              |  10 +++
 capplets/appearance/Makefile.am            |   4 +-
 capplets/appearance/appearance-themes.c    |   3 +-
 capplets/appearance/caption-cellrenderer.c | 114 +++++++++++++++++++++++++++++
 capplets/appearance/caption-cellrenderer.h |  47 ++++++++++++
 5 files changed, 176 insertions(+), 2 deletions(-)

commit 47f12d641a10e01bd594b46b08441cb72a8cc095
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Apr 13 20:20:17 2008 +0000

    Updated Bulgarian translation by Yavor Doganov <yavor@gnu.org>
    
    2008-04-13  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Yavor Doganov <yavor@gnu.org>
    
    svn path=/trunk/; revision=8650

 po/ChangeLog |    5 +
 po/bg.po     | 2380 ++++++++++++++++++++++++----------------------------------
 2 files changed, 975 insertions(+), 1410 deletions(-)

commit debc4f4091bab56d6f22d0cc004d558d050ff6a5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 13 17:06:34 2008 +0000

    Disable theme thumbnailing on MacOS. Some CoreFoundation functionality can
    
    2008-04-13  Jens Granseuer  <jensgr@gmx.net>
    
        Disable theme thumbnailing on MacOS. Some CoreFoundation functionality
        can apparently no longer be used from forked processes (see bug
        #525058). Unfortunately, it is used by freetype/pango/cairo/gtk, and
        as such by our forked thumbnailer. This change means no thumbnails on
        MacOS, but I suppose that's better than crashing. Reworking the
        thumbnailer to work without forking is going to be a major effort.
    
        * theme-thumbnail.c: (theme_thumbnail_factory_init): only enable the
        asynchronous thumbnailer if not on MacOS
    
    svn path=/trunk/; revision=8649

 capplets/common/ChangeLog         | 12 ++++++++++++
 capplets/common/theme-thumbnail.c | 15 ++++++++++++---
 2 files changed, 24 insertions(+), 3 deletions(-)

commit 3e446a1955eb1aa3cae1d796bb3b110d39e43da1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 13 16:08:48 2008 +0000

    launch the error dialog with the proper parent so it actually becomes
    
    2008-04-13  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (passdlg_error_dialog),
        (passdlg_spawn_passwd), (passdlg_authenticate): launch the error
        dialog with the proper parent so it actually becomes possible to
        dismiss it. Also use GtkMessageDialog instead of eel, and reset the
        busy cursor when launching passwd fails.
    
    svn path=/trunk/; revision=8648

 capplets/about-me/ChangeLog                 |  8 ++++++
 capplets/about-me/gnome-about-me-password.c | 38 ++++++++++++++++-------------
 2 files changed, 29 insertions(+), 17 deletions(-)

commit d9af624fd0f0c85a2175179c8fcdea63dc07bb94
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 13 14:19:45 2008 +0000

    use the GnomeBG enum types instead of strings to handle options internally
    
    2008-04-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_option_menu_set),
        (wp_scale_type_changed), (wp_shade_type_changed),
        (wp_options_changed), (wp_shading_changed), (wp_props_wp_set),
        (wp_load_stuffs):
        * data/appearance.glade:
        * gnome-wp-item.c: (wp_item_option_to_string),
        (wp_item_shading_to_string), (wp_item_string_to_option),
        (wp_item_string_to_shading), (set_bg_properties),
        (gnome_wp_item_update), (gnome_wp_item_free):
        * gnome-wp-item.h:
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml),
        (gnome_wp_xml_save_list): use the GnomeBG enum types instead of
        strings to handle options internally and only convert when needed
    
    svn path=/trunk/; revision=8647

 capplets/appearance/ChangeLog             |  16 ++++
 capplets/appearance/appearance-desktop.c  | 122 ++++++------------------------
 capplets/appearance/data/appearance.glade |   8 +-
 capplets/appearance/gnome-wp-item.c       | 103 +++++++++++++------------
 capplets/appearance/gnome-wp-item.h       |  27 ++++---
 capplets/appearance/gnome-wp-xml.c        |  34 ++++++---
 6 files changed, 136 insertions(+), 174 deletions(-)

commit 511873c1f21076af6931da59f63b3ef660b3c7f3
Author: Jens Granseuer <jensg@src.gnome.org>
Date:   Sun Apr 13 10:51:48 2008 +0000

    remove left-over files
    
    svn path=/trunk/; revision=8646

 0 files changed

commit 394c5698a9463a0ba30b59f32733d0f892ad6d00
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Apr 12 12:12:29 2008 +0000

    include config.h, use strcmp instead of our home-grown g_str_nequal, and
    
    2008-04-12  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_details), (gtkrc_get_color_scheme):
        * gtkrc-utils.h: include config.h, use strcmp instead of our home-grown
        g_str_nequal, and constify the parameter of gtkrc_get_color_scheme
    
    svn path=/trunk/; revision=8645

 capplets/common/ChangeLog     |  6 ++++++
 capplets/common/gtkrc-utils.c | 25 ++++++++++++-------------
 capplets/common/gtkrc-utils.h |  2 +-
 3 files changed, 19 insertions(+), 14 deletions(-)

commit 4389eaa5ff91d8ee0d93a566613da7fbc4d8fac6
Author: Gerd Kohlberger <gerdk@svn.gnome.org>
Date:   Fri Apr 11 07:12:14 2008 +0000

    Remove unused custom widget. Clean up. (Bug #527418)
    
    2008-04-11  Gerd Kohlberger  <gerdk@svn.gnome.org>
    
        * gnome-mouse-properties.c: (create_dialog): Remove unused custom widget.
        * gnome-mouse-accessibility.h: Clean up. (Bug #527418)
    
    
    svn path=/trunk/; revision=8644

 capplets/mouse/ChangeLog                   |  5 +++
 capplets/mouse/gnome-mouse-accessibility.h | 60 ------------------------------
 capplets/mouse/gnome-mouse-properties.c    | 41 +-------------------
 3 files changed, 6 insertions(+), 100 deletions(-)

commit c0057bd40583367b6a2f21c8ceba05f75ef66c6a
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Apr 10 22:08:03 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8643

 po/ChangeLog |   4 ++
 po/es.po     | 158 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 84 insertions(+), 78 deletions(-)

commit 1df23c3083d9a58a9f48c2514315f7ce6650d30b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 8 19:04:34 2008 +0000

    fix include (sync with gedit)
    
    2008-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        * gedit-message-area.h: fix include (sync with gedit)
    
    svn path=/trunk/; revision=8642

 capplets/appearance/ChangeLog            |  4 ++++
 capplets/appearance/gedit-message-area.h | 38 ++++++++++++++++----------------
 2 files changed, 23 insertions(+), 19 deletions(-)

commit bdf68d23a0a9150c8dc3a3fa1c6f96552a584a6c
Author: Jens Granseuer <jensg@src.gnome.org>
Date:   Tue Apr 8 18:56:46 2008 +0000

    remove accidentally committed (and broken) desktop effects changes
    
    svn path=/trunk/; revision=8641

 capplets/appearance/Makefile.am                  |    2 -
 capplets/appearance/appearance-desktop-effects.c |  137 --
 capplets/appearance/appearance-desktop-effects.h |   22 -
 capplets/appearance/appearance-main.c            |    5 +-
 capplets/appearance/appearance.h                 |    4 -
 capplets/appearance/data/appearance.glade        | 1733 ++++++++++++----------
 6 files changed, 952 insertions(+), 951 deletions(-)

commit 5a99e085c1a47ec4e1aee0c34101f48274108b2f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 8 16:23:58 2008 +0000

    Based on a patch by: Matthias Clasen <mclasen@redhat.com>
    
    2008-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Matthias Clasen <mclasen@redhat.com>
    
        * main.c: (create_dialog): don't show the "accessible login" button if
        gdmsetup is not available (bug #526944)
    
    svn path=/trunk/; revision=8639

 capplets/accessibility/at-properties/ChangeLog | 7 +++++++
 capplets/accessibility/at-properties/main.c    | 7 +++++++
 2 files changed, 14 insertions(+)

commit a8008dc1e59d675fedd73d3c7ff16e79d9ba842a
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Tue Apr 8 12:04:49 2008 +0000

    Updated NEWS from 2.22 branch
    
    svn path=/trunk/; revision=8638

 NEWS                                             |   52 +
 capplets/appearance/Makefile.am                  |    2 +
 capplets/appearance/appearance-desktop-effects.c |  137 ++
 capplets/appearance/appearance-desktop-effects.h |   22 +
 capplets/appearance/appearance-main.c            |    5 +-
 capplets/appearance/appearance.h                 |    4 +
 capplets/appearance/data/appearance.glade        | 1731 ++++++++++------------
 7 files changed, 1002 insertions(+), 951 deletions(-)

commit dd4bfb2711420bd9a823df836305f31d2e6b07d3
Author: Eskild Hustvedt <eskildh@src.gnome.org>
Date:   Mon Apr 7 12:35:10 2008 +0000

    Updated Norwegian Nynorsk translation
    
    svn path=/trunk/; revision=8634

 po/ChangeLog |   4 +
 po/nn.po     | 416 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 258 insertions(+), 162 deletions(-)

commit d09a6f592a90b1e0295d784116900e6fdb9eb66f
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Mon Apr 7 10:24:38 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-04-07  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8633

 po/ChangeLog |  4 ++++
 po/et.po     | 11 ++++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit d74c5b4756bff70f750ca82ed6926d18c45cc4aa
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Apr 6 19:40:11 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-04-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8632

 po/ChangeLog |   4 +
 po/nb.po     | 561 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 319 insertions(+), 246 deletions(-)

commit aea7d9606cf28365340f73bdbe9627d55ce64f25
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Apr 6 15:23:53 2008 +0000

    rename "Advanced Configuration" tab to "Ignored Hosts" as that describes
    
    2008-04-06  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-network-preferences.glade: rename "Advanced Configuration" tab
        to "Ignored Hosts" as that describes it's content better (bug #314883)
    
    svn path=/trunk/; revision=8631

 capplets/network/ChangeLog                       | 5 +++++
 capplets/network/gnome-network-preferences.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 738c5007454812883cf99fea820454a9c169547b
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Apr 3 23:22:30 2008 +0000

    Translation updated
    
    2008-04-05  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated
    
    svn path=/trunk/; revision=8629

 po/ChangeLog |  4 +++
 po/hu.po     | 95 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 57 insertions(+), 42 deletions(-)

commit b3e0a106f3cb52baf4e5e9ade4883dcb9ad92d4d
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Thu Apr 3 20:48:42 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8627

 po/ChangeLog |   4 +
 po/he.po     | 420 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 207 insertions(+), 217 deletions(-)

commit 40ebc083cef84d610d8b93f8cfffe389d9379ec6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 1 19:24:43 2008 +0000

    get rid of unneeded sort model indirection
    
    2008-04-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (get_real_model), (clear_old_model),
        (append_keys_to_tree), (accel_edited_callback): get rid of unneeded
        sort model indirection
    
    svn path=/trunk/; revision=8624

 capplets/keybindings/ChangeLog                     |  6 ++++
 capplets/keybindings/gnome-keybinding-properties.c | 37 ++++------------------
 2 files changed, 12 insertions(+), 31 deletions(-)

commit ad7840772103abefc7ecfda0fd8bbf20d621bf8e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 1 18:41:51 2008 +0000

    sort mixer devices alphabetically (bug #525530)
    
    2008-04-01  Jens Granseuer  <jensgr@gmx.net>
    
        * mixer-support.c: (create_mixer_device_tree_model): sort mixer devices
        alphabetically (bug #525530)
    
    svn path=/trunk/; revision=8623

 capplets/sound/ChangeLog       |  5 +++++
 capplets/sound/mixer-support.c | 10 +++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit de1e37ceae5055ffad943b2be60379a81cfe1439
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 1 16:22:16 2008 +0000

    don't show modems and other unwanted devices (bug #523888)
    
    2008-04-01  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-properties-capplet.c: (device_added_callback): don't show
        modems and other unwanted devices (bug #523888)
    
    svn path=/trunk/; revision=8622

 capplets/sound/ChangeLog                  |   5 +
 capplets/sound/sound-properties-capplet.c | 153 +++++++++++++++---------------
 2 files changed, 84 insertions(+), 74 deletions(-)

commit 24d98528ea2c54337e30717df55342c8dcb65d7e
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Tue Apr 1 06:43:00 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-04-01  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8620

 po/ChangeLog |  4 ++++
 po/et.po     | 59 +++++++++--------------------------------------------------
 2 files changed, 13 insertions(+), 50 deletions(-)

commit dc29fc76e120bb43803d32504efe856f8ec2029e
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Mar 31 15:07:15 2008 +0000

    Missing NEWS and ChangeLog entries from 2.22.0 release
    
    svn path=/trunk/; revision=8618

 ChangeLog |  5 +++++
 NEWS      | 40 +++++++++++++++++++++++++++++++++++++++-
 2 files changed, 44 insertions(+), 1 deletion(-)

commit 04d6b6038d3047bb48bdec1d4b1e11a29404d504
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 31 12:29:49 2008 +0000

    Fix Esc and Backspace being bindable when Caps Lock is on (Closes:
    
    2008-03-31  Bastien Nocera  <hadess@hadess.net>
    
        * eggcellrendererkeys.c (grab_key_callback): Fix Esc and Backspace
        being bindable when Caps Lock is on (Closes: #524813)
    
    
    svn path=/trunk/; revision=8615

 capplets/keybindings/ChangeLog             | 5 +++++
 capplets/keybindings/eggcellrendererkeys.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 7c66cbc00a2ff83dd2993fc49b19a22af96fbafa
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 31 12:24:13 2008 +0000

    Up the version to 2.23.0 to avoid confusion
    
    2008-03-31  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: Up the version to 2.23.0 to avoid confusion
    
    
    svn path=/trunk/; revision=8614

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit e80c1a853b1ca852659a9494f6b99496cb99ba3c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 31 12:20:14 2008 +0000

    Fix category headers not appearing properly in the treeview when using a
    
    2008-03-31  Bastien Nocera  <hadess@hadess.net>
    
            * gnome-keybinding-properties.c (append_keys_to_tree_from_file):
        Fix category headers not appearing properly in the
        treeview when using a non-UTF-8 locale (Closes: #513988)
    
    
    svn path=/trunk/; revision=8613

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 1 +
 2 files changed, 7 insertions(+)

commit 4793494b5901ee64d6cda4cc3dc8a29200f3001e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 30 11:16:37 2008 +0000

    use G_DEFINE_TYPE instead of open-coding get_type
    
    2008-03-30  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_dialog_init): use
        G_DEFINE_TYPE instead of open-coding get_type
    
    svn path=/trunk/; revision=8611

 capplets/common/ChangeLog              |  5 +++++
 capplets/common/file-transfer-dialog.c | 33 ++-------------------------------
 2 files changed, 7 insertions(+), 31 deletions(-)

commit f4d34cc7303eead0df05c966ccd4d83c1f83ff79
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Mar 30 09:02:09 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8610

 po/ChangeLog |   4 +
 po/es.po     | 254 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 166 insertions(+), 92 deletions(-)

commit 111df53db7745504f07cd4e6bf94a667914d1d82
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Mar 29 13:29:57 2008 +0000

    sync with gnome-settings-daemon
    
    2008-03-29  Jens Granseuer  <jensgr@gmx.net>
    
        * eggaccelerators.c: (egg_accelerator_parse_virtual): sync with
        gnome-settings-daemon
    
    svn path=/trunk/; revision=8609

 capplets/keybindings/ChangeLog         | 5 +++++
 capplets/keybindings/eggaccelerators.c | 8 +++++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 86bfe7a01619d4802c37a80705a908cee326bd70
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Mar 29 11:48:06 2008 +0000

    fix mismatched modifier mapping between egg and GTK (so that e.g. <Super>
    
    2008-03-29  Jens Granseuer  <jensgr@gmx.net>
    
        * eggaccelerators.c: (egg_accelerator_parse_virtual),
        (egg_virtual_accelerator_name), (egg_virtual_accelerator_label),
        (egg_keymap_resolve_virtual_modifiers),
        (egg_keymap_virtualize_modifiers), (reload_modmap),
        (egg_keymap_get_modmap):
        * eggaccelerators.h: fix mismatched modifier mapping between egg
        and GTK (so that e.g. <Super> works) and replace some custom
        functionality with stock GTK
    
    svn path=/trunk/; revision=8608

 capplets/keybindings/ChangeLog         |  11 ++
 capplets/keybindings/eggaccelerators.c | 224 ++++++++-------------------------
 capplets/keybindings/eggaccelerators.h |  24 ++--
 3 files changed, 79 insertions(+), 180 deletions(-)

commit a12ed153f0dc65ce7088ecee32d9eae9a841aa90
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 28 22:03:09 2008 +0000

    keep the overwrite confirmation around for an entire job, so we don't
    
    2008-03-28  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_job_destroy),
        (file_transfer_dialog_overwrite), (file_transfer_job_schedule): keep
        the overwrite confirmation around for an entire job, so we don't reset
        the window position all the time
    
    svn path=/trunk/; revision=8606

 capplets/common/ChangeLog              |  7 ++++++
 capplets/common/file-transfer-dialog.c | 45 ++++++++++++++++++++++------------
 2 files changed, 37 insertions(+), 15 deletions(-)

commit eb420a2cbb0562897a0a4374c96f4617912933fb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 28 17:40:14 2008 +0000

    don't try to unref URIs if the theme package is invalid (bug #524567)
    
    2008-03-28  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_from_uri): don't try to
        unref URIs if the theme package is invalid (bug #524567)
    
    svn path=/trunk/; revision=8603

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/theme-installer.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 24e601d3f8bd89b3baa2f09e696b7503fb11ac3b
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Fri Mar 28 03:06:49 2008 +0000

    Updated Georgian translation
    
    svn path=/trunk/; revision=8602

 po/ChangeLog |    4 +
 po/ka.po     | 2310 ++++++++++++++++++++++++----------------------------------
 2 files changed, 962 insertions(+), 1352 deletions(-)

commit cf0721ca194c374ecb3518b1008fd692c8d4110b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 27 20:59:44 2008 +0000

    add support for file overwrite confirmation
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_dialog_set_prop),
        (file_transfer_dialog_get_prop), (file_transfer_dialog_init),
        (file_transfer_job_update), (file_transfer_job_progress),
        (file_transfer_dialog_overwrite), (file_transfer_job_schedule),
        (file_transfer_dialog_copy_async):
        * file-transfer-dialog.h: add support for file overwrite confirmation
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_real): remove bogus flag
        (gnome_theme_install_from_uri): update for internal API change
    
    svn path=/trunk/; revision=8601

 capplets/appearance/ChangeLog          |   5 +
 capplets/appearance/theme-installer.c  |   3 +-
 capplets/common/ChangeLog              |   9 ++
 capplets/common/file-transfer-dialog.c | 176 ++++++++++++++++++++++++++-------
 capplets/common/file-transfer-dialog.h |   6 ++
 5 files changed, 160 insertions(+), 39 deletions(-)

commit c4ec1346adaa61bd33fc4d417a3f631af9df80e1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 27 20:06:47 2008 +0000

    fix various string and layout issues (bug #521826)
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-a11y.c: (setup_a11y_tabs):
        * gnome-keyboard-properties.c: (create_dialog), (setup_dialog):
        * gnome-keyboard-properties.glade: fix various string and layout
        issues (bug #521826)
    
    svn path=/trunk/; revision=8600

 capplets/keyboard/ChangeLog                        |  7 +++++
 capplets/keyboard/gnome-keyboard-properties-a11y.c |  8 ------
 capplets/keyboard/gnome-keyboard-properties.c      | 19 +++++--------
 capplets/keyboard/gnome-keyboard-properties.glade  | 31 +++++-----------------
 4 files changed, 20 insertions(+), 45 deletions(-)

commit 23326ef678563f1bc777caf227c75a31e1cf07c3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 27 19:32:49 2008 +0000

    don't mention esd (bug #519722)
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-properties.glade: don't mention esd (bug #519722)
    
    svn path=/trunk/; revision=8599

 capplets/sound/ChangeLog              | 4 ++++
 capplets/sound/sound-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f70ad15ad5912221bdd40cb948b03ab71ea1ead6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 27 19:29:13 2008 +0000

    Patch by: Patrick Wade <patrick.wade@sun.com>
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Patrick Wade <patrick.wade@sun.com>
    
        * appearance-themes.c: (custom_font_cb),
        (theme_message_area_response_cb), (theme_message_area_update),
        (themes_init), (themes_shutdown):
        * appearance.h: allow the user to revert a font change proposed by a
        metatheme (bug #519065)
    
    svn path=/trunk/; revision=8598

 capplets/appearance/ChangeLog           |  10 ++
 capplets/appearance/appearance-themes.c | 199 +++++++++++++++++++++++++++++---
 capplets/appearance/appearance.h        |   6 +
 3 files changed, 196 insertions(+), 19 deletions(-)

commit debb696c492340b4c75ff1f9784b3132da2f1ee3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 27 19:23:18 2008 +0000

    Patch by: Patrick Wade <patrick.wade@sun.com>
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Patrick Wade <patrick.wade@sun.com>
    
        * at-enable-dialog.glade:
        * main.c: (create_dialog), (cb_at_preferences),
        (cb_keyboard_preferences), (cb_mouse_preferences),
        (cb_login_preferences), (setup_dialog): add button to launch mouse
        accessibility properties (bug #515078)
    
    2008-03-27  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Patrick Wade <patrick.wade@sun.com>
    
        * gnome-mouse-properties.c: (main):
        * gnome-mouse-properties.glade: add support for starting the capplet
        on the appearance tab (required by bug #515078)
    
    svn path=/trunk/; revision=8597

 capplets/accessibility/at-properties/ChangeLog     | 10 ++++++
 .../at-properties/at-enable-dialog.glade           | 21 +++++++++++-
 capplets/accessibility/at-properties/main.c        | 23 ++++++++++---
 capplets/mouse/ChangeLog                           |  8 +++++
 capplets/mouse/gnome-mouse-properties.c            | 38 +++++++++++++++++++++-
 capplets/mouse/gnome-mouse-properties.glade        |  4 +--
 6 files changed, 95 insertions(+), 9 deletions(-)

commit a0dcc1366aec45d154f3eab4c3582de60d6cb298
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Mar 27 17:15:19 2008 +0000

    add "Maximize Vertically" and "Maximize Horizontally" to possible
    
    2008-03-27  Cosimo Cecchi  <cosimoc@gnome.org>
    
        * metacity-window-manager.c: (metacity_change_settings),
        (metacity_get_settings), (metacity_get_double_click_actions):
        add "Maximize Vertically" and "Maximize Horizontally" to possible
        double-click actions. Closes bug #329503.
    
    svn path=/trunk/; revision=8596

 libwindow-settings/ChangeLog                 |  7 +++++++
 libwindow-settings/metacity-window-manager.c | 14 ++++++++++++++
 2 files changed, 21 insertions(+)

commit 7cd223066a447e0f8c9d027d5b331f93e617a06b
Author: Cosimo Cecchi <cosimoc@gnome.org>
Date:   Thu Mar 27 17:13:28 2008 +0000

    Bump required metacity version to 2.23.1
    
    2008-03-27  Cosimo Cecchi  <cosimoc@gnome.org>
    
        * configure.in: Bump required metacity version to 2.23.1
    
    svn path=/trunk/; revision=8595

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit eecd35b83c9802095b89ee650d850422eb2cab18
Author: Philip Withnall <pwithnall@svn.gnome.org>
Date:   Wed Mar 26 15:59:05 2008 +0000

    Updated British English translation.
    
    2008-03-25  Philip Withnall  <pwithnall@svn.gnome.org>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=8593

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 48 ++++++++++++++++++++++++------------------------
 2 files changed, 28 insertions(+), 24 deletions(-)

commit 4bdb8a491a5f6a31cb7818f29a87254b7022966c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 24 19:52:24 2008 +0000

    amend previous commit to use GTK_STOCK_STOP instead of "gtk-stop"
    
    2008-03-24  Jens Granseuer  <jensgr@gmx.net>
    
        * drw-break-window.c: (drw_break_window_init): amend previous commit
        to use GTK_STOCK_STOP instead of "gtk-stop"
    
    svn path=/trunk/; revision=8592

 typing-break/ChangeLog          | 5 +++++
 typing-break/drw-break-window.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 93832db96031cd90c80716052abcfcb577714a50
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 24 18:11:37 2008 +0000

    new Tango-style icons by David Prieto <frandavid100@gmail.com> (bug
    
    2008-03-24  Jens Granseuer  <jensgr@gmx.net>
    
        * bar*.png: new Tango-style icons by David Prieto
        <frandavid100@gmail.com> (bug #523965)
    
        * drw-break-window.c: (drw_break_window_init): replace custom stop icon
        by gtk-stop stock icon
        * Makefile.am:
        * stop.png: remove
    
    svn path=/trunk/; revision=8591

 typing-break/ChangeLog          |  10 ++++++++++
 typing-break/Makefile.am        |   2 +-
 typing-break/bar-disabled.png   | Bin 473 -> 496 bytes
 typing-break/bar-green.png      | Bin 253 -> 286 bytes
 typing-break/bar-red.png        | Bin 258 -> 277 bytes
 typing-break/bar.png            | Bin 331 -> 362 bytes
 typing-break/drw-break-window.c |   2 +-
 typing-break/stop.png           | Bin 2248 -> 0 bytes
 8 files changed, 12 insertions(+), 2 deletions(-)

commit 0c9753bb726b086cd8569a64ddb4abd5be95a8ad
Author: Jaap A. Haitsma <jaap@haitsma.org>
Date:   Mon Mar 24 17:58:37 2008 +0000

    New tango icon (bug #523916)
    
    2008-03-24  Jaap A. Haitsma  <jaap@haitsma.org>
    
        * visual-bell.png: New tango icon
        (bug #523916)
    
    svn path=/trunk/; revision=8590

 capplets/sound/ChangeLog       |   5 +++++
 capplets/sound/visual-bell.png | Bin 2357 -> 2381 bytes
 2 files changed, 5 insertions(+)

commit 0915e0fd0551e239b7b2d78607cb9708647b0d0c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 24 17:48:00 2008 +0000

    don't show the typing break tab if the typing monitor is not available
    
    2008-03-24  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.c: (setup_dialog): don't show the typing
        break tab if the typing monitor is not available (bug #524034)
    
    svn path=/trunk/; revision=8589

 capplets/keyboard/ChangeLog                   |  5 +++
 capplets/keyboard/gnome-keyboard-properties.c | 54 ++++++++++++++++-----------
 2 files changed, 38 insertions(+), 21 deletions(-)

commit 35c9969c4d95a7282fd9df31f57da3f87734ac36
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Mon Mar 24 14:04:40 2008 +0000

    Updated Georgian translation
    
    svn path=/trunk/; revision=8588

 po/ka.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bed14bce7ead760033932342b9bf87685f464b90
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Mon Mar 24 14:03:33 2008 +0000

    Updated Georgian translation
    
    svn path=/trunk/; revision=8587

 po/ka.po | 338 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 231 insertions(+), 107 deletions(-)

commit 57cb68acdd8fbca33ed3552cab67415a04fdb456
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Sat Mar 22 22:18:30 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-03-23  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8586

 po/ChangeLog |  4 ++++
 po/et.po     | 42 ++++++++++++++++--------------------------
 2 files changed, 20 insertions(+), 26 deletions(-)

commit f546675ec623f369a09a4c4d5b452d9abe0b6710
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Thu Mar 20 20:53:55 2008 +0000

    Updated Italian translation.
    
    2008-03-20  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8585

 po/ChangeLog |  4 +++
 po/it.po     | 92 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 59 insertions(+), 37 deletions(-)

commit 5a04feb49a0b96e1219525c41a36cbf3145e920d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Mar 19 19:16:57 2008 +0000

    don't declare the backgrounds icon view reorderable. It's not. Besides,
    
    2008-03-19  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: don't declare the backgrounds icon view
        reorderable. It's not. Besides, setting this property breaks the
        custom drag and drop functionality (bug #523347). This fixes the
        critical warning when trying to drag an unselected item, but it looks
        like the new nautilus doesn't support background drag and drop, anyway
    
    svn path=/trunk/; revision=8584

 capplets/appearance/ChangeLog             | 8 ++++++++
 capplets/appearance/data/appearance.glade | 1 -
 2 files changed, 8 insertions(+), 1 deletion(-)

commit b92e2f90e5daae78ab4eaf0b5b582dc16d539d67
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Mar 19 18:09:49 2008 +0000

    don't crash when called for a drag with no selected items (bug #523379)
    
    2008-03-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_dnd_data_received): don't crash when called for a
        drag with no selected items (bug #523379)
    
    svn path=/trunk/; revision=8583

 capplets/keyboard/ChangeLog                         |  6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 14 +++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit 947e50c2b4d2490a538965feabd9955ada6659d1
Author: Yuri Kozlov <kozlov.y@gmail.com>
Date:   Sat Mar 15 19:32:01 2008 +0000

    Updated Russian translation.
    
    2008-03-15  Yuri Kozlov  <kozlov.y@gmail.com>
    
            * ru.po: Updated Russian translation.
    
    
    svn path=/trunk/; revision=8582

 po/ChangeLog |    4 +
 po/ru.po     | 2218 ++++++++++++++++++++++------------------------------------
 2 files changed, 857 insertions(+), 1365 deletions(-)

commit 3d19d6f56dee9b881dd76b5dbfcae5fe65dfc966
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 14 23:23:57 2008 +0000

    stop widget accelerators from activating while the user is entering a new
    
    2008-03-15  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (accel_edited_callback),
        (accel_cleared_callback), (start_editing_cb),
        (maybe_block_accels), (setup_dialog): stop widget accelerators
        from activating while the user is entering a new shortcut. This
        allows binding shortcuts that are used as accels in the capplet
        dialog, e.g. for the Help and Close buttons (bug #313228)
    
    svn path=/trunk/; revision=8581

 capplets/keybindings/ChangeLog                     |  9 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 37 +++++++++++++++-------
 2 files changed, 35 insertions(+), 11 deletions(-)

commit c751e9191cbfb9c0ba9c75b774351052e1f555ff
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 14 20:00:49 2008 +0000

    remove debugging output
    
    2008-03-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (append_keys_to_tree_from_file):
        remove debugging output
    
    svn path=/trunk/; revision=8580

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit bf86d8c79d62a3bbb2bb3436e28422472950be3c
Author: Sunil Mohan Adapa <sunilmohan@fsf.org.in>
Date:   Wed Mar 12 06:07:37 2008 +0000

    Updated Telugu traslation done by Krishna Babu K <kkrothap@redhat.com>.
    
    2008-03-12  Sunil Mohan Adapa  <sunilmohan@fsf.org.in>
    
            * te.po: Updated Telugu traslation done by
            Krishna Babu K <kkrothap@redhat.com>.
    
    
    svn path=/trunk/; revision=8579

 po/ChangeLog |    5 +
 po/te.po     | 5284 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 2927 insertions(+), 2362 deletions(-)

commit 6d3edb2018c62bbf0d78e218094f813302f9060e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Mar 11 19:00:37 2008 +0000

    actually check the cursor size before changing it in GConf, not the theme
    
    2008-03-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set): actually check the
        cursor size before changing it in GConf, not the theme name
        (thanks to Kjartan Maraas)
    
    svn path=/trunk/; revision=8578

 capplets/common/ChangeLog           | 6 ++++++
 capplets/common/gnome-theme-apply.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 70c6a9a66ad44bf81797ca37ddb8532e340261b0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Mar 11 18:16:34 2008 +0000

    don't resize the font samples vertically when the window is resized (bug
    
    2008-03-11  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: don't resize the font samples vertically when
        the window is resized (bug #521823)
    
    svn path=/trunk/; revision=8577

 capplets/appearance/ChangeLog             | 5 +++++
 capplets/appearance/data/appearance.glade | 7 +++++++
 2 files changed, 12 insertions(+)

commit d34d7a02e6510cb0fdcab4ba58b2aceac4f0e65b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Mar 11 17:43:43 2008 +0000

    Encountering a theme that could not be thumbnailed (e.g. because the
    
    2008-03-11  Jens Granseuer  <jensgr@gmx.net>
    
        Encountering a theme that could not be thumbnailed (e.g. because the
        metacity theme for a metatheme isn't installed) would make the
        thumbnailer crash. Since it's not restarted by the appearance capplet
        this would result in all themes encountered after the broken one not
        to be thumbnailed either. This change fixes up error handling in the
        thumbnailer so that the broken theme is simply skipped and processing
        can continue with the next one. (bug #521009)
    
        * theme-thumbnail.c: (create_meta_theme_pixbuf),
        (create_metacity_theme_pixbuf), (message_from_capplet),
        (message_from_child), (read_pixbuf),
        (generate_theme_thumbnail_async), (theme_thumbnail_factory_init):
        properly handle failed thumbnailing attempts
    
    svn path=/trunk/; revision=8576

 capplets/common/ChangeLog         | 16 ++++++++
 capplets/common/theme-thumbnail.c | 83 ++++++++++++++++++++++++---------------
 2 files changed, 67 insertions(+), 32 deletions(-)

commit daa1c4b87637718b74b68440d38dd7d0125fdbcb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Mar 11 17:37:09 2008 +0000

    handle failed thumbnailing attempts properly
    
    2008-03-11  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnailer.c: (main): handle failed thumbnailing attempts
        properly
    
    svn path=/trunk/; revision=8575

 vfs-methods/themus/ChangeLog           |  5 +++++
 vfs-methods/themus/theme-thumbnailer.c | 11 +++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit d3b988bc363b32d52a82287ebffb647dcb01ad3c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Mar 11 17:33:31 2008 +0000

    don't free the GConf value if we don't have one. Fixes a crash when
    
    2008-03-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_numeric_range_widget_changed): don't
        free the GConf value if we don't have one. Fixes a crash when schemas
        are not properly installed (bug #520744)
    
    svn path=/trunk/; revision=8574

 capplets/common/ChangeLog               |  6 ++++++
 capplets/common/gconf-property-editor.c | 11 +++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

commit d7b2a5e962e32e94e0bd28f9d51717825e111ea6
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Mon Mar 10 12:03:25 2008 +0000

    Updated Marathi Translations
    
    svn path=/trunk/; revision=8572

 po/ChangeLog |   4 +++
 po/mr.po     | 102 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 68 insertions(+), 38 deletions(-)

commit d2fec3fe1ef7b5961a8d4cb39f94960a98189654
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Mon Mar 10 11:29:45 2008 +0000

    updated assamese translations
    
    svn path=/trunk/; revision=8571

 po/ChangeLog |   4 +
 po/as.po     | 878 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 446 insertions(+), 436 deletions(-)

commit fb58ff0bed4628166f0a4101caf865e61ce78bda
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Mon Mar 10 09:30:26 2008 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=8570

 po/ChangeLog |    4 +
 po/el.po     | 1093 ++++++++++++++++++++++------------------------------------
 2 files changed, 409 insertions(+), 688 deletions(-)

commit a02605cdcdb918f6068d24f64f82f022f3a3b40d
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Sun Mar 9 17:50:29 2008 +0000

    hindi update
    
    svn path=/trunk/; revision=8569

 po/ChangeLog |    4 +
 po/hi.po     | 4537 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 2197 insertions(+), 2344 deletions(-)

commit 7dfbf87a3af64649cf6a31258aacc5a56499bde6
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Mar 9 16:07:09 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8568

 po/ChangeLog | 4 ++++
 po/es.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 0db7e950114c70e168806ffca5916aa1257461fe
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sun Mar 9 08:53:47 2008 +0000

    Updated Traditional Chinese translation(Hong Kong). Updated Traditional
    
    2008-03-09  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
            * zh_HK.po: Updated Traditional Chinese translation(Hong Kong).
            * zh_TW.po: Updated Traditional Chinese translation(Taiwan).
    
    
    
    svn path=/trunk/; revision=8567

 po/ChangeLog |    5 +
 po/zh_HK.po  | 1231 +++++++++-------------------------------------------------
 po/zh_TW.po  | 1231 +++++++++-------------------------------------------------
 3 files changed, 355 insertions(+), 2112 deletions(-)

commit 0a69942cfcba0c4f01e8941b40b197f539bc084b
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Sat Mar 8 23:12:01 2008 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=8566

 po/ChangeLog |    4 +
 po/da.po     | 2798 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1449 insertions(+), 1353 deletions(-)

commit 2c17f8bd3a549b894aba23297070b0be779272ca
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Sat Mar 8 22:46:10 2008 +0000

    Updated Lithuanian translation.
    
    2008-03-09  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    
    svn path=/trunk/; revision=8565

 po/ChangeLog |    4 +
 po/lt.po     | 2236 ++++++++++++++++++++++------------------------------------
 2 files changed, 846 insertions(+), 1394 deletions(-)

commit 7612ebee0ef96511756c1c2f9a5dec0ae8eaf404
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sat Mar 8 18:57:24 2008 +0000

    Updated Arabic Translation by Anas Husseini.
    
    svn path=/trunk/; revision=8564

 po/ChangeLog |   4 +
 po/ar.po     | 626 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 298 insertions(+), 332 deletions(-)

commit 922ce8af5452ad4aaa2b196ff95eec804edf8316
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Sat Mar 8 15:39:16 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-03-08  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8563

 po/ChangeLog |  4 ++++
 po/et.po     | 65 ++++++++++--------------------------------------------------
 2 files changed, 15 insertions(+), 54 deletions(-)

commit 6e62c2483eede2e19c19ab2730e0bd7b46993fc2
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Sat Mar 8 11:14:46 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8562

 po/oc.po | 83 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 41 insertions(+), 42 deletions(-)

commit d2ee0a45e1f8096801c0698b5d7a58e83c9c0a36
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Sat Mar 8 07:06:22 2008 +0000

    Added Entry for correction of errors related to the plural forms in the Bengali India Translation
    
    svn path=/trunk/; revision=8561

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit c88d6f738452a0ba98e3a352a19a80ef7661cd70
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Sat Mar 8 07:06:02 2008 +0000

    Corrected errors related to the plural forms
    
    svn path=/trunk/; revision=8560

 po/bn_IN.po | 2816 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1465 insertions(+), 1351 deletions(-)

commit f40491a99da5d2e3f0e0fcf66bc4d82f4fd5b11b
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Mar 8 00:16:16 2008 +0000

    Translation updated
    
    2008-03-08  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated
    
    
    svn path=/trunk/; revision=8559

 po/ChangeLog |    4 +
 po/hu.po     | 2175 ++++++++++++++++++++++------------------------------------
 2 files changed, 830 insertions(+), 1349 deletions(-)

commit 0f2fd07f23d8bc89da4b060c9fb3c94784976a6a
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Fri Mar 7 13:09:26 2008 +0000

    Update Ukrainian translation.
    
    2008-03-07 Maxim Dziumanenko <dziumanenko@gmail.com>
    
        * Update Ukrainian translation.
    
    svn path=/trunk/; revision=8558

 po/ChangeLog |    4 +
 po/uk.po     | 2093 ++++++++++++++++++++++------------------------------------
 2 files changed, 793 insertions(+), 1304 deletions(-)

commit b6d9841157784a17b77cdeda0aab68a2cad0c95d
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Thu Mar 6 17:34:25 2008 +0000

    Updated German translation.
    
    2008-03-06  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8557

 po/ChangeLog |  4 ++++
 po/de.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 779c16fd9ac14661cbf88029cf4118fa5709d311
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Wed Mar 5 22:12:34 2008 +0000

    Updated French translation.
    
    2008-03-05  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation.
    
    svn path=/trunk/; revision=8556

 po/ChangeLog |   4 ++
 po/fr.po     | 195 +++++------------------------------------------------------
 2 files changed, 18 insertions(+), 181 deletions(-)

commit bb05e9c1878a1eb7ae9db5b2f2dc5fb5310c9cc1
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Wed Mar 5 11:11:49 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-03-05  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8555

 po/ChangeLog | 4 ++++
 po/et.po     | 9 ++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit a9980f807141c02709ff58e9c13301a65ad42279
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Wed Mar 5 10:51:47 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8554

 help/ChangeLog |  4 ++++
 help/es/es.po  | 29 +++++++++++++++--------------
 2 files changed, 19 insertions(+), 14 deletions(-)

commit 71bed28c13be9a247c794576380b40fdc655883c
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Tue Mar 4 18:47:59 2008 +0000

    Updated German translation.
    
    2008-03-04  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8553

 po/ChangeLog |  4 ++++
 po/de.po     | 42 +++++++++++++++++++-----------------------
 2 files changed, 23 insertions(+), 23 deletions(-)

commit 093791227d28f8b964bfec183023d2375ed5bc94
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Tue Mar 4 09:27:07 2008 +0000

    Updated Italian translation.
    
    2008-03-04  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8552

 po/ChangeLog |   4 +
 po/it.po     | 673 ++---------------------------------------------------------
 2 files changed, 27 insertions(+), 650 deletions(-)

commit 6f9eecdf58be50d3804e6b1e23710a7b2d3b3192
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Tue Mar 4 07:51:35 2008 +0000

    updated assamese translations
    
    svn path=/trunk/; revision=8551

 po/ChangeLog |   4 ++
 po/as.po     | 152 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 74 insertions(+), 82 deletions(-)

commit aca2ddb48e855f84fe17acdbde24aeb923370a0e
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Tue Mar 4 07:18:58 2008 +0000

    updated assamese translations
    
    svn path=/trunk/; revision=8550

 po/ChangeLog |   4 +
 po/as.po     | 678 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 345 insertions(+), 337 deletions(-)

commit b9aff840a45cba7e951591fac9afdcb2bc93a2ad
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Tue Mar 4 05:52:21 2008 +0000

    updated assamese translations
    
    svn path=/trunk/; revision=8549

 po/ChangeLog | 4 ++++
 po/as.po     | 6 ++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit e4654992a689de45fb4592da7c13aa936ee6813f
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Mar 3 23:12:21 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8548

 po/ChangeLog |   4 +
 po/es.po     | 301 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 154 insertions(+), 151 deletions(-)

commit c43bb4a6307113cb168ba03de171f52d1d08448f
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Mon Mar 3 22:38:39 2008 +0000

    Fixed wrong translations.
    
    2008-03-04  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Fixed wrong translations.
    
    svn path=/trunk/; revision=8547

 po/ChangeLog |   4 +++
 po/ja.po     | 102 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 55 insertions(+), 51 deletions(-)

commit 3eb0519ecffd20c42b9e8a4d42785f3c275e3dfa
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Mon Mar 3 16:59:52 2008 +0000

    updating Translation for Punjabi
    
    svn path=/trunk/; revision=8546

 po/pa.po | 2711 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 1403 insertions(+), 1308 deletions(-)

commit 22808d91d0b4117bd9a995e53be691e4f5d08e1e
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Mon Mar 3 15:32:09 2008 +0000

    Updated Marathi Translations
    
    svn path=/trunk/; revision=8545

 po/ChangeLog |    4 +
 po/mr.po     | 4371 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 2083 insertions(+), 2292 deletions(-)

commit 3698d73d1645bd030d3ac28af69bb0c38bf77c9d
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Mon Mar 3 13:11:12 2008 +0000

    Updated Italian translation.
    
    2008-03-03  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8544

 po/ChangeLog |  4 ++++
 po/it.po     | 22 +++++++++++++---------
 2 files changed, 17 insertions(+), 9 deletions(-)

commit 2666195cb6481a9b75eb8d9c28cfeaa6df2eaba8
Author: Philip Withnall <pwithnall@svn.gnome.org>
Date:   Sun Mar 2 23:07:46 2008 +0000

    Fixed British English translation.
    
    2008-03-02  Philip Withnall  <pwithnall@svn.gnome.org>
    
        * en_GB.po: Fixed British English translation.
    
    
    svn path=/trunk/; revision=8543

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 20 +++++++++++++-------
 2 files changed, 17 insertions(+), 7 deletions(-)

commit 57cb3bebe017e79aba5b3f9cdf45ad6bf4187fe9
Author: Philip Withnall <pwithnall@svn.gnome.org>
Date:   Sun Mar 2 17:19:31 2008 +0000

    Updated British English translation.
    
    2008-03-02  Philip Withnall  <pwithnall@svn.gnome.org>
    
        * en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=8542

 po/ChangeLog |    4 +
 po/en_GB.po  | 3117 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1764 insertions(+), 1357 deletions(-)

commit 4c48425d2d68b9bf15c26543883eebd50a8a1ea1
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Mar 2 16:29:17 2008 +0000

    Updated Italian translation.
    
    2008-03-02  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8541

 po/ChangeLog |   4 +
 po/it.po     | 475 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 252 insertions(+), 227 deletions(-)

commit 3a2ae6cb9628268671b4b155e9bc6a8eae663d46
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sat Mar 1 20:36:33 2008 +0000

    Minor fix in Brazilian Portuguese translation.
    
    2008-03-01  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Minor fix in Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8540

 po/ChangeLog | 4 ++++
 po/pt_BR.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit e99e9ce1fd5cbc9fe65145d2a982abbfc97b3743
Author: Artur Flinta <aflinta@gmail.com>
Date:   Sat Mar 1 17:24:14 2008 +0000

    Added Polish translation.
    
    2008-03-01  Artur Flinta  <aflinta@gmail.com>
    
            * pl/pl.po:
            * Makefile.am:
            Added Polish translation.
    
    
    svn path=/trunk/; revision=8539

 help/Makefile.am |  2 +-
 help/pl/pl.po    | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 97 insertions(+), 1 deletion(-)

commit abc7d0e0535933adbae9ad7adc99108e10eee720
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Mar 1 12:20:27 2008 +0000

    fix leaks and remove unnecessary casts
    
    2008-03-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-a11y.c:
        (notifications_button_clicked_cb),
        (mousekeys_accel_time_to_widget),
        (mousekeys_accel_time_from_widget), (setup_a11y_tabs): fix leaks
        and remove unnecessary casts
    
    svn path=/trunk/; revision=8538

 capplets/keyboard/ChangeLog                        |  8 ++++
 capplets/keyboard/gnome-keyboard-properties-a11y.c | 49 ++++++++++++----------
 2 files changed, 34 insertions(+), 23 deletions(-)

commit e2e3133c3edf748e3ef3c66a71ffcd89b0d59cce
Author: Matthias Clasen <matthiasc@src.gnome.org>
Date:   Sat Mar 1 04:35:29 2008 +0000

    Fix syntax of gconf default value translation
    
    svn path=/trunk/; revision=8537

 po/ChangeLog | 4 ++++
 po/fi.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b5991f2a2bbc5faba57cb533476ca84b736ed23a
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Fri Feb 29 20:58:41 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-02-29  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8536

 po/ChangeLog |   4 +
 po/et.po     | 411 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 214 insertions(+), 201 deletions(-)

commit 008dd57206670447517a553192751291d66e0f70
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri Feb 29 13:39:00 2008 +0000

    make the mouse orientation radio buttons usable with both mouse buttons.
    
    2008-02-29  Denis Washington  <denisw@svn.gnome.org>
    
        * capplets/mouse/gnome-mouse-properties.c: make the mouse
        orientation radio buttons usable with both mouse buttons.
    
    svn path=/trunk/; revision=8535

 capplets/mouse/ChangeLog                |  5 +++++
 capplets/mouse/gnome-mouse-properties.c | 11 +++++++++++
 2 files changed, 16 insertions(+)

commit 3076088efb2aea6b1c8a22d0e40c68122f0efa29
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 28 21:58:31 2008 +0000

    fix misspelling of "palindrome" that would make us wait forever when that
    
    2008-02-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (io_watch_stdout): fix misspelling of
        "palindrome" that would make us wait forever when that case occurred
        (bug #519398)
    
    svn path=/trunk/; revision=8534

 capplets/about-me/ChangeLog                 | 6 ++++++
 capplets/about-me/gnome-about-me-password.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 496c4b2dd073a5a93a9e2bdf50fcde68e815b386
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Thu Feb 28 19:29:09 2008 +0000

    Updated German translation.
    
    2008-02-28  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8533

 po/ChangeLog |   4 +
 po/de.po     | 240 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 132 insertions(+), 112 deletions(-)

commit 76661c63f2592de07d7e7fa4c41cab39618a120a
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Thu Feb 28 14:40:15 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8532

 po/oc.po | 50 ++++++++++++++++++++++++++++----------------------
 1 file changed, 28 insertions(+), 22 deletions(-)

commit cf8edc5bc5e557dd8677dfae59fe448e5f1850d9
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Wed Feb 27 21:35:37 2008 +0000

    Updated German translation.
    
    2008-02-27  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8531

 po/ChangeLog |    4 +
 po/de.po     | 2790 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1441 insertions(+), 1353 deletions(-)

commit 7277489eb555a98129a0b33d793846d113d745d9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 27 21:14:25 2008 +0000

    port to gio
    
    2008-02-27  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_dialog_update_num_files),
        (file_transfer_dialog_response), (file_transfer_dialog_finalize),
        (file_transfer_dialog_set_prop), (file_transfer_dialog_class_init),
        (file_transfer_dialog_init), (file_transfer_dialog_get_type),
        (file_transfer_job_update_before),
        (file_transfer_job_update_after), (file_transfer_job_destroy),
        (file_transfer_dialog_done), (file_transfer_dialog_cancel),
        (file_transfer_job_schedule), (file_transfer_dialog_copy_async):
        * file-transfer-dialog.h: port to gio
    
    2008-02-27  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_from_uri): adapt to new
        FileTransferDialog that uses gio instead of GnomeVFS
    
    svn path=/trunk/; revision=8530

 capplets/appearance/ChangeLog          |   5 +
 capplets/appearance/theme-installer.c  |  49 +++--
 capplets/common/ChangeLog              |  12 ++
 capplets/common/file-transfer-dialog.c | 335 +++++++++++++++++++--------------
 capplets/common/file-transfer-dialog.h |  17 +-
 5 files changed, 241 insertions(+), 177 deletions(-)

commit d27fc2a532258b7924aad5da2843a5b2bb453d47
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Wed Feb 27 14:47:23 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8529

 po/oc.po | 44 +++++++++++++++++++-------------------------
 1 file changed, 19 insertions(+), 25 deletions(-)

commit c330c37f98590a0afd898a3f71c22facbdd07d45
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Feb 26 12:07:54 2008 +0000

    Fix translator name
    
    2008-02-26  Thomas Wood  <thos@gnome.org>
    
        * NEWS: Fix translator name
    
    svn path=/trunk/; revision=8528

 ChangeLog | 4 ++++
 NEWS      | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ffff49e35add17e9ea47b50cb64d911e5cb53620
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Feb 26 10:54:14 2008 +0000

    Updated for 2.21.92
    
    2008-02-26  Thomas Wood  <thos@gnome.org>
    
        * NEWS:
        * configure.in:
    
        Updated for 2.21.92
    
    svn path=/trunk/; revision=8526

 ChangeLog    |  7 +++++++
 NEWS         | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 71 insertions(+), 1 deletion(-)

commit 9e17c9a4dacdd58534161c871921968ef39f26d6
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Feb 26 09:39:43 2008 +0000

    Increase required metacity version to 2.21.21
    
    2008-02-26  Thomas Wood  <thos@gnome.org>
    
        * configure.in: Increase required metacity version to 2.21.21
    
    svn path=/trunk/; revision=8525

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit e0fe411a3e6e6a5769656062b32039d5053e8edf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Feb 25 22:57:28 2008 +0000

    fix widget tab order (bug #339936)
    
    2008-02-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_setup_dialog):
        * gnome-about-me.glade: fix widget tab order (bug #339936)
    
    svn path=/trunk/; revision=8524

 capplets/about-me/ChangeLog            |  5 +++++
 capplets/about-me/gnome-about-me.c     | 22 ++++++++++++++++++++++
 capplets/about-me/gnome-about-me.glade | 12 ++++--------
 3 files changed, 31 insertions(+), 8 deletions(-)

commit e0288e3e5d6e34d2df6dcb19e8654b42d850178e
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Feb 25 22:06:42 2008 +0000

    Return FALSE on error or EOF, which should also fix bug 516413, in
    
    2008-02-25  Thomas Wood  <thos@gnome.org>
    
        * theme-thumbnail.c: (message_from_child): Return FALSE on error or EOF,
        which should also fix bug 516413, in addition to checking for G_IO_HUP.
    
    svn path=/trunk/; revision=8523

 capplets/common/ChangeLog         | 5 +++++
 capplets/common/theme-thumbnail.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 7a9a18d306156266d607fc260d43e7f93a1e555d
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Feb 25 21:55:08 2008 +0000

    Revert removal of FONTILUS and THEMUS substitution that occurred in r8452.
    
    2008-02-25  Thomas Wood  <thos@gnome.org>
    
        * configure.in: Revert removal of FONTILUS and THEMUS substitution that
        occurred in r8452. Fixes distcheck.
    
    svn path=/trunk/; revision=8522

 ChangeLog    | 5 +++++
 configure.in | 5 +++++
 2 files changed, 10 insertions(+)

commit 26be7ba9791becd678fe7eab42dd6abd3eae2e90
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Feb 25 17:41:54 2008 +0000

    (create_meta_theme_pixbuf), (create_metacity_theme_pixbuf): Use the new
    
    2008-02-25  Thomas Wood  <thos@gnome.org>
    
        * theme-thumbnail.c:
    
        (create_meta_theme_pixbuf), (create_metacity_theme_pixbuf):
        Use the new meta_preview_get_clip_region() function in Metacity to fix
        bug 460018 (Rounded window borders don't get rendered correctly).
    
        (message_from_child): Do not attempt to read from the pipe when
        the connection has been broken. Fixes bug 516413 (Theme thumbnailer
        causes UI to stop drawing when encountering an error).
    
    svn path=/trunk/; revision=8521

 capplets/common/ChangeLog         | 12 +++++++++
 capplets/common/theme-thumbnail.c | 52 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

commit f431f286e18783b3f18e8df8ac1080068802453d
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Mon Feb 25 13:25:10 2008 +0000

    Fixed a message typo.
    
    2008-02-25  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Fixed a message typo.
    
    
    svn path=/trunk/; revision=8520

 po/ChangeLog |   4 +++
 po/eu.po     | 114 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 73 insertions(+), 45 deletions(-)

commit bdf7e5c7c2d05d2ae0c733655e0af18864edda65
Author: Yang Zhang <zyang@src.gnome.org>
Date:   Sun Feb 24 11:00:59 2008 +0000

    Updated zh_CN translation
    
    svn path=/trunk/; revision=8519

 po/zh_CN.po | 403 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 210 insertions(+), 193 deletions(-)

commit 8763f8d759d37b8f4d1b6f879e00f35b7a627308
Author: Jonh Wendell <jwendell@gnome.org>
Date:   Sat Feb 23 17:01:37 2008 +0000

    Updated Brazilian Portuguese translation.
    
    2008-02-23  Jonh Wendell <jwendell@gnome.org>
    
        * pt_BR.po: Updated Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=8518

 po/ChangeLog |   4 +
 po/pt_BR.po  | 817 +++++++++++------------------------------------------------
 2 files changed, 145 insertions(+), 676 deletions(-)

commit 22d315a5f38a961723ee920aeff44129a27d4c37
Author: Åsmund Skjæveland <aasmunds@ulrik.uio.no>
Date:   Sat Feb 23 16:17:55 2008 +0000

    Updated Norwegian Nynorsk translation.
    
    2008-02-23  Åsmund Skjæveland  <aasmunds@ulrik.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.
    
    svn path=/trunk/; revision=8517

 po/nn.po | 212 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 105 insertions(+), 107 deletions(-)

commit 301651084f0609ada57eff79aec57fb2c69ff914
Author: Åsmund Skjæveland <aasmunds@ulrik.uio.no>
Date:   Sat Feb 23 15:28:12 2008 +0000

    Updated Norwegian Nynorsk translation.
    
    2008-02-23  Åsmund Skjæveland  <aasmunds@ulrik.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.
    
    svn path=/trunk/; revision=8516

 po/ChangeLog |    4 +
 po/nn.po     | 2001 +++++++++++++++-------------------------------------------
 2 files changed, 505 insertions(+), 1500 deletions(-)

commit 761d2ffbcdc91cb41f5173c8f8efd7b7ac862146
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sat Feb 23 11:18:33 2008 +0000

    Updated Japanese translation.
    
    2008-02-23  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=8515

 po/ChangeLog |    4 +
 po/ja.po     | 2068 ++++++++++++++++++++++------------------------------------
 2 files changed, 784 insertions(+), 1288 deletions(-)

commit d9c41d2850c3fc5565cb750dc8a642f140cda37e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 21 20:46:35 2008 +0000

    Patch by: Willie Walker <william.walker@sun.com>
    
    2008-02-21  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Willie Walker <william.walker@sun.com>
    
        * gnome-at-commandline.in.in: use `...` syntax instead of $(...) for
        better portability (bug #517938)
    
    svn path=/trunk/; revision=8514

 capplets/default-applications/ChangeLog                  | 7 +++++++
 capplets/default-applications/gnome-at-commandline.in.in | 6 +++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 7636ad00867c8f056ea071176a09b590655c2b97
Author: Claude Paroz <claude@2xlibre.net>
Date:   Wed Feb 20 21:42:17 2008 +0000

    Updated French translation.
    
    2008-02-20  Claude Paroz  <claude@2xlibre.net>
    
        * fr.po: Updated French translation.
    
    svn path=/trunk/; revision=8513

 po/ChangeLog |   4 +
 po/fr.po     | 779 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 369 insertions(+), 414 deletions(-)

commit b41c9bf1ce7eada08a997957d8e10c198027cf97
Author: Artur Flinta <aflinta@gmail.com>
Date:   Tue Feb 19 23:04:51 2008 +0000

    Updated Polish translation by GNOME PL Team.
    
    2008-02-20  Artur Flinta  <aflinta@gmail.com>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=8511

 po/ChangeLog |   4 +
 po/pl.po     | 414 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 189 insertions(+), 229 deletions(-)

commit e7a8ac5a1812ea8a24f926b965203afe46030fd9
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Tue Feb 19 22:01:21 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8510

 po/oc.po | 174 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 88 insertions(+), 86 deletions(-)

commit bf47e03d16fdf2f9c458a4c82084d80e4a2923a7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 19 20:01:13 2008 +0000

    escape strange hostnames that we want to use as GConf keys (see bug
    
    2008-02-19  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (create_dialog), (save_to_gconf): escape strange hostnames
        that we want to use as GConf keys (see bug #517259 for a similar issue
        in gnome-settings-daemon)
    
    svn path=/trunk/; revision=8509

 capplets/display/ChangeLog |  6 ++++++
 capplets/display/main.c    | 25 +++++++++++++++----------
 2 files changed, 21 insertions(+), 10 deletions(-)

commit 2dbea1360c543f40088e13289ca057b3490ad73b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 19 19:29:16 2008 +0000

    fix small leak
    
    2008-02-19  Jens Granseuer  <jensgr@gmx.net>
    
        * file-transfer-dialog.c: (file_transfer_dialog_update_num_files): fix
        small leak
    
    svn path=/trunk/; revision=8508

 capplets/common/ChangeLog              |  5 +++++
 capplets/common/file-transfer-dialog.c | 24 ++++++++++++------------
 2 files changed, 17 insertions(+), 12 deletions(-)

commit 5075b98c6228980d5571914eb55d1756bcb79add
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Feb 19 15:58:53 2008 +0000

    Updated Korean translation
    
    svn path=/trunk/; revision=8507

 po/ChangeLog |    4 +
 po/ko.po     | 2808 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1452 insertions(+), 1360 deletions(-)

commit f1f40e7d3fd5fae76a7ef2c1f33c753d5f9cdcad
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Mon Feb 18 14:31:46 2008 +0000

    Updated Catalan translation by Joan Duran
    
    svn path=/trunk/; revision=8506

 po/ChangeLog |    4 +
 po/ca.po     | 2090 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 978 insertions(+), 1116 deletions(-)

commit dabefa7610fb398522d52f1478bc209debd9db82
Author: Marcel Telka <marcel@telka.sk>
Date:   Mon Feb 18 09:32:54 2008 +0000

    Updated Slovak translation by Pavol Šimo.
    
    2008-02-18  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation by Pavol Šimo.
    
    svn path=/trunk/; revision=8504

 po/ChangeLog |    4 +
 po/sk.po     | 3398 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1890 insertions(+), 1512 deletions(-)

commit 90b2399d860c06815672f0f483840dbba2d1d583
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Feb 18 07:03:35 2008 +0000

    Added Entry for Kannada Translation addition and addition to LINGUAS
    
    svn path=/trunk/; revision=8503

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 8ba4651f64a0238d5d5fd761ebbb18cfb2eeb1d8
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Feb 18 07:03:18 2008 +0000

    Added Kannada (kn) to the List of languages
    
    svn path=/trunk/; revision=8502

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 3c19aca9c2288e507d33383f38555a3410779ecc
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Feb 18 07:02:54 2008 +0000

    Added Kannada Translations by Shankar Prasad
    
    svn path=/trunk/; revision=8501

 po/kn.po | 3467 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3467 insertions(+)

commit 3198e3e471ebc5bc8a637158df6ca5a2ad801803
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Feb 18 05:17:37 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8500

 po/ChangeLog |  4 ++++
 po/fi.po     | 18 +++++++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

commit dea5973057b503da7bee4dc5ed122c17b753b5ec
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sun Feb 17 21:55:57 2008 +0000

    Translation updated by Reinout van Schouwen.
    
    2008-02-17  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.
    
    svn path=/trunk/; revision=8499

 po/ChangeLog |    4 +
 po/nl.po     | 2198 +++++++++++++++++++++++++---------------------------------
 2 files changed, 942 insertions(+), 1260 deletions(-)

commit 84e8daa65ef26b4d224fb3216b0cd5199544596b
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sun Feb 17 15:26:24 2008 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=8498

 po/ChangeLog |    4 +
 po/el.po     | 2124 +++++++++++++++++++++++-----------------------------------
 2 files changed, 841 insertions(+), 1287 deletions(-)

commit 627b5f436c82708b0604ba2c8572fddd015ff241
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sat Feb 16 22:10:37 2008 +0000

    Updated Belarusian Latin translation.
    
    svn path=/trunk/; revision=8497

 po/ChangeLog   |   4 +
 po/be@latin.po | 396 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 208 insertions(+), 192 deletions(-)

commit 83de15d832d9e08d7098ad2c0d47cb8c1161dfcf
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Feb 16 20:47:09 2008 +0000

    Updated Italian translation.
    
    2008-02-16  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    svn path=/trunk/; revision=8496

 po/ChangeLog |   4 +
 po/it.po     | 319 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 167 insertions(+), 156 deletions(-)

commit d10b646219c994b78b57e0e4d6b91bd857b0169e
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Sat Feb 16 15:36:18 2008 +0000

    Updated Basque translation.
    
    2008-02-16  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8495

 po/ChangeLog |   4 +
 po/eu.po     | 250 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 134 insertions(+), 120 deletions(-)

commit 57ffeac217d7b30938112f8c872ee69381dfe227
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Sat Feb 16 14:26:14 2008 +0000

    Arangel Angov <arangel@linux.net.mk> * mk.po: Updated Macedonian translation
    
    svn path=/trunk/; revision=8494

 po/ChangeLog |   4 ++
 po/mk.po     | 212 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 107 insertions(+), 109 deletions(-)

commit 75248b5486e75df5c2245abb88fd32a68ccccfdc
Author: Artur Flinta <aflinta@gmail.com>
Date:   Sat Feb 16 14:05:51 2008 +0000

    Updated Polish translation by GNOME PL Team.
    
    2008-02-16  Artur Flinta  <aflinta@gmail.com>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=8493

 po/ChangeLog |    4 +
 po/pl.po     | 2822 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1483 insertions(+), 1343 deletions(-)

commit e86f14e0b3f4b0634f0cde3a7dda7138fe31735b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 16 12:36:13 2008 +0000

    remove obsolete checks
    
    2008-02-16  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: remove obsolete checks
    
    svn path=/trunk/; revision=8492

 ChangeLog    |  4 ++++
 configure.in | 53 +++--------------------------------------------------
 2 files changed, 7 insertions(+), 50 deletions(-)

commit 849371cf5ebefafd21acf98da3a046ce4b508fb3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 16 11:32:14 2008 +0000

    don't distribute the .desktop.in file
    
    2008-02-16  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: don't distribute the .desktop.in file
    
    svn path=/trunk/; revision=8491

 capplets/about-me/ChangeLog   | 4 ++++
 capplets/about-me/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c04b442c246c862ad1afadd943786c80c87e85e7
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Feb 16 05:51:44 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8490

 po/ChangeLog |   4 ++
 po/fi.po     | 179 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 93 insertions(+), 90 deletions(-)

commit 254b98c4050190a305048f1eaa3225e97c2d94a6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 16 00:03:24 2008 +0000

    always apply the current GConf settings to the initially selected
    
    2008-02-16  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_option_menu_set), (wp_load_stuffs):
        * gnome-wp-item.c: (gnome_wp_item_update), (gnome_wp_item_new):
        * gnome-wp-item.h: always apply the current GConf settings to the
        initially selected wallpaper so that we don't modify the settings if
        GConf state and the definition in backgrounds.xml are not identical
        (bug #516746)
    
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml): get rid of redundant if
    
    svn path=/trunk/; revision=8489

 capplets/appearance/ChangeLog            | 11 +++++
 capplets/appearance/appearance-desktop.c | 63 ++++++++++--------------
 capplets/appearance/gnome-wp-item.c      | 83 +++++++++++++++++---------------
 capplets/appearance/gnome-wp-item.h      |  3 +-
 capplets/appearance/gnome-wp-xml.c       |  4 +-
 5 files changed, 84 insertions(+), 80 deletions(-)

commit b695ca96d1f5ea1027f6165e54e0f8744458814e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Feb 15 16:31:58 2008 +0000

    Make it build.
    
    2008-02-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * appearance-desktop.c: (wp_scale_type_changed),
        (wp_shade_type_changed): Make it build.
    
    svn path=/trunk/; revision=8488

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 7dd8bc3d6d6a98eb7ce1803510153a314eb9864b
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Fri Feb 15 15:27:56 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8487

 po/ChangeLog |   4 ++
 po/sv.po     | 192 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 99 insertions(+), 97 deletions(-)

commit 5ccec6687eb861e337effbb375ab7b8752dd96ed
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Feb 15 13:33:56 2008 +0000

    Added Italian translation.
    
    2008-02-15  Luca Ferretti  <elle.uca@libero.it>
    
        * it/it.po:
        * Makefile.am:
        Added Italian translation.
    
    svn path=/trunk/; revision=8486

 help/ChangeLog   | 15 ++++++---
 help/Makefile.am |  2 +-
 help/it/it.po    | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 108 insertions(+), 5 deletions(-)

commit be47506bdf9c42722471c594b4971b3b8f5b2dcb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 14 18:38:37 2008 +0000

    don't try to set shading and options in GConf when we're dealing with a
    
    2008-02-14  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_scale_type_changed): don't try to set shading
        and options in GConf when we're dealing with a read-only source (bug
        #516328)
    
    svn path=/trunk/; revision=8485

 capplets/appearance/ChangeLog            | 6 ++++++
 capplets/appearance/appearance-desktop.c | 8 +++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 7456bf130d2a9ead902254b389688e0afec489cb
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Thu Feb 14 12:08:04 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8484

 po/ChangeLog |   4 +
 po/gl.po     | 376 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 194 insertions(+), 186 deletions(-)

commit de9311a1d004da35be3a85bbeaccfa50aa08ee47
Author: Pawan Chitrakar <pachimho@src.gnome.org>
Date:   Thu Feb 14 08:27:28 2008 +0000

    Updated Nepali Translation
    
    svn path=/trunk/; revision=8483

 po/ChangeLog |    4 +
 po/ne.po     | 4911 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 2740 insertions(+), 2175 deletions(-)

commit 512db0d41cff8f901e4762581894ed0e39c2af04
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Feb 14 08:10:00 2008 +0000

    Updated Portuguese translation.
    
    2008-02-14  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=8482

 po/ChangeLog |   4 +
 po/pt.po     | 266 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 143 insertions(+), 127 deletions(-)

commit 8bc340e6491fe1d8240b5d2fea33e81ce766f9dc
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Wed Feb 13 10:36:44 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8481

 po/ChangeLog |   4 +
 po/oc.po     | 452 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 235 insertions(+), 221 deletions(-)

commit d88678ad15d5f6bd8b01f0ab520613eea1cd663c
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Wed Feb 13 05:34:36 2008 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8480

 po/ChangeLog |    4 +
 po/fi.po     | 2521 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1289 insertions(+), 1236 deletions(-)

commit cd713c733723cb2b42bc82cbe8e03303ab861fd7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 12 22:13:32 2008 +0000

    add gio-2.0 to general capplet flags for now; this part needs cleaning up
    
    2008-02-12  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: add gio-2.0 to general capplet flags for now; this
        part needs cleaning up in the next cycle
    
    2008-02-12  Jens Granseuer  <jensgr@gmx.net>
    
        * e-image-chooser.c: (e_image_chooser_class_init),
        (image_drag_data_received_cb):
        * gnome-about-me.c: (about_me_update_preview): port to gio
    
    svn path=/trunk/; revision=8479

 ChangeLog                           |  5 +++
 capplets/about-me/ChangeLog         |  6 ++++
 capplets/about-me/e-image-chooser.c | 69 +++++++++++++++++++------------------
 capplets/about-me/gnome-about-me.c  | 39 +++++++++++++++------
 configure.in                        |  1 +
 5 files changed, 76 insertions(+), 44 deletions(-)

commit d2b6ab7a2115b34b0a94f126be13fdccd5547717
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Tue Feb 12 19:47:18 2008 +0000

    Fix ChangeLog entry
    
    svn path=/trunk/; revision=8478

 po/ChangeLog | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 499e7cb25d283391d8916050d4b3930f7b755167
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 12 19:46:49 2008 +0000

    Add check for LIBSOUNDS. From bug #515956.
    
    2008-02-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * configure.in: Add check for LIBSOUNDS. From bug #515956.
    
    svn path=/trunk/; revision=8477

 ChangeLog    | 4 ++++
 configure.in | 1 +
 po/ChangeLog | 6 ++++++
 po/nb.po     | 2 +-
 4 files changed, 12 insertions(+), 1 deletion(-)

commit 91f14ba2234aa1ad772a9d17c03e57b49b193126
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Feb 11 22:34:38 2008 +0000

    svn path=/trunk/; revision=8476
    
    
    
    svn path=/trunk/; revision=8476

 ChangeLog    |  5 ++++
 NEWS         | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 po/ChangeLog |  8 +++---
 4 files changed, 93 insertions(+), 5 deletions(-)

commit c1628d7e200b55b31b9a4013dc9a9fd9b63e7fca
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Feb 11 21:59:56 2008 +0000

    Fixes bug #511306
    
    2008-02-11  Matthias Clasen <mclasen@redhat.com>
    
        Fixes bug #511306
    
        * capplets/appearance/data/appearance.glade:
        * capplets/appearance/appearance-font.c: remove useless (with
        GIO-based Nautilus) 'Go to fonts folder' button.
    
    svn path=/trunk/; revision=8475

 capplets/appearance/ChangeLog             |  8 ++++++++
 capplets/appearance/appearance-font.c     | 12 ------------
 capplets/appearance/data/appearance.glade | 15 +--------------
 3 files changed, 9 insertions(+), 26 deletions(-)

commit 0484cc33df9091746f9990c35712aea59d8a992b
Author: Petr Kovář <pmkovar@src.gnome.org>
Date:   Mon Feb 11 16:31:49 2008 +0000

    cs.po: Updated Czech translation.
    
    svn path=/trunk/; revision=8474

 po/ChangeLog |    4 +
 po/cs.po     | 1298 +++++++++++++++-------------------------------------------
 2 files changed, 328 insertions(+), 974 deletions(-)

commit c84e809a066ad8fa2a75c744e0fdca9ec8a57cda
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Feb 11 10:48:50 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8473

 po/ChangeLog |  4 ++++
 po/es.po     | 26 +++++++++++++-------------
 2 files changed, 17 insertions(+), 13 deletions(-)

commit 5151bf0eca9cb2ed8ad4b0ce80850166f0f76a2b
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Feb 11 01:23:32 2008 +0000

    Updated Thai translation.
    
    2008-02-11  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8472

 po/ChangeLog |  4 ++++
 po/th.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 5d207d0879a591827c094e3864a3b74b7b317d72
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 10 21:58:43 2008 +0000

    Add missing full stops in the long description.
    
    2008-02-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * control-center.schemas.in: Add missing full stops in the long
        description.
    
    svn path=/trunk/; revision=8471

 shell/ChangeLog                 |  5 +++++
 shell/control-center.schemas.in | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 6431419ac85b4db5546c1325176cdb4d8609812a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 10 21:56:48 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-02-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8470

 po/ChangeLog |   4 +
 po/nb.po     | 665 ++++++++++++++++++++---------------------------------------
 2 files changed, 232 insertions(+), 437 deletions(-)

commit 9a841d913454b8e25c16bfa51e8f492ac3c154b3
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Feb 10 19:15:03 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8469

 po/ChangeLog |  4 ++++
 po/es.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit e1f83e9ee5e192e3c6474a59f2dcec982781a9d1
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Feb 10 15:46:36 2008 +0000

    Updated the wrong version in my latest commit, fix it.
    
    2008-02-10  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated the wrong version in my latest commit, fix it.
    
    
    svn path=/trunk/; revision=8468

 po/ChangeLog |    4 +
 po/it.po     | 2187 ++++++++++++++++++++++++----------------------------------
 2 files changed, 923 insertions(+), 1268 deletions(-)

commit 444b49b34203d5ac777943e5ee1b49af20171155
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun Feb 10 09:14:37 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8467

 po/ChangeLog |   4 +
 po/sv.po     | 442 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 230 insertions(+), 216 deletions(-)

commit a250bc8253054e0a0200e6f189ad7029bd5822f0
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Feb 10 08:42:00 2008 +0000

    Updated Thai translation.
    
    2008-02-10  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8466

 po/ChangeLog |   4 +
 po/th.po     | 841 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 401 insertions(+), 444 deletions(-)

commit a68c1088d985780f1f580512b36a2e63759f4564
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Sat Feb 9 23:50:56 2008 +0000

    Arangel Angov <arangel@linux.net.mk> * mk.po: Updated Macedonian translation
    
    svn path=/trunk/; revision=8465

 po/ChangeLog |   4 +
 po/mk.po     | 496 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 255 insertions(+), 245 deletions(-)

commit 50a9ec694f4f899da71bb20bb0e893548796d294
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Sat Feb 9 22:31:37 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8464

 po/ChangeLog |   4 +
 po/he.po     | 726 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 380 insertions(+), 350 deletions(-)

commit 4cd9a9506375b736af4f315afddaa646b3a2e98b
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Feb 9 20:40:56 2008 +0000

    reviewed by: Jens Granseuer
    
    2008-02-09  Luca Ferretti  <elle.uca@libero.it>
    
        reviewed by: Jens Granseuer
    
        * at-enable-dialog.glade:
        * at-properties.desktop.in.in: move capplet to main menu, was the
        only one under Accessibility and rename "Assistive Tecnologies".
        Using cinnamon-control-center will appead under Personal  (closes
        bug #515075).
    
    
    svn path=/trunk/; revision=8463

 capplets/accessibility/at-properties/ChangeLog                 | 10 ++++++++++
 capplets/accessibility/at-properties/at-enable-dialog.glade    |  2 +-
 .../accessibility/at-properties/at-properties.desktop.in.in    |  4 ++--
 3 files changed, 13 insertions(+), 3 deletions(-)

commit ab3c936d278bb6b8fcc998d97a6e807d481d139f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 9 15:41:21 2008 +0000

    use the libsounds.la now that libsounds uses libtool (bug #515252)
    
    2008-02-09  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: use the libsounds.la now that libsounds uses libtool
        (bug #515252)
    
    svn path=/trunk/; revision=8462

 capplets/sound/ChangeLog   | 5 +++++
 capplets/sound/Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d1ca768a6cd49325715ad089440bf9061614cced
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Feb 9 15:00:14 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8461

 po/ChangeLog |  4 ++++
 po/es.po     | 58 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 37 insertions(+), 25 deletions(-)

commit 4753b67e207a3f5287a70275167714061b422973
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 9 14:35:12 2008 +0000

    make sure we're done with the dialog before we destroy it (bug #515414)
    
    2008-02-09  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_installer_run): make sure we're done
        with the dialog before we destroy it (bug #515414)
    
    svn path=/trunk/; revision=8460

 capplets/appearance/ChangeLog         |  5 +++++
 capplets/appearance/theme-installer.c | 10 ++++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 56bc1a9c1177c1529a30b4fd82b945b872ce3f84
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 9 11:38:06 2008 +0000

    add support for Konsole, too (bug #515386)
    
    2008-02-09  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-default-applications.xml.in: add support for Konsole, too
        (bug #515386)
    
    svn path=/trunk/; revision=8459

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 7 +++++++
 2 files changed, 12 insertions(+)

commit 197bf79488b15efd2f102722f3fdd2cfc142cfe0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 9 10:32:57 2008 +0000

    Patch by: Nicolas Valcarcel
    
    2008-02-09  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Nicolas Valcarcel
    
        * gnome-default-applications.xml.in: add support for Terminator
        console (bug #515366)
    
    svn path=/trunk/; revision=8458

 capplets/default-applications/ChangeLog            | 63 ++++++++++++----------
 .../gnome-default-applications.xml.in              |  7 +++
 2 files changed, 42 insertions(+), 28 deletions(-)

commit d17e7b150d4bf7e4faf6431699bd186bcaeade93
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Feb 8 18:02:10 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8457

 po/ChangeLog |   4 +
 po/es.po     | 607 +++++++++++++++++++----------------------------------------
 2 files changed, 201 insertions(+), 410 deletions(-)

commit 86821479bcd4eea5116dd8213fc727f03a7ccd17
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Fri Feb 8 17:22:14 2008 +0000

    Updated Basque translation.
    
    2008-02-08  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8456

 po/ChangeLog |    4 +
 po/eu.po     | 1310 ++++++++++++++--------------------------------------------
 2 files changed, 313 insertions(+), 1001 deletions(-)

commit c76993d706c1d2516cb938fc6c6763c6b0563332
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 8 16:59:53 2008 +0000

    improve name and description for the visual AT autostarter (bug #515197)
    
    2008-02-08  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-at-session.desktop.in.in: improve name and description for the
        visual AT autostarter (bug #515197)
    
    svn path=/trunk/; revision=8455

 capplets/default-applications/ChangeLog                      | 5 +++++
 capplets/default-applications/gnome-at-session.desktop.in.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 9e37b7feb388b06792fe1560e2170e7013113b56
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Feb 8 16:55:40 2008 +0000

    reviewed by: Jens Granseuer
    
    2008-02-08  Luca Ferretti  <elle.uca@libero.it>
    
        reviewed by: Jens Granseuer
    
        * gnome-mouse-properties.c: (create_dialog): set up the proper
        scale widgets to GtkSizeGroup in both tabs
        * gnome-mouse-properties.glade: fix HIG compliance for spacing,
        borders, padding, alignment and sentence label (bug #510147,
        comment 23)
    
    
    svn path=/trunk/; revision=8454

 capplets/mouse/ChangeLog                    |  10 +
 capplets/mouse/gnome-mouse-properties.c     |  30 +-
 capplets/mouse/gnome-mouse-properties.glade | 991 ++++++++++++----------------
 3 files changed, 466 insertions(+), 565 deletions(-)

commit f3813506ae41f5345ba50c7fab6d0cec23f52eb5
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 6 23:21:33 2008 +0000

    don't pass a GError to the gconf_client_*() calls since we don't use it
    
    2008-02-07  Vincent Untz  <vuntz@gnome.org>
    
        * preferences.c: (bg_preferences_load): don't pass a GError to the
        gconf_client_*() calls since we don't use it anyway.
        Fix bug #510421 since the crash happens because the GError wasn't
        reset to NULL between two calls.
    
    svn path=/trunk/; revision=8453

 libbackground/ChangeLog     |  7 +++++++
 libbackground/preferences.c | 15 +++++++--------
 2 files changed, 14 insertions(+), 8 deletions(-)

commit 25235a1d870a724c3c20360dc0bf193289089258
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 6 18:52:13 2008 +0000

    readd the g-s-d check and remove some more cruft
    
    2008-02-06  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: readd the g-s-d check and remove some more cruft
    
    svn path=/trunk/; revision=8452

 ChangeLog    |  4 ++++
 configure.in | 37 ++-----------------------------------
 2 files changed, 6 insertions(+), 35 deletions(-)

commit 8ac572246f3cd735cf12c6f50b27eb4962070887
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 6 17:41:01 2008 +0000

    remove some cruft from the configure script, and give libbackground its
    
    2008-02-06  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: remove some cruft from the configure script, and give
        libbackground its own settings so we can use it from
        gnome-settings-daemon, too
    
    2008-02-06  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: use LIBBACKGROUND_{CFLAGS,...} instead of CAPPLET_...
        so we can use libbackground from gnome-settings-daemon, too
    
    svn path=/trunk/; revision=8451

 ChangeLog                 | 6 ++++++
 configure.in              | 8 ++------
 libbackground/ChangeLog   | 5 +++++
 libbackground/Makefile.am | 2 +-
 4 files changed, 14 insertions(+), 7 deletions(-)

commit 1f169528acd9c6c4add676afb7fd3d4278de6da9
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Wed Feb 6 08:53:01 2008 +0000

    Updated Traditional Chinese translation(Hong Kong). Updated Traditional
    
    2008-02-06  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
            * zh_HK.po: Updated Traditional Chinese translation(Hong Kong).
            * zh_TW.po: Updated Traditional Chinese translation(Taiwan).
    
    
    
    svn path=/trunk/; revision=8450

 po/ChangeLog |    5 +
 po/zh_HK.po  | 5086 +++++++++++++++++++++++++++++++--------------------------
 po/zh_TW.po  | 5170 +++++++++++++++++++++++++++++++---------------------------
 3 files changed, 5530 insertions(+), 4731 deletions(-)

commit f8d5afa12f855502e3a8f29e6f48f17a4775768a
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Feb 6 01:12:12 2008 +0000

    Updated Portuguese translation.
    
    2008-02-06  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=8449

 po/ChangeLog |    4 +
 po/pt.po     | 2643 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1364 insertions(+), 1283 deletions(-)

commit f0764a8f0d1012f229439982c42d777c95c21785
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Tue Feb 5 22:50:00 2008 +0000

    Comprehensive review by Pedro de Medeiros.
    
    2008-02-05  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Comprehensive review by Pedro de Medeiros.
    
    svn path=/trunk/; revision=8448

 po/ChangeLog |   4 +
 po/pt_BR.po  | 565 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 289 insertions(+), 280 deletions(-)

commit 482223bfaea54c3a9abfaeec3eeef701e6353ece
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 5 20:18:52 2008 +0000

    add a comment for translators (bug #514598)
    
    2008-02-05  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: add a comment for translators (bug #514598)
    
    2008-02-05  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: don't mark padding strings as
        translatable (bug #514598)
    
    2008-02-05  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-network-preferences.glade: don't mark padding strings as
        translatable (bug #514598)
    
    2008-02-05  Jens Granseuer  <jensgr@gmx.net>
    
        * drwright.c: add a comment for translators (bug #514598)
    
    svn path=/trunk/; revision=8447

 capplets/appearance/ChangeLog                     |  4 +
 capplets/appearance/data/appearance.glade         |  2 +-
 capplets/keyboard/ChangeLog                       |  5 ++
 capplets/keyboard/gnome-keyboard-properties.glade | 18 ++---
 capplets/network/ChangeLog                        |  5 ++
 capplets/network/gnome-network-preferences.glade  |  8 +-
 typing-break/ChangeLog                            |  4 +
 typing-break/drwright.c                           | 91 ++++++++++++-----------
 8 files changed, 78 insertions(+), 59 deletions(-)

commit e4151d305cfee407f247ee0c8141fc6467387f89
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Tue Feb 5 19:58:05 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-02-05  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8446

 po/ChangeLog |    4 +
 po/et.po     | 1568 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 774 insertions(+), 798 deletions(-)

commit 7bcaeddd856a0fc959b67ce5fc031b7c109f61b5
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Tue Feb 5 18:34:23 2008 +0000

    Arangel Angov <arangel@linux.net.mk> * mk.po: Updated Macedonian Translation
    
    svn path=/trunk/; revision=8445

 po/ChangeLog |    4 +
 po/mk.po     | 1993 ++++++++++++++++++++++------------------------------------
 2 files changed, 742 insertions(+), 1255 deletions(-)

commit 5d4e21c78686208334515248eccb1736c9098934
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Mon Feb 4 14:53:24 2008 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8444

 po/ChangeLog |   13 +-
 po/gl.po     | 1365 +++++++++++++++++++---------------------------------------
 2 files changed, 449 insertions(+), 929 deletions(-)

commit 00a696907145d9c05f761e7e76ac3b4de5a43ad2
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Mon Feb 4 14:14:31 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8443

 po/oc.po | 45 +++++++++++++++++++--------------------------
 1 file changed, 19 insertions(+), 26 deletions(-)

commit 432c9a0ce2a3dde7b6fec6b63dc56ba4a1ffcdb9
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Sat Feb 2 21:09:32 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8442

 po/ChangeLog |    5 +-
 po/oc.po     | 1257 ++++++++++++++++++----------------------------------------
 2 files changed, 387 insertions(+), 875 deletions(-)

commit 0aa84780e0ede5aac809059fe548cb09eb3108ff
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sat Feb 2 17:22:12 2008 +0000

    Brazilian Portuguese translation updated by Luiz Armesto.
    
    2008-02-02  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Brazilian Portuguese translation updated by Luiz Armesto.
    
    svn path=/trunk/; revision=8441

 po/ChangeLog |    4 +
 po/pt_BR.po  | 1773 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 904 insertions(+), 873 deletions(-)

commit 87a1e2b6bab78b817cb73b41e977cd786113509c
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Feb 2 13:39:19 2008 +0000

    reviewed by: Jens Granseuer <jensgr@gmx.net>
    
    2008-02-02  Luca Ferretti  <elle.uca@libero.it>
    
        reviewed by: Jens Granseuer <jensgr@gmx.net>
    
        * 00-multimedia-key.xml.in:
        * 01-desktop-key.xml.in:
        Move Launch Calculator to Desktop group and sort
        all launch_app keybing together (Closes: #513867)
    
    
    svn path=/trunk/; revision=8440

 capplets/keybindings/00-multimedia-key.xml.in |  3 ---
 capplets/keybindings/01-desktop-key.xml.in    | 15 +++++++++------
 capplets/keybindings/ChangeLog                |  9 +++++++++
 3 files changed, 18 insertions(+), 9 deletions(-)

commit a27a194fa40713d762db09cc4029ec5e6ae0b9f0
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sat Feb 2 11:05:36 2008 +0000

    Updated Belarusian Latin translation.
    
    svn path=/trunk/; revision=8439

 po/ChangeLog   |    4 +
 po/be@latin.po | 1347 ++++++++++----------------------------------------------
 2 files changed, 234 insertions(+), 1117 deletions(-)

commit aabb7360874eaaf57d8451531ad09a727f6e0445
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 1 17:21:54 2008 +0000

    Patch by: Sven Arvidsson <sa@whiz.se>
    
    2008-02-01  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Sven Arvidsson <sa@whiz.se>
    
        * gnome-default-applications.xml.in: support --new-tab/--new-window
        for Iceweasel (bug #322795)
    
    svn path=/trunk/; revision=8438

 capplets/default-applications/ChangeLog                         | 7 +++++++
 capplets/default-applications/gnome-default-applications.xml.in | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit e66735f8a16c9e0e846f93e26c4981a442a18c14
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Fri Feb 1 16:07:56 2008 +0000

    Updated Turkish Translation
    
    svn path=/trunk/; revision=8437

 po/ChangeLog |    4 +
 po/tr.po     | 4926 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 2778 insertions(+), 2152 deletions(-)

commit 06f893ed75cd18e55d866e0cca46c05afa9b1ccc
Author: Amitakhya Phukan <amitakhya@src.gnome.org>
Date:   Fri Feb 1 09:22:37 2008 +0000

    updated assamese translations
    
    svn path=/trunk/; revision=8436

 po/ChangeLog |    5 +
 po/LINGUAS   |    1 +
 po/as.po     | 3425 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 3431 insertions(+)

commit 1b41d5c521e7f6c2297f6455f93d0ead386e6f91
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Thu Jan 31 08:19:40 2008 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8435

 po/ChangeLog |    4 +
 po/ar.po     | 2939 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1663 insertions(+), 1280 deletions(-)

commit dbb4932dc3da6cc005a17cf92eb6ed5041ad3669
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 30 17:27:22 2008 +0000

    schemas have moved to gnome-settings-daemon, so remove them from here (bug
    
    2008-01-30  Jens Granseuer  <jensgr@gmx.net>
    
        * schemas/*: schemas have moved to gnome-settings-daemon, so remove
        them from here (bug #513103)
    
    svn path=/trunk/; revision=8434

 schemas/Makefile.am                                |  26 ---
 ...gnome_settings_daemon_default_editor.schemas.in |  15 --
 ...ps_gnome_settings_daemon_keybindings.schemas.in | 241 ---------------------
 ...ps_gnome_settings_daemon_screensaver.schemas.in |  27 ---
 schemas/desktop_gnome_font_rendering.schemas.in    |  68 ------
 5 files changed, 377 deletions(-)

commit a94591ca1a134f3d0c1b5cdd446d5faec6872e7f
Author: Funda Wang <fwang@src.gnome.org>
Date:   Wed Jan 30 09:26:10 2008 +0000

    Updated zh_CN translation
    
    svn path=/trunk/; revision=8433

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1018 +++++++++++++---------------------------------------------
 2 files changed, 224 insertions(+), 798 deletions(-)

commit c3fad453eac921f02e59df959bc10e813c2d8a69
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Jan 29 21:19:47 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8432

 po/ChangeLog |   4 +
 po/sv.po     | 317 +++++++++++++++++++++--------------------------------------
 2 files changed, 117 insertions(+), 204 deletions(-)

commit 32b12a1e871b4c4e9e0cb5cc4110a299281f4ac1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 29 17:21:52 2008 +0000

    don't leak the ATK relation set (bug #509240)
    
    2008-01-29  Jens Granseuer  <jensgr@gmx.net>
    
        * themus-properties-view.c: (add_atk_relation): don't leak the ATK
        relation set (bug #509240)
    
    svn path=/trunk/; revision=8431

 vfs-methods/themus/ChangeLog                |  5 +++++
 vfs-methods/themus/themus-properties-view.c | 31 +++++++++++++++--------------
 2 files changed, 21 insertions(+), 15 deletions(-)

commit a8c8a736b388b509e034f232105777586d06a188
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Tue Jan 29 14:26:56 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8430

 po/ChangeLog |    4 +
 po/he.po     | 1537 +++++++++++++++++++++++++---------------------------------
 2 files changed, 677 insertions(+), 864 deletions(-)

commit aef52c5a94f86c5a7d2035b38c47010bf532d5ad
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Tue Jan 29 12:30:12 2008 +0000

    don't translate sources which are not distributed
    
    svn path=/trunk/; revision=8428

 po/ChangeLog     | 6 ++++++
 po/POTFILES.in   | 5 -----
 po/POTFILES.skip | 5 +++++
 3 files changed, 11 insertions(+), 5 deletions(-)

commit 6adc8daeedf662e6a1f6700e0bbb0e42360191f5
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jan 29 10:32:36 2008 +0000

    prepare for 2.21.90.
    
    2008-01-28  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.21.90.
    
    svn path=/trunk/; revision=8426

 ChangeLog    |  5 +++++
 NEWS         | 45 +++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 51 insertions(+), 1 deletion(-)

commit 5d0907c70f857152fb5e20a0c3abf0400436951f
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Jan 29 10:18:01 2008 +0000

    Updated Thai translation.
    
    2008-01-29  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8425

 po/ChangeLog |    4 +
 po/th.po     | 2389 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1266 insertions(+), 1127 deletions(-)

commit 20c065c58a6e547e62e37db42d5c0286d9c602a1
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Jan 28 08:18:21 2008 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8424

 po/ChangeLog |   4 +
 po/sv.po     | 764 ++++++++++++++---------------------------------------------
 2 files changed, 181 insertions(+), 587 deletions(-)

commit e4d731411fc872357662184f9d4442718f973f02
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Sun Jan 27 20:39:45 2008 +0000

    Updated French translation by Jonathan Ernst, Stéphane Raimbault and
    
    08-01-27  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation by Jonathan Ernst, Stéphane
        Raimbault and Claude Paroz.
    
    svn path=/trunk/; revision=8423

 po/ChangeLog |    5 +
 po/fr.po     | 1992 +++++++++++++++++++++++++---------------------------------
 2 files changed, 854 insertions(+), 1143 deletions(-)

commit 04cd5edbd4bcd17b17fb279657ca365ed6f1b8dc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 27 14:03:34 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-01-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8422

 po/ChangeLog |   4 +
 po/nb.po     | 656 ++++++++++-------------------------------------------------
 2 files changed, 115 insertions(+), 545 deletions(-)

commit 597e9cbfea403269602ed8bcf268a10b09c71b3f
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Jan 27 13:15:40 2008 +0000

    Updated Spanish translation, fixes bug #511629
    
    svn path=/trunk/; revision=8421

 po/ChangeLog |   4 +
 po/es.po     | 644 +++++++++--------------------------------------------------
 2 files changed, 101 insertions(+), 547 deletions(-)

commit dbe8fe9118dc180c65d3759f0c653dd894ed136e
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Jan 26 15:59:43 2008 +0000

    Removed non-existent files.
    
    2008-01-26  Claude Paroz  <claude@2xlibre.net>
    
        * POTFILES.in: Removed non-existent files.
    
    svn path=/trunk/; revision=8420

 po/ChangeLog   |  4 ++++
 po/POTFILES.in | 18 ------------------
 2 files changed, 4 insertions(+), 18 deletions(-)

commit 74ab4c01424ceefafac1f9ce9b8a1da70c2b73d3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 25 21:44:09 2008 +0000

    Patch by: Luca Ferretti <elle.uca@libero.it>
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Luca Ferretti <elle.uca@libero.it>
    
        * gnome-mouse-accessibility.c: (populate_gesture_combo): fix HIG
        compliance and add some comments for translators (bug #510136)
    
    svn path=/trunk/; revision=8419

 capplets/mouse/ChangeLog                   |  7 +++++++
 capplets/mouse/gnome-mouse-accessibility.c | 30 +++++++++++++++---------------
 2 files changed, 22 insertions(+), 15 deletions(-)

commit b69977d486ed470bdb465068029ea416e736e8f8
Author: Petr Kovář <pmkovar@src.gnome.org>
Date:   Fri Jan 25 21:37:02 2008 +0000

    cs.po: Updated Czech translation.
    
    svn path=/trunk/; revision=8418

 po/ChangeLog |    4 +
 po/cs.po     | 2698 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1523 insertions(+), 1179 deletions(-)

commit a2ccffefbc7aa1ab219906a5c478317de0c29ca6
Author: Soren Sandmann <sandmann@redhat.com>
Date:   Fri Jan 25 20:11:22 2008 +0000

    Delete this function.
    
    2008-01-25  Soren Sandmann  <sandmann@redhat.com>
    
        * gnome-wp-item.c (collect_save_options): Delete this function.
    
        * gnome-wp-xml.c: Don't include gnome-wp-utils.h
        * appearance-desktop.c: Don't include gnome-wp-utils.h
        * gnome-wp-item.c: Don't include gnome-wp-utils.h
        * gnome-wp-item.h: Move gconf key macros here from gnome-wp-utils.h
    
        * Makefile.am: Delete gnome-wp-utils.[ch]
    
        * gnome-wp-utils.[ch]: Delete these files.
    
    
    
    svn path=/trunk/; revision=8417

 capplets/appearance/ChangeLog            |  13 ++
 capplets/appearance/Makefile.am          |   2 -
 capplets/appearance/appearance-desktop.c |   1 -
 capplets/appearance/gnome-wp-item.c      |  51 --------
 capplets/appearance/gnome-wp-item.h      |   9 ++
 capplets/appearance/gnome-wp-utils.c     | 200 -------------------------------
 capplets/appearance/gnome-wp-utils.h     |  58 ---------
 capplets/appearance/gnome-wp-xml.c       |   1 -
 8 files changed, 22 insertions(+), 313 deletions(-)

commit 830047edb4be3a2bab01b79e9c1b43da5f0ace2a
Author: Soren Sandmann <sandmann@redhat.com>
Date:   Fri Jan 25 19:57:38 2008 +0000

    Define this macro before including gnome-bg.h
    
    2008-01-25  Soren Sandmann  <sandmann@redhat.com>
    
           * gnome-wp-item.h (GNOME_DESKTOP_USE_UNSTABLE_API):
           * appearance-desktop.c (GNOME_DESKTOP_USE_UNSTABLE_API):
           * gnome-wp-item.c (GNOME_DESKTOP_USE_UNSTABLE_API):
    
           Define this macro before including gnome-bg.h
    
    
    svn path=/trunk/; revision=8416

 capplets/appearance/ChangeLog            | 8 ++++++++
 capplets/appearance/appearance-desktop.c | 1 +
 capplets/appearance/gnome-wp-item.c      | 1 +
 capplets/appearance/gnome-wp-item.h      | 1 +
 4 files changed, 11 insertions(+)

commit 4346e3d0a4e8e12b8495802095872b42cf150ab8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 25 19:39:23 2008 +0000

    remove accessibility keyboard capplet now that the functionality has been
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * keyboard: remove accessibility keyboard capplet now that
        the functionality has been folded into the keyboard capplet
    
    svn path=/trunk/; revision=8415

 capplets/accessibility/keyboard/ChangeLog          |  426 -----
 capplets/accessibility/keyboard/Makefile.am        |   42 -
 .../keyboard/accessibility-keyboard-bouncekey.png  |  Bin 2245 -> 0 bytes
 .../keyboard/accessibility-keyboard-capplet.png    |  Bin 3385 -> 0 bytes
 .../keyboard/accessibility-keyboard-mousekey.png   |  Bin 3160 -> 0 bytes
 .../keyboard/accessibility-keyboard-slowkey.png    |  Bin 3200 -> 0 bytes
 .../keyboard/accessibility-keyboard-stickykey.png  |  Bin 2364 -> 0 bytes
 .../keyboard/accessibility-keyboard-togglekey.png  |  Bin 3239 -> 0 bytes
 .../keyboard/accessibility-keyboard.c              |  485 -----
 .../keyboard/accessibility-keyboard.desktop.in.in  |   14 -
 .../keyboard/accessibility-keyboard.h              |   32 -
 .../gnome-accessibility-keyboard-properties.c      |  116 --
 .../gnome-accessibility-keyboard-properties.glade  | 2004 --------------------
 13 files changed, 3119 deletions(-)

commit 91c269f075d361de90e6d901ce755250bd06381b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 25 19:33:22 2008 +0000

    now that g-s-d is a separate module, remove the directory
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-daemon: now that g-s-d is a separate module,
        remove the directory
    
    svn path=/trunk/; revision=8414

 gnome-settings-daemon/.indent.pro                  |    2 -
 gnome-settings-daemon/ChangeLog                    | 2277 --------------------
 gnome-settings-daemon/Makefile.am                  |  138 --
 gnome-settings-daemon/actions/Makefile.am          |   40 -
 gnome-settings-daemon/actions/acme-eject.png       |  Bin 1624 -> 0 bytes
 gnome-settings-daemon/actions/acme-volume-alsa.c   |  314 ---
 gnome-settings-daemon/actions/acme-volume-alsa.h   |   47 -
 gnome-settings-daemon/actions/acme-volume-dummy.c  |  106 -
 gnome-settings-daemon/actions/acme-volume-dummy.h  |   46 -
 .../actions/acme-volume-gstreamer.c                |  434 ----
 .../actions/acme-volume-gstreamer.h                |   49 -
 gnome-settings-daemon/actions/acme-volume-oss.c    |  213 --
 gnome-settings-daemon/actions/acme-volume-oss.h    |   47 -
 gnome-settings-daemon/actions/acme-volume.c        |  119 -
 gnome-settings-daemon/actions/acme-volume.h        |   61 -
 gnome-settings-daemon/actions/acme.glade           |   69 -
 gnome-settings-daemon/actions/acme.h               |   84 -
 gnome-settings-daemon/delayed-dialog.c             |  122 --
 gnome-settings-daemon/eggaccelerators.c            |  705 ------
 gnome-settings-daemon/eggaccelerators.h            |   89 -
 gnome-settings-daemon/factory.c                    |   58 -
 .../gnome-settings-accessibility-keyboard.c        |  670 ------
 gnome-settings-daemon/gnome-settings-background.c  |  348 ---
 gnome-settings-daemon/gnome-settings-clipboard.c   |  907 --------
 gnome-settings-daemon/gnome-settings-daemon.c      |  317 ---
 gnome-settings-daemon/gnome-settings-daemon.h      |   63 -
 gnome-settings-daemon/gnome-settings-daemon.pc.in  |   11 -
 gnome-settings-daemon/gnome-settings-dbus.c        |  237 --
 gnome-settings-daemon/gnome-settings-dbus.h        |   34 -
 .../gnome-settings-default-editor.c                |  211 --
 gnome-settings-daemon/gnome-settings-font.c        |  271 ---
 gnome-settings-daemon/gnome-settings-gtk1theme.c   |  295 ---
 gnome-settings-daemon/gnome-settings-keybindings.c |  547 -----
 .../gnome-settings-keyboard-xkb.c                  |  315 ---
 .../gnome-settings-keyboard-xkb.h                  |   46 -
 gnome-settings-daemon/gnome-settings-keyboard.c    |  408 ----
 .../gnome-settings-locate-pointer.c                |  227 --
 .../gnome-settings-locate-pointer.h                |   24 -
 gnome-settings-daemon/gnome-settings-marshal.list  |    1 -
 gnome-settings-daemon/gnome-settings-module.c      |  189 --
 gnome-settings-daemon/gnome-settings-module.h      |   85 -
 gnome-settings-daemon/gnome-settings-mouse.c       |  556 -----
 .../gnome-settings-multimedia-keys.c               |  871 --------
 gnome-settings-daemon/gnome-settings-screensaver.c |  230 --
 gnome-settings-daemon/gnome-settings-sound.c       |  287 ---
 .../gnome-settings-typing-break.c                  |  168 --
 gnome-settings-daemon/gnome-settings-xmodmap.c     |  365 ----
 gnome-settings-daemon/gnome-settings-xmodmap.h     |   32 -
 gnome-settings-daemon/gnome-settings-xrandr.c      |  334 ---
 gnome-settings-daemon/gnome-settings-xrdb.c        |  425 ----
 gnome-settings-daemon/gnome-settings-xsettings.c   |  608 ------
 gnome-settings-daemon/gsd-infos.xml                |   16 -
 gnome-settings-daemon/gsd-media-keys-window.c      |  968 ---------
 gnome-settings-daemon/gsd-media-keys-window.h      |   68 -
 gnome-settings-daemon/list.c                       |  150 --
 gnome-settings-daemon/list.h                       |   57 -
 gnome-settings-daemon/modmap-dialog.glade          |  414 ----
 .../org.gnome.SettingsDaemon.service.in            |    3 -
 gnome-settings-daemon/reaper.c                     |  299 ---
 gnome-settings-daemon/reaper.h                     |   64 -
 gnome-settings-daemon/test-media-window.c          |  121 --
 gnome-settings-daemon/utils.c                      |  193 --
 gnome-settings-daemon/utils.h                      |   43 -
 gnome-settings-daemon/xrdb/Editres.ad              |    5 -
 gnome-settings-daemon/xrdb/Emacs.ad                |   21 -
 gnome-settings-daemon/xrdb/General.ad              |    2 -
 gnome-settings-daemon/xrdb/Makefile.am             |   10 -
 gnome-settings-daemon/xrdb/Motif.ad                |   74 -
 gnome-settings-daemon/xrdb/Tk.ad                   |  102 -
 gnome-settings-daemon/xrdb/Xaw.ad                  |   25 -
 gnome-settings-daemon/xsettings-common.c           |  264 ---
 gnome-settings-daemon/xsettings-common.h           |  110 -
 gnome-settings-daemon/xsettings-manager.c          |  424 ----
 gnome-settings-daemon/xsettings-manager.h          |   71 -
 gnome-settings-daemon/xutils.c                     |  117 -
 gnome-settings-daemon/xutils.h                     |   50 -
 76 files changed, 17773 deletions(-)

commit c8636fd3734e464525668009e225e99a8cb0d5e0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 25 19:11:55 2008 +0000

    Patch by: Damien Carberry <damien.carberry@sun.com>
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Damien Carberry <damien.carberry@sun.com>
    
        * configure.in:
        * vfs-methods/fontilus/Makefile.am
        * vfs-methods/themus/Makefile.am: determine correct nautilus
         extension dir via pkgconfig (#505364)
    
    svn path=/trunk/; revision=8413

 ChangeLog                        | 7 +++++++
 configure.in                     | 4 ++++
 vfs-methods/fontilus/ChangeLog   | 7 +++++++
 vfs-methods/fontilus/Makefile.am | 2 +-
 vfs-methods/themus/ChangeLog     | 7 +++++++
 vfs-methods/themus/Makefile.am   | 2 +-
 6 files changed, 27 insertions(+), 2 deletions(-)

commit c06bce17afa29c63d0f0d5777d3894c420b47ab9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 25 18:55:50 2008 +0000

    remove code for obsolete "stock" icons
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * capplet-stock-icons.c: (capplet_init_stock_icons): remove code
        for obsolete "stock" icons
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * keyboard-bell.png:
        * keyboard-cursor.png:
        * keyboard-repeat.png:
        * keyboard-volume.png: remove obsolete icons
        * gnome-keyboard-properties.c: (setup_dialog): don't initialize
        our custom "stock" icons since we don't use them any longer
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * mouse-left.png:
        * mouse-right.png: remove obsolete icons
    
    svn path=/trunk/; revision=8412

 capplets/common/ChangeLog                     |   5 +++
 capplets/common/capplet-stock-icons.c         |  43 +++-----------------------
 capplets/keyboard/ChangeLog                   |  10 ++++++
 capplets/keyboard/Makefile.am                 |   9 +-----
 capplets/keyboard/gnome-keyboard-properties.c |   3 --
 capplets/keyboard/keyboard-bell.png           | Bin 4199 -> 0 bytes
 capplets/keyboard/keyboard-cursor.png         | Bin 261 -> 0 bytes
 capplets/keyboard/keyboard-repeat.png         | Bin 3852 -> 0 bytes
 capplets/keyboard/keyboard-volume.png         | Bin 4655 -> 0 bytes
 capplets/mouse/ChangeLog                      |   6 ++++
 capplets/mouse/Makefile.am                    |   4 +--
 capplets/mouse/mouse-left.png                 | Bin 9676 -> 0 bytes
 capplets/mouse/mouse-right.png                | Bin 9572 -> 0 bytes
 13 files changed, 28 insertions(+), 52 deletions(-)

commit 62dd7faa9ee8d933cc6f5639bcba646f254ef582
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 25 18:29:28 2008 +0000

    remove left-over callback that was causing the capplet to set a label on a
    
    2008-01-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-mouse-properties.c: (delay_value_changed_cb), (setup_dialog):
        remove left-over callback that was causing the capplet to set a label
        on a NULL widget (bug #510425)
    
    svn path=/trunk/; revision=8411

 capplets/mouse/ChangeLog                |  6 +++++
 capplets/mouse/gnome-mouse-properties.c | 48 ++++++++++-----------------------
 2 files changed, 20 insertions(+), 34 deletions(-)

commit 2824523e94357d7a25ae73c6cce015e7bf89cadb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jan 24 18:55:18 2008 +0000

    only declare variables at the beginning of a code block... ... and fix a
    
    2008-01-24  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (on_item_changed): only declare variables at
        the beginning of a code block...
        * gnome-wp-item.c: (gnome_wp_item_update_description): ... and fix a
        constness warning
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml): remove unused variable
    
    svn path=/trunk/; revision=8410

 capplets/appearance/ChangeLog            |  8 ++++++++
 capplets/appearance/appearance-desktop.c |  8 +++++---
 capplets/appearance/gnome-wp-item.c      | 17 +++++++++--------
 capplets/appearance/gnome-wp-xml.c       |  1 -
 4 files changed, 22 insertions(+), 12 deletions(-)

commit 6e0ad68523bda113d0a540fdae6bb56c0f86fb8c
Author: Andre Klapper <a9016009@gmx.de>
Date:   Tue Jan 22 11:57:11 2008 +0000

    Sync "beep" translation.
    
    2008-01-22  Andre Klapper  <a9016009@gmx.de>
    
        * de.po: Sync "beep" translation.
    
    
    svn path=/trunk/; revision=8408

 po/ChangeLog |  4 ++++
 po/de.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 82512cb56ce4a338f3097e81265694a363b9378b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 21 20:16:05 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-01-21  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8407

 po/ChangeLog |   4 +
 po/nb.po     | 303 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 184 insertions(+), 123 deletions(-)

commit 4de49eacbd25af89576c74024375008bbf7356ae
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Mon Jan 21 16:56:03 2008 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=8406

 po/ChangeLog |   4 +
 po/el.po     | 813 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 530 insertions(+), 287 deletions(-)

commit 5c159d054f3c8d6138a14838791c2bd4dc3f3c2d
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Sun Jan 20 15:12:48 2008 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8405

 help/ChangeLog |    5 +-
 help/oc/oc.po  | 1433 +++-----------------------------------------------------
 2 files changed, 66 insertions(+), 1372 deletions(-)

commit 6a68ea22f28d7aa1c5c6320b80ab6f3edc063260
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Fri Jan 18 20:21:14 2008 +0000

    Updated Turkish translation to pass msgfmt -cv
    
    svn path=/trunk/; revision=8404

 po/ChangeLog |    4 +
 po/ca.po     | 1990 +++++++++++++++++++++++++++++++++++-----------------------
 po/tr.po     |   14 +-
 3 files changed, 1200 insertions(+), 808 deletions(-)

commit 0bfec137c6fe6b293a2e83280f1373307e262704
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Fri Jan 18 17:48:00 2008 +0000

    Updated Basque translation.
    
    2008-01-18  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8403

 po/ChangeLog |   4 +
 po/eu.po     | 262 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 170 insertions(+), 96 deletions(-)

commit 386f9dac92824f4b2cbfae4795df2324b195f29a
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Jan 17 14:19:43 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8402

 po/ChangeLog |   4 ++
 po/es.po     | 194 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 103 insertions(+), 95 deletions(-)

commit 6d14756796cda20e7aefdc9f125b48cb902a8b2c
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Thu Jan 17 11:19:20 2008 +0000

    Updated Italian translation.
    
    2008-01-17  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    
    svn path=/trunk/; revision=8401

 po/ChangeLog |   4 +
 po/it.po     | 964 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 697 insertions(+), 271 deletions(-)

commit ed5c5334e57abc89ff87e3ecccaf5aaf6dc1e571
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Thu Jan 17 10:02:56 2008 +0000

    added gnome-mouse-accessibility.c and gnome-settings-mouse.c; removed
    
    2008-01-17  Luca Ferretti  <elle.uca@libero.it>
    
        * POTFILES.in: added gnome-mouse-accessibility.c and
        gnome-settings-mouse.c; removed libbackground/applier.c
    
    
    svn path=/trunk/; revision=8400

 po/ChangeLog   | 5 +++++
 po/POTFILES.in | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 569abc476b0de0ee11df84197fe2b9489cf8933f
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Wed Jan 16 16:34:31 2008 +0000

    updated hebrew translation
    
    svn path=/trunk/; revision=8399

 po/ChangeLog |    4 +
 po/he.po     | 3025 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1658 insertions(+), 1371 deletions(-)

commit 9aa5ddd295d212f94799c055d844c2ee0741e842
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jan 16 15:55:24 2008 +0000

    Don't mark stock labels as translatable. (Bug #508270)
    
    2008-01-16  Denis Washington  <denisw@svn.gnome.org>
    
        * capplets/keyboard/gnome-keyboard-properties.glade:
        Don't mark stock labels as translatable. (Bug #508270)
    
    svn path=/trunk/; revision=8398

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit e7157301e49a24abac02b883ddaf615e12f97641
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jan 16 12:27:29 2008 +0000

    disabled schemas directory from the build, those files are now part of
    
    2008-01-16  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am:
        * configure.in: disabled schemas directory from the build, those
        files are now part of gnome-settings-daemon.
    
    svn path=/trunk/; revision=8397

 ChangeLog    | 6 ++++++
 Makefile.am  | 2 +-
 configure.in | 1 -
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 5f3355c49908e90ad8ef2efadbd6b03d22270837
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jan 15 11:45:27 2008 +0000

    prepare for 2.21.5.
    
    2008-01-14  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.21.5.
    
        * capplets/common/Makefile.am: fixed CFLAGS and LIBS.
    
        * capplets/common/activate-settings-daemon.c: include new built
        header file for DBus interface.
    
        * configure.in: check gnome-settings-daemon.
    
    svn path=/trunk/; revision=8395

 ChangeLog                      | 12 ++++++++++
 NEWS                           | 44 +++++++++++++++++++++++++++++++++++++
 capplets/common/Makefile.am    | 50 ++++++++++++++++++++++++++----------------
 capplets/keyboard/ChangeLog    |  4 ++++
 capplets/keyboard/Makefile.am  | 20 +++++++++--------
 configure.in                   |  7 +-----
 help/ChangeLog                 |  5 +++--
 libwindow-settings/Makefile.am |  2 +-
 po/ChangeLog                   |  4 ++--
 9 files changed, 109 insertions(+), 39 deletions(-)

commit 262ed40e3a3f518b42ab3ddf603be862f4891a5b
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Jan 15 08:00:46 2008 +0000

    Move "Type to test settings" entry beneath the notebook to make it easily
    
    2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
        * capplets/keyboard/gnome-keyboard-properties.glade:
        Move "Type to test settings" entry beneath the notebook to make it
        easily accessible from all tabs. (Also handy for layout and a11y
        preferences.)
    
    
    svn path=/trunk/; revision=8394

 capplets/keyboard/ChangeLog                       |    7 +
 capplets/keyboard/gnome-keyboard-properties.glade | 1985 +++++++++++----------
 2 files changed, 1003 insertions(+), 989 deletions(-)

commit 45a77d648e41589d59bc4f2c3067328d9bd3fc47
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Jan 15 01:47:41 2008 +0000

    Index: gnome-settings-daemon/ChangeLog
    ===================================================================
    --- gnome-settings-daemon/ChangeLog     (revision 8392)
    +++ gnome-settings-daemon/ChangeLog     (working copy)
    @@ -1,3 +1,9 @@
    +2008-01-14  Soren Sandmann  <sandmann@daimi.au.dk>
    +
    +       * gnome-settings-background.c: Use GnomeBG from gnome-desktop
    +
    +
    +
     2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
            * gnome-settings-mouse.c:
    
    ===================================================================
    --- libbackground/ChangeLog     (revision 8336)
    +++ libbackground/ChangeLog     (working copy)
    @@ -1,3 +1,9 @@
    +2008-01-14  Soren Sandmann <sandmann@daimi.au.dk>
    +
    +       * applier.[ch]: Delete these files
    +
    +       * Makefile.am: Remove them here.
    +
     2007-04-16  Jens Granseuer  <jensgr@gmx.net>
    
            Patch by: Erich Schubert <erich@debian.org>
    
    
    Index: capplets/appearance/ChangeLog
    ===================================================================
    --- capplets/appearance/ChangeLog       (revision 8392)
    +++ capplets/appearance/ChangeLog       (working copy)
    @@ -1,3 +1,13 @@
    +2008-01-14  Soren Sandmann  <sandmann@redhat.com>
    +
    +       * appearance-desktop.c: Update list model when the background
    +       changes.
    +       * gnome-wp-item.c: Create a GnomeBG for the item.
    +       * gnome-wp-item.h: Add a GnomeBG field - Remove
    +       gnome_wp_item_dup() function.
    +       * gnome-wp-info.c: Delete gnome_wp_item_dup() function.
    +       * gnome-wp-xml.c: Ensure that a GnomeBG exists.
    +
     2007-12-22  Thomas Wood  <thos@gnome.org>
    
            * theme-installer.c: (transfer_done_tgz_tbz),
    
    
    svn path=/trunk/; revision=8393

 capplets/appearance/ChangeLog                     |  10 +
 capplets/appearance/appearance-desktop.c          |  39 ++++
 capplets/appearance/gnome-wp-info.c               |  21 --
 capplets/appearance/gnome-wp-info.h               |   1 -
 capplets/appearance/gnome-wp-item.c               | 253 +++++++---------------
 capplets/appearance/gnome-wp-item.h               |   6 +-
 capplets/appearance/gnome-wp-xml.c                |   4 +
 configure.in                                      |  10 +-
 gnome-settings-daemon/ChangeLog                   |   4 +
 gnome-settings-daemon/gnome-settings-background.c | 208 +++++++++++++++---
 libbackground/ChangeLog                           |   6 +
 libbackground/Makefile.am                         |   1 -
 12 files changed, 321 insertions(+), 242 deletions(-)

commit 4c12566cfacc5a7aba43c3981a7beaafd0188dc9
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Jan 15 01:06:17 2008 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=8392

 po/ChangeLog |   4 ++
 po/sv.po     | 175 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 134 insertions(+), 45 deletions(-)

commit f9937753c4f59d27c5c266e88fd4548cc1851cc8
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jan 14 18:06:46 2008 +0000

    Add translation context to some labels. (Bug #509417)
    
    2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
        * capplets/mouse/gnome-mouse-properties.glade:
        Add translation context to some labels. (Bug #509417)
    
    svn path=/trunk/; revision=8391

 capplets/mouse/ChangeLog                    |   5 +
 capplets/mouse/gnome-mouse-properties.glade | 332 ++++++++++++++--------------
 2 files changed, 171 insertions(+), 166 deletions(-)

commit 1f03cd3da33cbe4248a95fe112a89dabbd2f82f6
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 14 18:05:39 2008 +0000

    disable gnome-settings-daemon build here also.
    
    2008-01-14  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in: disable gnome-settings-daemon build here also.
    
        * capplets/appearance/Makefile.am:
        * gnome-settings-daemon/Makefile.am:
        * libwindow-settings/Makefile.am:
        * vfs-methods/fontilus/Makefile.am:
        * vfs-methods/themus/Makefile.am: fixes for Cygwin building (#317046)
    
    svn path=/trunk/; revision=8390

 ChangeLog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit a7d00c7cdabb3e508cdca8a3973fa271387b2b39
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 14 18:05:06 2008 +0000

    disable gnome-settings-daemon build here also.
    
    2008-01-14  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in: disable gnome-settings-daemon build here also.
    
        * capplets/appearance/Makefile.am:
        * gnome-settings-daemon/Makefile.am:
        * libwindow-settings/Makefile.am:
        * vfs-methods/fontilus/Makefile.am:
        * vfs-methods/themus/Makefile.am: fixes for Cygwin building (#317046)
    
    svn path=/trunk/; revision=8389

 capplets/appearance/Makefile.am   |  6 +++---
 configure.in                      | 10 +++++-----
 gnome-settings-daemon/Makefile.am |  4 ++--
 libwindow-settings/Makefile.am    |  3 ++-
 vfs-methods/fontilus/Makefile.am  |  4 ++--
 vfs-methods/themus/Makefile.am    |  4 ++--
 6 files changed, 16 insertions(+), 15 deletions(-)

commit 506e9e9bfccfdf9228d0583b1da65d6c71124833
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jan 14 17:36:29 2008 +0000

    Remove XML header line.
    
    2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
        * help/C/config-mouse.xml:
        Remove XML header line.
    
    svn path=/trunk/; revision=8388

 help/C/config-mouse.xml | 3 +--
 help/ChangeLog          | 5 +++++
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 8b216564835e9739f5cf5ec7ec1cbb1a93318f75
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Jan 14 17:09:06 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8387

 po/ChangeLog |   4 ++
 po/es.po     | 150 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 111 insertions(+), 43 deletions(-)

commit 6e53a66d8ab6e3ace394775fe94840068c2efbc1
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jan 14 16:46:40 2008 +0000

    Updated to reflect the changes to the mouse capplet, e.g. the new
    
    2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
        * help/C/config-mouse.xml:
        Updated to reflect the changes to the mouse capplet, e.g. the new
        Accessibility tab.
    
    svn path=/trunk/; revision=8386

 help/C/config-mouse.xml | 332 +++++++++++++++++++++++++++++++++---------------
 help/ChangeLog          |   6 +
 2 files changed, 234 insertions(+), 104 deletions(-)

commit 429996b9960757f23cf55113bce6528ec9687d50
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jan 14 16:35:21 2008 +0000

    Integrate mousetweaks settings into the mouse capplet. (Bug #503547)
    
    2008-01-14  Denis Washington  <denisw@svn.gnome.org>
    
        Integrate mousetweaks settings into the mouse capplet. (Bug #503547)
    
        * capplets/mouse/gnome-mouse-properties.glade:
        Merge the previous "Buttons" and "Motion" tabs into one, and add a new
        "Accessibility" tab with the mousetweaks preferences. Additionally, re-add
        the "Locate Pointer" preference which disappeared in 2.20. (Bug #480457)
    
        * capplets/mouse/gnome-mouse-properties.c:
        Call setup function for the a11y tab, update for a small UI change regarding
        handness preferences, and implement the locate-pointer checkbox.
    
        * capplets/mouse/gnome-mouse-accessibility.[ch]:
        Added.
    
        * capplets/mouse/Makefile.am:
        Add gnome-mouse-accessibility.c.
    
        * gnome-settings-daemon/gnome-settings-mouse.c:
        Mousetweaks support.
    
    svn path=/trunk/; revision=8385

 capplets/mouse/ChangeLog                     |   19 +
 capplets/mouse/Makefile.am                   |    5 +-
 capplets/mouse/gnome-mouse-accessibility.c   |  231 +++
 capplets/mouse/gnome-mouse-accessibility.h   |   90 +
 capplets/mouse/gnome-mouse-properties.c      |   65 +-
 capplets/mouse/gnome-mouse-properties.glade  | 2367 +++++++++++++++-----------
 gnome-settings-daemon/ChangeLog              |    5 +
 gnome-settings-daemon/gnome-settings-mouse.c |   49 +
 8 files changed, 1763 insertions(+), 1068 deletions(-)

commit 54d30bd4c245652bc6cafcbbb524b44eded06a07
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 14 16:17:36 2008 +0000

    disabled non-functional l10n capplet.
    
    2008-01-14  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * capplets/Makefile.am: disabled non-functional l10n capplet.
    
    svn path=/trunk/; revision=8384

 ChangeLog            | 4 ++++
 capplets/Makefile.am | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit b6177042b1a47ce1263c2cbe1e5e051c98daee17
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 14 15:18:00 2008 +0000

    reverted patch from bug #165343.
    
    2008-01-14  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-multimedia-keys.c: reverted patch from bug #165343.
    
    svn path=/trunk/; revision=8383

 gnome-settings-daemon/ChangeLog                        | 4 ++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 5 +++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit d178120b96c5b50911b896a31f912903615790d2
Author: Priit Laes <plaes at svn dot gnome dot org>
Date:   Mon Jan 14 08:21:00 2008 +0000

    Translation updated by Ivar Smolin
    
    2008-01-14  Priit Laes  <plaes at svn dot gnome dot org>
    
        * et.po: Translation updated by Ivar Smolin
    
    svn path=/trunk/; revision=8382

 po/ChangeLog |    4 +
 po/et.po     | 1339 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 749 insertions(+), 594 deletions(-)

commit 18929622c3a7fdc03b5315156ebc38c6291960c8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Sat Jan 12 01:39:30 2008 +0000

    disabled settings daemon build so that the separate module gets more
    
    2008-01-12  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: disabled settings daemon build so that the separate
        module gets more testing.
    
    svn path=/trunk/; revision=8381

 ChangeLog   | 5 +++++
 Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1006b43d3fd02ba1f8c080b6f1af2ae2a19b54ab
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   Wed Jan 9 12:12:53 2008 +0000

    Updated Basque translation.
    
    2008-01-09  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
            * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8379

 po/ChangeLog |    4 +
 po/eu.po     | 1536 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 822 insertions(+), 718 deletions(-)

commit 05711b78cb94aefa889d31f3417b951a3d7a12b8
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Tue Jan 8 14:50:08 2008 +0000

    Added NEWS from 2.20 branch
    
    svn path=/trunk/; revision=8378

 NEWS | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

commit 16793b3addb4f69bbbeb243ed24f5be2c01bcd8d
Author: Funda Wang <fwang@src.gnome.org>
Date:   Mon Jan 7 13:56:30 2008 +0000

    Updated Simplified Chinese translation
    
    svn path=/trunk/; revision=8376

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1319 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 702 insertions(+), 621 deletions(-)

commit 0d3d2f95d6706e6b2de1521829f34b6be2976903
Author: Eskild Hustvedt <i81n@zerodogg.org>
Date:   Sun Jan 6 18:37:25 2008 +0000

    Updated Norwegian Nynorsk translation.
    
    2008-01-06  Eskild Hustvedt  <i81n@zerodogg.org>
    
        * nn.po: Updated Norwegian Nynorsk translation.
    
    svn path=/trunk/; revision=8374

 po/ChangeLog |    4 +
 po/nn.po     | 4474 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 2795 insertions(+), 1683 deletions(-)

commit a8a7f5605bb62c1e4457ac6dabffdd770069bebc
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sat Jan 5 23:16:41 2008 +0000

    Updated Belarusian Latin translation.
    
    svn path=/trunk/; revision=8373

 po/ChangeLog   |   4 +
 po/be@latin.po | 261 ++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 179 insertions(+), 86 deletions(-)

commit 2d0ad31379c885a12b42045e7ed543cb3a9ed0a9
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Jan 5 22:16:04 2008 +0000

    check for eel-2.0, needed by latest libslab. See bug #504968.
    
    2007-12-22  Luca Ferretti  <elle.uca@libero.it>
    
        * configure.in: check for eel-2.0, needed by latest libslab.
        See bug #504968.
    
    svn path=/trunk/; revision=8372

 po/ChangeLog |    5 +
 po/sk.po     | 4818 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 2790 insertions(+), 2033 deletions(-)

commit 954f6f8f8be8a397d030812877c16f9efba63cc6
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Jan 5 18:49:07 2008 +0000

    Don't depend on /desktop/gnome/accessibility/keyboard/enable for setting
    
    2008-01-05  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:
        Don't depend on /desktop/gnome/accessibility/keyboard/enable for
        setting the AccessXFeedback flag; instead, set it if one of the
        notification bits is enabled.
    
    svn path=/trunk/; revision=8371

 gnome-settings-daemon/ChangeLog                        |  7 +++++++
 .../gnome-settings-accessibility-keyboard.c            | 18 +++++++++---------
 2 files changed, 16 insertions(+), 9 deletions(-)

commit 263cbee55f866def0d58ce9ccb6ed1558fdfea91
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sat Jan 5 07:05:45 2008 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=8370

 po/ChangeLog |    4 +
 po/vi.po     | 1701 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 895 insertions(+), 810 deletions(-)

commit 057f6f44c337d137c8bfdfbf3ed54c8f3618df58
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Thu Jan 3 21:36:09 2008 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=8369

 po/ChangeLog |   4 +
 po/sv.po     | 261 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 179 insertions(+), 86 deletions(-)

commit 53c18cb7e53de2045403eb962c29a1d0db7f3af5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jan 3 21:19:51 2008 +0000

    Updated Norwegian bokmål translation.
    
    2008-01-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8368

 po/ChangeLog |  21 +--
 po/nb.po     | 432 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 272 insertions(+), 181 deletions(-)

commit 0662e1a9fdcbc140d351810ef9eba405c595f3ad
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Jan 3 11:28:42 2008 +0000

    Don't build gnome-accessibility-keyboard-properties, all it's features are
    
    2008-01-03  Denis Washington  <denisw@svn.gnome.org>
    
        * configure.in:
        * capplets/accessibility/Makefile.am:
        Don't build gnome-accessibility-keyboard-properties, all
        it's features are in the Keyboard capplet now.
    
    svn path=/trunk/; revision=8367

 capplets/accessibility/Makefile.am | 2 +-
 configure.in                       | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

commit fc9d53f76bfa14e0b4fc4b33cee5cf85a3ef7f0c
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Jan 3 05:59:14 2008 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8366

 po/ChangeLog |   4 +
 po/es.po     | 255 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 176 insertions(+), 83 deletions(-)

commit d528e9f4e2a97cd304c1907db4156d05d94056a7
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jan 2 19:03:10 2008 +0000

    Spawn the accessibility tab of the keyboard capplet instead of
    
    2008-01-02  Denis Washington  <denisw@svn.gnome.org>
    
        * accessibility/at-properties/main.c: (cb_keyboard_preferences):
            Spawn the accessibility tab of the keyboard capplet instead of
            at-properties.
    
        * capplets/keyboard/gnome-keyboard-properties.c: Add --a11y
        command-line option to show the Accessibility tab when started.
    
    
    svn path=/trunk/; revision=8365

 capplets/accessibility/at-properties/ChangeLog |  5 +++++
 capplets/accessibility/at-properties/main.c    |  2 +-
 capplets/keyboard/ChangeLog                    |  5 +++++
 capplets/keyboard/gnome-keyboard-properties.c  | 16 +++++++++++++++-
 4 files changed, 26 insertions(+), 2 deletions(-)

commit 7d7bef7786a125533fdf335c6f73921a97a0a95a
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jan 2 18:02:21 2008 +0000

    Merge all keyboard accessibility options into the keyboard capplet.
    
    2008-01-02  Denis Washington  <denisw@svn.gnome.org>
    
        Merge all keyboard accessibility options into the keyboard capplet.
    
        * capplets/keyboard/gnome-keyboard-properties-a11y.[ch]: added
        * capplets/keyboard/gnome-keyboard-properties.c: Remove the
        "Accessibility..." button, all a11y features are in the Keyboard
        capplet now.
    
        * gnome-settings-daemon/gnome-settings-accessibility-keyboard.c:
        Only consider /desktop/gnome/accessibility/keyboard/enable as
        option for enabling keyboard a11y features from the keyboard,
        not as global switch to turn all a11y features on/off.
    
    svn path=/trunk/; revision=8364

 capplets/keyboard/ChangeLog                        |    8 +
 capplets/keyboard/Makefile.am                      |    6 +-
 capplets/keyboard/gnome-keyboard-properties-a11y.c |  260 ++++
 capplets/keyboard/gnome-keyboard-properties-a11y.h |   33 +
 capplets/keyboard/gnome-keyboard-properties.c      |   36 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 1541 ++++++++++++++++----
 gnome-settings-daemon/ChangeLog                    |    7 +
 .../gnome-settings-accessibility-keyboard.c        |   69 +-
 8 files changed, 1639 insertions(+), 321 deletions(-)

commit 4b3bbf8876c8c634f490f9be9d87003db6cb26d3
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Wed Jan 2 09:43:51 2008 +0000

    Added missing horizontal line in NEWS
    
    svn path=/trunk/; revision=8363

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit b728517061eb1422710c677136259cc456d6a184
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Mon Dec 31 21:28:08 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8362

 help/ChangeLog |    5 +-
 help/oc/oc.po  |  209 +++++----
 po/ChangeLog   |    5 +-
 po/oc.po       | 1282 +++++++++++++++++++++++++++++---------------------------
 4 files changed, 802 insertions(+), 699 deletions(-)

commit 2631d3c57b3ad802f627c5693a527088a481ac8b
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Fri Dec 28 18:09:36 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=8359

 po/ChangeLog |   4 +
 po/sv.po     | 245 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 131 insertions(+), 118 deletions(-)

commit 6aba06ef9db50bf2dd7f6342643bc8eadc200725
Author: Seán de Búrca <sdeburca@svn.gnome.org>
Date:   Fri Dec 28 07:51:30 2007 +0000

    Updated Irish translation.
    
    2007-12-28  Seán de Búrca  <sdeburca@svn.gnome.org>
    
        * ga.po: Updated Irish translation.
    
    svn path=/trunk/; revision=8358

 po/ChangeLog |   4 +
 po/ga.po     | 234 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 117 insertions(+), 121 deletions(-)

commit dbc747ff518fee2cd937392380dc543a1dfdb3a2
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Thu Dec 27 23:14:17 2007 +0000

    Updated Belarusian Latin translation.
    
    svn path=/trunk/; revision=8357

 po/ChangeLog   |   4 ++
 po/be@latin.po | 184 ++++++++++++++++++++++++++++++---------------------------
 2 files changed, 101 insertions(+), 87 deletions(-)

commit aff613917c05d1382f25a4678a294ea52d878f55
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Dec 26 15:51:21 2007 +0000

    Added Portuguese translation by Bruno Queiros
    
    2007-12-26  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt/pt.po: Added Portuguese translation by Bruno Queiros
        <brunomiguelqueiros@sapo.pt>.
        * Makefile.am: Added Portuguese (pt) to DOC_LINGUAS.
    
    svn path=/trunk/; revision=8354

 help/ChangeLog   |  6 ++++
 help/Makefile.am |  2 +-
 help/pt/pt.po    | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 104 insertions(+), 1 deletion(-)

commit 395ed9a17a255d14cc4ad4b2c17b95a3c6e68abd
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Dec 25 04:00:24 2007 +0000

    Install the nautilus extension in the right spot. (#505364)
    
    2007-12-24  Matthias Clasen  <mclasen@redhat.com>
    
            * Makefile.am: Install the nautilus extension in the right spot.
            (#505364)
    
    
    svn path=/trunk/; revision=8353

 vfs-methods/fontilus/ChangeLog   | 5 +++++
 vfs-methods/fontilus/Makefile.am | 2 +-
 vfs-methods/themus/ChangeLog     | 5 +++++
 vfs-methods/themus/Makefile.am   | 2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

commit 71479ae97416aa4a837f83d39a0d0594f08e3199
Author: Christian Persch <chpe@gnome.org>
Date:   Mon Dec 24 19:02:01 2007 +0000

    Add Gtk/IMModule XSetting. Bug #504182, patch by Akira TAGOH.
    
    2007-12-24  Christian Persch  <chpe@gnome.org>
    
        * gnome-settings-xsettings.c: Add Gtk/IMModule XSetting. Bug #504182,
        patch by Akira TAGOH.
    
    svn path=/trunk/; revision=8352

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 7 insertions(+)

commit 1d9c08efca53b1a7fd3454f568817dc159df3018
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Dec 23 13:05:37 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8351

 po/ChangeLog |   4 ++
 po/es.po     | 197 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 102 insertions(+), 99 deletions(-)

commit 91e69830520d5bad7702311e0a577c9b00a54c4e
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sat Dec 22 23:31:55 2007 +0000

    Brazilian Portuguese translation updated by Luiz Armesto.
    
    2007-12-22  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Brazilian Portuguese translation updated by Luiz Armesto.
    
    svn path=/trunk/; revision=8348

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 37 +++++++++++++++----------------------
 2 files changed, 19 insertions(+), 22 deletions(-)

commit 5ebf7c864d84650d144e155aabc8c1cd193accf6
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sat Dec 22 20:44:41 2007 +0000

    Brazilian Portuguese translation fixes by Luiz Armesto, reviewed by Pedro
    
    2007-12-22  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Brazilian Portuguese translation fixes by Luiz Armesto,
        reviewed by Pedro de Medeiros.
    
    svn path=/trunk/; revision=8347

 po/ChangeLog |    5 +
 po/pt_BR.po  | 1286 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 653 insertions(+), 638 deletions(-)

commit 1c0f5153f72340c9d046a94b229b45a3fe92e6d6
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Dec 22 16:29:42 2007 +0000

    Make error dialogs more complient with the HIG (bug 400968).
    
    2007-12-22  Thomas Wood  <thos@gnome.org>
    
        * theme-installer.c: (transfer_done_tgz_tbz),
        (transfer_done_archive), (gnome_theme_install_real),
        (transfer_done_cb), (gnome_theme_install_from_uri):
    
        Make error dialogs more complient with the HIG (bug 400968).
    
    svn path=/trunk/; revision=8344

 capplets/appearance/ChangeLog         |  8 ++++
 capplets/appearance/theme-installer.c | 72 +++++++++++++++++++----------------
 2 files changed, 47 insertions(+), 33 deletions(-)

commit 945618a945d0438b92dc4654be4806dc34abb507
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Dec 22 14:03:08 2007 +0000

    check for eel-2.0, needed by latest libslab. See bug #504968.
    
    2007-12-22  Luca Ferretti  <elle.uca@libero.it>
    
        * configure.in: check for eel-2.0, needed by latest libslab.
        See bug #504968.
    
    
    svn path=/trunk/; revision=8343

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 61436ee492bb8d29cdd341a6dd9902ec04aac9d2
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Dec 22 09:46:04 2007 +0000

    Backported Italian translation from gnome-2-20 branch
    
    2007-12-22  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Backported Italian translation from gnome-2-20 branch
    
    
    svn path=/trunk/; revision=8342

 po/ChangeLog |    4 +
 po/it.po     | 1457 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 671 insertions(+), 790 deletions(-)

commit 1cbc2bd47dc2517f6e635c12e5bc3454bf383f94
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Dec 21 19:42:29 2007 +0000

    Read WindowTitleFont and DocumentsFont from meta-theme and use to set the
    
    2007-12-21  Luca Ferretti  <elle.uca@libero.it>
    
        * appearance-themes.c: (theme_message_area_response_cb),
        (theme_message_area_update), (themes_init):
        * theme-util.h:
        Read WindowTitleFont and DocumentsFont from meta-theme
        and use to set the value for /apps/metacity/general/titlebar_font
        and /desktop/gnome/interface/document_font_name GConf keys.
        This closes bug #504250
    
    
    svn path=/trunk/; revision=8341

 capplets/appearance/ChangeLog           | 10 ++++++++++
 capplets/appearance/appearance-themes.c | 24 ++++++++++++++++++++++++
 capplets/appearance/theme-util.h        |  2 ++
 3 files changed, 36 insertions(+)

commit bac3c4a2272eb4eae4822e2d8346788b4a1c8172
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Fri Dec 21 19:40:07 2007 +0000

    Add support for WindowTitleFont and DocumentsFont keys in meta-themes. See
    
    2007-12-21  Luca Ferretti  <elle.uca@libero.it>
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme),
        (gnome_theme_meta_info_free), (gnome_theme_meta_info_print),
        (gnome_theme_meta_info_compare):
        * gnome-theme-info.h:
        Add support for WindowTitleFont and DocumentsFont keys in
        meta-themes. See bug #504250
    
    
    svn path=/trunk/; revision=8340

 capplets/common/ChangeLog          |  9 +++++++++
 capplets/common/gnome-theme-info.c | 20 ++++++++++++++++++++
 capplets/common/gnome-theme-info.h |  2 ++
 3 files changed, 31 insertions(+)

commit ba06a8c7e537a4543885b8108159ca93c9675318
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Dec 20 23:01:10 2007 +0000

    Preparing 2.21.4
    
    svn path=/trunk/; revision=8338

 ChangeLog    |  5 +++++
 NEWS         | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 76 insertions(+), 1 deletion(-)

commit d189e79310542cb2a882a8c76870c5a6aae58162
Author: Seán de Búrca <sdeburca@svn.gnome.org>
Date:   Thu Dec 20 22:36:25 2007 +0000

    Updated Irish translation.
    
    2007-12-20  Seán de Búrca  <sdeburca@svn.gnome.org>
    
        * ga.po: Updated Irish translation.
    
    svn path=/trunk/; revision=8337

 po/ChangeLog |    4 +
 po/ga.po     | 4130 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 2312 insertions(+), 1822 deletions(-)

commit 854256f1aec6487bf8f3710f5aacc2767981cbf5
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Dec 17 23:51:57 2007 +0000

    convert layout/variant ids to printable form
    
    svn path=/trunk/; revision=8336

 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 01dc903fc6e520fd8ebcd8a98ab2766dcca480a7
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Dec 17 22:55:37 2007 +0000

    moving printing to libgnomekbd 2.21.4.1
    
    svn path=/trunk/; revision=8335

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit b639fb8fc6c6b77468b59c2408e80ea24037978b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Dec 17 22:55:31 2007 +0000

    moving printing to libgnomekbd 2.21.4.1
    
    svn path=/trunk/; revision=8334

 capplets/keyboard/ChangeLog                        |  7 ++
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  4 -
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 22 +++--
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 18 +++--
 .../keyboard/gnome-keyboard-properties-xkbpv.c     | 93 +---------------------
 configure.in                                       |  2 +-
 6 files changed, 36 insertions(+), 110 deletions(-)

commit 7b3edf72752a698bfe6c2007f6e91ca7086fa784
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Dec 17 12:56:48 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8333

 po/ChangeLog |   4 +
 po/sv.po     | 772 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 390 insertions(+), 386 deletions(-)

commit 349a784fcc337408195fb8fbff1353732be19563
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 15 11:29:00 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-12-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8332

 po/ChangeLog |  4 ++++
 po/nb.po     | 25 +++++++++++++++++++------
 2 files changed, 23 insertions(+), 6 deletions(-)

commit 064c90ff3096af396c9662dc3235b60f44ca8bb7
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Dec 14 20:37:52 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8331

 po/ChangeLog |   4 +
 po/es.po     | 593 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 300 insertions(+), 297 deletions(-)

commit b0912ed2b56d1e6cd7c26861cf68ba28e7d8b29d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Dec 14 15:03:27 2007 +0000

    don't even try to open NULL filenames, and don't leak filenames when
    
    2007-12-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_details), (gtkrc_get_color_scheme): don't
        even try to open NULL filenames, and don't leak filenames when
        detecting recursions
    
    svn path=/trunk/; revision=8330

 capplets/common/ChangeLog     |  6 ++++++
 capplets/common/gtkrc-utils.c | 14 ++++++++++----
 2 files changed, 16 insertions(+), 4 deletions(-)

commit 22ab2e4a2616fbd81dd3467a5f8539e1817e9551
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Dec 14 14:25:07 2007 +0000

    try to make the printed header more self-explanatory (bug #503598)
    
    2007-12-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkbpv.c:
        (xkb_layout_preview_draw_page): try to make the printed header more
        self-explanatory (bug #503598)
    
    svn path=/trunk/; revision=8329

 capplets/keyboard/ChangeLog                         | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkbpv.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 2e5e4e4746b9d2270a5b93d65c4abf7c9a681924
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Dec 12 11:57:37 2007 +0000

    the changes in r8327 require new API, so bump the libgnomekbd requirement
    
    2007-12-12  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: the changes in r8327 require new API, so bump the
        libgnomekbd requirement to 2.21.4
    
    svn path=/trunk/; revision=8328

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f5208b90ed0569d6dc8e973b5ddbf545edafbada
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Dec 11 23:09:28 2007 +0000

    making layout printable, b.g.o#502961
    
    svn path=/trunk/; revision=8327

 capplets/keyboard/ChangeLog                        |   8 ++
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   5 +
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   9 ++
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  51 +++++++---
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  22 ++++-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |  99 ++++++++++++++++++-
 capplets/keyboard/gnome-keyboard-properties.glade  | 108 +++++++++++++++------
 7 files changed, 259 insertions(+), 43 deletions(-)

commit 6f1adeb10e98d267ff2c7da2251747fe1cb1894d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Dec 11 11:43:36 2007 +0000

    add 48x48 PNG icon version by Andreas Nilsson <nisses.mail@home.se> (bug
    
    2007-12-11  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * icons/48x48:
        * icons/48x48/gnome-network-preferences.png: add 48x48 PNG icon version
        by Andreas Nilsson <nisses.mail@home.se> (bug #503035)
    
    svn path=/trunk/; revision=8326

 capplets/network/ChangeLog                               |   7 +++++++
 capplets/network/Makefile.am                             |   2 ++
 .../network/icons/48x48/gnome-network-preferences.png    | Bin 0 -> 3191 bytes
 3 files changed, 9 insertions(+)

commit 8c83f1316b0a8bfc563ce544d82ac6b711f1b66d
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Tue Dec 11 10:54:43 2007 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=8325

 po/ChangeLog |    4 +
 po/el.po     | 1198 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 579 insertions(+), 623 deletions(-)

commit 82ce9b1326e1022200edc1d07efef605723765b9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Dec 11 10:29:44 2007 +0000

    add 48x48 PNG icon version by Andreas Nilsson <nisses.mail@home.se> (bug
    
    2007-12-11  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * icons/48x48:
        * icons/48x48/gnome-sound-properties.png: add 48x48 PNG icon version
        by Andreas Nilsson <nisses.mail@home.se> (bug #502945)
    
    svn path=/trunk/; revision=8324

 capplets/sound/ChangeLog                              |   7 +++++++
 capplets/sound/Makefile.am                            |   2 ++
 capplets/sound/icons/48x48/gnome-sound-properties.png | Bin 0 -> 3755 bytes
 3 files changed, 9 insertions(+)

commit bac66563f125f237bc3bdc7a2f5523cfa409142f
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Mon Dec 10 15:44:45 2007 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8323

 po/ChangeLog |   4 +
 po/sl.po     | 727 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 356 insertions(+), 375 deletions(-)

commit e1465795188cb8df41757e9519a542d740a3223a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Dec 9 15:36:10 2007 +0000

    don't try to map invisible widgets, e.g. the button icon when running with
    
    2007-12-09  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (hbox_foreach): don't try to map invisible
        widgets, e.g. the button icon when running with gtk-button-images=0
        (bug #461298)
    
    svn path=/trunk/; revision=8322

 capplets/common/ChangeLog         |  6 ++++++
 capplets/common/theme-thumbnail.c | 10 ++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 205e897235cc94875e71f0ede2fe587344b071d7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Dec 9 15:10:41 2007 +0000

    free metacity theme after use
    
    2007-12-09  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (create_meta_theme_pixbuf): free metacity theme
        after use
    
    svn path=/trunk/; revision=8321

 capplets/common/ChangeLog         | 5 +++++
 capplets/common/theme-thumbnail.c | 1 +
 2 files changed, 6 insertions(+)

commit dd966ec0aeee3c3501d8e42039ede8a799a87d53
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sat Dec 8 20:30:42 2007 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8320

 po/ChangeLog |    4 +
 po/gl.po     | 1058 ++++++++++++++++++++++++----------------------------------
 2 files changed, 449 insertions(+), 613 deletions(-)

commit debbba24509736e15038778417e88aa23601d6f9
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sat Dec 8 08:47:57 2007 +0000

    Updated Belarusian Latin translation.
    
    svn path=/trunk/; revision=8319

 po/ChangeLog   |   4 +
 po/be@latin.po | 804 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 416 insertions(+), 392 deletions(-)

commit 334cff4eaa6f9bf686a4b9437927cf78c1bea910
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 7 07:39:06 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-12-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8318

 po/ChangeLog |   4 +
 po/nb.po     | 574 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 282 insertions(+), 296 deletions(-)

commit 41011016508ecf593cb70242d1bc6bf7da7724d3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Dec 6 22:07:34 2007 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        As a stop-gap measure, until we've got a proper search interface,
        simply check whether beagle or tracker are installed, and prefer them
        to gnome-search-tool if they are (bug #497802)
    
        * gnome-settings-multimedia-keys.c: (do_action): prefer beagle and
        tracker to gnome-search-tool
    
    svn path=/trunk/; revision=8317

 gnome-settings-daemon/ChangeLog                        | 11 +++++++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c |  9 ++++++++-
 2 files changed, 19 insertions(+), 1 deletion(-)

commit 67c1c458bccb6c1c389a874b8ee5c7a7537244bb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Dec 6 21:58:57 2007 +0000

    Patch by: Chris Jones
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Chris Jones
    
        * gnome-default-applications.xml.in: sok is now called onBoard (bug
        #499328)
    
    svn path=/trunk/; revision=8316

 capplets/default-applications/ChangeLog                    |  7 +++++++
 .../default-applications/gnome-default-applications.xml.in | 14 +++++++-------
 2 files changed, 14 insertions(+), 7 deletions(-)

commit adafe1ade1efcd772f4f3f7bc49c61e7fedb35da
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Dec 6 21:48:36 2007 +0000

    add a translation hint
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (passdlg_spawn_passwd): add a translation
        hint
    
    svn path=/trunk/; revision=8315

 capplets/about-me/ChangeLog                 | 5 +++++
 capplets/about-me/gnome-about-me-password.c | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 28c947e053b482c2e30e958f61d74fb5e7ef670b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Dec 6 21:45:14 2007 +0000

    slightly change the code layout in hoping that intltool will now pick up
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-item.c: (gnome_wp_item_update_description): slightly change
        the code layout in hoping that intltool will now pick up the
        translation hint...
    
    svn path=/trunk/; revision=8314

 capplets/appearance/ChangeLog       | 6 ++++++
 capplets/appearance/gnome-wp-item.c | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 8acdd218b3d157e3fb64eb15c7bc101597f7d556
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Dec 6 21:25:06 2007 +0000

    use new setting from libgnome to make toolbar icon size setting work (bug
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-xsettings.c: use new setting from libgnome to make
        toolbar icon size setting work (bug #401030)
    
    svn path=/trunk/; revision=8313

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a94bd1c8b13d7498dacf38f88f400f248d8e9a0d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Dec 6 21:02:54 2007 +0000

    don't mark empty and padding strings for translation (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.glade: don't mark empty and padding strings for
        translation (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-accessibility-keyboard-properties.glade: don't mark padding
        string for translation (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: don't mark padding strings for translation
        and add translation comments for the pixel order strings (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: don't mark padding strings and stock
        items for translation (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-mouse-properties.glade: don't mark padding string as
        translatable (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-window-properties.c: (reload_mouse_modifiers): add a comment
        for translators (bug #502087)
    
    2007-12-06  Jens Granseuer  <jensgr@gmx.net>
    
        * apply-font.glade: don't mark padding string as translatable (bug
        #502087)
    
    svn path=/trunk/; revision=8312

 capplets/about-me/ChangeLog                        |  5 ++
 capplets/about-me/gnome-about-me.glade             | 88 +++++++++++-----------
 capplets/accessibility/keyboard/ChangeLog          |  5 ++
 .../gnome-accessibility-keyboard-properties.glade  |  2 +-
 capplets/appearance/ChangeLog                      |  5 ++
 capplets/appearance/data/appearance.glade          | 12 +--
 capplets/keyboard/ChangeLog                        |  5 ++
 capplets/keyboard/gnome-keyboard-properties.glade  | 10 +--
 capplets/mouse/ChangeLog                           |  5 ++
 capplets/mouse/gnome-mouse-properties.glade        |  8 +-
 capplets/windows/ChangeLog                         |  5 ++
 capplets/windows/gnome-window-properties.c         | 85 ++++++++++-----------
 vfs-methods/themus/ChangeLog                       |  5 ++
 vfs-methods/themus/apply-font.glade                |  4 +-
 14 files changed, 140 insertions(+), 104 deletions(-)

commit 6865140ec7ae9c5446198f8ded636be1b8244307
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 6 18:29:39 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-12-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8311

 po/ChangeLog |   4 +
 po/nb.po     | 317 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 162 insertions(+), 159 deletions(-)

commit 3a0a482e7998a9b4229ec87ae91e0d2a3489dd83
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Dec 6 15:09:03 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8310

 po/ChangeLog |  4 ++++
 po/es.po     | 31 +++++++++++++++++++++++++++----
 2 files changed, 31 insertions(+), 4 deletions(-)

commit 94a48c78ce73fb84ab345635439e15acad481742
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Dec 4 17:58:52 2007 +0000

    Patch by: Brian Cameron <brian.cameron@sun.com>
    
    2007-12-04  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Brian Cameron <brian.cameron@sun.com>
    
        * gtkrc-utils.c: (gtkrc_get_details), (gtkrc_get_color_scheme):
        printing NULL strings crashes on Solaris so don't do that (bug #501391)
    
    svn path=/trunk/; revision=8309

 capplets/common/ChangeLog     | 7 +++++++
 capplets/common/gtkrc-utils.c | 6 ++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 7421584a4cbc438b548bc635e12286ad490ef68a
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Tue Dec 4 05:48:46 2007 +0000

    Updated Malayalam  Translation
    
    svn path=/trunk/; revision=8308

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 2dbd45f632d046f16f8f0f308d05f204c23d7980
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Tue Dec 4 05:48:29 2007 +0000

    Updated Malayalam  Translation
    
    svn path=/trunk/; revision=8307

 po/ml.po | 961 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 482 insertions(+), 479 deletions(-)

commit f0f3e13bc2b4ca5b7677a68343b5335451ed5be3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Dec 3 18:08:34 2007 +0000

    update files list (bug #500864)
    
    2007-12-03  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in:
        * POTFILES.skip: update files list (bug #500864)
    
    svn path=/trunk/; revision=8305

 po/ChangeLog     |  5 +++++
 po/POTFILES.in   |  2 ++
 po/POTFILES.skip | 55 +------------------------------------------------------
 3 files changed, 8 insertions(+), 54 deletions(-)

commit 5ffb699f1c9440b57bb6faaca2e3b5d5d648caef
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Nov 29 17:46:55 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8304

 po/ChangeLog |   4 ++
 po/es.po     | 150 +++++++++++++++++++++++------------------------------------
 2 files changed, 63 insertions(+), 91 deletions(-)

commit abd16829c897f164e3aedb53fe864b7c792e7dfc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Nov 28 19:41:16 2007 +0000

    Based on patch by: Jakub Rusinek <liviopl.pl@gmail.com>
    
    2007-11-28  Jens Granseuer  <jensgr@gmx.net>
    
        Based on patch by: Jakub Rusinek <liviopl.pl@gmail.com>
    
        * gnome-default-applications.xml.in: add support for Midori web browser
        (bug #500274)
    
    svn path=/trunk/; revision=8303

 capplets/default-applications/ChangeLog                         | 7 +++++++
 capplets/default-applications/gnome-default-applications.xml.in | 8 ++++++++
 2 files changed, 15 insertions(+)

commit 2c76333494162199cf9c524adfcc85b4a62d2155
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Nov 28 18:36:51 2007 +0000

    make "Open" the default action for the file choosers (bug #500091)
    
    2007-11-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init):
        * theme-installer.c: (gnome_theme_installer_run): make "Open" the
        default action for the file choosers (bug #500091)
    
    svn path=/trunk/; revision=8302

 capplets/appearance/ChangeLog            | 6 ++++++
 capplets/appearance/appearance-desktop.c | 1 +
 capplets/appearance/theme-installer.c    | 1 +
 3 files changed, 8 insertions(+)

commit facf5c5730a42a12f91eef78d200d85b69d39196
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Nov 28 18:18:18 2007 +0000

    launch Nautilus with --no-desktop for the home key so we don't mess up the
    
    2007-11-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-multimedia-keys.c: (do_action): launch Nautilus with
        --no-desktop for the home key so we don't mess up the desktop for
        people using something else to manage the background (bug #500085)
    
    svn path=/trunk/; revision=8301

 gnome-settings-daemon/ChangeLog                        | 6 ++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 4b78e6e868fe14fd770d4d08bc72c1ad6b89e8a1
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Mon Nov 26 09:02:11 2007 +0000

    enable the preferred applications button, patch by Chris Jones (Closes:
    
    2007-11-26  Sebastien Bacher  <seb128@ubuntu.com>
    
        * main.c: (at_enable_update): enable the preferred applications button,
          patch by Chris Jones (Closes: #499332)
    
    svn path=/trunk/; revision=8300

 capplets/accessibility/at-properties/ChangeLog | 5 +++++
 capplets/accessibility/at-properties/main.c    | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit c9a3f5c1ebbf7bf48a2fde07143e3a5ffe91d1ea
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Mon Nov 26 08:57:53 2007 +0000

    don't list the oudated evolution versions nor the text web browsers
    
    2007-11-26  Sebastien Bacher  <seb128@ubuntu.com>
    
        * gnome-default-applications.xml.in: don't list the oudated evolution
          versions nor the text web browsers (Closes: #499327)
    
    svn path=/trunk/; revision=8299

 capplets/default-applications/ChangeLog            |  5 ++
 .../gnome-default-applications.xml.in              | 66 ----------------------
 2 files changed, 5 insertions(+), 66 deletions(-)

commit db88244d189aec75016c2005b12f921c75d606f9
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Sun Nov 25 20:00:02 2007 +0000

    Updated Russian translation by Vasiliy Faronov <qvvx@yandex.ru>
    
    2007-11-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
            * ru.po: Updated Russian translation
            by Vasiliy Faronov <qvvx@yandex.ru>
    
    
    svn path=/trunk/; revision=8298

 po/ChangeLog |  5 +++++
 po/ru.po     | 34 +++++++++++++++++-----------------
 2 files changed, 22 insertions(+), 17 deletions(-)

commit d67728a62a3a5556702edf585d457729b400adae
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 24 14:22:13 2007 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2007-11-24  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * gnome-about-me.glade: remove non-functional Help button (bug #497803)
    
    svn path=/trunk/; revision=8296

 capplets/about-me/ChangeLog            |  6 ++++++
 capplets/about-me/gnome-about-me.glade | 13 -------------
 2 files changed, 6 insertions(+), 13 deletions(-)

commit 98b2dcba382d879c3a1245a8f8ae3baf40bf3b8a
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:   Fri Nov 23 16:30:37 2007 +0000

    Fix .desktop to be valid (bug #434956)
    
    2007-11-23  Frederic Crozat  <fcrozat@mandriva.com>
    
            * themus-theme-applier.desktop.in.in: Fix .desktop to be valid (bug
            #434956)
    
    
    svn path=/trunk/; revision=8295

 vfs-methods/themus/ChangeLog                          | 5 +++++
 vfs-methods/themus/themus-theme-applier.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 7514dfe2e0c45740d62a05fed6def13e43009760
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:   Fri Nov 23 16:26:24 2007 +0000

    Fix detection of image mimetype (bug #498980)
    
    2007-11-22  Frederic Crozat  <fcrozat@mandriva.com>
    
           * gnome-wp-item.c: Fix detection of image mimetype (bug #498980)
    
    svn path=/trunk/; revision=8294

 capplets/appearance/ChangeLog       | 4 ++++
 capplets/appearance/gnome-wp-item.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 8c2ebc4ad88a3d6d5023f2738e6408cab3172d24
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Tue Nov 20 21:08:42 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8292

 help/oc/oc.po |  30 ++++++-------
 po/oc.po      | 134 +++++++++++++---------------------------------------------
 2 files changed, 44 insertions(+), 120 deletions(-)

commit d1c4a2797498ef3434cb64e11b7b7f9ae9952d23
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 18 13:25:13 2007 +0000

    Patch by: Dan Winship <danw@novell.com> Lucas Rocha <lucasr@gnome.org>
    
    2007-11-18  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Dan Winship <danw@novell.com>
                  Lucas Rocha <lucasr@gnome.org>
    
        * Makefile.am:
        * gnome-settings-daemon.c: (gnome_settings_daemon_init):
        * gnome-settings-xrandr.c: move display settings here from
        gnome-session (bug #434982)
    
    svn path=/trunk/; revision=8291

 gnome-settings-daemon/ChangeLog               |  10 +
 gnome-settings-daemon/Makefile.am             |   1 +
 gnome-settings-daemon/gnome-settings-daemon.c |   2 +
 gnome-settings-daemon/gnome-settings-xrandr.c | 334 ++++++++++++++++++++++++++
 4 files changed, 347 insertions(+)

commit 56793f1706f7a120f5c95d5d62a021dc0fbf6316
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 18 13:09:28 2007 +0000

    Patch by: Bastien Nocera <hadess@hadess.net>
    
    2007-11-18  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Bastien Nocera <hadess@hadess.net>
    
        * gnome-settings-multimedia-keys.c: allow key bindings using Super and
        Meta combinations (bug #165343)
    
    svn path=/trunk/; revision=8290

 gnome-settings-daemon/ChangeLog                        | 7 +++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 5 ++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 25e6047256ccc0432739195aba25370158cbdbcb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 18 13:02:19 2007 +0000

    add shortcut for /usr/share/backgrounds to background file chooser and
    
    2007-11-18  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init): add shortcut for
        /usr/share/backgrounds to background file chooser and also consider it
        when setting the initial directory (bug #497807)
    
    svn path=/trunk/; revision=8289

 capplets/appearance/ChangeLog            |  6 ++++++
 capplets/appearance/appearance-desktop.c | 13 ++++++++++++-
 2 files changed, 18 insertions(+), 1 deletion(-)

commit a49486ebd674d3bce2f7c2ca5976cec9348edb7b
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Thu Nov 15 07:59:58 2007 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=8288

 po/ChangeLog |   4 +
 po/gl.po     | 970 +++++++++++++++++------------------------------------------
 2 files changed, 281 insertions(+), 693 deletions(-)

commit 5c15e1ba8aa2729bb32693b91d2fd4a9a40e532a
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Nov 13 00:25:05 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8286

 po/ChangeLog |  4 ++++
 po/sv.po     | 74 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 49 insertions(+), 29 deletions(-)

commit c5044f9e6c4a97c1bb16f5041353a3facf1d1f10
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 12 22:51:32 2007 +0000

    prepare for 2.21.2.
    
    2007-11-12  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.21.2.
    
    svn path=/trunk/; revision=8284

 ChangeLog    |  5 +++++
 NEWS         | 45 +++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 po/ChangeLog |  8 ++++----
 4 files changed, 55 insertions(+), 5 deletions(-)

commit 98f2560c629f755afdbdebd43607a6fadf24c376
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Nov 12 22:15:30 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8283

 po/es.po | 11350 +++++++++++++++++--------------------------------------------
 1 file changed, 3191 insertions(+), 8159 deletions(-)

commit d71fb9aa62d3d61902b6e467c81cf67f3a740766
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Nov 12 19:41:42 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8282

 po/es.po | 11350 ++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 8159 insertions(+), 3191 deletions(-)

commit 239d3c54870d03982b4ae35c4a723125492b3b69
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Nov 12 19:39:22 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8281

 po/ChangeLog |  4 ++++
 po/es.po     | 51 ++++++++++++++++++++++++++-------------------------
 2 files changed, 30 insertions(+), 25 deletions(-)

commit b5638420a90783234a571fbf96507fd2b70f8a44
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Mon Nov 12 14:40:40 2007 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8280

 po/ChangeLog |   4 ++
 po/sl.po     | 226 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 122 insertions(+), 108 deletions(-)

commit 3be83efcfc773670d883bc4f572bdb659a4f8f93
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Nov 12 13:39:04 2007 +0000

    re-added GnomeThemeElement to the "public" API, since it's used in
    
    20007-11-12  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-theme-info.c:
        * gnome-theme-info.h: re-added GnomeThemeElement to the "public" API,
        since it's used in gnome-theme-test.
    
    svn path=/trunk/; revision=8279

 capplets/common/ChangeLog          | 6 ++++++
 capplets/common/gnome-theme-info.c | 6 ------
 capplets/common/gnome-theme-info.h | 6 ++++++
 3 files changed, 12 insertions(+), 6 deletions(-)

commit e1e7254db8cf634559ff93e765f1d26034b2c19b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 11 19:43:39 2007 +0000

    remove GnomeThemeElement from the "public" API
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c:
        * gnome-theme-info.h: remove GnomeThemeElement from the "public" API
    
    svn path=/trunk/; revision=8277

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 6 ++++++
 capplets/common/gnome-theme-info.h | 7 -------
 3 files changed, 11 insertions(+), 7 deletions(-)

commit 9e29ffc280ee78c3c894f6597625a8c051d48a65
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 11 19:36:29 2007 +0000

    remove more redundant info from the theme changed callback
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (handle_change_signal), (update_theme_index),
        (update_common_theme_dir_index):
        * gnome-theme-info.h: remove more redundant info from the theme changed
        callback
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (changed_on_disk_cb):
        * appearance-themes.c: (theme_changed_on_disk_cb): adapt to modified
        theme change callback
    
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-method.c: (theme_changed_callback): adapt to callback change
    
    svn path=/trunk/; revision=8276

 capplets/appearance/ChangeLog           |  6 ++++++
 capplets/appearance/appearance-style.c  |  1 -
 capplets/appearance/appearance-themes.c |  1 -
 capplets/common/ChangeLog               |  7 +++++++
 capplets/common/gnome-theme-info.c      | 35 +++++++++++++++++----------------
 capplets/common/gnome-theme-info.h      |  1 -
 vfs-methods/themus/ChangeLog            |  4 ++++
 vfs-methods/themus/theme-method.c       |  1 -
 8 files changed, 35 insertions(+), 21 deletions(-)

commit 152794358210d3ebbee02c734d9dd82cf379de86
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 11 19:33:31 2007 +0000

    the fine line between text fields and text boxes seems rather irrelevant
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: the fine line between text fields
        and text boxes seems rather irrelevant here
    
    svn path=/trunk/; revision=8275

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 31e51ef0762efc3aaf4f65d1752c97aa8462f05e
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Nov 11 14:25:53 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8274

 po/ChangeLog | 4 ++++
 po/fi.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 85136d042dbb310488c9913f652a86b61cb41051
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 11 12:04:00 2007 +0000

    slightly increase the popup window size again (130x130 at 640x480 and
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gsd-media-keys-window.c: (gsd_media_keys_window_init): slightly
        increase the popup window size again (130x130 at 640x480 and scaled
        from there)
    
    svn path=/trunk/; revision=8273

 gnome-settings-daemon/ChangeLog               | 6 ++++++
 gnome-settings-daemon/gsd-media-keys-window.c | 8 ++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit b031fb0e126127409e40ab0488bc4323c7d843e2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Nov 11 10:59:30 2007 +0000

    use standard preferences-desktop-locale icon
    
    2007-11-11  Jens Granseuer  <jensgr@gmx.net>
    
        * localization.desktop.in.in: use standard preferences-desktop-locale
        icon
    
    svn path=/trunk/; revision=8272

 capplets/localization/ChangeLog                  | 5 +++++
 capplets/localization/localization.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 14c10e56bb24bfa4c4eb1de30f4c34b172d33c2f
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sat Nov 10 18:02:16 2007 +0000

    commit changelog changes
    
    svn path=/trunk/; revision=8271

 capplets/localization/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 3e0003d1384c9f52efa3cf928ddbf63203dfa2c8
Author: Denis Washington <dwashington@gmx.net>
Date:   Sat Nov 10 18:01:05 2007 +0000

    Tweak the interface slightly and name all important widgets.
    
    2007-11-10  Denis Washington  <dwashington@gmx.net>
    
        * localization.glade: Tweak the interface slightly and name all
        important widgets.
    
    
    svn path=/trunk/; revision=8270

 capplets/localization/localization.glade | 555 ++++++++++++-------------------
 1 file changed, 220 insertions(+), 335 deletions(-)

commit 80b2a5f837c03c59180d1eb8ed92b3ce79fd440c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 10 17:19:50 2007 +0000

    fix several minor issues in the desktop file
    
    2007-11-10  Jens Granseuer  <jensgr@gmx.net>
    
        * localization.desktop.in.in: fix several minor issues in the
        desktop file
    
    svn path=/trunk/; revision=8269

 capplets/localization/ChangeLog                  |  5 +++++
 capplets/localization/localization.desktop.in.in | 11 +++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 19fcf3f094e28cd88eabf7f03f321563e1fd032f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 10 16:59:53 2007 +0000

    The media window popup has a fixed size 300x300 when running in composited
    
    2007-11-10  Jens Granseuer  <jensgr@gmx.net>
    
        The media window popup has a fixed size 300x300 when running in
        composited mode. For smaller display sizes this is quite excessive.
        Change the window size to be 100x100 on 800x600 and smaller screens,
        and scale up from that for anthing bigger. (bug #495346)
    
        * gsd-media-keys-window.c: (initialize_alpha_mode),
        (gsd_media_keys_window_init): make composited media popup window sizes
        scale with the screen size
    
    svn path=/trunk/; revision=8267

 gnome-settings-daemon/ChangeLog               | 11 +++++++++++
 gnome-settings-daemon/gsd-media-keys-window.c | 21 ++++++++++++++++-----
 2 files changed, 27 insertions(+), 5 deletions(-)

commit 951971ee541178614970b227a8590ddca81e00af
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 10 15:34:37 2007 +0000

    don't get confused when the user does not have a password set and passwd
    
    2007-11-10  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (authenticated_user),
        (io_watch_stdout): don't get confused when the user does not have a
        password set and passwd immediately asks for the new one. This resulted
        in an endless loop up to now (bug #336872)
    
    svn path=/trunk/; revision=8265

 capplets/about-me/ChangeLog                 |  7 ++++
 capplets/about-me/gnome-about-me-password.c | 65 ++++++++++++++++++++---------
 2 files changed, 52 insertions(+), 20 deletions(-)

commit 75b37c980cb922df6a5ddced3c3cbca67fd18226
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 10 12:04:14 2007 +0000

    don't leak the glade data
    
    2007-11-10  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (create_dialog): don't leak the glade data
    
    svn path=/trunk/; revision=8264

 capplets/localization/ChangeLog | 4 ++++
 capplets/localization/main.c    | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 42e478c8626a0c649d4db05e575bf5164027854c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Nov 9 20:23:28 2007 +0000

    added new localization capplet to the build.
    
    2007-11-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * capplets/Makefile.am: added new localization capplet to the build.
    
    svn path=/trunk/; revision=8262

 ChangeLog            | 5 +++++
 capplets/Makefile.am | 1 +
 configure.in         | 2 ++
 3 files changed, 8 insertions(+)

commit 24a8d3b65bf265ffcd92ad4b0b2f69850208f45f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Nov 9 20:22:21 2007 +0000

    Started localization capplet.
    
    2007-11-02  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Started localization capplet.
    
    svn path=/trunk/; revision=8261

 capplets/localization/ChangeLog                  |   3 +
 capplets/localization/Makefile.am                |  26 ++
 capplets/localization/localization.desktop.in.in |  15 +
 capplets/localization/localization.glade         | 337 +++++++++++++++++++++++
 capplets/localization/main.c                     |  62 +++++
 5 files changed, 443 insertions(+)

commit 3c81c026f63c829fc2e10d9ce519bb9f2844d918
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Nov 7 00:24:16 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8260

 po/ChangeLog |   4 +
 po/sv.po     | 965 ++++++++++++++++++++++-------------------------------------
 2 files changed, 365 insertions(+), 604 deletions(-)

commit 2fe4299b22e3afb7fdae4de20c987f8e490ac2e4
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Nov 6 13:45:40 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8259

 po/ChangeLog |   4 +++
 po/es.po     | 105 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 53 insertions(+), 56 deletions(-)

commit 5e6acc445e05aa9122fb0061c4148cbe7698c2dd
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Tue Nov 6 00:05:40 2007 +0000

    Updated be@latin translation.
    
    svn path=/trunk/; revision=8258

 po/ChangeLog   |   4 +
 po/be@latin.po | 284 ++++++++++++++++++++++++++++++---------------------------
 2 files changed, 152 insertions(+), 136 deletions(-)

commit 0f136e2fa76788498e002fc42f9c629f9f52a399
Author: Scott Reeves <sreeves@src.gnome.org>
Date:   Mon Nov 5 21:35:09 2007 +0000

    Fix for https://bugzilla.novell.com/show_bug.cgi?id=298047
    
    svn path=/trunk/; revision=8257

 shell/ChangeLog                 | 4 ++++
 shell/control-center.schemas.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ee4bb343790424d9fcaa5a84c93770cc702bcfee
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 3 15:10:53 2007 +0000

    add another string to the list of recognized error returns from passwd
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (io_watch_stdout): add another string to
        the list of recognized error returns from passwd ("must choose a longer
        password")
    
    svn path=/trunk/; revision=8256

 capplets/about-me/ChangeLog                 |   6 +
 capplets/about-me/gnome-about-me-password.c | 403 ++++++++++++++--------------
 2 files changed, 209 insertions(+), 200 deletions(-)

commit 6b8e2ae765b1728b431d5f924358fd8d876a4ebe
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 3 13:31:57 2007 +0000

    don't include keyboard model description in glade file
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: don't include keyboard model
        description in glade file
    
    svn path=/trunk/; revision=8255

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1b2b15f3cd7b7db623f2c7661755f88451e5416e
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Nov 3 13:07:43 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8254

 po/es.po | 64 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 30 insertions(+), 34 deletions(-)

commit 9711a951fa898ae31d154d50d374444171330e89
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 3 13:07:19 2007 +0000

    fix left-over GTK_ENTRY use from last commit
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkb.c: (set_model_text): fix left-over
        GTK_ENTRY use from last commit
    
    svn path=/trunk/; revision=8253

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 980f8a00cff3736166ed5046001e94023d8e5685
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Nov 3 12:57:35 2007 +0000

    Replace text entry and "Choose..." button for keyboard model with a single
    
    2007-11-03  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-keyboard-properties-xkb.c:
        * gnome-keyboard-properties.glade: Replace text entry and
        "Choose..." button for keyboard model with a single chooser
        button.
    
    svn path=/trunk/; revision=8252

 capplets/keyboard/ChangeLog                       |  7 +++
 capplets/keyboard/gnome-keyboard-properties-xkb.c | 10 ++--
 capplets/keyboard/gnome-keyboard-properties.glade | 65 +++++++++--------------
 3 files changed, 37 insertions(+), 45 deletions(-)

commit 9a63a8a5b29751e599a8d20b641c52027014f4c2
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Nov 3 12:48:25 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8251

 po/ChangeLog |   4 +++
 po/es.po     | 109 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 66 insertions(+), 47 deletions(-)

commit cf1bfcb3d6fb3d8f9c498f1408520e1a2144f5b2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 3 11:10:04 2007 +0000

    rename first tab to "General"
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.glade: rename first tab to "General"
    
    svn path=/trunk/; revision=8250

 capplets/keyboard/ChangeLog                       | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 73ed731cc2725f5f9fab0e3bbde3cd276cc2de57
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Nov 3 10:57:05 2007 +0000

    be more careful when reading background information from GConf and make
    
    2007-11-03  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_color_changed), (wp_props_wp_set):
        * gnome-wp-item.c: (gnome_wp_item_new), (gnome_wp_item_free),
        (gnome_wp_item_dup):
        * gnome-wp-item.h:
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml), (gnome_wp_xml_save_list):
        be more careful when reading background information from GConf and make
        sure we don't choke on NULL values later on (bug #492903)
    
    svn path=/trunk/; revision=8249

 capplets/appearance/ChangeLog            | 10 ++++++
 capplets/appearance/appearance-desktop.c | 30 +++++++++---------
 capplets/appearance/gnome-wp-item.c      | 54 +++++++++++++++++---------------
 capplets/appearance/gnome-wp-item.h      |  2 --
 capplets/appearance/gnome-wp-xml.c       | 44 +++++++++++++++-----------
 5 files changed, 78 insertions(+), 62 deletions(-)

commit 071af09ea652bad038877549d674c0c08330305d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Nov 3 02:22:05 2007 +0000

    moving layout options to separate popup
    
    svn path=/trunk/; revision=8248

 capplets/keyboard/ChangeLog                        |   8 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  10 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   2 +
 .../keyboard/gnome-keyboard-properties-xkblt.c     |   5 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 121 +++++-----
 .../keyboard/gnome-keyboard-properties-xkbot.c     |  65 +++--
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |   3 +-
 capplets/keyboard/gnome-keyboard-properties.c      | 214 +++++++++++------
 capplets/keyboard/gnome-keyboard-properties.glade  | 265 +++++++++++++--------
 9 files changed, 414 insertions(+), 279 deletions(-)

commit 24f4ae9df55283321ed12f8e5a84680db41fb6b6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Nov 2 13:53:43 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-11-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8247

 po/ChangeLog |   4 ++
 po/nb.po     | 137 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 76 insertions(+), 65 deletions(-)

commit 782dddf5fe21171d3e4a8313926dd8b373f95a5f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Nov 1 19:22:51 2007 +0000

    Patch by: Joel Pfaff <joel.pfaff@gmail.com>
    
    2007-11-01  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Joel Pfaff <joel.pfaff@gmail.com>
    
        * appearance-themes.c: (themes_init): fix build without libXcursor
    
    svn path=/trunk/; revision=8246

 capplets/appearance/ChangeLog           | 6 ++++++
 capplets/appearance/appearance-themes.c | 2 ++
 2 files changed, 8 insertions(+)

commit 405aceb366b6f86a4f94a0bfcab5298577cd09ee
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Nov 1 13:06:25 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8245

 po/ChangeLog |   4 ++
 po/es.po     | 146 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 79 insertions(+), 71 deletions(-)

commit 308c2ffc5873ee8363d8b1a790a580cc47f22c32
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Oct 31 14:39:06 2007 +0000

    ANSIfication of function declaration.
    
    2007-10-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * theme-method.c: (invoke_monitors): ANSIfication of
        function declaration.
    
    svn path=/trunk/; revision=8242

 vfs-methods/themus/ChangeLog      | 5 +++++
 vfs-methods/themus/theme-method.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 309ab3c59701e67961567d745448617edcd3d263
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Oct 31 14:38:27 2007 +0000

    Fix warnings from sparse. Don't use deprecated signal api from gtk+.
    
    2007-10-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_prepare_selected_tree):
        Fix warnings from sparse. Don't use deprecated signal
        api from gtk+.
    
    svn path=/trunk/; revision=8241

 capplets/keyboard/ChangeLog                         |  7 +++++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 10 ++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

commit 965e2c09f5b5208a902ab12f6cc95fdf3ce5507a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Oct 31 14:37:33 2007 +0000

    Distcheck fixes.
    
    2007-10-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * Makefile.am: Distcheck fixes.
    
    svn path=/trunk/; revision=8240

 capplets/keybindings/ChangeLog   | 4 ++++
 capplets/keybindings/Makefile.am | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit fa5c993d24c0fcee78c3a0fc7703507e33efc64c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Oct 31 14:36:46 2007 +0000

    Distcheck fixes.
    
    2007-10-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * Makefile.am: Distcheck fixes.
    
    svn path=/trunk/; revision=8239

 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b745d35c24577521490985019ae3d9cdc91496e1
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Wed Oct 31 14:22:46 2007 +0000

    Updated Finnish translation (fix for bug #484148)
    
    svn path=/trunk/; revision=8238

 po/ChangeLog |   4 +
 po/fi.po     | 302 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 160 insertions(+), 146 deletions(-)

commit da6e06e331e2ce1f3d0f6ce9405ecae65c48916b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Oct 31 12:19:02 2007 +0000

    prepare for 2.21.1.
    
    2007-10-30  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.21.1.
    
    svn path=/trunk/; revision=8237

 ChangeLog    |  5 ++++
 NEWS         | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 po/ChangeLog |  6 ++---
 4 files changed, 93 insertions(+), 4 deletions(-)

commit c14f3824b07aa1afdf3d31f04b6828a8d13ca182
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 30 21:08:09 2007 +0000

    revert last patch, it's just too ugly as long as the "one dialog per
    
    2007-10-30  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_installer_run): revert last patch,
        it's just too ugly as long as the "one dialog per installed file" issue
        isn't fixed
    
    svn path=/trunk/; revision=8236

 capplets/appearance/ChangeLog         |  6 ++++++
 capplets/appearance/theme-installer.c | 13 +++----------
 2 files changed, 9 insertions(+), 10 deletions(-)

commit 2a7579a53b5693d52e9c2b30d782e1ae7a89479d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 30 20:32:55 2007 +0000

    Patch by: Benjamin Gramlich <benjamin.gramlich@gmail.com>
    
    2007-10-30  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Benjamin Gramlich <benjamin.gramlich@gmail.com>
    
        * theme-installer.c: (gnome_theme_installer_run): allow the user to
        select multiple themes to install at once (first part of the fix for
        bug #124554)
    
    svn path=/trunk/; revision=8235

 capplets/appearance/ChangeLog         |  8 ++++++++
 capplets/appearance/theme-installer.c | 13 ++++++++++---
 2 files changed, 18 insertions(+), 3 deletions(-)

commit 9a5c2f7fcfe1c204b16df12bcd02e493f6332e27
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 30 20:26:00 2007 +0000

    When installing multiple themes at once, don't ask the user whether to
    
    2007-10-30  Jens Granseuer  <jensgr@gmx.net>
    
        When installing multiple themes at once, don't ask the user whether to
        apply after each theme. Instead, simply show a success message after
        installation has finished, and ask only if a single theme has been
        installed.
    
        * theme-installer.c: (gnome_theme_install_real),
        (transfer_done_cb): check whether there are multiple themes to install
        up front, and skip the apply dialog if so
    
    svn path=/trunk/; revision=8234

 capplets/appearance/ChangeLog         |  11 +++
 capplets/appearance/theme-installer.c | 158 +++++++++++++++++++++-------------
 2 files changed, 109 insertions(+), 60 deletions(-)

commit e55cb9bf732ce41032983d30618b453e7e1c80c5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 30 19:24:03 2007 +0000

    also update the icon cache for icon themes with cursors
    
    2007-10-30  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_real): also update the icon
        cache for icon themes with cursors
    
    svn path=/trunk/; revision=8233

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/theme-installer.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3da9bfbd0f7929f3a960be88bab09aec5c6c87e5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 30 18:43:56 2007 +0000

    teach the installer to recognize cursor themes and icon themes with
    
    2007-10-30  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (file_theme_type), (gnome_theme_install_real):
        teach the installer to recognize cursor themes and icon themes with
        cursors and how to apply them
    
    svn path=/trunk/; revision=8232

 capplets/appearance/ChangeLog         |  6 +++
 capplets/appearance/theme-installer.c | 99 +++++++++++++++++++++++------------
 2 files changed, 72 insertions(+), 33 deletions(-)

commit b027e0b4b5e935ef70283b3842f594ddb9189dd4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Oct 29 21:27:51 2007 +0000

    make sure we always call update_cursor_theme_index with the index.theme
    
    2007-10-29  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (theme_compare), (theme_free),
        (update_common_theme_dir_index), (common_icon_theme_dir_changed),
        (gnome_theme_cursor_info_find_all),
        (gnome_theme_cursor_info_compare):
        * gnome-theme-info.h: make sure we always call update_cursor_theme_index
        with the index.theme URI. Implement some missing functionality for
        cursor theme monitoring.
    
    svn path=/trunk/; revision=8231

 capplets/common/ChangeLog          | 10 +++++++++
 capplets/common/gnome-theme-info.c | 44 ++++++++++++++++++++++++++++++--------
 capplets/common/gnome-theme-info.h |  2 ++
 3 files changed, 47 insertions(+), 9 deletions(-)

commit 3f487a2582c3b93e49503e45f1a650bd7459bddf
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Mon Oct 29 11:33:44 2007 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8230

 po/sl.po | 292 ++++++++++-----------------------------------------------------
 1 file changed, 45 insertions(+), 247 deletions(-)

commit 23ea52cb59957319854d1292f43d716d5d7fb0ad
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Mon Oct 29 11:21:40 2007 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8229

 po/sl.po | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 286cdd1fcddab4030a4dbc917562783f139183be
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 28 23:01:09 2007 +0000

    simplify some more code, and fix a crash when the cursor theme in GConf is
    
    2007-10-29  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (gtk_theme_changed), (window_theme_changed),
        (icon_theme_changed), (update_cursor_size_scale),
        (cursor_theme_changed):
        * appearance-themes.c: (theme_selection_changed_cb):
        * theme-util.c: (theme_is_writable):
        * theme-util.h: simplify some more code, and fix a crash when the
        cursor theme in GConf is unset that I introduced in r8212
    
    svn path=/trunk/; revision=8228

 capplets/appearance/ChangeLog           | 10 ++++++++++
 capplets/appearance/appearance-style.c  | 10 +++++-----
 capplets/appearance/appearance-themes.c |  2 +-
 capplets/appearance/theme-util.c        |  3 +--
 capplets/appearance/theme-util.h        |  2 +-
 5 files changed, 18 insertions(+), 9 deletions(-)

commit 194de56db96d9773e8be654d80e9664848bae432
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 28 22:33:18 2007 +0000

    simplify code thanks to the new unified theme type
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (prepare_list):
        * theme-util.c: (theme_is_writable), (theme_delete): simplify code
        thanks to the new unified theme type
    
    svn path=/trunk/; revision=8227

 capplets/appearance/ChangeLog          |  6 +++++
 capplets/appearance/appearance-style.c | 24 ++++-------------
 capplets/appearance/theme-util.c       | 49 ++++++++++------------------------
 3 files changed, 25 insertions(+), 54 deletions(-)

commit 190963ea61927dd517585dcf5043955d2c0bb665
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 28 22:10:32 2007 +0000

    add live monitoring for cursor themes
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (add_default_cursor_theme),
        (read_cursor_theme), (update_common_theme_dir_index),
        (update_meta_theme_index), (update_icon_theme_index),
        (update_cursor_theme_index), (common_icon_theme_dir_changed),
        (add_common_icon_theme_dir_monitor), (gnome_theme_info_find),
        (gnome_theme_init): add live monitoring for cursor themes
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (changed_on_disk_cb): add support for live cursor
        theme updates
    
    svn path=/trunk/; revision=8226

 capplets/appearance/ChangeLog          |   5 +
 capplets/appearance/appearance-style.c |  12 ++
 capplets/common/ChangeLog              |   9 ++
 capplets/common/gnome-theme-info.c     | 284 ++++++++++++++++++---------------
 4 files changed, 177 insertions(+), 133 deletions(-)

commit 55ca935e2e8fcc4466b95ffa3b555b262bc5e643
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 28 20:07:29 2007 +0000

    add cast to avoid "incompatible types" compiler warning
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (gconf_peditor_new_tree_view): add cast to
        avoid "incompatible types" compiler warning
    
    svn path=/trunk/; revision=8225

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3dcede807d645ca9473ccad3069a9614ddab058d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 28 15:35:21 2007 +0000

    Switch to using a common theme struct that includes a type descriptor so
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        Switch to using a common theme struct that includes a type descriptor
        so we can avoid many of the theme type casts. This should also make
        adding support for live cursor theme changes a little easier.
    
        * gnome-theme-info.c: (add_theme_to_hash_by_name),
        (remove_theme_from_hash_by_name), (get_theme_from_hash_by_name),
        (gnome_theme_compare), (gnome_theme_free),
        (add_default_cursor_theme), (gdk_pixbuf_from_xcursor_image),
        (read_cursor_theme), (look_for_cursor_theme),
        (read_current_cursor_font), (read_cursor_fonts),
        (handle_change_signal), (update_theme_index),
        (update_common_theme_dir_index), (gtk2_dir_changed),
        (keybinding_dir_changed), (metacity_dir_changed),
        (common_theme_dir_changed), (common_icon_theme_dir_changed),
        (add_common_theme_dir_monitor),
        (add_common_icon_theme_dir_monitor),
        (remove_common_theme_dir_monitor), (top_theme_dir_changed),
        (top_icon_theme_dir_changed), (real_add_top_theme_dir_monitor),
        (gnome_theme_info_new), (gnome_theme_info_free),
        (gnome_theme_info_find), (gnome_theme_info_find_all_helper),
        (gnome_theme_icon_info_new), (gnome_theme_icon_info_find),
        (gnome_theme_icon_info_find_all), (gnome_theme_cursor_info_new),
        (gnome_theme_cursor_info_find), (gnome_theme_cursor_info_find_all),
        (gnome_theme_meta_info_new), (gnome_theme_meta_info_free),
        (gnome_theme_meta_info_find), (gnome_theme_meta_info_find_all),
        (gnome_theme_color_scheme_parse), (gnome_theme_init):
        * gnome-theme-info.h: Use CursorThemeCommonInfo wherever possible,
        remove some unused code.
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (changed_on_disk_cb):
        * appearance-themes.c: (theme_changed_on_disk_cb): adapt to changes in
        theme change notification
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-method.c: (theme_changed_callback): adapt to modified
        callback signature
    
    svn path=/trunk/; revision=8224

 capplets/appearance/ChangeLog           |    6 +
 capplets/appearance/appearance-style.c  |   17 +-
 capplets/appearance/appearance-themes.c |   11 +-
 capplets/common/ChangeLog               |   31 +
 capplets/common/gnome-theme-info.c      | 1120 ++++++++++++++-----------------
 capplets/common/gnome-theme-info.h      |   56 +-
 vfs-methods/themus/ChangeLog            |    5 +
 vfs-methods/themus/theme-method.c       |    9 +-
 8 files changed, 610 insertions(+), 645 deletions(-)

commit 1c50e4c94c83c2148b0b8de096e0fdc1e2df23d4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 22:08:32 2007 +0000

    readd gettext macro that accidentally got stripped
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (display_rotation_from_text), (create_rotate_menu): readd gettext
        macro that accidentally got stripped
    
    svn path=/trunk/; revision=8223

 capplets/display/ChangeLog | 5 +++++
 capplets/display/main.c    | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 73fc8e79a94ce2a59ec9f64a8c4c1804d8af4779
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 21:57:15 2007 +0000

    whitespace cleanup and a few minor tweaks
    
    2007-10-28  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (display_rotation_from_text), (get_current_resolution),
        (get_current_rate), (get_current_rotation), (wrap_in_label),
        (resolution_changed_callback), (generate_rate_menu),
        (generate_resolution_menu), (initialize_combo_layout),
        (create_rate_menu), (create_rotate_menu), (create_screen_widgets),
        (create_dialog), (save_timeout_callback), (run_revert_dialog),
        (save_to_gconf), (cb_dialog_response), (main): whitespace cleanup and a
        few minor tweaks
    
    svn path=/trunk/; revision=8222

 capplets/display/ChangeLog |  11 +++
 capplets/display/main.c    | 188 +++++++++++++++++++--------------------------
 2 files changed, 89 insertions(+), 110 deletions(-)

commit c21633bc3cf60a67cbbe653ad94a610946157933
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 19:36:17 2007 +0000

    revert some of the previous "clean-up", add some new, and fix another leak
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (free_display_info), (update_display_info),
        (read_display_info), (apply_config), (revert_config): revert some of
        the previous "clean-up", add some new, and fix another leak
    
    svn path=/trunk/; revision=8221

 capplets/display/ChangeLog |  6 ++++
 capplets/display/main.c    | 82 +++++++++++++++++++---------------------------
 2 files changed, 39 insertions(+), 49 deletions(-)

commit b62e985bcc9db639aab4499ecb918cefa4c3fbcb
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 27 19:20:43 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-10-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8220

 po/ChangeLog |   4 +
 po/nb.po     | 716 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 446 insertions(+), 274 deletions(-)

commit bae97194e3a7165f8d9281a98f4bfcf7cde6e4f6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 18:00:06 2007 +0000

    fix string capitalization
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (run_revert_dialog), (main): fix string capitalization
    
    svn path=/trunk/; revision=8219

 capplets/display/ChangeLog | 4 ++++
 capplets/display/main.c    | 6 ++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 1654754be470a1f5a84ad962b45512d1840b7919
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 16:35:56 2007 +0000

    remove part of the long description for cc_actions_list since it was
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * control-center.schemas.in: remove part of the long description for
        cc_actions_list since it was confusig translators (#426229)
    
    svn path=/trunk/; revision=8218

 shell/ChangeLog                 | 5 +++++
 shell/control-center.schemas.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 559ba3a74394a395c5bcd673d5b6e19fe8d6451c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 16:28:08 2007 +0000

    clean up code a bit and fix a few leaks
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (free_display_info), (restart_screensaver),
        (apply_config), (revert_config), (cb_dialog_response), (main): clean up
        code a bit and fix a few leaks
    
    svn path=/trunk/; revision=8217

 capplets/display/ChangeLog |   6 +++
 capplets/display/main.c    | 124 +++++++++++++++++++++++++--------------------
 2 files changed, 75 insertions(+), 55 deletions(-)

commit fcd616f8dfe8d19fe117b2f8be728a98ddc7dfd5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 15:49:54 2007 +0000

    remove this one, too
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/file-types: remove this one, too
    
    svn path=/trunk/; revision=8216

 capplets/file-types/ChangeLog                      | 1300 -----------------
 capplets/file-types/Makefile.am                    |   44 -
 capplets/file-types/TODO_NOTES                     |    2 -
 capplets/file-types/file-types-capplet.c           |  323 -----
 .../file-types/file-types-capplet.desktop.in.in    |   11 -
 capplets/file-types/file-types-capplet.png         |  Bin 3085 -> 0 bytes
 capplets/file-types/file-types-icon-entry.c        |  618 --------
 capplets/file-types/file-types-icon-entry.h        |   71 -
 capplets/file-types/file-types-properties.glade    | 1470 --------------------
 capplets/file-types/file-types-properties.glade1   | 1300 -----------------
 capplets/file-types/file-types.desktop.in.in       |   15 -
 capplets/file-types/libuuid/Makefile.am            |   27 -
 capplets/file-types/libuuid/clear.c                |   20 -
 capplets/file-types/libuuid/compare.c              |   32 -
 capplets/file-types/libuuid/copy.c                 |   21 -
 capplets/file-types/libuuid/gen_uuid.c             |  265 ----
 capplets/file-types/libuuid/gen_uuid_nt.c          |   92 --
 capplets/file-types/libuuid/isnull.c               |   25 -
 capplets/file-types/libuuid/pack.c                 |   46 -
 capplets/file-types/libuuid/parse.c                |   52 -
 capplets/file-types/libuuid/tst_uuid.c             |  119 --
 capplets/file-types/libuuid/unpack.c               |   40 -
 capplets/file-types/libuuid/unparse.c              |   28 -
 capplets/file-types/libuuid/uuid.h                 |   50 -
 capplets/file-types/libuuid/uuidP.h                |   40 -
 capplets/file-types/libuuid/uuid_time.c            |  138 --
 capplets/file-types/mime-category-edit-dialog.c    |  449 ------
 capplets/file-types/mime-category-edit-dialog.h    |   59 -
 capplets/file-types/mime-edit-dialog.c             | 1000 -------------
 capplets/file-types/mime-edit-dialog.h             |   67 -
 capplets/file-types/mime-type-info.c               |  849 -----------
 capplets/file-types/mime-type-info.h               |  118 --
 capplets/file-types/mime-types-model.c             |  624 ---------
 capplets/file-types/mime-types-model.h             |   73 -
 capplets/file-types/model-entry.c                  |  215 ---
 capplets/file-types/model-entry.h                  |   71 -
 capplets/file-types/service-edit-dialog.c          |  602 --------
 capplets/file-types/service-edit-dialog.h          |   61 -
 capplets/file-types/service-info.c                 |  390 ------
 capplets/file-types/service-info.h                 |   68 -
 40 files changed, 10795 deletions(-)

commit 9be8d33a0f7788703bf39b5969bc6b9a851fd29c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 15:46:43 2007 +0000

    remove obsolete and unmaintained capplets
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/localization:
        * capplets/rollback:
        * capplets/url-properties:
        * capplets/mime-type:
        * capplets/wm-properties: remove obsolete and unmaintained capplets
    
    svn path=/trunk/; revision=8215

 capplets/localization/ChangeLog                    |   11 -
 capplets/localization/Makefile.am                  |   37 -
 .../localization/gnome-localization-properties.c   | 1109 --------------------
 .../gnome-localization-properties.glade            | 1024 ------------------
 capplets/localization/localization-capplet.png     |  Bin 1384 -> 0 bytes
 capplets/localization/localization.desktop.in.in   |   14 -
 capplets/mime-type/ChangeLog                       |  112 --
 capplets/mime-type/Makefile.am                     |   30 -
 capplets/mime-type/edit-window.c                   |  578 ----------
 capplets/mime-type/edit-window.h                   |   15 -
 capplets/mime-type/mime-data.c                     |  661 ------------
 capplets/mime-type/mime-data.h                     |   34 -
 capplets/mime-type/mime-info.c                     |  492 ---------
 capplets/mime-type/mime-info.h                     |   17 -
 capplets/mime-type/mime-type-capplet.c             |  143 ---
 capplets/mime-type/mime-type-capplet.png           |  Bin 2188 -> 0 bytes
 capplets/mime-type/mime-type.desktop.in.in         |    7 -
 capplets/mime-type/new-mime-window.c               |  120 ---
 capplets/mime-type/new-mime-window.h               |   14 -
 capplets/rollback/ChangeLog                        |  196 ----
 capplets/rollback/Makefile.am                      |   34 -
 capplets/rollback/TODO                             |   28 -
 capplets/rollback/main.c                           |   80 --
 capplets/rollback/rollback-capplet-dialog.c        |  592 -----------
 capplets/rollback/rollback-capplet-dialog.h        |   58 -
 capplets/rollback/rollback-capplet.png             |  Bin 1669 -> 0 bytes
 capplets/rollback/rollback-control.c               |  352 -------
 capplets/rollback/rollback-control.h               |   56 -
 capplets/rollback/rollback-widget.c                |  229 ----
 capplets/rollback/rollback-widget.h                |   69 --
 capplets/rollback/rollback.desktop.in.in           |    7 -
 capplets/rollback/rollback.glade                   |  872 ---------------
 capplets/url-properties/ChangeLog                  |  163 ---
 capplets/url-properties/Makefile.am                |   25 -
 capplets/url-properties/url-capplet.png            |  Bin 4264 -> 0 bytes
 capplets/url-properties/url-properties.c           |  309 ------
 .../url-properties/url-properties.desktop.in.in    |   12 -
 .../url-properties_WITH_TRANSLATIONS               |   57 -
 capplets/url-properties/url.desktop.in.in          |    7 -
 .../wm-desktops/Enlightenment.desktop.in.in        |    9 -
 .../wm-properties/wm-desktops/IceWM.desktop.in.in  |    7 -
 capplets/wm-properties/wm-desktops/Makefile.am     |   21 -
 .../wm-properties/wm-desktops/Scwm.desktop.in.in   |    7 -
 .../wm-desktops/WindowMaker.desktop.in.in          |    8 -
 .../wm-properties/wm-desktops/twm.desktop.in.in    |    7 -
 45 files changed, 7623 deletions(-)

commit dbd00f0eddab92e19b791c60770909b32d84afe5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 13:59:36 2007 +0000

    reduce the number if XCURSOR ifdefs and get rid of the special treatment
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (cursor_size_scale_value_changed_cb),
        (update_cursor_size_scale), (cursor_theme_changed), (prepare_list):
        * appearance-themes.c: (theme_load_from_gconf):
        * theme-util.h: reduce the number if XCURSOR ifdefs and get rid of the
        special treatment for the default cursor theme
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (look_for_cursor_theme), (read_cursor_fonts),
        (gnome_theme_init): ensure we always have the "default" cursor theme in
        the list
    
    svn path=/trunk/; revision=8214

 capplets/appearance/ChangeLog           |  8 ++++
 capplets/appearance/appearance-style.c  | 65 ++++++++++++---------------------
 capplets/appearance/appearance-themes.c |  4 +-
 capplets/appearance/theme-util.h        | 10 +++--
 capplets/common/ChangeLog               |  6 +++
 capplets/common/gnome-theme-info.c      | 10 +++--
 6 files changed, 53 insertions(+), 50 deletions(-)

commit 298d6fbf4f9219c1952f5a841eabaf6c41eb3deb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 13:12:28 2007 +0000

    If the cursor theme changes, and the currently set size is not available
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        If the cursor theme changes, and the currently set size is not
        available for the new theme, we were not updating the cursor size in
        GConf, leading to bogus results when checking for metatheme equality.
    
        * appearance-style.c: (cursor_size_changed_cb),
        (update_cursor_size_scale), (cursor_size_scale_value_changed_cb):
        update cursor size GConf value when the theme changes; also don't write
        bogus values to GConf when we are only doing fuzzy matches
    
    svn path=/trunk/; revision=8212

 capplets/appearance/ChangeLog          | 11 ++++++
 capplets/appearance/appearance-style.c | 67 ++++++++++++++++++----------------
 2 files changed, 47 insertions(+), 31 deletions(-)

commit 2ba498e0c25ebdf117fae537ced1345106e81ac2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 11:29:11 2007 +0000

    move function here from common/
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-util.c: (theme_is_writable):
        * theme-util.h: move function here from common/
    
        * appearance-style.c: (gtk_theme_changed), (window_theme_changed),
        (icon_theme_changed), (cursor_theme_changed):
        * appearance-themes.c: (theme_selection_changed_cb): adapt callers
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c (gnome_theme_is_writable):
        * gnome-theme-info.h: move this function to the appearance capplet
    
    svn path=/trunk/; revision=8211

 capplets/appearance/ChangeLog           |  9 +++++++
 capplets/appearance/appearance-style.c  |  8 +++---
 capplets/appearance/appearance-themes.c |  2 +-
 capplets/appearance/theme-util.c        | 46 +++++++++++++++++++++++++++++++++
 capplets/appearance/theme-util.h        |  2 ++
 capplets/common/ChangeLog               |  5 ++++
 capplets/common/gnome-theme-info.c      | 45 --------------------------------
 capplets/common/gnome-theme-info.h      |  2 --
 8 files changed, 67 insertions(+), 52 deletions(-)

commit 21b740a43fe9cff4f6f75889ebd2e0c6ecb6f110
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Oct 27 10:46:59 2007 +0000

    if the parent directory is empty after deleting a theme, delete the parent
    
    2007-10-27  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-util.c: (theme_delete): if the parent directory is empty after
        deleting a theme, delete the parent directory, too
    
    svn path=/trunk/; revision=8210

 capplets/appearance/ChangeLog    |  5 +++++
 capplets/appearance/theme-util.c | 20 +++++++++++++++-----
 2 files changed, 20 insertions(+), 5 deletions(-)

commit 7a42e549fb94787356b429290c69f3a4b231a957
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Oct 26 19:08:12 2007 +0000

    make the cursor themes delete button work
    
    2007-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (cursor_theme_delete_cb), (style_init):
        * theme-util.c: (theme_delete): make the cursor themes delete button
        work
    
    svn path=/trunk/; revision=8208

 capplets/appearance/ChangeLog          | 6 ++++++
 capplets/appearance/appearance-style.c | 7 +++++++
 capplets/appearance/theme-util.c       | 5 +++++
 3 files changed, 18 insertions(+)

commit c9c114f38879162844aaed5d34d2a8a0356ba461
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Oct 26 18:13:57 2007 +0000

    Patch by: Iain Holmes <iain@gnome.org>
    
    2007-10-26  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Iain Holmes <iain@gnome.org>
    
        * gsd-media-keys-window.c: (fade_timeout), (hide_timeout),
        (remove_hide_timeout), (add_hide_timeout), (on_expose_event),
        (gsd_media_keys_window_init): gradually fade out the OSD when composited
        (bug #490593)
    
    svn path=/trunk/; revision=8207

 gnome-settings-daemon/ChangeLog               |  9 ++++
 gnome-settings-daemon/gsd-media-keys-window.c | 66 +++++++++++++++++++++++++--
 2 files changed, 71 insertions(+), 4 deletions(-)

commit 2c5faa6828f4f8f2ed5591144344c25d0f49b743
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   Fri Oct 26 16:03:05 2007 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=8206

 po/ChangeLog |   10 +-
 po/sl.po     | 3642 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1994 insertions(+), 1658 deletions(-)

commit 025593919296b270d833fabc085130b58f5cf57b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Oct 25 20:36:49 2007 +0000

    replace obsolete "orca -m" command by new "orca -e magnifier" (bug
    
    2007-10-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-default-applications.xml.in: replace obsolete "orca -m" command
        by new "orca -e magnifier" (bug #489973)
    
    svn path=/trunk/; revision=8203

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 701e14dad5f25aec64c764cf589002a04f6613ab
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Oct 25 20:27:54 2007 +0000

    move some more of the cursor size widget initialization to glade. This
    
    2007-10-25  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (style_init):
        * data/appearance.glade: move some more of the cursor size widget
        initialization to glade. This allows the slider to be updated properly
        on startup (bug #490103)
    
    svn path=/trunk/; revision=8201

 capplets/appearance/ChangeLog             | 7 +++++++
 capplets/appearance/appearance-style.c    | 4 ----
 capplets/appearance/data/appearance.glade | 3 ++-
 3 files changed, 9 insertions(+), 5 deletions(-)

commit 29e6e09e13bdb232a76e0f5a32ada48789636716
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Oct 25 19:09:48 2007 +0000

    revert this part from the last commit since this was already handled by
    
    2007-10-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_init): revert this part from the
        last commit since this was already handled by rev 8166
    
    svn path=/trunk/; revision=8200

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 7 -------
 2 files changed, 5 insertions(+), 7 deletions(-)

commit 891f7ac4c19f94846a6e0477462092f253736618
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Oct 25 16:01:44 2007 +0000

    More fixes regarding integration of cursor themes into metathemes.
    
    2007-10-25  Denis Washington  <denisw@svn.gnome.org>
    
        More fixes regarding integration of cursor themes into metathemes.
    
        * appearance/appearance-themes.c: Take cursor size into account in
        theme_is_equal(), and also watch the cursor theme/size gconf keys for
        changes.
    
        * common/gnome-theme-apply.c: Fix the cursor size being only being
        updated if the cursor theme changed too.
        * common/gnome-theme-info.c: Also watch
    /usr/share/cursors/xorg-x11
        for cursor themes (path used by Gentoo Linux).
    
    svn path=/trunk/; revision=8198

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 5 +++++
 capplets/common/ChangeLog               | 7 +++++++
 capplets/common/gnome-theme-apply.c     | 8 +++++++-
 capplets/common/gnome-theme-info.c      | 7 +++++++
 5 files changed, 31 insertions(+), 1 deletion(-)

commit 76b37748f78b7a8feb5a1491df6962190b929e2d
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Thu Oct 25 15:28:38 2007 +0000

    Translation updated by Ivar Smolin.
    
    2007-10-25  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.
    
    svn path=/trunk/; revision=8197

 po/ChangeLog |   4 ++
 po/et.po     | 175 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 99 insertions(+), 80 deletions(-)

commit cf84556506682b292f91ec9ced69d4f279ff4b9b
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Thu Oct 25 10:40:44 2007 +0000

    Updated Belarusian Latin translation.
    
    svn path=/trunk/; revision=8196

 po/ChangeLog   |   4 ++
 po/be@latin.po | 116 ++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 69 insertions(+), 51 deletions(-)

commit d420730347e65a2618e0889ed6fd6417325b1522
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Oct 24 21:18:10 2007 +0000

    This change hopefully fixes bug #484797 which I suspect is caused by the
    
    2007-10-24  Jens Granseuer  <jensgr@gmx.net>
    
        This change hopefully fixes bug #484797 which I suspect is caused by
        the capplet getting stale data from from the themes module which in
        turn is caused by deleted themes being freed but not removed from the
        hash cache.
    
        * gnome-theme-info.c: (update_common_theme_dir_index): actually remove
        theme data from the hash when the theme gets deleted; also don't
        unconditionally cast to icon theme
    
    svn path=/trunk/; revision=8194

 capplets/common/ChangeLog          | 11 +++++++++++
 capplets/common/gnome-theme-info.c | 17 +++++++++++------
 2 files changed, 22 insertions(+), 6 deletions(-)

commit cb02196087e11902bb6590d5a2b1f5f65e29b19b
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Wed Oct 24 20:20:29 2007 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8193

 po/ChangeLog |   4 +
 po/ar.po     | 460 ++++++++++++++++-------------------------------------------
 2 files changed, 128 insertions(+), 336 deletions(-)

commit 3820e469c9aecb9cb0e178dc7cb107da734d9ce5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Oct 24 18:34:03 2007 +0000

    return a new theme instead of munging whatever got passed in. Makes for a
    
    2007-10-24  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_load_from_gconf),
        (theme_details_changed_cb), (themes_init): return a new theme instead
        of munging whatever got passed in. Makes for a saner API
    
    svn path=/trunk/; revision=8192

 capplets/appearance/ChangeLog           |  6 ++++++
 capplets/appearance/appearance-themes.c | 21 +++++++++------------
 2 files changed, 15 insertions(+), 12 deletions(-)

commit 5223c0f037932225c39c02e71d44357d3e5f119f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Oct 24 17:05:51 2007 +0000

    The fix for bug #420154 not only made the entry for the theme installer
    
    2007-10-24  Jens Granseuer  <jensgr@gmx.net>
    
        The fix for bug #420154 not only made the entry for the theme installer
        disappear from the menu, but also disabled mime-type handling for Gnome
        Theme Packages (bug #486811). Revert that change and use NoDisplay=true
        instead. This will remove the entry from the menu (not from the menu
        editor, though), and not break mime handling.
    
        * data/gnome-theme-installer.desktop.in.in: use NoDisplay=true instead
        of OnlyShowIn=;
    
    svn path=/trunk/; revision=8190

 capplets/appearance/ChangeLog                                | 11 +++++++++++
 capplets/appearance/data/gnome-theme-installer.desktop.in.in |  3 +--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit eab056569db96e8391ebc47346b6c6271dae340b
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Tue Oct 23 20:53:14 2007 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8189

 po/ChangeLog |   4 +
 po/ar.po     | 663 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 453 insertions(+), 214 deletions(-)

commit b2e91e82dfebb5cadb50b9dc841881a9132f68b2
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Oct 23 13:12:51 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8188

 po/ChangeLog |   4 ++
 po/es.po     | 129 +++++++++++++++++++++++++----------------------------------
 2 files changed, 58 insertions(+), 75 deletions(-)

commit 7def256ed5f53e3ecec9d2ff2acb2e5069dce436
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Oct 22 18:59:37 2007 +0000

    Based on a patch by: Sebastien Bacher <seb128@debian.org>
    
    2007-10-22  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Sebastien Bacher <seb128@debian.org>
    
        * capplets/keybindings/00-multimedia-key.xml.in:
        * gnome-settings-daemon/action/acme.h:
        * gnome-settings-daemon/gnome-settings-multimedia-keys.c (do_action):
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in:
        add support for calculator key
    
    svn path=/trunk/; revision=8187

 ChangeLog                                                 | 10 ++++++++++
 capplets/keybindings/00-multimedia-key.xml.in             |  3 +++
 gnome-settings-daemon/actions/acme.h                      |  2 ++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c    |  3 +++
 schemas/apps_gnome_settings_daemon_keybindings.schemas.in | 11 +++++++++++
 5 files changed, 29 insertions(+)

commit e3ec4185670df72984686aae8d0fa62068d113b3
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sun Oct 21 16:43:20 2007 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8184

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit a0fdace4ae88c6198668e784f421ec7dbd041b2b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 21 12:25:47 2007 +0000

    fix bugzilla component
    
    2007-10-21  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: fix bugzilla component
    
    svn path=/trunk/; revision=8183

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a5946b5d2d77fff9a019dcbf1a89037a973f1ff5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 21 12:24:29 2007 +0000

    bump libxklavier requirement to 3.3 remove compatibility hack for
    
    2007-10-21  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: bump libxklavier requirement to 3.3
        * capplets/keyboard/gnome-keyboard-properties-xkbmc.c: remove
        compatibility hack for libxklavier <= 3.2
    
    svn path=/trunk/; revision=8182

 ChangeLog                                           | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkbmc.c | 5 -----
 configure.in                                        | 2 +-
 3 files changed, 7 insertions(+), 6 deletions(-)

commit ee35f7dfd7151e5976e24b3f3fea905c47ce070a
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Thu Oct 18 21:09:33 2007 +0000

    Updated Belarusian Latin translation
    
    svn path=/trunk/; revision=8181

 po/ChangeLog   |   4 ++
 po/be@latin.po | 180 ++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 106 insertions(+), 78 deletions(-)

commit 686b7b40a98ee1016bbafc61c362a3e581df6fac
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Oct 18 17:23:48 2007 +0000

    really make sure gtk, metacity, icon, and cursor themes are never NULL
    
    2007-10-18  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_load_from_gconf),
        (theme_set_custom_from_theme): really make sure gtk, metacity, icon, and
        cursor themes are never NULL (should fix #487257 if the last commit didn't
        already)
    
    svn path=/trunk/; revision=8180

 capplets/appearance/ChangeLog           |  7 ++++
 capplets/appearance/appearance-themes.c | 64 ++++++++-------------------------
 2 files changed, 22 insertions(+), 49 deletions(-)

commit bad634011a65989e97550760692709bb40b073be
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Oct 18 17:03:15 2007 +0000

    Add more default keybindings for otherwise unbound keys (Closes: #487935)
    
    2007-10-18  Bastien Nocera  <hadess@hadess.net>
    
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in:
        Add more default keybindings for otherwise unbound keys
        (Closes: #487935)
    
    
    svn path=/trunk/; revision=8179

 ChangeLog                                                 |  6 ++++++
 schemas/apps_gnome_settings_daemon_keybindings.schemas.in | 10 +++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 74263d6f3931ba4049ac4c8568619d51273128aa
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Oct 16 22:13:45 2007 +0000

    no more annoying warning, b.g.o#358048
    
    svn path=/trunk/; revision=8177

 gnome-settings-daemon/ChangeLog                    |   5 +
 .../gnome-settings-keyboard-xkb.c                  | 119 ---------------------
 2 files changed, 5 insertions(+), 119 deletions(-)

commit 99ec1a5610a7bc067d3e505d2d92b825bcf41449
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Oct 16 12:30:15 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8175

 po/ChangeLog |  4 ++++
 po/es.po     | 25 ++++++++++++++-----------
 2 files changed, 18 insertions(+), 11 deletions(-)

commit b1a6677263a41dd89e8c67936a449c4a102d4fc4
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Oct 15 16:25:21 2007 +0000

    Updated NEWS from 2.20 branch
    
    svn path=/trunk/; revision=8174

 NEWS | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

commit 2b27aac1160feb789f1ec5458b05764724312154
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 14 14:54:58 2007 +0000

    fix invalid use after free I caused with the last commit
    
    2007-10-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_init): fix invalid use after free I
        caused with the last commit
    
    svn path=/trunk/; revision=8170

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit c9b09854a954f2c47e0e1e493dcc470057d30db9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 14 10:21:57 2007 +0000

    When updating theme info from GConf or copying it for customization, we
    
    2007-10-14  Jens Granseuer  <jensgr@gmx.net>
    
        When updating theme info from GConf or copying it for customization, we
        were ignoring xcursor settings. As a result, saved custom themes always
        had the default theme set. (bug #485709)
    
        * appearance-themes.c: (get_default_int_from_key),
        (theme_load_from_gconf), (theme_set_custom_from_theme): when setting up
        theme info, take cursor settings into account
    
    svn path=/trunk/; revision=8168

 capplets/appearance/ChangeLog           | 10 ++++++++
 capplets/appearance/appearance-themes.c | 44 ++++++++++++++++++++++++++++++++-
 2 files changed, 53 insertions(+), 1 deletion(-)

commit afbc8c9ba82022a7961ccbd0f6b75b463e094800
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Oct 14 09:52:28 2007 +0000

    query and monitor the xcursor icon dir for cursor themes, too (bug
    
    2007-10-14  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in:
        * capplets/common/gnome-theme-info.c (gnome_theme_init): query and
        monitor the xcursor icon dir for cursor themes, too (bug #469882)
    
    svn path=/trunk/; revision=8166

 ChangeLog                          |  6 ++++++
 capplets/common/gnome-theme-info.c | 11 +++++++++++
 configure.in                       | 11 +++++++++++
 3 files changed, 28 insertions(+)

commit 5ed22b4a3a1e2d25ccd0920ffefbe1a7d0a8ed44
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 9 18:58:38 2007 +0000

    fix crash if we fail to convert a filename to UTF-8
    
    2007-10-09  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_props_wp_set): fix crash if we fail to
        convert a filename to UTF-8
    
    svn path=/trunk/; revision=8164

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit a3ed7ad92088cd690db8cb77ca5a7f34529f6923
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Oct 9 17:03:18 2007 +0000

    Default to using XF86* keysyms for the audio related keybindings, allows
    
    2007-10-09  Bastien Nocera  <hadess@hadess.net>
    
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in:
        Default to using XF86* keysyms for the audio related keybindings,
        allows those to work out-of-the-box when the right keymap is
        selected (Closes: #485076)
    
    
    svn path=/trunk/; revision=8163

 ChangeLog                                                |  7 +++++++
 .../apps_gnome_settings_daemon_keybindings.schemas.in    | 16 ++++++++--------
 2 files changed, 15 insertions(+), 8 deletions(-)

commit 72db6fd6de160487f7976c1ecb8e8b036f36e2fa
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Oct 8 17:16:09 2007 +0000

    dropping unneeded kbd indicator's dbus server, bumping libgnomekbd version requirement
    
    svn path=/trunk/; revision=8161

 ChangeLog                                           | 4 ++++
 configure.in                                        | 6 +++---
 gnome-settings-daemon/ChangeLog                     | 4 ++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 5 -----
 4 files changed, 11 insertions(+), 8 deletions(-)

commit e70244159a63aa42af3eb6a3d41fce670f26e0e4
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Mon Oct 8 16:49:09 2007 +0000

    Translation update by Ivar Smolin.
    
    2007-10-08  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Translation update by Ivar Smolin.
    
    svn path=/trunk/; revision=8160

 po/ChangeLog |  4 ++++
 po/et.po     | 35 +++++++++++++++++++----------------
 2 files changed, 23 insertions(+), 16 deletions(-)

commit 98177575f68a1ff36d64f4f15f0d17d3a6273870
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Oct 8 09:02:46 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8158

 po/ChangeLog |   4 ++
 po/fi.po     | 134 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 81 insertions(+), 57 deletions(-)

commit 4bf8cec31e6e6fe22a086fdc2e4bbd53ebfb4488
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Oct 7 14:20:49 2007 +0000

    Fixes #484351
    
    2007-10-07  Luca Ferretti <elle.uca@libero.it>
    
        Fixes #484351
    
        * at-properties.desktop.in.in: don't use 'Preferences' word for
        application name.
    
    svn path=/trunk/; revision=8157

 capplets/accessibility/at-properties/ChangeLog                   | 7 +++++++
 capplets/accessibility/at-properties/at-properties.desktop.in.in | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit c539d54ae55c95993b480888dac0f50ef8496364
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Wed Oct 3 16:44:13 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8155

 help/oc/oc.po | 4 +---
 po/oc.po      | 8 +++-----
 2 files changed, 4 insertions(+), 8 deletions(-)

commit a95a3f846178d62ed64e7582ff0947b7da4a487e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 2 18:04:50 2007 +0000

    Patch by: Stephane Loeuillet <leroutier@gmail.com>
    
    2007-10-02  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Stephane Loeuillet <leroutier@gmail.com>
    
        * Makefile.am: use standard xdg autostart directory instead of gnome
        one (bug #481740)
    
    svn path=/trunk/; revision=8154

 capplets/default-applications/ChangeLog   | 7 +++++++
 capplets/default-applications/Makefile.am | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 97f89ca9e1c4556014633785a30ff871fae6460d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Oct 2 18:01:06 2007 +0000

    Patch by: Stephane Loeuillet <leroutier@gmail.com>
    
    2007-10-02  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Stephane Loeuillet <leroutier@gmail.com>
    
        * capplets/about-me/gnome-about-me.desktop.in.in:
        * capplets/accessibility/at-properties/at-properties.desktop.in.in:
        * capplets/accessibility/keyboard/accessibility-keyboard.desktop.in.in:
        * capplets/appearance/data/gnome-appearance-properties.desktop.in.in:
        * capplets/appearance/data/gnome-theme-installer.desktop.in.in:
        * capplets/appearance/theme-save.c:
        * capplets/default-applications/default-applications.desktop.in.in:
        * capplets/default-applications/gnome-at-session.desktop.in.in:
        * capplets/display/display-properties.desktop.in.in:
        * capplets/keybindings/keybinding.desktop.in.in:
        * capplets/keyboard/keyboard.desktop.in.in:
        * capplets/mouse/gnome-settings-mouse.desktop.in.in:
        * capplets/network/gnome-network-preferences.desktop.in.in:
        * capplets/sound/gnome-settings-sound.desktop.in.in:
        * capplets/windows/window-properties.desktop.in.in:
        * shell/gnomecc.desktop.in.in:
        * shell/gnomecc.directory.in:
        * vfs-methods/fontilus/font-method.directory.in:
        * vfs-methods/fontilus/gnome-font-viewer.desktop.in.in:
        * vfs-methods/themus/theme-method.directory.in:
        * vfs-methods/themus/themus-theme-applier.desktop.in.in:
        desktop file fixes: don't use the deprecated Encoding tag, change
        Terminal=0 to Terminal=false, remove empty Categories= (bug #481740)
    
    svn path=/trunk/; revision=8153

 ChangeLog                                          | 28 ++++++++++++++++++++++
 capplets/about-me/gnome-about-me.desktop.in.in     |  1 -
 .../at-properties/at-properties.desktop.in.in      |  1 -
 .../keyboard/accessibility-keyboard.desktop.in.in  |  1 -
 .../data/gnome-appearance-properties.desktop.in.in |  1 -
 .../data/gnome-theme-installer.desktop.in.in       |  1 -
 capplets/appearance/theme-save.c                   |  1 -
 .../default-applications.desktop.in.in             |  1 -
 .../gnome-at-session.desktop.in.in                 |  2 --
 capplets/display/display-properties.desktop.in.in  |  1 -
 capplets/keybindings/keybinding.desktop.in.in      |  1 -
 capplets/keyboard/keyboard.desktop.in.in           |  1 -
 capplets/mouse/gnome-settings-mouse.desktop.in.in  |  1 -
 .../gnome-network-preferences.desktop.in.in        |  1 -
 capplets/sound/gnome-settings-sound.desktop.in.in  |  1 -
 capplets/windows/window-properties.desktop.in.in   |  1 -
 shell/gnomecc.desktop.in.in                        |  1 -
 shell/gnomecc.directory.in                         |  2 +-
 vfs-methods/fontilus/font-method.directory.in      |  2 +-
 .../fontilus/gnome-font-viewer.desktop.in.in       |  1 -
 vfs-methods/themus/theme-method.directory.in       |  2 +-
 .../themus/themus-theme-applier.desktop.in.in      |  2 +-
 22 files changed, 32 insertions(+), 22 deletions(-)

commit 268d74a27b842fdf33170409980e6f41adc7e9cf
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Oct 2 03:46:32 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-10-02  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=8150

 po/ChangeLog |    5 +
 po/bg.po     | 1155 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 584 insertions(+), 576 deletions(-)

commit 979a4ab882498670e67926a0f7f327c91d853cfb
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Oct 2 03:45:57 2007 +0000

    Fix breakage introduced by commit [8147]
    
    2007-10-02  Alexander Shopov  <ash@contact.bg>
    
        * ChangeLog: Fix breakage introduced
        by commit [8147]
    
    svn path=/trunk/; revision=8149

 po/ChangeLog | 10551 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 10550 insertions(+), 1 deletion(-)

commit 5c5bf5ef7690a279f0f89c2f0bf6af802feddc58
Author: Ignacio Casal Quinteiro <nacho.resa@gmail.com>
Date:   Sun Sep 30 19:07:51 2007 +0000

    Updated Galician Translation.
    
    2007-09-30  Ignacio Casal Quinteiro  <nacho.resa@gmail.com>
    
            * gl.po: Updated Galician Translation.
    
    svn path=/trunk/; revision=8147

 po/ChangeLog | 10542 +--------------------------------------------------------
 po/gl.po     |  1736 ++++++----
 2 files changed, 1018 insertions(+), 11260 deletions(-)

commit ed731525db8b1d3b2e8d8384f8f01c1b71b183d3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 30 15:03:46 2007 +0000

    back out accidental commit
    
    2007-09-30  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/common/gnome-theme-info.c: back out accidental commit
    
    svn path=/trunk/; revision=8146

 capplets/common/gnome-theme-info.c | 11 -----------
 1 file changed, 11 deletions(-)

commit 494636d31c7df6e3ec50755173f55320c4e33082
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 30 15:00:25 2007 +0000

    remove old capplets that are now subsumed in the appearance capplet from
    
    2007-09-30  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/background:
        * capplets/font:
        * capplets/theme-switcher:
        * capplets/ui-properties: remove old capplets that are now subsumed in
        the appearance capplet from the repository
    
    svn path=/trunk/; revision=8145

 capplets/background/ChangeLog                      | 1654 ---------------
 capplets/background/Makefile.am                    |   53 -
 capplets/background/background.desktop.in.in       |   15 -
 .../background/gnome-background-properties.glade   |  541 -----
 capplets/background/gnome-wp-capplet.c             | 1112 ----------
 capplets/background/gnome-wp-capplet.h             |   92 -
 capplets/background/gnome-wp-info.c                |  103 -
 capplets/background/gnome-wp-info.h                |   47 -
 capplets/background/gnome-wp-item.c                |  385 ----
 capplets/background/gnome-wp-item.h                |   71 -
 capplets/background/gnome-wp-utils.c               |  198 --
 capplets/background/gnome-wp-utils.h               |   58 -
 capplets/background/gnome-wp-xml.c                 |  407 ----
 capplets/background/gnome-wp-xml.h                 |   28 -
 capplets/common/gnome-theme-info.c                 |   11 +
 capplets/font/ChangeLog                            |  344 ---
 capplets/font/Makefile.am                          |   38 -
 capplets/font/font-properties.desktop.in.in        |   15 -
 capplets/font/font-properties.glade                | 1655 ---------------
 capplets/font/main.c                               | 1020 ---------
 capplets/font/subpixel-bgr.png                     |  Bin 125 -> 0 bytes
 capplets/font/subpixel-rgb.png                     |  Bin 125 -> 0 bytes
 capplets/font/subpixel-vbgr.png                    |  Bin 138 -> 0 bytes
 capplets/font/subpixel-vrgb.png                    |  Bin 138 -> 0 bytes
 capplets/theme-switcher/ChangeLog                  | 1412 -------------
 capplets/theme-switcher/Makefile.am                |   66 -
 capplets/theme-switcher/TODO                       |   17 -
 capplets/theme-switcher/gnome-ccthemes.png         |  Bin 2826 -> 0 bytes
 capplets/theme-switcher/gnome-theme-details.c      | 1010 ---------
 capplets/theme-switcher/gnome-theme-details.h      |    9 -
 capplets/theme-switcher/gnome-theme-installer.c    |  712 -------
 .../gnome-theme-installer.desktop.in.in            |   17 -
 capplets/theme-switcher/gnome-theme-installer.h    |   32 -
 capplets/theme-switcher/gnome-theme-manager.c      | 1713 ---------------
 capplets/theme-switcher/gnome-theme-manager.h      |   86 -
 capplets/theme-switcher/gnome-theme-package.xml.in |    9 -
 capplets/theme-switcher/gnome-theme-save-data.c    |    9 -
 capplets/theme-switcher/gnome-theme-save.c         |  361 ----
 capplets/theme-switcher/gnome-theme-save.h         |   12 -
 .../theme-switcher/gtk-theme-selector-capplet.png  |  Bin 527 -> 0 bytes
 .../gtk-theme-selector.desktop.in.in               |   15 -
 capplets/theme-switcher/gtk-theme-switcher.schemas |   47 -
 capplets/theme-switcher/theme-properties.glade     | 2207 --------------------
 capplets/theme-switcher/theme-switcher-capplet.png |  Bin 527 -> 0 bytes
 capplets/theme-switcher/theme-thumbnailing.png     |  Bin 2038 -> 0 bytes
 capplets/ui-properties/ChangeLog                   |  374 ----
 capplets/ui-properties/Makefile.am                 |   25 -
 capplets/ui-properties/gnome-ui-properties.c       |  313 ---
 .../gnome-ui-properties.desktop.in.in              |   15 -
 capplets/ui-properties/gnome-ui-properties.glade   |  709 -------
 capplets/ui-properties/gnome-warning.png           |  Bin 771 -> 0 bytes
 capplets/ui-properties/preferences.h               |  156 --
 52 files changed, 11 insertions(+), 17162 deletions(-)

commit d28037d3b2d33a6123bff6f64782d1b47c7494f7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Sep 29 09:37:33 2007 +0000

    move the code for setting the color scheme for gtk thumbnails to the
    
    2007-09-29  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (generate_gtk_theme_thumbnail),
        (generate_theme_thumbnail_async),
        (generate_gtk_theme_thumbnail_async): move the code for setting the
        color scheme for gtk thumbnails to the gtk-specific function. This
        means we will probably extract it twice for most thumbnails, but it
        makes for much cleaner code. Also add the scheme bit to the synchronous
        version.
    
    svn path=/trunk/; revision=8144

 capplets/common/ChangeLog         | 10 ++++++++++
 capplets/common/theme-thumbnail.c | 36 +++++++++++++++++++-----------------
 2 files changed, 29 insertions(+), 17 deletions(-)

commit 76936d9dc158a80e982774c526288583f2aa4464
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Sep 28 18:21:16 2007 +0000

    fix typo in order to correctly substitute XCursor CFLAGS
    
    2007-09-28  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: fix typo in order to correctly substitute XCursor CFLAGS
    
    svn path=/trunk/; revision=8142

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 597fac2a7cf8903600ca6f1f5f7cf263849e3987
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Sep 28 17:01:41 2007 +0000

    make theme sorting case-insensitive (bug #481224)
    
    2007-09-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_store_sort_func): make theme sorting
        case-insensitive (bug #481224)
    
    svn path=/trunk/; revision=8140

 capplets/appearance/ChangeLog           |  5 +++++
 capplets/appearance/appearance-themes.c | 13 ++++++++++---
 2 files changed, 15 insertions(+), 3 deletions(-)

commit d5d94686bbe6eb46fea17b45fc1611bb6788ba43
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Sep 27 10:19:00 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8138

 po/ChangeLog |  4 +++
 po/es.po     | 96 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 53 insertions(+), 47 deletions(-)

commit fb5f03d31ea75f9eaf1f5fef7ab71ec6898ac56f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 25 19:46:23 2007 +0000

    patch up an outdated comment about how the thumbnailer protocol works
    
    2007-09-25  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: patch up an outdated comment about how the
        thumbnailer protocol works
    
    svn path=/trunk/; revision=8137

 capplets/common/ChangeLog         |  5 +++++
 capplets/common/theme-thumbnail.c | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit b2a41685b867d6f16edc016b5271cf9da850a9d7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 25 19:36:18 2007 +0000

    Prevent lots of thumbs from being created with the color scheme of the
    
    2007-09-25  Jens Granseuer  <jensgr@gmx.net>
    
        Prevent lots of thumbs from being created with the color scheme of the
        currently active theme (see comment #15 in bug 460023). Maybe it also
        helps with some of the other color-related issues.
    
        * theme-thumbnail.c: (create_gtk_theme_pixbuf),
        (generate_theme_thumbnail_async): when creating GTK theme thumbnails,
        explicitly pass the theme's color scheme to override the xsetting
    
    svn path=/trunk/; revision=8135

 capplets/common/ChangeLog         | 10 ++++++++++
 capplets/common/theme-thumbnail.c | 14 ++++++++++++--
 2 files changed, 22 insertions(+), 2 deletions(-)

commit f4476707ffe0218fd04753d7c21d382c71f2cf5e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 23 13:08:09 2007 +0000

    remove unused imguri property from GnomeWPItem
    
    2007-09-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-item.c: (gnome_wp_item_free), (gnome_wp_item_dup):
        * gnome-wp-item.h:
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml): remove unused imguri property
        from GnomeWPItem
    
    svn path=/trunk/; revision=8133

 capplets/appearance/ChangeLog       | 7 +++++++
 capplets/appearance/gnome-wp-item.c | 2 --
 capplets/appearance/gnome-wp-item.h | 1 -
 capplets/appearance/gnome-wp-xml.c  | 4 ----
 4 files changed, 7 insertions(+), 7 deletions(-)

commit a3c138e75481b503065ed3f50d5c96ffaa7ab823
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 23 12:23:26 2007 +0000

    add support for dragging images from the background list (bug #150544)
    
    2007-09-23  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_drag_received), (wp_drag_get_data),
        (desktop_init): add support for dragging images from the background list
        (bug #150544)
    
    svn path=/trunk/; revision=8132

 capplets/appearance/ChangeLog            |  6 +++++
 capplets/appearance/appearance-desktop.c | 42 +++++++++++++++++++++++---------
 2 files changed, 37 insertions(+), 11 deletions(-)

commit 1a3d33f75d45b3a592df77fcd73e152ad8dfae06
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Sep 21 19:33:36 2007 +0000

    reword the "theme engine" error message since we cannot really be sure it
    
    2007-09-21  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_real): reword the "theme engine"
        error message since we cannot really be sure it is an engine (bug #435680)
    
    svn path=/trunk/; revision=8130

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/theme-installer.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 76f742ffbb7782c67e79990a4b2301a2cbf66174
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Sep 21 19:26:18 2007 +0000

    unify "invalid theme" error messages and be a bit more verbose
    
    2007-09-21  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_real),
        (transfer_done_cb), (gnome_theme_install_from_uri): unify "invalid theme"
        error messages and be a bit more verbose
    
    svn path=/trunk/; revision=8129

 capplets/appearance/ChangeLog         |  6 ++++++
 capplets/appearance/theme-installer.c | 14 +++++++-------
 2 files changed, 13 insertions(+), 7 deletions(-)

commit 10c14eec411cf49af576c9b97229f74802b134dc
Author: Olav Vitters <ovitters@src.gnome.org>
Date:   Fri Sep 21 10:14:52 2007 +0000

    Correct email address in MAINTAINERS file
    
    svn path=/trunk/; revision=8128

 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 859be7cdde48c22a60475eca35ae10ae796f5373
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Sep 19 17:54:41 2007 +0000

    Patch by: Michael Monreal <infernux@web.de>
    
    2007-09-19  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Michael Monreal <infernux@web.de>
    
        * gnome-da-capplet.c: replace mail and multimedia icon names with
        Tangoified versions (bug #470386)
    
    svn path=/trunk/; revision=8127

 capplets/default-applications/ChangeLog          | 7 +++++++
 capplets/default-applications/gnome-da-capplet.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 5cd8e2051cd747fd26c1898cd19a04d0e4bcc5f6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 18 19:13:47 2007 +0000

    Patch by: Patrick Wade <patrick.wade@sun.com>
    
    2007-09-18  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Patrick Wade <patrick.wade@sun.com>
    
        * gnome-default-applications-properties.glade: make accelerators for
        the accessibility tools page unique (bug #474308)
    
    svn path=/trunk/; revision=8125

 capplets/default-applications/ChangeLog                            | 7 +++++++
 .../gnome-default-applications-properties.glade                    | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 49bf8e50471406ade21fad37cb9a3d282e98464a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 18 19:07:21 2007 +0000

    drop "GNOME" from the menu item name as recommended by the HIG (bug
    
    2007-09-18  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-font-viewer.desktop.in.in: drop "GNOME" from the menu item name
        as recommended by the HIG (bug #474742). Also use something a bit less
        meaningless for the comment line
    
    svn path=/trunk/; revision=8124

 vfs-methods/fontilus/ChangeLog                       | 6 ++++++
 vfs-methods/fontilus/gnome-font-viewer.desktop.in.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit db897ac78ed0bb4e3ec78dd4bda963f9a33ccb1b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Sep 18 18:58:37 2007 +0000

    Based on a patch by: Patrick Wade <patrick.wade@sun.com>
    
    2007-09-18  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Patrick Wade <patrick.wade@sun.com>
    
        * main.c: (close_logout_update), (setup_dialog): make logout button
        sensitive whenever accessibility settings have been enabled or
        disabled (closes bug #476921)
    
    svn path=/trunk/; revision=8122

 capplets/accessibility/at-properties/ChangeLog | 8 ++++++++
 capplets/accessibility/at-properties/main.c    | 8 ++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit adea3debac2ec12ee73a15212b235758cd3ae6b2
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Mon Sep 17 16:24:58 2007 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=8120

 po/ChangeLog |   4 +
 po/ar.po     | 677 +++++++++++++++++++++--------------------------------------
 2 files changed, 246 insertions(+), 435 deletions(-)

commit 89e710b0fb06413785f9dbcb0930bd97a7e31e59
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Sep 17 15:31:04 2007 +0000

    prepare for 2.20.0.
    
    2007-09-17  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.20.0.
    
    svn path=/trunk/; revision=8118

 ChangeLog    | 10 ++++++++++
 NEWS         | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 configure.in |  2 +-
 3 files changed, 72 insertions(+), 2 deletions(-)

commit 74a27b2d43e5e217f703fd6e570966510b5a0368
Author: Gil Forcada Codinachs <gforcada@src.gnome.org>
Date:   Mon Sep 17 09:10:39 2007 +0000

    Updated Catalan translation
    
    svn path=/trunk/; revision=8117

 po/ChangeLog |   4 +
 po/ca.po     | 631 +++++++++++++++++++++++++----------------------------------
 2 files changed, 274 insertions(+), 361 deletions(-)

commit e4cfc742a73b2e63bd3113afbe69e70b186708f6
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Sun Sep 16 21:14:47 2007 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=8116

 po/ChangeLog |   4 +++
 po/da.po     | 105 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 59 insertions(+), 50 deletions(-)

commit eddd1b3d9b80b7e246b3735b5c8d726d158b349d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 16 15:46:49 2007 +0000

    Patch by: Darren Kenny <darren.kenny@sun.com>
    
    2007-09-16  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Darren Kenny <darren.kenny@sun.com>
    
        * theme-thumbnail.c: (generate_meta_theme_thumbnail_async),
        (generate_gtk_theme_thumbnail_async),
        (generate_metacity_theme_thumbnail_async),
        (generate_icon_theme_thumbnail_async): don't return values from void
        functions. Fixes building with Sun's Forte compiler (bug #473967)
    
    svn path=/trunk/; revision=8115

 capplets/common/ChangeLog         | 10 ++++++++++
 capplets/common/theme-thumbnail.c |  8 ++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit 839c7da1e9695a8473f6859926cb458e09e31294
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 16 15:39:33 2007 +0000

    add a comment for translators (bug #473379)
    
    2007-09-16  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main): add a comment for translators (bug #473379)
    
    svn path=/trunk/; revision=8114

 capplets/appearance/ChangeLog         | 4 ++++
 capplets/appearance/appearance-main.c | 1 +
 2 files changed, 5 insertions(+)

commit 981227eb06997a231238a92d2461a7db76a77e27
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Sep 16 15:35:17 2007 +0000

    don't set a fixed width for the toolbar button color label (bug #474317)
    
    2007-09-16  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade: don't set a fixed width for the toolbar button
        color label (bug #474317)
    
    svn path=/trunk/; revision=8113

 capplets/appearance/ChangeLog             | 5 +++++
 capplets/appearance/data/appearance.glade | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 927027cda24e64286fce23671264826207607dd5
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sun Sep 16 15:34:48 2007 +0000

    Added Belarusian Latin translation.
    
    svn path=/trunk/; revision=8112

 po/ChangeLog   |    4 +
 po/LINGUAS     |    1 +
 po/be@latin.po | 4212 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 4217 insertions(+)

commit 3d28b2ff7a069f03faaac54c18d66c8c7b5ad68b
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Sep 16 14:29:07 2007 +0000

    Updated Italian translation.
    
    2007-09-16  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.
    
    
    svn path=/trunk/; revision=8111

 po/ChangeLog |    4 +
 po/it.po     | 4680 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 2599 insertions(+), 2085 deletions(-)

commit 9a123406ec8fa4819562d0c79c584bc410c33d15
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sun Sep 16 14:11:13 2007 +0000

    Updated Japanse translation. Fixed a broken file at r8107.
    
    2007-09-16  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanse translation.
            * ChangeLog: Fixed a broken file at r8107.
    
    svn path=/trunk/; revision=8110

 po/ChangeLog | 10510 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 po/ja.po     |   111 +-
 2 files changed, 10565 insertions(+), 56 deletions(-)

commit 845ed38e5387575a8f5755d2af6bcfd8a8778450
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun Sep 16 13:18:54 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8109

 po/ChangeLog |   6 +-
 po/sv.po     | 480 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 345 insertions(+), 141 deletions(-)

commit f881ec161da376e5ba68c452c9839f8f44d10d51
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Sep 16 08:37:39 2007 +0000

    Updated Finnish translation (spellchecked)
    
    svn path=/trunk/; revision=8108

 po/ChangeLog | 4 ++++
 po/fi.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit d097039540956f700aefd279715a622c646b3039
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Sat Sep 15 18:38:41 2007 +0000

    Updated Basque translation.
    
    2007-09-15  Inaki Larranaga Murgoitio  <dooteo@zundan.com>
    
            * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=8107

 po/ChangeLog | 10501 +--------------------------------------------------------
 po/eu.po     |   130 +-
 2 files changed, 72 insertions(+), 10559 deletions(-)

commit 05d117562fa3bb442120c6ea41eef10ef3ba142f
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Sat Sep 15 17:07:34 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-09-15  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=8106

 po/ChangeLog |   4 +
 po/pl.po     | 260 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 140 insertions(+), 124 deletions(-)

commit d22ddeb133937cc480e91b28d5bb546541a95bed
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sat Sep 15 15:30:33 2007 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=8105

 po/ChangeLog |   4 +
 po/el.po     | 479 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 294 insertions(+), 189 deletions(-)

commit 14c02137ad954091ac698293587ed6b853214669
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Sep 15 14:58:54 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8104

 po/ChangeLog |  4 ++++
 po/fi.po     | 24 ++++++++++++++++--------
 2 files changed, 20 insertions(+), 8 deletions(-)

commit 6625936f2053e11ccb86ba2dd6c262163aa20911
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Sep 15 10:11:02 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8103

 po/ChangeLog |  4 ++++
 po/es.po     | 26 +++++++++++++++++---------
 2 files changed, 21 insertions(+), 9 deletions(-)

commit bc97df2f0b7dbe43bc12cb4c8962281754652fef
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Sat Sep 15 06:06:31 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8102

 po/ChangeLog |  4 ++++
 po/th.po     | 26 +++++++++++++++++---------
 2 files changed, 21 insertions(+), 9 deletions(-)

commit 82076597c6f455659d6a6e74752804af49e08c33
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Sep 14 12:09:09 2007 +0000

    2007-09-14    vi.po    Updated Vietnamese translation
    
    Clytie Siddall <clytie@riverland.net.au>
    
    svn path=/trunk/; revision=8101

 po/ChangeLog |   4 +++
 po/vi.po     | 111 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 62 insertions(+), 53 deletions(-)

commit 662d3ba8638736f078fe2d68ec616e433d26dfb2
Author: David Lodge <dlodge@src.gnome.org>
Date:   Fri Sep 14 06:14:57 2007 +0000

    Update en_GB translation
    
    svn path=/trunk/; revision=8100

 po/ChangeLog |    4 +
 po/en_GB.po  | 1892 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 963 insertions(+), 933 deletions(-)

commit 66b62cf14397a47e659bd114c17bcae7d49f0386
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Thu Sep 13 22:38:34 2007 +0000

    Updated Arabic Translation by Anas Husseini.
    
    svn path=/trunk/; revision=8099

 po/ChangeLog |    4 +
 po/ar.po     | 3143 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1713 insertions(+), 1434 deletions(-)

commit 1521a4f7111c2965440d9ef7b9ffb67d69b4d913
Author: Espen Stefansen <espens@svn.gnome.org>
Date:   Thu Sep 13 17:08:01 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-09-13  Espen Stefansen  <espens@svn.gnome.org>
    
            * nb.po: Updated Norwegian bokmål translation.
    
    
    svn path=/trunk/; revision=8098

 po/ChangeLog |   4 +
 po/nb.po     | 574 +++++++++++++++++++++--------------------------------------
 2 files changed, 202 insertions(+), 376 deletions(-)

commit c9a31e02f5f8d18d98826125b4ccac465d0b8771
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Sep 13 14:20:18 2007 +0000

    Translation updated.
    
    2007-09-13 Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=8097

 po/ChangeLog |   4 ++
 po/hu.po     | 119 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 61 insertions(+), 62 deletions(-)

commit d533dc4a0ef959a270e1195a73f76871bfc1ae75
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Sep 13 08:28:11 2007 +0000

    Updated Portuguese translation.
    
    2007-09-13  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=8096

 po/ChangeLog |   4 ++
 po/pt.po     | 123 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 70 insertions(+), 57 deletions(-)

commit 74eeeb55b4427f2d5302e038ea512a87ad181add
Author: Jamil Ahmed <jahmed@src.gnome.org>
Date:   Wed Sep 12 19:10:24 2007 +0000

    Updated Bengali Translation
    
    * bn.po: Updated Bengali Translation
    
    svn path=/trunk/; revision=8095

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit e5575343ad4c25c5515a23282d8ed50ba33bbd8b
Author: Jamil Ahmed <jahmed@src.gnome.org>
Date:   Wed Sep 12 19:09:34 2007 +0000

    Updated Bengali Translation
    
    svn path=/trunk/; revision=8094

 po/bn.po | 4387 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 2329 insertions(+), 2058 deletions(-)

commit 07f627bc5db725255968a19bfc8c6f76d773466c
Author: Yang Zhang <zyang@src.gnome.org>
Date:   Wed Sep 12 13:03:07 2007 +0000

    Updated zh_CN translation
    
    svn path=/trunk/; revision=8093

 po/zh_CN.po | 237 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 120 insertions(+), 117 deletions(-)

commit c61ea9d58773b3af5b296c601a02f79f61067be4
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Wed Sep 12 07:44:32 2007 +0000

    Updated Russian translation.
    
    2007-09-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
        * ru.po: Updated Russian translation.
    
    
    svn path=/trunk/; revision=8092

 po/ChangeLog |    4 +
 po/ru.po     | 3331 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1742 insertions(+), 1593 deletions(-)

commit c8a0c7592c77bde48e22433c0109e097c98ebd21
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Sep 11 23:24:52 2007 +0000

    Translation updated by Reinout van Schouwen.
    
    2007-09-12  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.
    
    svn path=/trunk/; revision=8091

 po/ChangeLog |    4 +
 po/nl.po     | 1038 ++++++++++++++++++++--------------------------------------
 2 files changed, 367 insertions(+), 675 deletions(-)

commit 096794c920978291503785d2e2ff33549cf119ce
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Tue Sep 11 17:25:54 2007 +0000

    updating for Punjabi
    
    svn path=/trunk/; revision=8090

 po/pa.po | 1187 ++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 583 insertions(+), 604 deletions(-)

commit 0a6c3be22684308614ffc5f8d4dabb198c8fc1fe
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Tue Sep 11 13:13:09 2007 +0000

    Update Ukrainian translation.
    
    2007-09-11 Maxim Dziumanenko <dziumanenko@gmail.com>
    
        * Update Ukrainian translation.
    
    
    svn path=/trunk/; revision=8089

 po/ChangeLog |    4 +
 po/uk.po     | 3263 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1700 insertions(+), 1567 deletions(-)

commit 26ee0943f0f296f1b61875bcdafd908c86098158
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Tue Sep 11 11:16:10 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8088

 po/ChangeLog |   4 +
 po/th.po     | 238 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 125 insertions(+), 117 deletions(-)

commit 20953383c1580a597579058f55f1c3b3586a115b
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Tue Sep 11 10:02:37 2007 +0000

    Updated German translation.
    
    2007-09-11  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=8087

 po/ChangeLog |   4 +++
 po/de.po     | 107 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 62 insertions(+), 49 deletions(-)

commit 63477bc287fbc9d5472d70c0dc72b220dec01fbd
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Mon Sep 10 19:33:21 2007 +0000

    Updated Serbian translations.
    
    svn path=/trunk/; revision=8086

 po/sr.po      | 10 +++++-----
 po/sr@Latn.po | 10 +++++-----
 2 files changed, 10 insertions(+), 10 deletions(-)

commit 87de97a7ce8b1a35515aac0fd21393402079f5e9
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Mon Sep 10 19:31:11 2007 +0000

    Updated Serbian translations.
    
    svn path=/trunk/; revision=8085

 po/ChangeLog  |    4 +
 po/sr.po      | 4480 +++++++++++++++++++++++++++++++-------------------------
 po/sr@Latn.po | 4513 +++++++++++++++++++++++++++++++--------------------------
 3 files changed, 4975 insertions(+), 4022 deletions(-)

commit cf80e0c51c1e5571dff8e2e5ac5c5af57e98f68f
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Mon Sep 10 17:26:11 2007 +0000

    Updated Georgian Translation by Vladimer Sichinava  <vsichi@gnome.org>
    
    svn path=/trunk/; revision=8084

 po/ChangeLog |    4 +
 po/ka.po     | 1605 +++++++++++++++++++++++-----------------------------------
 2 files changed, 648 insertions(+), 961 deletions(-)

commit cec92ea268282f3ce6f7af21a67eb35f93dfe672
Author: Stéphane Raimbault <stephaner@src.gnome.org>
Date:   Mon Sep 10 16:03:09 2007 +0000

    Updated French translation by Christophe Benz, Stéphane Raimbault and
    Claude Paroz.
    
    svn path=/trunk/; revision=8083

 po/ChangeLog |    5 +
 po/fr.po     | 3360 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1753 insertions(+), 1612 deletions(-)

commit 57fe9847e3abb98727c99fb97e3d345dda68f678
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Mon Sep 10 14:12:06 2007 +0000

    Updated Estonian translation.
    
    2007-09-10  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Updated Estonian translation.
    
    svn path=/trunk/; revision=8082

 po/ChangeLog |   4 +
 po/et.po     | 238 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 125 insertions(+), 117 deletions(-)

commit c278801bb1a6b07a2c19f16773f82426552b4ddd
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Mon Sep 10 11:13:50 2007 +0000

    2007-09-10 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated Macedonian translation.
    
    svn path=/trunk/; revision=8081

 po/ChangeLog |   4 +
 po/mk.po     | 255 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 133 insertions(+), 126 deletions(-)

commit a8b6d60456c0881d69c933d4ea7008eb0a819fd1
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Sep 10 06:27:58 2007 +0000

    Updated Translation
    
    svn path=/trunk/; revision=8080

 po/ChangeLog |   4 +
 po/gu.po     | 236 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 123 insertions(+), 117 deletions(-)

commit 7d1078e7e817fd818870d2b7bd904236b5c78cba
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Sep 9 21:24:14 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8079

 po/ChangeLog |   4 +
 po/es.po     | 238 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 124 insertions(+), 118 deletions(-)

commit 1cb7609108bda54ccc344dcd0d8c0ca18e013e0c
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Sep 9 20:37:44 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8078

 po/ChangeLog |   4 +
 po/fi.po     | 236 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 124 insertions(+), 116 deletions(-)

commit 086a17d0f21e45cc0d4cf631579c2b7ed723ce84
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Sun Sep 9 20:25:04 2007 +0000

    Updated Brazilian Portuguese translation
    
    svn path=/trunk/; revision=8077

 po/ChangeLog |   6 ++-
 po/pt_BR.po  | 158 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 86 insertions(+), 78 deletions(-)

commit 02ba67b848950211f5c51aba19242254365ae36c
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun Sep 9 19:35:37 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=8076

 po/ChangeLog |   4 +
 po/sv.po     | 237 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 124 insertions(+), 117 deletions(-)

commit 5da914160e815f2cd245434780c2f87c91aa2042
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sun Sep 9 19:24:33 2007 +0000

    Correct translatable property value of Save As. Fixes #473810.
    
    2007-09-09  Claude Paroz  <claude@2xlibre.net>
    
        * data/appearance.glade: Correct translatable property value of Save As.
        Fixes #473810.
    
    svn path=/trunk/; revision=8075

 capplets/appearance/ChangeLog             | 5 +++++
 capplets/appearance/data/appearance.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit dc2f0dd3950af15103a2d4ccdcfa68598f573420
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Sat Sep 8 12:00:12 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-09-08  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=8074

 po/ChangeLog |  4 ++++
 po/pl.po     | 22 +++++++++-------------
 2 files changed, 13 insertions(+), 13 deletions(-)

commit a86ebcd27053f9797f48fe5527a9644bd86ee033
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Tue Sep 4 21:05:17 2007 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=8073

 po/ChangeLog |    4 +
 po/da.po     | 3728 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 1871 insertions(+), 1861 deletions(-)

commit b98e17b7fb559e4f5426d78dab0cc688e7181472
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Sep 3 14:18:44 2007 +0000

    Added Entry for Bengali India Translation Updation
    
    svn path=/trunk/; revision=8071

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 4584323312bdf543117381da69204b95d2ab5a7f
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Sep 3 14:18:32 2007 +0000

    Updated Bengali India Translation
    
    svn path=/trunk/; revision=8070

 po/bn_IN.po | 3886 ++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 2115 insertions(+), 1771 deletions(-)

commit acdcff75953c5d1507e98103256de1af82bd04f7
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Mon Sep 3 11:55:15 2007 +0000

    Updated Korean translation by Young-Ho Cha.
    
    2007-09-03  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation by Young-Ho Cha.
    
    svn path=/trunk/; revision=8069

 po/ChangeLog |    4 +
 po/ko.po     | 3267 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1702 insertions(+), 1569 deletions(-)

commit 9abd9504a9a8b656e761c02c62e2572a4d5ffe42
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Mon Sep 3 08:26:56 2007 +0000

    Updated German translation, by Thomas Gier <info@thomasgier.de>
    
    2007-09-03  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation, by
                 Thomas Gier <info@thomasgier.de>
    
    svn path=/trunk/; revision=8068

 po/ChangeLog |   5 +
 po/de.po     | 596 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 287 insertions(+), 314 deletions(-)

commit de40937d7c3ba4ff7364164373b4f09cd8413cf6
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Sep 2 14:19:13 2007 +0000

    2007-09-02    vi.po    Updated Vietnamese translation
    
    Clytie Siddall <clytie@riverland.net.au>
    
    svn path=/trunk/; revision=8067

 po/ChangeLog |    2 +-
 po/vi.po     | 1222 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 668 insertions(+), 556 deletions(-)

commit 6603bef2f3ff37fdb2d7a1d8fbc4b5de84e84910
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun Sep 2 10:03:50 2007 +0000

    Updated Portuguese translation.
    
    2007-09-02  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=8066

 po/ChangeLog |    4 +
 po/pt.po     | 4167 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2235 insertions(+), 1936 deletions(-)

commit a1dcc84d16dd96baa7bae92d3746c6787850f0e5
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Sat Sep 1 20:24:24 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8065

 help/oc/oc.po | 1407 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 po/oc.po      |  151 +++----
 2 files changed, 1414 insertions(+), 144 deletions(-)

commit d36b3dbdd720c4d0193eddcc383587db3427236e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Sep 1 14:04:38 2007 +0000

    sync with upstream
    
    2007-09-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gedit-message-area.c: (gedit_message_area_init): sync with upstream
    
    svn path=/trunk/; revision=8064

 capplets/appearance/ChangeLog            |   4 +
 capplets/appearance/gedit-message-area.c | 142 +++++++++++++++----------------
 2 files changed, 75 insertions(+), 71 deletions(-)

commit c7c319f8af292096f396f37c218072b2427a665e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Sep 1 10:19:47 2007 +0000

    break out of the loop asap; use _prepend instead of _append
    
    2007-09-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-font.c: (font_render_load), (cb_show_details): break out
        of the loop asap; use _prepend instead of _append
    
    svn path=/trunk/; revision=8063

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/appearance-font.c | 7 ++++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit d16f73873e4bae99db362d24a9696e2dfb279b56
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 31 17:20:22 2007 +0000

    don't define gconf_key as const and save a few casts
    
    2007-08-31  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-font.c: (font_render_load), (setup_font_pair),
        (enum_group_load), (enum_group_create): don't define gconf_key as
        const and save a few casts
    
    svn path=/trunk/; revision=8062

 capplets/appearance/ChangeLog         |  6 ++++++
 capplets/appearance/appearance-font.c | 16 ++++++++--------
 2 files changed, 14 insertions(+), 8 deletions(-)

commit 326eeb16b77f3cf0c0a6fc8442401112464955eb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 31 17:00:38 2007 +0000

    don't leak the enum groups
    
    2007-08-31  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-font.c: (enum_group_destroy), (cb_show_details),
        (font_init), (font_shutdown):
        * appearance.h: don't leak the enum groups
    
    svn path=/trunk/; revision=8061

 capplets/appearance/ChangeLog         | 10 +++++--
 capplets/appearance/appearance-font.c | 56 ++++++++++++++++++++++++-----------
 capplets/appearance/appearance.h      |  1 +
 3 files changed, 48 insertions(+), 19 deletions(-)

commit d53777ffd2b18eb4cd73b7f25622dc1a066efd7b
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Thu Aug 30 17:50:05 2007 +0000

    Updated and fixed Basque translation.
    
    2007-08-30  Inaki Larranaga Murgoitio  <dooteo@zundan.com>
    
            * eu.po: Updated and fixed Basque translation.
    
    svn path=/trunk/; revision=8060

 po/ChangeLog |   4 +
 po/eu.po     | 262 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 160 insertions(+), 106 deletions(-)

commit 7c525a55d61b700a98a2a215f17ccf00ffcb6b5c
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Thu Aug 30 10:29:35 2007 +0000

    Fixed wrong translations.
    
    2007-08-30  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Fixed wrong translations.
    
    svn path=/trunk/; revision=8059

 po/ChangeLog |   4 ++
 po/ja.po     | 148 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 78 insertions(+), 74 deletions(-)

commit 6db110de3deb43d0b8c7d90bb0da54190d4fd952
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Aug 29 11:12:29 2007 +0000

    reverted last commit made by mistake.
    
    2007-08-29  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnomecc.desktop.in.in: reverted last commit made by mistake.
    
    svn path=/trunk/; revision=8058

 shell/ChangeLog             | 4 ++++
 shell/gnomecc.desktop.in.in | 1 +
 2 files changed, 5 insertions(+)

commit ccdb794235ecd74346634b55e6d642a564a159cb
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Aug 29 09:58:38 2007 +0000

    prepare for 2.19.91.
    
    2007-08-28  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.91.
    
    svn path=/trunk/; revision=8056

 ChangeLog                   |  5 ++++
 NEWS                        | 62 +++++++++++++++++++++++++++++++++++++++++++++
 configure.in                |  2 +-
 shell/gnomecc.desktop.in.in |  1 -
 4 files changed, 68 insertions(+), 2 deletions(-)

commit ed3ac5731ae09834a0fdb32b8d3780a08dcc87ca
Author: Felix I <ifelix@src.gnome.org>
Date:   Wed Aug 29 06:04:03 2007 +0000

    updated ta translation
    
    svn path=/trunk/; revision=8055

 po/ChangeLog |  4 ++++
 po/ta.po     | 74 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 45 insertions(+), 33 deletions(-)

commit 7d2d67441b24fcbeab6dd4c00293e4f71c79f150
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Aug 28 16:51:21 2007 +0000

    This time really fix bug 470532 (gtk-delete stock id is marked for
    
    2007-08-28  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * data/appearance.glade: This time really fix bug 470532 (gtk-delete stock id is marked for
        translation)
    
    
    svn path=/trunk/; revision=8054

 capplets/appearance/ChangeLog             | 5 +++++
 capplets/appearance/data/appearance.glade | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 3d318906fca275da9d1ed02b82ef34be8f86a4aa
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 28 11:31:40 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-08-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8053

 po/ChangeLog |   4 ++
 po/nb.po     | 197 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 107 insertions(+), 94 deletions(-)

commit dcc24222ef8c7886f9f8e5743f9d98bc62a2d4c4
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Tue Aug 28 09:01:34 2007 +0000

    Updated Malayalam (ml) Translation
    
    svn path=/trunk/; revision=8052

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit bd59deed4ba1d07a54bc1c62748f73ac5655f7cf
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Tue Aug 28 09:01:22 2007 +0000

    Updated Malayalam (ml) Translation
    
    svn path=/trunk/; revision=8051

 po/ml.po | 4362 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 2341 insertions(+), 2021 deletions(-)

commit b5434c9af8ab96d8639e209ccf943cc05a4e325d
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Tue Aug 28 00:35:43 2007 +0000

    Some Translation Updates
    
    svn path=/trunk/; revision=8050

 po/ka.po | 3912 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 2231 insertions(+), 1681 deletions(-)

commit dcef9eadd1c22005623c67b3e117c0e50d94c989
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Aug 27 23:20:11 2007 +0000

    Translation updated.
    
    2007-08-28 Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=8049

 po/ChangeLog |   4 ++
 po/hu.po     | 132 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 73 insertions(+), 63 deletions(-)

commit 506db1fde691a913bedc8bc357bd2bc1544869a8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Aug 27 21:19:26 2007 +0000

    don't leak the thumbnails
    
    2007-08-27  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_thumbnail_in_treeview): don't leak the
        thumbnails
    
    svn path=/trunk/; revision=8048

 capplets/appearance/ChangeLog          | 5 +++++
 capplets/appearance/appearance-style.c | 5 +++++
 2 files changed, 10 insertions(+)

commit 68b8f230eb6266a2ea683e63ae1b8fcc9cc2c24e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Aug 27 21:07:42 2007 +0000

    always generate thumbnails asynchronously. Mixing synchronous and
    
    2007-08-27  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_in_treeview),
        (gtk_theme_thumbnail_cb), (metacity_theme_thumbnail_cb),
        (icon_theme_thumbnail_cb), (changed_on_disk_cb): always generate
        thumbnails asynchronously. Mixing synchronous and asynchronous
        generation just doesn't work (bug #469849)
    
    svn path=/trunk/; revision=8047

 capplets/appearance/ChangeLog          |  8 ++++
 capplets/appearance/appearance-style.c | 82 +++++++++++++++-------------------
 2 files changed, 44 insertions(+), 46 deletions(-)

commit 744a7f170cbd3b80f4f14b25d522430ae6591620
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Aug 27 11:12:40 2007 +0000

    Patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
    2007-08-27  Thomas Wood  <thos@gnome.org>
    
        Patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
        * data/appearance.glade: Fix bug 470532 (gtk-delete stock id is marked for
        translation)
    
    svn path=/trunk/; revision=8046

 capplets/appearance/ChangeLog             | 7 +++++++
 capplets/appearance/data/appearance.glade | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit cd12dddc9b76c55d7080ee31a529d67a5e8f2d4d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Aug 26 21:42:13 2007 +0000

    make Add label translatable, b.g.o#470516
    
    svn path=/trunk/; revision=8045

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a01a78c71722548c7a2fcbfe87c0dd9683cc9076
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Aug 26 20:14:02 2007 +0000

    Updated g-c-c translation
    
    svn path=/trunk/; revision=8044

 po/ChangeLog |   4 +
 po/zh_CN.po  | 384 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 226 insertions(+), 162 deletions(-)

commit 727cdfe2ed862cfc5d6d939a262b5321a7b7b9ad
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Sun Aug 26 16:55:15 2007 +0000

    2007-08-26 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated Macedonian translation.
    
    svn path=/trunk/; revision=8043

 po/ChangeLog |    4 +
 po/mk.po     | 3284 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1709 insertions(+), 1579 deletions(-)

commit 4b364193cb92e416befb2d80f20e32dfa8a773ab
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Aug 26 16:50:02 2007 +0000

    Translation updated.
    
    2007-08-26 Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=8042

 po/ChangeLog |   4 +
 po/hu.po     | 833 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 412 insertions(+), 425 deletions(-)

commit 9a4ac112935458ab43b88ac523bb63042a7b3c84
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Sat Aug 25 18:39:39 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8041

 help/Makefile.am |   2 +-
 help/oc/oc.po    | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 126 insertions(+), 1 deletion(-)

commit 1e5c9968e2c3befe9e0baff1ed26301345167054
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 23 19:02:28 2007 +0000

    fix leaks (bug #469531)
    
    2007-08-23  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_get_thumbnail_from_cache):
        * gnome-wp-item.c: (gnome_wp_item_update_description): fix leaks (bug
        #469531)
    
    2007-08-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_is_writable): cast to proper type
        * theme-thumbnail.c: (create_metacity_theme_pixbuf): free the metacity
        theme after use (bug #469531)
    
    svn path=/trunk/; revision=8040

 capplets/appearance/ChangeLog           | 6 ++++++
 capplets/appearance/appearance-themes.c | 4 +++-
 capplets/appearance/gnome-wp-item.c     | 4 +++-
 capplets/common/ChangeLog               | 6 ++++++
 capplets/common/gnome-theme-info.c      | 2 +-
 capplets/common/theme-thumbnail.c       | 1 +
 6 files changed, 20 insertions(+), 3 deletions(-)

commit ae74c50d9ab41c4e9c389e50ef1f6c417b50bab9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 23 17:08:43 2007 +0000

    simply set the upper bound of the DPI spin button to the maximum we
    
    2007-08-23  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-font.c: (cb_show_details): simply set the upper bound of
        the DPI spin button to the maximum we consider reasonable. This is one
        way to make sure we don't get SIGFPE if for some reason
        gdk_screen_get_{width,height}_mm returns 0 (bug #469580)
    
    svn path=/trunk/; revision=8039

 capplets/appearance/ChangeLog         | 7 +++++++
 capplets/appearance/appearance-font.c | 7 +------
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 92a43a9ee5c331c2179a5b0f81a4224378e76bf1
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Thu Aug 23 15:14:02 2007 +0000

    Updated Brazilian Portuguese translation
    
    svn path=/trunk/; revision=8038

 po/ChangeLog |    5 +
 po/pt_BR.po  | 3273 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1703 insertions(+), 1575 deletions(-)

commit ddff7a312721698f5af80293f2afd613c29a4315
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Thu Aug 23 12:14:23 2007 +0000

    Updated Translation
    
    svn path=/trunk/; revision=8037

 po/ChangeLog |  4 ++++
 po/gu.po     | 75 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 46 insertions(+), 33 deletions(-)

commit ea998d25d20452a42d4053b0de585783109e81be
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Wed Aug 22 22:35:25 2007 +0000

    Updated Catalan translation.
    
    svn path=/trunk/; revision=8036

 po/ChangeLog |    4 +
 po/ca.po     | 4362 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2357 insertions(+), 2009 deletions(-)

commit b6f2b9d7e3bd7dcdd2c6719992d6bbc735995a59
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Aug 22 21:16:33 2007 +0000

    initializing current_*config early, b.g.o#469192
    
    svn path=/trunk/; revision=8035

 gnome-settings-daemon/ChangeLog                     |  6 ++++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 16 +++++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

commit b0ad42f08419b8954a2fe2208e9ce5531b8c576d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 22 17:16:02 2007 +0000

    if no background image set, select "no wallpaper"
    
    2007-08-22  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_select_after_realize): if no background
        image set, select "no wallpaper"
    
    svn path=/trunk/; revision=8034

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 7 ++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 63ba8e54aff3a4aa4042164333dc2dae31366d27
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Aug 22 10:00:09 2007 +0000

    use gnome_settings_delayed_show_dialog() to display the error message, so
    
    2007-08-21  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-keyboard-xkb.c
        (gnome_settings_keyboard_xkb_analyze_sysconfig): use
        gnome_settings_delayed_show_dialog() to display the error message,
        so that it is shown when a window manager is running, thus being
        centered and with a proper frame.
    
    svn path=/trunk/; revision=8033

 gnome-settings-daemon/ChangeLog                     | 8 ++++++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 777a257df88da3b5d5c9a49fef4c0632fcfaa98b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 21 21:22:50 2007 +0000

    Properly check all stored themes if necessary. This fixes cases where e.g.
    
    2007-08-21  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_info_find_by_type_helper):
        Properly check all stored themes if necessary. This fixes cases where
        e.g. a metacity theme in ~/.themes would hide a GTK theme with the
        same name in the system theme dir
    
    svn path=/trunk/; revision=8032

 capplets/common/ChangeLog          |  7 +++++++
 capplets/common/gnome-theme-info.c | 17 ++++++++++++-----
 2 files changed, 19 insertions(+), 5 deletions(-)

commit 47d57ac3102d2c33c8dd25633262d15a2c11304c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 21 17:25:50 2007 +0000

    fix the last commit to use proper API to release the VCardAttributes so we
    
    2007-08-21  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_setup_email): fix the last commit to use
        proper API to release the VCardAttributes so we don't crash with newer
        e-d-s (bug #468848)
    
    svn path=/trunk/; revision=8031

 capplets/about-me/ChangeLog        | 6 ++++++
 capplets/about-me/gnome-about-me.c | 8 +++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 18a834a5595c86d43d492eb296e56337ddac9fea
Author: Philip Withnall <bugzilla@tecnocode.co.uk>
Date:   Tue Aug 21 11:47:02 2007 +0000

    use new -new-tab and -new-window arguments instead of -remote for Firefox
    
    2007-08-21  Philip Withnall <bugzilla@tecnocode.co.uk>
    
        * gnome-default-applications.xml.in: use new -new-tab and -new-window
        arguments instead of -remote for Firefox tab and window commands.
        Closes bug #393204.
    
    svn path=/trunk/; revision=8030

 capplets/default-applications/ChangeLog                         | 6 ++++++
 capplets/default-applications/gnome-default-applications.xml.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit b97c9bc02bfb86383de6413310f57e265faf15bd
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Tue Aug 21 11:00:35 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8029

 po/oc.po | 3460 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 1842 insertions(+), 1618 deletions(-)

commit 2af09cc4d7bcda532f318edf754506d3ff1e9d90
Author: Luca Cavalli <loopback@slackit.org>
Date:   Tue Aug 21 10:57:29 2007 +0000

    add new function similar to gnome_vfs_format_uri_for_display but that
    
    2007-08-21  Luca Cavalli <loopback@slackit.org>
    
        * file-transfer-dialog.c: (format_uri_for_display),
        (file_transfer_dialog_set_prop): add new function similar to
        gnome_vfs_format_uri_for_display but that hides the password if
        needed. Taken from gedit by Paolo Maggi. Closes bug #339551.
    
    svn path=/trunk/; revision=8028

 capplets/common/file-transfer-dialog.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4998b3f2d5ef90e1ed1e1ace929e1080ddf50264
Author: Luca Cavalli <loopback@slackit.org>
Date:   Tue Aug 21 10:53:59 2007 +0000

    add new function similar to gnome_vfs_format_uri_for_display but that
    
    2007-08-21  Luca Cavalli <loopback@slackit.org>
    
        * file-transfer-dialog.c: (format_uri_for_display),
        (file_transfer_dialog_set_prop): add new function similar to
        gnome_vfs_format_uri_for_display but that hides the password if
        needed. Taken from gedit by Paolo Maggi. Closes bug #339551.
    
    svn path=/trunk/; revision=8027

 capplets/common/ChangeLog              |  7 +++++++
 capplets/common/file-transfer-dialog.c | 33 ++++++++++++++++++++++++++++++++-
 2 files changed, 39 insertions(+), 1 deletion(-)

commit 7aa4e96a78f03ed2cfb5c2cb6cffab0f40abcf63
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 21 10:36:05 2007 +0000

    honour mail address attributes when setting up Home and Work addresses
    
    2007-08-21  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: honour mail address attributes when setting
        up Home and Work addresses
    
    svn path=/trunk/; revision=8026

 capplets/about-me/ChangeLog        |  5 +++++
 capplets/about-me/gnome-about-me.c | 36 +++++++++++++++++++++++++++++++++---
 2 files changed, 38 insertions(+), 3 deletions(-)

commit 23b792113ae9caece1682d61c3bd654a2966ba71
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Tue Aug 21 07:51:34 2007 +0000

    Estonian translation updates by Ivar Smolin <okul@linux.ee>
    
    2007-08-21  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Estonian translation updates by Ivar Smolin <okul@linux.ee>
    
    svn path=/trunk/; revision=8025

 po/ChangeLog |   4 ++
 po/et.po     | 193 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 126 insertions(+), 71 deletions(-)

commit e3767b1949db4c9e3dcb6080da836046dd696d69
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Mon Aug 20 18:08:17 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8024

 po/oc.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 1c7188caa71fa4b83b0830bcc07d4d143ac5ab63
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Aug 20 11:02:37 2007 +0000

    Fixes #467552
    
    2007-08-20  Matthias Clasen <mclasen@redhat.com>
    
        Fixes #467552
    
        * gnome-theme-info.c (gnome_theme_init): avoid double-freed for cursor
        theme infos.
    
    svn path=/trunk/; revision=8023

 capplets/common/ChangeLog          | 7 +++++++
 capplets/common/gnome-theme-info.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 9a9bb74cb5953ef71bdc18a3efc10a2f28664122
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Sun Aug 19 13:31:58 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-08-19  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=8022

 po/ChangeLog |   4 ++
 po/pl.po     | 197 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 115 insertions(+), 86 deletions(-)

commit 5d96d2c3a9f4a3811a3d649cb64de91d97ae00c7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 19 11:38:16 2007 +0000

    Fixed paths for appearance data files. Closes bug #467948.
    
    2007-08-19  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.skip: Fixed paths for appearance data files. Closes bug
        #467948.
    
    svn path=/trunk/; revision=8021

 po/ChangeLog     | 5 +++++
 po/POTFILES.skip | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 506e22fd415e78b931825130815b504af50ddf8f
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Sun Aug 19 07:16:55 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=8020

 po/ChangeLog |  4 ++++
 po/th.po     | 74 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 45 insertions(+), 33 deletions(-)

commit eb255afaabc40b0a4385e20a6ee60596fa4185c4
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Aug 18 21:40:52 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=8019

 po/ChangeLog |   4 ++
 po/sv.po     | 214 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 122 insertions(+), 96 deletions(-)

commit 191e54d27418698b9ab8846c9a067dc73c0f2f89
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sat Aug 18 12:13:01 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=8018

 po/ChangeLog |  4 +++
 po/es.po     | 92 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 54 insertions(+), 42 deletions(-)

commit 8323405071ce6a3b1f1977cd76c92ca057c928d8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 18 11:54:46 2007 +0000

    don't check the internal volume since this makes it impossible to unmute a
    
    2007-08-18  Jens Granseuer  <jensgr@gmx.net>
    
        * actions/acme-volume-gstreamer.c: (update_state): don't check the
        internal volume since this makes it impossible to unmute a low volume
        (that translates to an internal GStreamer volume of 0)
    
        * gnome-settings-multimedia-keys.c: (do_sound_action): if we're
        muted and silent, don't just unmute on VOL+ but also raise the
        volume
    
    svn path=/trunk/; revision=8017

 gnome-settings-daemon/ChangeLog                    | 10 +++++++
 .../actions/acme-volume-gstreamer.c                | 33 +++++++++++-----------
 .../gnome-settings-multimedia-keys.c               |  4 ++-
 3 files changed, 29 insertions(+), 18 deletions(-)

commit 70a23111a8a5ace91def1c80825ac8986d3254d8
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Aug 18 07:12:18 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=8016

 po/ChangeLog |  4 ++++
 po/fi.po     | 72 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 44 insertions(+), 32 deletions(-)

commit 4cd0b997c5491c48a07ed724735e5ee71344093b
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sat Aug 18 04:30:25 2007 +0000

    Updated Japanese translation.
    
    2007-08-17  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=8015

 po/ChangeLog |   4 ++
 po/ja.po     | 156 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 110 insertions(+), 50 deletions(-)

commit e56210e7779a77656dbecb6fcf17add2d3f90bf8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 17 19:02:13 2007 +0000

    use a list instead of a hash table to store the settings modules (closes
    
    2007-08-17  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-daemon.c: (initialize_modules), (start_modules),
        (stop_modules), (finalize), (gnome_settings_daemon_init),
        (gnome_settings_daemon_new): use a list instead of a hash table to
        store the settings modules (closes bug #449118)
    
    svn path=/trunk/; revision=8014

 gnome-settings-daemon/ChangeLog               |  7 +++
 gnome-settings-daemon/gnome-settings-daemon.c | 86 +++++++++++----------------
 2 files changed, 41 insertions(+), 52 deletions(-)

commit 2f48b99c2a63c61ebafe1b2f76d8731e8ab5a7d8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 17 17:33:05 2007 +0000

    fix double-free, and make the builtins non-static to save relocations
    
    2007-08-17  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_cursor_fonts): fix double-free, and make
        the builtins non-static to save relocations
    
    svn path=/trunk/; revision=8013

 capplets/common/ChangeLog          |  5 +++++
 capplets/common/gnome-theme-info.c | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit cbbba2a4b1ae49a7f2a893c0497e3b58827540fd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 17 16:12:31 2007 +0000

    Patch by: Sven Arvidsson <sa@whiz.se>
    
    2007-08-17  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Sven Arvidsson <sa@whiz.se>
    
        * gnome-default-applications.xml.in: add browser and mail entries for
        Iceape, the debranded Seamonkey version used by Debian (bug #467472)
    
    svn path=/trunk/; revision=8012

 capplets/default-applications/ChangeLog                 |  7 +++++++
 .../gnome-default-applications.xml.in                   | 17 +++++++++++++++++
 2 files changed, 24 insertions(+)

commit c2aca4842a47b968375f3d9f27ecbd4d01353a0a
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Fri Aug 17 15:49:02 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=8011

 po/oc.po | 236 +++------------------------------------------------------------
 1 file changed, 11 insertions(+), 225 deletions(-)

commit 3b08e16e7fac59b58af48e8d0717e6631f7bc6fd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 17 15:48:27 2007 +0000

    don't leak the cursor font
    
    2007-08-17  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_cursor_fonts): don't leak the cursor font
    
    svn path=/trunk/; revision=8010

 capplets/common/ChangeLog          | 4 ++++
 capplets/common/gnome-theme-info.c | 4 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f75bc5d8928d349bbe097316648566727be31e14
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Thu Aug 16 12:21:04 2007 +0000

    Added Jens to MAINTAINERS
    
    svn path=/trunk/; revision=8009

 MAINTAINERS | 4 ++++
 1 file changed, 4 insertions(+)

commit 1deada809656fb357c36771ffaaa5565adf85ee6
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Thu Aug 16 09:55:54 2007 +0000

    Estonian translation update by Ivar Smolin.
    
    2007-08-16  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Estonian translation update by Ivar Smolin.
    
    svn path=/trunk/; revision=8008

 po/ChangeLog |   4 +
 po/et.po     | 692 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 312 insertions(+), 384 deletions(-)

commit 2ccb69bbd04afda26414c0bb6a2ec99a957504bd
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Thu Aug 16 08:11:16 2007 +0000

    Updated Translation
    
    svn path=/trunk/; revision=8007

 po/ChangeLog |   4 +++
 po/gu.po     | 112 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 82 insertions(+), 34 deletions(-)

commit a4bc0834e391e3a05dbb379bf400be77b8ae3ca1
Author: Yang Zhang <zyang@src.gnome.org>
Date:   Wed Aug 15 12:35:46 2007 +0000

    Updated zh_CN translation
    
    svn path=/trunk/; revision=8006

 po/zh_CN.po | 774 +++++++++++++++++++++++++++---------------------------------
 1 file changed, 350 insertions(+), 424 deletions(-)

commit 2f618843ddca21d12663a4f2221582c642c2ca78
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Wed Aug 15 11:57:50 2007 +0000

    Updated German translation, fix #444913.
    
    2007-08-15  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation, fix #444913.
    
    svn path=/trunk/; revision=8005

 po/ChangeLog |  4 ++++
 po/de.po     | 11 +++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 0d3e2e8e079aa223e2737d7156f88966f8ac16e0
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Wed Aug 15 11:48:55 2007 +0000

    intltool-update de
    
    2007-08-15  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: intltool-update de
    
    svn path=/trunk/; revision=8004

 po/ChangeLog |    4 +
 po/de.po     | 4425 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2406 insertions(+), 2023 deletions(-)

commit 80da00a4c23b222c8f4ce88ba09f6beb382e04fd
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Aug 14 20:42:13 2007 +0000

    disabling delete button, b.g.o#466749
    
    svn path=/trunk/; revision=8003

 capplets/keyboard/ChangeLog                         | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit bc7b7193428c7b6a8055037e904f0e7e106ed6e2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 14 18:59:03 2007 +0000

    correct the item width and enable line wrapping for long theme names (bug
    
    2007-08-14  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init):
        * data/appearance.glade: correct the item width and enable line
        wrapping for long theme names (bug #466405)
    
    svn path=/trunk/; revision=8002

 capplets/appearance/ChangeLog             | 6 ++++++
 capplets/appearance/appearance-themes.c   | 4 +++-
 capplets/appearance/data/appearance.glade | 2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)

commit fccca914206d354e89324e763f2343b804d634fd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 14 13:58:29 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-08-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=8001

 po/ChangeLog |   4 +++
 po/nb.po     | 110 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 83 insertions(+), 31 deletions(-)

commit 67720a50d3328f85d2a94fb71893a3eb9a921b29
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Aug 14 09:51:17 2007 +0000

    prepare for 2.19.90.
    
    2007-08-13  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.90.
    
    svn path=/trunk/; revision=8000

 ChangeLog                                          | 10 ++++
 NEWS                                               | 67 ++++++++++++++++++++++
 configure.in                                       |  2 +-
 ...ps_gnome_settings_daemon_keybindings.schemas.in |  2 +-
 4 files changed, 79 insertions(+), 2 deletions(-)

commit 3255e4efc2fbc57398d01c91f93f64fe8a9c7997
Author: Felix I <ifelix@src.gnome.org>
Date:   Tue Aug 14 08:53:00 2007 +0000

    updated ta translation
    
    svn path=/trunk/; revision=7999

 po/ChangeLog |   4 ++
 po/ta.po     | 150 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 107 insertions(+), 47 deletions(-)

commit 755be5da93fdbbdd65f250d160aff2babe10479e
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Tue Aug 14 06:29:00 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7998

 po/ChangeLog |   4 ++
 po/th.po     | 134 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 83 insertions(+), 55 deletions(-)

commit afeda323e47a1a19ad37c68c7a609e702f26064b
Author: Satoru Satoh <ssato@src.gnome.org>
Date:   Mon Aug 13 18:10:53 2007 +0000

    Added Japanese help translation.
    
    svn path=/trunk/; revision=7996

 help/ChangeLog   |   5 +++
 help/Makefile.am |   2 +-
 help/ja/ja.po    | 135 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 141 insertions(+), 1 deletion(-)

commit 5fcd6d12ae49a5cf2debf7081aced64dea59ed75
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Aug 13 16:18:24 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7995

 po/ChangeLog |  4 +++
 po/fi.po     | 94 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 63 insertions(+), 35 deletions(-)

commit 0ad133978572fa02c4aaff6bd971abde5b678898
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Aug 13 15:27:03 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7994

 po/ChangeLog |   4 +++
 po/es.po     | 108 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 79 insertions(+), 33 deletions(-)

commit 8247d93d03c4a680a712a06f835f1b454c1dce5b
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Aug 13 11:51:31 2007 +0000

    LDAP-ified MAINTAINERS file
    
    svn path=/trunk/; revision=7993

 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ba2568ca3dfd6a311fb145f017e0e1167cdb5d1f
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Aug 13 11:48:43 2007 +0000

    LDAP-ified MAINTAINERS file
    
    svn path=/trunk/; revision=7992

 MAINTAINERS | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

commit 2a25f2355993e638e0cee7c5445b3b523a27dbca
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 12 15:30:07 2007 +0000

    various small tweaks and optimizations
    
    2007-08-12  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (create_folder_icon),
        (create_gtk_theme_pixbuf), (handle_bytes), (message_from_capplet),
        (message_from_child), (read_pixbuf), (generate_theme_thumbnail):
        various small tweaks and optimizations
    
    svn path=/trunk/; revision=7991

 capplets/common/ChangeLog         |  7 ++++++
 capplets/common/theme-thumbnail.c | 51 +++++++++++++++++++--------------------
 2 files changed, 32 insertions(+), 26 deletions(-)

commit 775234f3f2cfc8853e5eb1ac652eb189b6dc93ef
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 12 14:25:34 2007 +0000

    Added missing files.
    
    2007-08-12  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in: Added missing files.
    
    svn path=/trunk/; revision=7990

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 ++
 2 files changed, 6 insertions(+)

commit 7925a93a005612929eaa57ef1a5af0dc0c2522c3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 12 14:11:11 2007 +0000

    expose missing metacity double-click actions. Closes bug #416541.
    
    2007-08-12  Jens Granseuer  <jensgr@gmx.net>
    
        * metacity-window-manager.c: (metacity_change_settings),
        (metacity_get_settings), (metacity_get_double_click_actions):
        expose missing metacity double-click actions. Closes bug #416541.
    
    svn path=/trunk/; revision=7989

 libwindow-settings/ChangeLog                 |  6 ++++++
 libwindow-settings/metacity-window-manager.c | 18 ++++++++++++++++--
 2 files changed, 22 insertions(+), 2 deletions(-)

commit bf00b15d13ad695d51d759a9329e8bc8d1ae2fbd
Author: Žygimantas Beručka <zygis@src.gnome.org>
Date:   Sun Aug 12 07:20:08 2007 +0000

    Updated Lithuanian translation.
    
    svn path=/trunk/; revision=7988

 po/ChangeLog |   4 +
 po/lt.po     | 819 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 427 insertions(+), 396 deletions(-)

commit 91a555aa0c46cd9afff125472aa7366a3fd4ec1d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 11 13:17:31 2007 +0000

    make sure we have a selection before trying to get the data (bug #465431)
    
    2007-08-11  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (conv_from_widget_cb): make sure we have a
        selection before trying to get the data (bug #465431)
    
    svn path=/trunk/; revision=7987

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/appearance-style.c | 21 ++++++++++++---------
 2 files changed, 17 insertions(+), 9 deletions(-)

commit 6b148c2959e5d0a4554fb447368813fb03159382
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 11 12:47:44 2007 +0000

    fix leak
    
    2007-08-11  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_from_uri): fix leak
    
    svn path=/trunk/; revision=7986

 capplets/appearance/ChangeLog         | 4 ++++
 capplets/appearance/theme-installer.c | 2 ++
 2 files changed, 6 insertions(+)

commit 7de103f0b6726f9e0a39219409bbe8f948160f84
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 9 21:00:28 2007 +0000

    restrict drag'n'drop installation to the theme tab instead of the entire
    
    2007-08-09  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_drag_data_received_cb),
        (themes_init): restrict drag'n'drop installation to the theme tab
        instead of the entire window so lockdown works properly
    
        * theme-installer.c: (gnome_theme_install_from_uri),
        (gnome_theme_installer_run):
        * theme-installer.h: fix double-free and use-after-free
    
    svn path=/trunk/; revision=7985

 capplets/appearance/ChangeLog           | 10 +++++++++
 capplets/appearance/appearance-themes.c | 38 ++++++++++++++++-----------------
 capplets/appearance/theme-installer.c   | 16 ++++++++------
 capplets/appearance/theme-installer.h   |  4 ++--
 4 files changed, 40 insertions(+), 28 deletions(-)

commit c8dc660cf3f1e8c80f20d910c12b2de7254e36a2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 9 19:57:48 2007 +0000

    reenable theme lockdown
    
    2007-08-09  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): reenable theme lockdown
    
    svn path=/trunk/; revision=7984

 capplets/appearance/ChangeLog           | 4 ++++
 capplets/appearance/appearance-themes.c | 8 +++-----
 2 files changed, 7 insertions(+), 5 deletions(-)

commit 13ec42260cb62652ed1cc7bc2df045550ef5ce04
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Thu Aug 9 04:56:55 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7983

 po/ChangeLog |  4 ++++
 po/fi.po     | 11 +++++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 08d807cfb45c8ae9767414ee0913398e92b29e43
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 8 22:07:28 2007 +0000

    tiny optimization
    
    2007-08-09  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-xml.c: (gnome_wp_xml_load_list),
        (gnome_wp_xml_save_list):
        * theme-installer.c: (gnome_theme_install_from_uri): tiny optimization
    
    svn path=/trunk/; revision=7982

 capplets/appearance/ChangeLog         | 6 ++++++
 capplets/appearance/gnome-wp-xml.c    | 8 ++++----
 capplets/appearance/theme-installer.c | 2 +-
 3 files changed, 11 insertions(+), 5 deletions(-)

commit 4279e8b062b90880178a8e73fb740cfa9a770722
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 8 21:46:28 2007 +0000

    Create the icon theme representative before the GTK stock button. Since we
    
    2007-08-08  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (create_meta_theme_pixbuf):
        Create the icon theme representative before the GTK stock button. Since
        we explicitly set the icon theme for the first, this ensures both are
        drawn with the same icon theme. Before it was possible when changing
        icon themes (especially on slower machines) that the GtkSettings were
        not yet updated and the stock button still used the old theme.
    
    svn path=/trunk/; revision=7981

 capplets/common/ChangeLog         |  9 +++++++++
 capplets/common/theme-thumbnail.c | 38 +++++++++++++++++---------------------
 2 files changed, 26 insertions(+), 21 deletions(-)

commit 159ede4aea083ca85af74c25c32acf5b3a016271
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 8 21:32:01 2007 +0000

    revert r7973 because it broke color scheme notifications, and add a
    
    2007-08-08  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (gtk_theme_changed): revert r7973 because it
        broke color scheme notifications, and add a comment
        * appearance-themes.c: (theme_setting_changed_cb), (themes_init):
        connect to some signals from GtkSettings instead of GConf
    
    svn path=/trunk/; revision=7980

 capplets/appearance/ChangeLog           |  7 +++++++
 capplets/appearance/appearance-style.c  | 19 ++++++++++++++++---
 capplets/appearance/appearance-themes.c | 14 ++++++++------
 3 files changed, 31 insertions(+), 9 deletions(-)

commit 72c7c152b97970f3dcc08fb6c706210a766e4fc3
Author: SANDRA MARAKKALA DANISHKA NAVIN <snavin@src.gnome.org>
Date:   Wed Aug 8 09:33:19 2007 +0000

    Added si entry  for sinhala
    
    svn path=/trunk/; revision=7979

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 6b0e9b64431557271cc47e3d604208fe6f7779ec
Author: SANDRA MARAKKALA DANISHKA NAVIN <snavin@src.gnome.org>
Date:   Wed Aug 8 09:32:46 2007 +0000

    Added Changelog entries for sinhala
    
    svn path=/trunk/; revision=7978

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 160bbc0a6e5c176b2e5f3b9042c9444a9d888d44
Author: SANDRA MARAKKALA DANISHKA NAVIN <snavin@src.gnome.org>
Date:   Wed Aug 8 09:30:24 2007 +0000

    Added si.po file for sinhala
    
    svn path=/trunk/; revision=7977

 po/si.po | 3753 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3753 insertions(+)

commit b281a14f639b02bff3b841180ce5e1fb39a1ea97
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Tue Aug 7 21:58:05 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-08-07  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=7976

 po/ChangeLog |   4 +
 po/pl.po     | 877 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 452 insertions(+), 429 deletions(-)

commit 5e58d70e8f16cf9a16c07c43c1f2ee50612c7857
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 21:46:06 2007 +0000

    shave off a number of unnecessary casts
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_add_images), (wp_dragged_image),
        (desktop_init):
        * appearance-main.c: (main):
        * appearance-style.c: (update_color_buttons_from_settings),
        (check_color_schemes_enabled), (update_cursor_size_scale),
        (prepare_list), (style_init):
        * appearance-ui.c: (ui_init): shave off a number of unnecessary casts
    
    svn path=/trunk/; revision=7975

 capplets/appearance/ChangeLog            | 10 ++++++++++
 capplets/appearance/appearance-desktop.c | 26 +++++++++++++-------------
 capplets/appearance/appearance-main.c    |  4 ++--
 capplets/appearance/appearance-style.c   | 16 ++++++++--------
 capplets/appearance/appearance-ui.c      | 24 ++++++++++++------------
 5 files changed, 45 insertions(+), 35 deletions(-)

commit 25644ed991e8cca469e9c7afe43d47368b2c9f1c
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Aug 7 21:44:22 2007 +0000

    Translation updated by Reinout van Schouwen.
    
    2007-08-07  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.
    
    svn path=/trunk/; revision=7974

 po/ChangeLog |    4 +
 po/nl.po     | 1236 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 745 insertions(+), 495 deletions(-)

commit 137138efa4796a6f2787f4a0eca832f7feb7689c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 21:01:52 2007 +0000

    also remove code that we needed when the thumbnailer was still in-process
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (gtk_theme_changed): also remove code that we
        needed when the thumbnailer was still in-process
    
    svn path=/trunk/; revision=7973

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/appearance-style.c | 12 +-----------
 2 files changed, 6 insertions(+), 11 deletions(-)

commit 3d0bb8f59da48634d1a54044aa7c40f6f7b7dfec
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 20:16:18 2007 +0000

    make sure we don't run off the end of the array
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_cursor_theme): make sure we don't run off
        the end of the array
    
    svn path=/trunk/; revision=7972

 capplets/common/ChangeLog          | 7 ++++++-
 capplets/common/gnome-theme-info.c | 5 +++--
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 69749b7dcb0233babe980ea3afbd408862e9b739
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 19:44:18 2007 +0000

    copy the name for the default cursor, too, lest we crash on free, and only
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_cursor_theme),
        (gnome_theme_cursor_info_free): copy the name for the default cursor,
        too, lest we crash on free, and only unref the thumbnail if we have
        one
    
    svn path=/trunk/; revision=7971

 capplets/common/ChangeLog          |  7 +++++++
 capplets/common/gnome-theme-info.c | 14 ++++++++------
 2 files changed, 15 insertions(+), 6 deletions(-)

commit 44eec9e2a336243bd2e904b39da32033fd0accad
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 19:20:46 2007 +0000

    remove stuff I forgot to delete
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (color_button_clicked_cb): remove stuff I forgot
        to delete
    
    svn path=/trunk/; revision=7970

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/appearance-style.c | 12 +-----------
 2 files changed, 6 insertions(+), 11 deletions(-)

commit 8cba2c1e8eba5b2f4ee15534939cee0a46c7c67c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 16:48:02 2007 +0000

    make sure the color scheme has changed before writing to GConf and
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (color_button_clicked_cb): make sure the color
        scheme has changed before writing to GConf and enabling the reset button
    
    svn path=/trunk/; revision=7969

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/appearance-style.c | 15 +++++++++++++++
 2 files changed, 20 insertions(+)

commit 197bc958afbe465001f83fed67618fa48127af6c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Aug 7 16:35:09 2007 +0000

    simplify (check_color_schemes_enabled): fix check for available symbolic
    
    2007-08-07  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_color_buttons_from_string): simplify
        (check_color_schemes_enabled): fix check for available symbolic colors
        and make buttons for unsupported colors insensitive (bug #464081)
        (color_button_clicked_cb), (style_init): simplify
    
        * data/appearance.glade: name the color buttons exactly like their
        respective color so we don't need to keep two arrays around
    
    svn path=/trunk/; revision=7968

 capplets/appearance/ChangeLog             | 10 ++++
 capplets/appearance/appearance-style.c    | 80 +++++++++++++------------------
 capplets/appearance/data/appearance.glade | 24 +++++-----
 3 files changed, 54 insertions(+), 60 deletions(-)

commit 9bc42be5e1ad1ef3ca576777add2b4dddaf0c37c
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Tue Aug 7 16:14:37 2007 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=7967

 po/ChangeLog |    4 +
 po/el.po     | 4300 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 2115 insertions(+), 2189 deletions(-)

commit fee798c5b4d544fbe677a9e2d05c2a5d74035da4
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Aug 6 13:51:35 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7966

 po/ChangeLog |   4 +
 po/fi.po     | 787 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 401 insertions(+), 390 deletions(-)

commit 190c2a507e4987c619e569bfecdad3567cd8c162
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Aug 6 12:37:57 2007 +0000

    Updated Translation
    
    svn path=/trunk/; revision=7965

 po/ChangeLog |   4 +
 po/gu.po     | 729 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 338 insertions(+), 395 deletions(-)

commit e0db21068cc50d8f7dc54d9da0a3dac21abfb540
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 5 21:32:12 2007 +0000

    reinstate select-after-realize; it's still necessary
    
    2007-08-05  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): reinstate select-after-realize;
        it's still necessary
    
    svn path=/trunk/; revision=7964

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b437efed11bdaa5c0ffc3b483d14cccd822c5951
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Aug 5 19:24:21 2007 +0000

    Patch by: Dennis Cranston <dennis_cranston@yahoo.com>
    
    2007-08-05  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Dennis Cranston <dennis_cranston@yahoo.com>
    
        * data/appearance.glade: Indent category contents, and other HIG
        spacing fixes for "Font Rendering Details" dialog (bug #463332)
    
    svn path=/trunk/; revision=7963

 capplets/appearance/ChangeLog             |   7 ++
 capplets/appearance/data/appearance.glade | 103 ++++++++++++++++++++++--------
 2 files changed, 84 insertions(+), 26 deletions(-)

commit 314fc15bdda0617502c7c1deafc715e04806e4fa
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Aug 4 23:11:42 2007 +0000

    reviewed by: Jens Granseuer <jensgr@gmx.net>
    
    2007-08-05  Bastien Nocera  <hadess@hadess.net>
    
        reviewed by: Jens Granseuer <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (keyval_is_forbidden),
        (accel_edited_callback): Make the arrows and tabs unbindable
        without a modifier (Closes: #463433)
    
    
    svn path=/trunk/; revision=7962

 capplets/keybindings/ChangeLog                     |  8 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 36 ++++++++++++++++++++--
 2 files changed, 42 insertions(+), 2 deletions(-)

commit 6c275789597b8c9211a3bfdd1671f013beb31e34
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Aug 4 20:11:56 2007 +0000

    Based on a patch by: Dennis Cranston <dennis_cranston@yahoo.com>
    
    2007-08-04  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Dennis Cranston <dennis_cranston@yahoo.com>
    
            * appearance-style.c: (update_cursor_size_scale) Toggle
            sensitivity of the cursor scale labels (bug #463442)
    
    svn path=/trunk/; revision=7961

 capplets/appearance/ChangeLog          |  8 +++++++-
 capplets/appearance/appearance-style.c | 31 ++++++++++++++++++++-----------
 2 files changed, 27 insertions(+), 12 deletions(-)

commit 5cfe0df8a6584eec8b1b23617840809c323d3888
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Aug 4 13:05:24 2007 +0000

    Also load the "default" cursor theme as GnomeThemeCursorInfo so we know
    
    2007-08-04  Denis Washington  <denisw@svn.gnome.org>
    
        * common/gnome-theme-info.c: (read_cursor_theme), (look_for_cursor_theme):
        Also load the "default" cursor theme as GnomeThemeCursorInfo so
        we know about the available sizes. (bug #462409)
    
        * appearance/appearance-style.c: (prepare_list):
        Only add a "Default Pointer" list item if there is
        no such GnomeThemeCursorInfo.
    
    svn path=/trunk/; revision=7960

 capplets/appearance/ChangeLog          |  7 +++
 capplets/appearance/appearance-style.c |  2 +-
 capplets/common/ChangeLog              |  6 +++
 capplets/common/gnome-theme-info.c     | 94 ++++++++++++++++++----------------
 4 files changed, 64 insertions(+), 45 deletions(-)

commit a946637235e43f2cbf8998a4ffd35260a08f93f0
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sat Aug 4 12:12:05 2007 +0000

    Updated Japanese translation.
    
    2007-08-04  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=7959

 po/ChangeLog |   4 +
 po/ja.po     | 673 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 306 insertions(+), 371 deletions(-)

commit b6135ea9d0008ae68e7a66a952dbf5660759c82d
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Fri Aug 3 21:49:48 2007 +0000

    Updated Basque translation.
    
    2007-08-03  Inaki Larranaga Murgoitio <dooteo@zundan.com>
    
        * eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=7958

 po/ChangeLog |    4 +
 po/eu.po     | 3906 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2119 insertions(+), 1791 deletions(-)

commit f7bf24a1cf2f1a5f3a44acf29cef761ab5d95b50
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 3 21:19:11 2007 +0000

    oops, remove left-over devel ifdef
    
    2007-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_thumbnail_update): oops, remove
        left-over devel ifdef
    
    svn path=/trunk/; revision=7957

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 54d446ae883fe16098bf61b830695fd2f54de381
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 3 21:02:47 2007 +0000

    use gdk_color_to_string instead of g_strdup_printf remove check for old
    
    2007-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_color_changed): use gdk_color_to_string
        instead of g_strdup_printf
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml),
        (gnome_wp_xml_load_list): remove check for old glib version that
        would result in bogus code, and save an unnecessary alloc
    
    svn path=/trunk/; revision=7956

 capplets/appearance/ChangeLog            |  8 ++++++++
 capplets/appearance/appearance-desktop.c | 10 ++--------
 capplets/appearance/gnome-wp-xml.c       | 14 ++++++--------
 3 files changed, 16 insertions(+), 16 deletions(-)

commit b7ad0952dc271a3841db4902eef47f3047860fa6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 3 19:53:14 2007 +0000

    use thumbnail factory to store and retrieve metatheme thumbs (bug #448968)
    
    2007-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_props_load_wallpaper), (wp_add_image),
        (wp_scale_type_changed), (wp_shade_type_changed),
        (wp_update_preview), (wp_load_stuffs), (desktop_init),
        (desktop_shutdown):
        * appearance-main.c: (init_appearance_data),
        (main_window_response):
        * appearance-themes.c: (theme_get_mtime), (theme_thumbnail_update),
        (theme_get_thumbnail_from_cache), (theme_thumbnail_done_cb),
        (theme_thumbnail_generate):
        * appearance.h:
        * gnome-wp-xml.c: (gnome_wp_load_legacy), (gnome_wp_xml_load_xml):
        use thumbnail factory to store and retrieve metatheme thumbs
        (bug #448968)
    
    svn path=/trunk/; revision=7955

 capplets/appearance/ChangeLog            |  16 +++++
 capplets/appearance/appearance-desktop.c |  15 ++---
 capplets/appearance/appearance-main.c    |   3 +
 capplets/appearance/appearance-themes.c  | 106 ++++++++++++++++++++++++++++---
 capplets/appearance/appearance.h         |   2 +-
 capplets/appearance/gnome-wp-xml.c       |   8 +--
 6 files changed, 127 insertions(+), 23 deletions(-)

commit aa9ddd37396be130ecacece69a845f0bf0fdc0d6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 3 19:49:32 2007 +0000

    reduce metatheme thumbnail size to 128x128 in preparation of using
    
    2007-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade:
        * data/theme-thumbnailing.png: reduce metatheme thumbnail size to
        128x128 in preparation of using gnome-thumbnail-factory
    
    2007-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: reduce metatheme thumbnail size to 128x128
    
    svn path=/trunk/; revision=7954

 capplets/appearance/ChangeLog                   |   6 ++++++
 capplets/appearance/data/appearance.glade       |   2 +-
 capplets/appearance/data/theme-thumbnailing.png | Bin 5114 -> 4482 bytes
 capplets/common/ChangeLog                       |   4 ++++
 capplets/common/theme-thumbnail.c               |   2 +-
 5 files changed, 12 insertions(+), 2 deletions(-)

commit 379677ec2f493698f81ee35b1752d3e14ab42e05
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Aug 3 18:44:42 2007 +0000

    simplify
    
    2007-08-03  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (color_button_clicked_cb): simplify
    
    svn path=/trunk/; revision=7953

 capplets/appearance/ChangeLog          |  4 ++++
 capplets/appearance/appearance-style.c | 27 ++++++++++++---------------
 2 files changed, 16 insertions(+), 15 deletions(-)

commit 082539f97a3b356319770a67fd968b84bb425cbf
Author: Felix I <ifelix@src.gnome.org>
Date:   Fri Aug 3 10:24:44 2007 +0000

    updated ta translation
    
    svn path=/trunk/; revision=7952

 po/ChangeLog |    4 +
 po/ta.po     | 3686 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 2012 insertions(+), 1678 deletions(-)

commit 83882918ebe43bd01c584a05686f31641b2a3eaa
Author: Jordi Mas <jmas@softcatala.org>
Date:   Fri Aug 3 04:59:34 2007 +0000

    Added ca to DOC_LINGUAS Added Catalan translation by Joan Duran
    
    2008-08-03 Jordi Mas <jmas@softcatala.org>
    
        * Makefile.am: Added ca to DOC_LINGUAS
        * pt_BR/pt_BR.po: Added Catalan translation by Joan Duran
    
    
    svn path=/trunk/; revision=7951

 help/ChangeLog   |  5 +++
 help/Makefile.am |  2 +-
 help/ca/ca.po    | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 99 insertions(+), 1 deletion(-)

commit 9314cc4a4f5146c3e1e9e865a3a68b328688e1c3
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Fri Aug 3 03:07:50 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7950

 po/ChangeLog |   4 ++
 po/th.po     | 202 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 112 insertions(+), 94 deletions(-)

commit d31c4f7b75343c368e3d76f69996a6e7cb2b4919
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 2 21:26:03 2007 +0000

    no need for an expensive parse to initialize the colors
    
    2007-08-02  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_color_scheme_parse): no need for an
        expensive parse to initialize the colors
    
    svn path=/trunk/; revision=7949

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1ab61b2bbc17e7a42d1d4759de874cb658abb387
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Aug 2 18:26:43 2007 +0000

    don't generate GTK thumbnails when we want metacity or icon (bug #462724)
    
    2007-08-02  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (generate_metacity_theme_thumbnail),
        (generate_icon_theme_thumbnail): don't generate GTK thumbnails when we
        want metacity or icon (bug #462724)
    
    svn path=/trunk/; revision=7948

 capplets/common/ChangeLog         | 6 ++++++
 capplets/common/theme-thumbnail.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 56703e73749d960281bb1b404545788f30685c22
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Aug 2 11:57:21 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-08-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7947

 po/ChangeLog |   4 +
 po/nb.po     | 675 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 305 insertions(+), 374 deletions(-)

commit 3f905918a4059e54d09d12a78699c423d112a8f2
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Aug 2 09:53:10 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7946

 po/ChangeLog |   4 ++
 po/es.po     | 140 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 76 insertions(+), 68 deletions(-)

commit b7c050d00606bc6fa0ceb37a9ce05488a6844d78
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Aug 1 19:28:13 2007 +0000

    don't use '==', and improve portability with empty strings
    
    2007-08-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-at-commandline.in.in: don't use '==', and improve
        portability with empty strings
    
    svn path=/trunk/; revision=7945

 capplets/default-applications/ChangeLog                  |  5 +++++
 capplets/default-applications/gnome-at-commandline.in.in | 11 +++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 662af6b6533c9ac5fccb4111146656f9843286a9
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Aug 1 18:06:11 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=7944

 po/ChangeLog |    4 +
 po/sv.po     | 1156 +++++++++++++++++++++++++---------------------------------
 2 files changed, 498 insertions(+), 662 deletions(-)

commit 5a24de992f6b365a356b94b9126f5645e0295396
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Aug 1 08:37:08 2007 +0000

    Path by: Dennis Cranston <dennis_cranston@yahoo.com>
    
    2007-08-01  Thomas Wood  <thos@gnome.org>
    
        Path by: Dennis Cranston <dennis_cranston@yahoo.com>
    
        * data/appearance.glade:  Add a few more mnemonics.  HIG capitalization
          fix for a checkbutton label.
    
    svn path=/trunk/; revision=7943

 capplets/appearance/ChangeLog             |  7 +++++++
 capplets/appearance/data/appearance.glade | 11 +++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit 3c5a53064b5037f164cab19a7b6a4b476b2b5614
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 31 21:22:38 2007 +0000

    use g_get_user_special_dir() instead of hardcoding ~/Pictures
    
    2007-07-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_image_clicked_cb): use
        g_get_user_special_dir() instead of hardcoding ~/Pictures
    
    svn path=/trunk/; revision=7942

 capplets/about-me/ChangeLog        |   5 ++
 capplets/about-me/gnome-about-me.c | 110 ++++++++++++++++++-------------------
 2 files changed, 59 insertions(+), 56 deletions(-)

commit 3bb830b0ac28605f12033439c9d1d9cf4d013634
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 31 21:15:02 2007 +0000

    add a shortcut to the user's special Pictures folder to the file chooser
    
    2007-07-31  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_file_open_dialog), (desktop_init):
        * appearance.h: add a shortcut to the user's special Pictures folder to
        the file chooser and default to it (bug #461093), and reduce casting
    
    svn path=/trunk/; revision=7941

 capplets/appearance/ChangeLog            |  6 ++++++
 capplets/appearance/appearance-desktop.c | 29 +++++++++++++++++------------
 capplets/appearance/appearance.h         |  2 +-
 3 files changed, 24 insertions(+), 13 deletions(-)

commit f3638c08138e88b8baf334ce55e69a51c22b3eaa
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Jul 31 19:16:56 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7940

 po/ChangeLog |  6 +++-
 po/es.po     | 96 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 55 insertions(+), 47 deletions(-)

commit 36a7f276c8f552f58dafc12d2e47aeccea709732
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 30 21:38:32 2007 +0000

    prepare for 2.19.6.
    
    2007-07-30  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.6.
    
    svn path=/trunk/; revision=7938

 ChangeLog    |  5 ++++
 NEWS         | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 103 insertions(+), 1 deletion(-)

commit 147912ed0182c69abb95a6edf7b3f1a5f3803fdf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 30 18:22:00 2007 +0000

    fix cut'n'paste errors for the tooltip colors and use new color enum
    
    2007-07-30  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (color_button_clicked_cb): fix cut'n'paste errors
        for the tooltip colors and use new color enum
    
        * data/appearance.glade: repair the mess glade3 made of the file
    
    2007-07-30  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_color_scheme_parse),
        (gnome_theme_color_scheme_equal):
        * gnome-theme-info.h: add symbolic colors enum and use it
    
    svn path=/trunk/; revision=7936

 capplets/appearance/ChangeLog             |   7 +
 capplets/appearance/appearance-style.c    |  58 +-
 capplets/appearance/data/appearance.glade | 929 +++++++++++++++++-------------
 capplets/common/ChangeLog                 |   6 +
 capplets/common/gnome-theme-info.c        |  30 +-
 capplets/common/gnome-theme-info.h        |  12 +
 6 files changed, 605 insertions(+), 437 deletions(-)

commit e82c2b596e3400f16948e094d18ba76b0d03ee0b
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jul 30 16:59:41 2007 +0000

    Add missing '\n'.
    
    2007-07-30  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (color_button_clicked_cb): Add missing '\n'.
    
    svn path=/trunk/; revision=7935

 capplets/appearance/ChangeLog          | 4 ++++
 capplets/appearance/appearance-style.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a215c9db040764ed56113cb33427388fea5f9558
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 30 16:54:37 2007 +0000

    use our custom cell renderer for metathemes, too, so the previews don't
    
    2007-07-30  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init):
        * data/appearance.glade: use our custom cell renderer for metathemes,
        too, so the previews don't get shaded (bug #461198)
    
    svn path=/trunk/; revision=7934

 capplets/appearance/ChangeLog             |  6 ++++++
 capplets/appearance/appearance-themes.c   | 21 +++++++++++++++++++--
 capplets/appearance/data/appearance.glade |  2 --
 3 files changed, 25 insertions(+), 4 deletions(-)

commit 12faf7f40e5bdbf2ec5fa29d783e0c1db66eb393
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jul 30 16:49:28 2007 +0000

    Add tooltip foreground and background colours to the list of recognised
    
    2007-07-30  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (update_color_buttons_from_string),
        (check_color_schemes_enabled), (color_button_clicked_cb),
        (style_init):
        * data/appearance.glade:
    
        Add tooltip foreground and background colours to the list of recognised
        symbolic colours.
    
    2007-07-30  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-info.c: (gnome_theme_color_scheme_parse): Add tooltip foreground
        and background colours to the list of recognised symbolic colours.
    
    svn path=/trunk/; revision=7933

 capplets/appearance/ChangeLog             |   11 +
 capplets/appearance/appearance-style.c    |   22 +-
 capplets/appearance/data/appearance.glade | 1073 +++++++++++++----------------
 capplets/common/ChangeLog                 |    5 +
 capplets/common/gnome-theme-info.c        |   14 +-
 5 files changed, 524 insertions(+), 601 deletions(-)

commit 383545e6889d99f0dacb7afeccec578e59120e08
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Jul 30 14:01:49 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7932

 po/ChangeLog |   4 ++
 po/es.po     | 182 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 95 insertions(+), 91 deletions(-)

commit 498a372d64fd68329fce241a9d6a29324e380061
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Mon Jul 30 07:56:34 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7931

 po/ChangeLog |   4 ++
 po/th.po     | 210 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 110 insertions(+), 104 deletions(-)

commit ebff83989186bb618aad561e5fd1898c6db2c00a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 29 20:21:10 2007 +0000

    default to showing the background tab if wallpapers were given on the
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main): default to showing the background tab
        if wallpapers were given on the command line
    
    svn path=/trunk/; revision=7930

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/appearance-main.c | 4 ++++
 2 files changed, 9 insertions(+)

commit 59e5742370c2ec526f9923e4e3b691b039619c3d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 29 18:56:15 2007 +0000

    add %F to the exec line so external programs like epiphany can set the
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * data/gnome-appearance-properties.desktop.in.in: add %F to the exec
        line so external programs like epiphany can set the background (bug
        #456337)
    
    svn path=/trunk/; revision=7929

 capplets/appearance/ChangeLog                                      | 6 ++++++
 capplets/appearance/data/gnome-appearance-properties.desktop.in.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit d23fb65eb699f2d9bca3a81b2e78adab4ade911d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 29 18:20:31 2007 +0000

    only create the custom theme entry when changes are made, and delete it
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * data/appearance.glade:
        * appearance-themes.c: (theme_custom_cb):
        * theme-save.c: (save_dialog_response): only create the custom theme
        entry when changes are made, and delete it when the theme is saved.
        These changes obsolete the requirement for a modal details window.
    
    svn path=/trunk/; revision=7928

 capplets/appearance/ChangeLog             | 8 ++++++++
 capplets/appearance/appearance-themes.c   | 4 ----
 capplets/appearance/data/appearance.glade | 1 -
 capplets/appearance/theme-save.c          | 8 +++++++-
 4 files changed, 15 insertions(+), 6 deletions(-)

commit 11cd98e2d11915e9d33efafc92bbc57b4d46ef14
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jul 29 17:45:51 2007 +0000

    Don't store the cell renderer in AppearanceData, it is only needed by
    
    2007-07-29  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.h:
        * appearance-desktop.c: (desktop_init):
        Don't store the cell renderer in AppearanceData, it is only needed by
        desktop_init().
    
    svn path=/trunk/; revision=7927

 capplets/appearance/ChangeLog            |  7 +++++++
 capplets/appearance/appearance-desktop.c | 12 +++++-------
 capplets/appearance/appearance.h         |  1 -
 3 files changed, 12 insertions(+), 8 deletions(-)

commit a316e82cccf5448d9aba722fb2988e19191e04ab
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 29 17:26:47 2007 +0000

    Expand check for empty metatheme colour scheme to include blank colour
    
    2007-07-29  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme): Expand check for empty
        metatheme colour scheme to include blank colour scheme strings.
    
    svn path=/trunk/; revision=7926

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0921b627db635f1afb11b13e8e76a8e97985a654
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 29 17:23:02 2007 +0000

    remove spurious AT desktop entries (bug #444787)
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: remove spurious AT desktop entries (bug #444787)
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * default-applications-accessibility.desktop.in.in:
        * gnome-at-mobility.desktop.in.in:
        * gnome-at-visual.desktop.in.in: remove spurious desktop entries
        (bug #444787)
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in:
        * POTFILES.skip: remove spurious AT desktop entries
    
    svn path=/trunk/; revision=7925

 ChangeLog                                                 |  4 ++++
 capplets/default-applications/ChangeLog                   |  8 ++++++++
 capplets/default-applications/Makefile.am                 |  7 +------
 .../default-applications-accessibility.desktop.in.in      | 15 ---------------
 .../default-applications/gnome-at-mobility.desktop.in.in  | 15 ---------------
 .../default-applications/gnome-at-visual.desktop.in.in    | 15 ---------------
 configure.in                                              |  3 ---
 po/ChangeLog                                              |  5 +++++
 po/POTFILES.in                                            |  3 ---
 po/POTFILES.skip                                          |  3 ---
 10 files changed, 18 insertions(+), 60 deletions(-)

commit e831657b38b21e71d5f520e9321605d7abfbb850
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 29 16:17:44 2007 +0000

    cope with unset GConf keys, and group GConf notifications
    
    2007-07-29  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_message_area_update), (themes_init):
        cope with unset GConf keys, and group GConf notifications
    
    svn path=/trunk/; revision=7924

 capplets/appearance/ChangeLog           |  5 +++
 capplets/appearance/appearance-themes.c | 79 +++++++++++++++------------------
 2 files changed, 41 insertions(+), 43 deletions(-)

commit ad496d45ae5f1269df9c4b5b3cc1f2f00a5a6542
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jul 29 15:37:22 2007 +0000

    _Really_ only show background/font suggestions if they haven't already
    
    2007-07-29  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-themes.c: (theme_message_area_response_cb),
        (theme_message_area_update), (theme_selection_changed_cb),
        (background_or_font_changed), (themes_init):
        _Really_ only show background/font suggestions if they haven't
        already been applied.
    
    svn path=/trunk/; revision=7923

 capplets/appearance/ChangeLog           |  8 ++++++++
 capplets/appearance/appearance-themes.c | 36 ++++++++++++++++++++++++---------
 2 files changed, 35 insertions(+), 9 deletions(-)

commit 2f8351bca7ca3af14c072b316e322f648e4f003f
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jul 29 14:51:59 2007 +0000

    Only show background/font suggestions if they haven't already been
    
    2007-07-29  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-themes.c: (theme_message_area_response_cb),
        (theme_message_area_update), (theme_selection_changed_cb):
        Only show background/font suggestions if they haven't already
        been applied.
    
    svn path=/trunk/; revision=7922

 capplets/appearance/ChangeLog           |  7 ++++
 capplets/appearance/appearance-themes.c | 68 ++++++++++++++++++++++-----------
 2 files changed, 52 insertions(+), 23 deletions(-)

commit 35872177c186ca0eef3d8b6962567cad47841b69
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jul 29 13:56:10 2007 +0000

    Added controls for applying suggested backgrounds and/or fonts from
    
    2007-07-29  Denis Washington  <denisw@svn.gnome.org>
    
        * data/appearance.glade:
        * appearance-themes.c: (theme_message_area_response_cb),
        (theme_message_area_update), (theme_selection_changed_cb),
        (themes_init), (themes_shutdown):
        * gedit-message-area.[ch]:
        * theme-util.h:
        Added controls for applying suggested backgrounds and/or fonts from
        metathemes. Copied over some code from gedit for the message area
        (GeditMessageArea).
    
        * Makefile.am:
        Added gedit-message-area.[ch].
    
    svn path=/trunk/; revision=7921

 capplets/appearance/ChangeLog             |  15 +
 capplets/appearance/Makefile.am           |   2 +
 capplets/appearance/appearance-themes.c   | 136 +++++++-
 capplets/appearance/appearance.h          |   4 +
 capplets/appearance/data/appearance.glade |  37 +-
 capplets/appearance/gedit-message-area.c  | 538 ++++++++++++++++++++++++++++++
 capplets/appearance/gedit-message-area.h  | 129 +++++++
 capplets/appearance/theme-util.h          |   3 +
 8 files changed, 848 insertions(+), 16 deletions(-)

commit 23c161aa35e9169c9df58946157c453116da1dbb
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 29 13:05:29 2007 +0000

    Prevent some memory leaks
    
    2007-07-29  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (cursor_theme_sort_func), (prepare_list),
        (style_init): Prevent some memory leaks
    
    2007-07-29  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set):
        * gtkrc-utils.c: (gtkrc_get_details), (gtkrc_get_color_scheme):
    
        Prevent some memory leaks
    
    svn path=/trunk/; revision=7920

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/appearance-style.c | 26 +++++++++++++++++++-------
 capplets/common/ChangeLog              |  7 +++++++
 capplets/common/gnome-theme-apply.c    |  1 +
 capplets/common/gtkrc-utils.c          |  7 +++++++
 5 files changed, 39 insertions(+), 7 deletions(-)

commit 930245a60b32dd86142d0e183834b21fb0c7f6ac
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 29 11:03:05 2007 +0000

    - Fix theme installation (free called before last last use of a string) -
    
    2007-07-29  Thomas Wood  <thos@gnome.org>
    
        * theme-installer.c: (file_theme_type), (gnome_theme_install_real):
        - Fix theme installation (free called before last last use of a string)
        - Update icon cache when installing icon themes (closes bug 355486)
    
    svn path=/trunk/; revision=7919

 capplets/appearance/ChangeLog         |  6 ++++++
 capplets/appearance/theme-installer.c | 20 ++++++++++++++++++--
 2 files changed, 24 insertions(+), 2 deletions(-)

commit d9683907b5bf9d1fd6d2c44dafe6307be08fba6a
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jul 29 10:05:54 2007 +0000

    Fix mnemonics and Customize Theme window title. Closes bug 461255.
    
    2007-07-29  Thomas Wood  <thos@gnome.org>
    
        * data/appearance.glade: Fix mnemonics and Customize Theme window title.
        Closes bug 461255.
    
    svn path=/trunk/; revision=7918

 capplets/appearance/ChangeLog             |  5 +++++
 capplets/appearance/data/appearance.glade | 15 ++++++++++++---
 2 files changed, 17 insertions(+), 3 deletions(-)

commit 6f05406b2f9451ad7400943f82a20be3bf0972d8
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Sun Jul 29 09:22:28 2007 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=7917

 po/oc.po | 27 +++++++++++++--------------
 1 file changed, 13 insertions(+), 14 deletions(-)

commit c80e878eb2a3348d8c4b932b099e51525550e492
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jul 28 15:50:32 2007 +0000

    update to match theme callback signature; invoke_monitors looks icky,
    
    2007-07-28  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-method.c: (do_close), (do_unlink), (invoke_monitors),
        (theme_changed_callback), (vfs_module_init): update to match theme
        callback signature; invoke_monitors looks icky, though (the uri arg
        was ignored)
    
    svn path=/trunk/; revision=7916

 vfs-methods/themus/ChangeLog      |  7 +++
 vfs-methods/themus/theme-method.c | 89 +++++++++++++++++++++------------------
 2 files changed, 56 insertions(+), 40 deletions(-)

commit 63f30c42f46c29aa50947f743c53b016a2d15390
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jul 28 14:15:48 2007 +0000

    get rid of a number of unnecessary casts and the gtk version checks since
    
    2007-07-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_view_tooltip_cb), (desktop_init):
        * data/appearance.glade: get rid of a number of unnecessary casts and the
        gtk version checks since we now depend on 2.11.6 unconditionally
    
    svn path=/trunk/; revision=7915

 capplets/appearance/ChangeLog             |  6 +++++
 capplets/appearance/appearance-desktop.c  | 44 +++++++++----------------------
 capplets/appearance/data/appearance.glade |  1 +
 3 files changed, 20 insertions(+), 31 deletions(-)

commit 2834baf12779921092f6de9da6bbbc72c198cdc9
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Jul 28 13:53:15 2007 +0000

    Read a cursor theme's name from it's index.theme file if it has one.
    
    2007-07-28  Denis Washington  <denisw@svn.gnome.org>
    
        * common/gnome-theme-info.h:
        * common/gnome-theme-info.c: (look_in_cursor_theme),
        (gnome_theme_cursor_info_free):
        Read a cursor theme's name from it's index.theme file if it has one.
    
        * appearance/appearance-style.c: (prepare_list):
        Show readable_name in cursor theme list instead of name.
    
    svn path=/trunk/; revision=7914

 capplets/appearance/ChangeLog          |  5 +++++
 capplets/appearance/appearance-style.c |  4 +---
 capplets/common/ChangeLog              |  7 +++++++
 capplets/common/gnome-theme-info.c     | 26 ++++++++++++++++++++++++--
 capplets/common/gnome-theme-info.h     |  4 +---
 5 files changed, 38 insertions(+), 8 deletions(-)

commit b608a53acb4664df88181a105af1b8ac01a65023
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Jul 28 13:05:59 2007 +0000

    Prevent cursor themes from being recognized as icon themes.
    
    2007-07-28  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-theme-info.c: (read_icon_theme):
        Prevent cursor themes from being recognized as icon themes.
    
    svn path=/trunk/; revision=7913

 capplets/common/ChangeLog          |  5 +++++
 capplets/common/gnome-theme-info.c | 10 ++++++++++
 2 files changed, 15 insertions(+)

commit 0660969a64ad08cc0f29f73e0cc8109b9cec0949
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 28 12:47:53 2007 +0000

    Don't draw the selection indicator if width is -1
    
    2007-07-28  Thomas Wood  <thos@gnome.org>
    
        * wp-cellrenderer.c: (cell_renderer_wallpaper_render): Don't draw the
        selection indicator if width is -1
    
    svn path=/trunk/; revision=7912

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/wp-cellrenderer.c | 4 ++++
 2 files changed, 9 insertions(+)

commit 1c73b3c809bc94eba37ff1a619f50a8de5003b7b
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 28 12:32:27 2007 +0000

    c89 fix and add 1px border between selection indicator and contents
    
    2007-07-28  Thomas Wood  <thos@gnome.org>
    
        * wp-cellrenderer.c: (cell_renderer_wallpaper_render): c89 fix and add 1px
        border between selection indicator and contents
    
    svn path=/trunk/; revision=7911

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/wp-cellrenderer.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit c4b82d271658e117f227b4f9041d10324f93665a
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 28 12:25:32 2007 +0000

    Use cairo to draw the cell renderer selection
    
    2007-07-28  Thomas Wood  <thos@gnome.org>
    
        * wp-cellrenderer.c: (cell_renderer_wallpaper_render): Use cairo to draw the
        cell renderer selection
    
    svn path=/trunk/; revision=7910

 capplets/appearance/ChangeLog         |  5 +++++
 capplets/appearance/wp-cellrenderer.c | 31 +++++++++++++++++++++++--------
 2 files changed, 28 insertions(+), 8 deletions(-)

commit ef3bb7e92b14fb8cfc6ce4376a4287f833ed6acc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jul 28 11:38:06 2007 +0000

    fix cell renderer state logic to not be always on
    
    2007-07-28  Jens Granseuer  <jensgr@gmx.net>
    
        * wp-cellrenderer.c: (cell_renderer_wallpaper_render):
        * wp-cellrenderer.h: fix cell renderer state logic to not be always on
    
    svn path=/trunk/; revision=7909

 capplets/appearance/ChangeLog         |  5 ++++
 capplets/appearance/wp-cellrenderer.c | 46 +++++++++++++++++++++++++++--------
 capplets/appearance/wp-cellrenderer.h | 23 ++++++++++++++++--
 3 files changed, 62 insertions(+), 12 deletions(-)

commit f437b8f99df8a64c5f09272f229b7b7d53cd9722
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jul 28 10:53:57 2007 +0000

    Add missing include
    
    2007-07-28  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-info.h: Add missing include
    
    2007-07-28  Thomas Wood  <thos@gnome.org>
    
        * theme-util.c: Add missing include
    
    svn path=/trunk/; revision=7906

 capplets/appearance/ChangeLog      | 4 ++++
 capplets/appearance/theme-util.c   | 3 ++-
 capplets/common/ChangeLog          | 4 ++++
 capplets/common/gnome-theme-info.h | 1 +
 4 files changed, 11 insertions(+), 1 deletion(-)

commit 323bb9f54db56caacfe4e5086d7c0bc366266df4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jul 27 19:42:33 2007 +0000

    constify drag'n'drop data, remove unused variable, use G_N_ELEMENTS where
    
    2007-07-27  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): constify drag'n'drop data, remove
        unused variable, use G_N_ELEMENTS where applicable
    
    svn path=/trunk/; revision=7905

 capplets/appearance/ChangeLog           |  5 +++++
 capplets/appearance/appearance-themes.c | 12 +++++-------
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 2e3a38749e13ea0aa432321c7ae255b8c0f97449
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jul 27 18:04:52 2007 +0000

    remove workarounds for initialization problems in early versions of the
    
    2007-07-27  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init, theme_postinit): remove workarounds
        for initialization problems in early versions of the capplet
    
    svn path=/trunk/; revision=7904

 capplets/appearance/ChangeLog           |  5 +++++
 capplets/appearance/appearance-themes.c | 27 +++++++++++----------------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit b6c8536e3ec8205386fd7da15d149478ea0bb421
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri Jul 27 16:25:40 2007 +0000

    Don't try to install mouse-cursor-*.png as these files are not in mouse/
    
    2007-07-27  Denis Washington  <denisw@svn.gnome.org>
    
        * Makefile.am:
        Don't try to install mouse-cursor-*.png as these files are not in mouse/
        anymore.
    
    svn path=/trunk/; revision=7903

 capplets/mouse/ChangeLog   | 6 ++++++
 capplets/mouse/Makefile.am | 6 +-----
 2 files changed, 7 insertions(+), 5 deletions(-)

commit fcfef66efd8000184d1d0f6171b3a16b64b2edaa
Author: Denis Washington <dwashington@gmx.net>
Date:   Fri Jul 27 14:07:14 2007 +0000

    Implement drag-and drop theme installation.
    
    2007-07-27  Denis Washington  <dwashington@gmx.net>
    
        * appearanc-themes.c: (appearance_window_drag_data_received_cb),
        (themes_init):
        Implement drag-and drop theme installation.
    
    svn path=/trunk/; revision=7902

 capplets/appearance/ChangeLog           |  6 ++++
 capplets/appearance/appearance-themes.c | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

commit 2c3bcb88101dc90bc6e8f4ddde8a871837af1cfc
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri Jul 27 12:45:28 2007 +0000

    Moved to ../appearance/data/.
    
    2007-07-27  Denis Washington  <denisw@svn.gnome.org>
    
        * mouse/cursor-*.pcf:
        * mouse/mouse-cursor-*.png:
        Moved to ../appearance/data/.
    
        * appearance/data/cursor-*.pcf:
        * appearance/data/mouse-cursor-*.png:
        Cursor fonts and thumbnails moved from gnome-mouse-properties.
    
        * appearance/data/Makefile.am:
        Install the new files.
    
    svn path=/trunk/; revision=7901

 capplets/appearance/ChangeLog                          |   9 +++++++++
 capplets/appearance/data/Makefile.am                   |  13 ++++++++++++-
 capplets/appearance/data/cursor-large-white.pcf        | Bin 0 -> 18636 bytes
 capplets/appearance/data/cursor-large.pcf              | Bin 0 -> 17432 bytes
 capplets/appearance/data/cursor-white.pcf              | Bin 0 -> 13848 bytes
 capplets/appearance/data/mouse-cursor-normal-large.png | Bin 0 -> 251 bytes
 capplets/appearance/data/mouse-cursor-normal.png       | Bin 0 -> 241 bytes
 capplets/appearance/data/mouse-cursor-white-large.png  | Bin 0 -> 268 bytes
 capplets/appearance/data/mouse-cursor-white.png        | Bin 0 -> 221 bytes
 capplets/mouse/ChangeLog                               |   8 +++++++-
 capplets/mouse/cursor-large-white.pcf                  | Bin 18636 -> 0 bytes
 capplets/mouse/cursor-large.pcf                        | Bin 17432 -> 0 bytes
 capplets/mouse/cursor-white.pcf                        | Bin 13848 -> 0 bytes
 capplets/mouse/mouse-cursor-normal-large.png           | Bin 251 -> 0 bytes
 capplets/mouse/mouse-cursor-normal.png                 | Bin 241 -> 0 bytes
 capplets/mouse/mouse-cursor-white-large.png            | Bin 268 -> 0 bytes
 capplets/mouse/mouse-cursor-white.png                  | Bin 221 -> 0 bytes
 17 files changed, 28 insertions(+), 2 deletions(-)

commit bb0366d1a20e74c7ea624d36bd28ae30f96043a3
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Fri Jul 27 01:33:43 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7900

 po/ChangeLog |   4 +
 po/th.po     | 330 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 161 insertions(+), 173 deletions(-)

commit 307679f2e2358471a0277ce96c06cb35774d8541
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 26 21:13:45 2007 +0000

    connect to the GtkTreeViewSelection::changed signal instead of
    
    2007-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_tree_view_widget_changed),
        (gconf_peditor_new_tree_view): connect to the GtkTreeViewSelection::changed
        signal instead of GtkTreeView::cursor_changed, so we actually get notified
        whenever the selection changes
    
    svn path=/trunk/; revision=7899

 capplets/common/ChangeLog               | 7 +++++++
 capplets/common/gconf-property-editor.c | 8 +++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 7af0f3f05b6fa49e8901bafc448075ace9bd883d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 26 19:50:20 2007 +0000

    move some utility code over to common
    
    2007-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_color_buttons_from_string):
        * appearance-themes.c: (theme_load_from_gconf), (theme_is_equal):
        * theme-util.c: (theme_find_in_model):
        * theme-util.h: move some utility code over to common
    
    svn path=/trunk/; revision=7898

 capplets/appearance/ChangeLog | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit abd1b52762262364c0b3a6799e59f3705eb784f3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 26 19:48:14 2007 +0000

    move some utility code here from appearance
    
    2007-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme),
        (gnome_theme_color_scheme_parse), (gnome_theme_color_scheme_equal):
        * gnome-theme-info.h:
        * gtkrc-utils.c: (str_nequal), (gtkrc_get_color_scheme),
        (gtkrc_get_color_scheme_for_theme):
        * gtkrc-utils.h: move some utility code here from appearance
    
        * gnome-theme-apply.c: (gnome_meta_theme_set): when applying a metatheme,
        check whether to set/unset the color scheme gconf key (should fix bug
        #421866)
    
    svn path=/trunk/; revision=7897

 capplets/appearance/ChangeLog           |  9 ++++
 capplets/appearance/appearance-style.c  |  2 +-
 capplets/appearance/appearance-themes.c | 13 ++----
 capplets/appearance/theme-util.c        | 63 -------------------------
 capplets/appearance/theme-util.h        |  2 -
 capplets/common/ChangeLog               | 13 ++++++
 capplets/common/gnome-theme-apply.c     | 19 +++++++-
 capplets/common/gnome-theme-info.c      | 81 +++++++++++++++++++++++++++------
 capplets/common/gnome-theme-info.h      |  5 ++
 capplets/common/gtkrc-utils.c           | 39 +++++++++++++++-
 capplets/common/gtkrc-utils.h           | 22 ++++++++-
 11 files changed, 174 insertions(+), 94 deletions(-)

commit 7eefc853d171074e0104098642d06b3696d274c3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 26 19:04:44 2007 +0000

    really unset the gconf key when reverting colors
    
    2007-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_color_buttons_from_settings),
        (color_scheme_defaults_button_clicked_cb): really unset the gconf key
        when reverting colors
    
    svn path=/trunk/; revision=7896

 capplets/appearance/ChangeLog          | 6 ++++++
 capplets/appearance/appearance-style.c | 7 ++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 445b2db998d5866d2f3d098b616fd103e9cf8512
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Jul 26 18:43:34 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7895

 po/es.po | 267 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 94 insertions(+), 173 deletions(-)

commit 7371cfc8954295bd52031ce0c346863e95647179
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Thu Jul 26 18:37:38 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7894

 po/es.po | 374 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 185 insertions(+), 189 deletions(-)

commit e91260a58baea4f49c238ed83145c436292f83c7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 26 18:21:05 2007 +0000

    make color scheme comparisons work much more reliably
    
    2007-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_color_buttons_from_string),
        (update_color_buttons_from_settings):
        * appearance-themes.c: (theme_is_equal):
        * theme-util.c: (theme_parse_color_scheme),
        (theme_color_scheme_equal):
        * theme-util.h: make color scheme comparisons work much more reliably
    
    svn path=/trunk/; revision=7893

 capplets/appearance/ChangeLog           |  9 +++++
 capplets/appearance/appearance-style.c  | 45 +++--------------------
 capplets/appearance/appearance-themes.c | 12 +++----
 capplets/appearance/theme-util.c        | 63 +++++++++++++++++++++++++++++++++
 capplets/appearance/theme-util.h        |  2 ++
 5 files changed, 85 insertions(+), 46 deletions(-)

commit 0b3d3935ddb22e82190de8886d604daf18a66e4d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 26 17:37:04 2007 +0000

    add a comment for translators (bug #460506)
    
    2007-07-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-item.c: (gnome_wp_item_update_description): add a comment
        for translators (bug #460506)
    
    svn path=/trunk/; revision=7892

 capplets/appearance/ChangeLog       |  5 +++++
 capplets/appearance/gnome-wp-item.c | 22 +++++++++++++---------
 2 files changed, 18 insertions(+), 9 deletions(-)

commit e7c179fa9486181a88bae860dda12a34418bcbb8
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Jul 26 17:10:12 2007 +0000

    Fixed a bug introduced in my last commit which caused to make the button
    
    2007-07-26  Denis Washington <denisw@svn.gnome.org>
    
        * data/appearance.glade:
        Fixed a bug introduced in my last commit which caused to make the
        button box appear above the cursors list in the theme details window.
    
        * appearance-style.c: (cursor_theme_sort_func), (prepare_list):
        Make "Default Pointer" always appear as first item in the list.
    
    svn path=/trunk/; revision=7891

 capplets/appearance/ChangeLog             |  9 +++++++++
 capplets/appearance/appearance-style.c    | 28 ++++++++++++++++++++++++++++
 capplets/appearance/data/appearance.glade |  7 +++++--
 3 files changed, 42 insertions(+), 2 deletions(-)

commit 78b4743519ed3499edd35c8683b3c77ae53fd864
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Jul 26 16:15:35 2007 +0000

    Re-add basic support for cursor themes for X servers without the Xcursor
    
    2007-07-26  Denis Washington <denisw@svn.gnome.org>
    
        * appearance/data/appearance.glade:
        * appearance/appearance-style.c:
        * appearance/appearance-themes.c: (theme_load_from_gconf),
        (cursor_theme_changed), (prepare_list), (style_init):
        * appearance/theme-save.c: (write_theme_to_disk):
        * appearance/theme-util.h:
        * common/gnome-theme-apply.c: (gnome_meta_theme_set):
        * common/gnome-theme-info.c:
    (add_common_icon_theme_dir_monitor),
        (gnome_theme_init):
        * common/gnome-theme-info.h:
        Re-add basic support for cursor themes for X servers without the Xcursor
        extension, like the one on Solaris.
    
    svn path=/trunk/; revision=7890

 capplets/appearance/ChangeLog             |  11 +++
 capplets/appearance/appearance-style.c    |  23 ++++++
 capplets/appearance/appearance-themes.c   |   6 +-
 capplets/appearance/data/appearance.glade |  40 +++++++++-
 capplets/appearance/theme-save.c          |   4 +
 capplets/appearance/theme-util.h          |   1 +
 capplets/common/ChangeLog                 |   9 +++
 capplets/common/gnome-theme-apply.c       |  10 +++
 capplets/common/gnome-theme-info.c        | 126 +++++++++++++++++++++++++++++-
 capplets/common/gnome-theme-info.h        |   5 ++
 10 files changed, 230 insertions(+), 5 deletions(-)

commit 03b9c9b1e1300de25ca309bf021c2f8b7bdbf78e
Author: Denis Washington <dwashington@gmx.net>
Date:   Thu Jul 26 11:19:04 2007 +0000

    Remove the Cursors tab as it's functionality is covered by the apperance
    
    2007-05-26  Denis Washington  <dwashington@gmx.net>
    
        * gnome-mouse-properties.glade:
        * gnome-mouse-poperties.c:
        Remove the Cursors tab as it's functionality is covered by the apperance
        capplet now.
    
    svn path=/trunk/; revision=7889

 capplets/mouse/ChangeLog                    |   7 +
 capplets/mouse/Makefile.am                  |   9 +-
 capplets/mouse/gnome-mouse-properties.c     | 568 ----------------------------
 capplets/mouse/gnome-mouse-properties.glade | 330 ----------------
 4 files changed, 8 insertions(+), 906 deletions(-)

commit 8f718f8d28ac46fbbb9c18dd8e28e3ba26b897c6
Author: Funda Wang <fwang@src.gnome.org>
Date:   Thu Jul 26 09:50:27 2007 +0000

    Updated g-c-c zh_CN translation
    
    svn path=/trunk/; revision=7888

 po/ChangeLog |   4 +
 po/zh_CN.po  | 665 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 423 insertions(+), 246 deletions(-)

commit 0dd07c720faa17a31bff1f1b065088228cc31547
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Thu Jul 26 07:45:45 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7887

 po/ChangeLog |  4 ++++
 po/th.po     | 41 +++++++++++++++++++++++++----------------
 2 files changed, 29 insertions(+), 16 deletions(-)

commit 2a205167269a15cd7f363b3e22867cfa17776789
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Jul 25 20:10:16 2007 +0000

    Patch by: Dennis Cranston <dennis_cranston@yahoo.com>
    
    2007-07-25  Thomas Wood  <thos@gnome.org>
    
        Patch by:  Dennis Cranston <dennis_cranston@yahoo.com>
    
        * gnome-wp-item.c: (gnome_wp_item_update_description):Simplify tooltip
        descriptions.  Change "Location" to "Folder".  Do not overuse bold text.
        Closes bug 460111.
    
    svn path=/trunk/; revision=7886

 capplets/appearance/ChangeLog       |  9 +++++++++
 capplets/appearance/gnome-wp-item.c | 10 ++++------
 2 files changed, 13 insertions(+), 6 deletions(-)

commit 016dabda522095dae837c488f56ea22871477039
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jul 25 17:37:00 2007 +0000

    Implement saving of the cursor theme name in metathemes, and add a
    
    2007-07-25  Denis Washington <denisw@svn.gnome.org>
    
        * appearance-style.c: (prepare_list):
        * appearance-themes.c: (theme_load_from_gconf):
        * theme-save.c: (write_theme_to_disk):
        Implement saving of the cursor theme name in metathemes, and add a
        "Default Pointer" option to the cursor theme list in Theme Details.
    
    svn path=/trunk/; revision=7885

 capplets/appearance/ChangeLog           | 8 ++++++++
 capplets/appearance/appearance-style.c  | 9 +++++++++
 capplets/appearance/appearance-themes.c | 9 +++++++++
 capplets/appearance/theme-save.c        | 9 +++++++++
 4 files changed, 35 insertions(+)

commit 2126b49c6ee6dda1308d3d85265f9227c78e2dc4
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed Jul 25 17:31:25 2007 +0000

    ChangeLog whitespace fix.
    
    svn path=/trunk/; revision=7884

 capplets/common/ChangeLog | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit ce7f03bdc37f82f6084ad2b1b7a5072b569d4f9a
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jul 25 17:30:21 2007 +0000

    Add support for cursor theme names saved in metathemes.
    
    2007-07-25  Denis Washington <denisw@svn.gnome.org>
    
      * gnome-theme-info.h:
      * gnome-theme-info.c: (gnome_theme_read_meta_theme):
      * gnome-theme-apply.c: (gnome_meta_theme_set):
      Add support for cursor theme names saved in metathemes.
    
    svn path=/trunk/; revision=7883

 capplets/common/ChangeLog           |  7 +++++++
 capplets/common/gnome-theme-apply.c | 13 ++++++++++++-
 capplets/common/gnome-theme-info.c  | 16 ++++++++++++++++
 capplets/common/gnome-theme-info.h  |  2 ++
 4 files changed, 37 insertions(+), 1 deletion(-)

commit 222d100c2d3a7f2e7fc98d09b206c56fc1208e03
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jul 25 15:43:51 2007 +0000

    Fix abug introduced by the changes in revision 7856 which caused cursor
    
    2007-07-25  Denis Washington <denisw@svn.gnome.org>
    
        * gnome-theme-info.c: (add_common_icon_theme_dir_monitor),
        (look_for_cursor_theme):
        Fix abug introduced by the changes in revision 7856 which caused
        cursor themes to not being found anymore.
    
    svn path=/trunk/; revision=7882

 capplets/common/ChangeLog          | 7 +++++++
 capplets/common/gnome-theme-info.c | 5 +++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit e4587d4867a25ea9d16f680c4fcba288dc86c589
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Wed Jul 25 08:10:43 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7881

 po/ChangeLog |    4 +
 po/th.po     | 2030 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 1016 insertions(+), 1018 deletions(-)

commit f289a73a3f09a1c567e7ef0f98e4cf549bff2c3e
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Jul 24 21:36:52 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7880

 po/ChangeLog |  4 ++++
 po/es.po     | 64 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 38 insertions(+), 30 deletions(-)

commit 8b934e5ed46df66bf9bce0f6dcdf0f024537b056
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 24 20:34:23 2007 +0000

    when reading current settings from gconf, get the color scheme from the
    
    2007-07-24  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_load_from_gconf): when reading current
        settings from gconf, get the color scheme from the gtk theme if necessary
        to allow matching against themes retrieved via gnome-theme-info
    
    svn path=/trunk/; revision=7879

 capplets/appearance/ChangeLog           |  6 ++++++
 capplets/appearance/appearance-themes.c | 18 +++++++++++++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit bb650ba1521bc79885aee80a87f4d2928f076871
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jul 24 20:09:06 2007 +0000

    Add makefile
    
    2007-07-24  Thomas Wood  <thos@gnome.org>
    
        * data/Makefile.am: Add makefile
    
    svn path=/trunk/; revision=7878

 capplets/appearance/ChangeLog        |  4 +++
 capplets/appearance/data/Makefile.am | 48 ++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

commit e8de70ecd27ca0ee37c2751e620002261998bda6
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jul 24 20:06:56 2007 +0000

    Update for recent appearance re-organisation
    
    2007-07-24  Thomas Wood  <thos@gnome.org>
    
        * POTFILES.in: Update for recent appearance re-organisation
    
    svn path=/trunk/; revision=7877

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 9fe2ff04aa84c63d65709037398c35a9591d54c0
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jul 24 20:05:31 2007 +0000

    Update for recent appearance capplet re-organisation
    
    2007-07-24  Thomas Wood  <thos@gnome.org>
    
        * configure.in: Update for recent appearance capplet re-organisation
    
    svn path=/trunk/; revision=7876

 ChangeLog    | 4 ++++
 configure.in | 5 +++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit c8f9aee581422db703bb348424619ade69c162e8
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jul 24 19:54:51 2007 +0000

    Add a data sub-directory for non-code items
    
    2007-07-24  Thomas Wood  <thos@gnome.org>
    
        * data: Add a data sub-directory for non-code items
    
    svn path=/trunk/; revision=7875

 capplets/appearance/ChangeLog                      |    4 +
 capplets/appearance/Makefile.am                    |   42 +-
 capplets/appearance/appearance.glade               | 2672 --------------------
 capplets/appearance/data/appearance.glade          | 2672 ++++++++++++++++++++
 .../data/gnome-appearance-properties.desktop.in.in |   15 +
 .../data/gnome-theme-installer.desktop.in.in       |   17 +
 .../appearance/data/gnome-theme-package.xml.in     |    9 +
 .../appearance/data/gtk-theme-thumbnailing.png     |  Bin 0 -> 1764 bytes
 .../appearance/data/icon-theme-thumbnailing.png    |  Bin 0 -> 1167 bytes
 capplets/appearance/data/subpixel-bgr.png          |  Bin 0 -> 125 bytes
 capplets/appearance/data/subpixel-rgb.png          |  Bin 0 -> 125 bytes
 capplets/appearance/data/subpixel-vbgr.png         |  Bin 0 -> 138 bytes
 capplets/appearance/data/subpixel-vrgb.png         |  Bin 0 -> 138 bytes
 capplets/appearance/data/theme-thumbnailing.png    |  Bin 0 -> 5114 bytes
 .../appearance/data/window-theme-thumbnailing.png  |  Bin 0 -> 2183 bytes
 .../gnome-appearance-properties.desktop.in.in      |   15 -
 .../appearance/gnome-theme-installer.desktop.in.in |   17 -
 capplets/appearance/gnome-theme-package.xml.in     |    9 -
 capplets/appearance/gtk-theme-thumbnailing.png     |  Bin 1764 -> 0 bytes
 capplets/appearance/icon-theme-thumbnailing.png    |  Bin 1167 -> 0 bytes
 capplets/appearance/subpixel-bgr.png               |  Bin 125 -> 0 bytes
 capplets/appearance/subpixel-rgb.png               |  Bin 125 -> 0 bytes
 capplets/appearance/subpixel-vbgr.png              |  Bin 138 -> 0 bytes
 capplets/appearance/subpixel-vrgb.png              |  Bin 138 -> 0 bytes
 capplets/appearance/theme-thumbnailing.png         |  Bin 5114 -> 0 bytes
 capplets/appearance/window-theme-thumbnailing.png  |  Bin 2183 -> 0 bytes
 26 files changed, 2720 insertions(+), 2752 deletions(-)

commit 50718153a0f91a0189955499457d3e558ad563c3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jul 24 19:48:03 2007 +0000

    improve color scheme matching; simplify code; don't possibly unref cursor
    
    2007-07-24  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_color_buttons_from_settings),
        (prepare_list), (style_init): improve color scheme matching; simplify
        code; don't possibly unref cursor thumbs twice; remove redundant color
        scheme initialization
        * appearance.glade: make theme details window modal to prevent the
        user from editing non-custom themes
    
    svn path=/trunk/; revision=7874

 capplets/appearance/ChangeLog          |  9 +++++
 capplets/appearance/appearance-style.c | 70 +++++++++++++++-------------------
 capplets/appearance/appearance.glade   |  2 +-
 3 files changed, 40 insertions(+), 41 deletions(-)

commit 52edca17a11674e6b43d5162d9875df7b27fc308
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jul 24 16:53:20 2007 +0000

    eliminating up/down buttons in the layout list
    
    svn path=/trunk/; revision=7873

 capplets/keyboard/ChangeLog                        |   5 +
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  68 ++---------
 capplets/keyboard/gnome-keyboard-properties.glade  | 125 ++++++++-------------
 3 files changed, 61 insertions(+), 137 deletions(-)

commit 0b8909ef13d956128428ad48a61c70fb1a0a4750
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Jul 24 16:00:18 2007 +0000

    also use new icon in the window titlebar.
    
    2007-07-24  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-network-preferences.c: also use new icon in the window titlebar.
    
    svn path=/trunk/; revision=7872

 capplets/network/ChangeLog                   | 4 ++++
 capplets/network/gnome-network-preferences.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c5e00d965b5392e09c1690dbeb1a29f8d6ff35aa
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Tue Jul 24 09:24:26 2007 +0000

    Estonian translation update by Ivar Smolin.
    
    2007-07-24  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Estonian translation update by Ivar Smolin.
    
    svn path=/trunk/; revision=7871

 po/ChangeLog |  4 ++++
 po/et.po     | 76 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 42 insertions(+), 38 deletions(-)

commit b9f4021a467d187858a64a02acbe88450131cf76
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jul 23 23:23:42 2007 +0000

    implementing DND in the layouts list, b.g.o#351936
    
    svn path=/trunk/; revision=7870

 capplets/keyboard/ChangeLog                        |   5 +
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 168 +++++++++++++++------
 2 files changed, 131 insertions(+), 42 deletions(-)

commit 88b4dcb0e303e919e2b778abbb59c986db3a0a5c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 23 19:02:27 2007 +0000

    add a tooltip to the image button to make it accessible
    
    2007-07-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.glade: add a tooltip to the image button to make it
        accessible
    
    svn path=/trunk/; revision=7869

 capplets/about-me/ChangeLog            | 5 +++++
 capplets/about-me/gnome-about-me.glade | 1 +
 2 files changed, 6 insertions(+)

commit 7ea1e18d5c9c6c7157f722b253bf0641c7d92d2d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 23 18:43:37 2007 +0000

    bump all tooltips code to gtk 2.11.6
    
    2007-07-23  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init): bump all tooltips code to gtk
        2.11.6
    
    svn path=/trunk/; revision=7868

 capplets/appearance/ChangeLog            |  7 ++++++-
 capplets/appearance/appearance-desktop.c | 14 +++++++-------
 2 files changed, 13 insertions(+), 8 deletions(-)

commit 0e16486c799f80036b63ba1c5c883dc3a975e141
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jul 23 18:21:39 2007 +0000

    Use new GTK+ convenience API for icon view tooltips. (#455985)
    
    2007-07-12  Jens Granseuer  <jensgr@gmx.net>
    
            * appearance-desktop.c: Use new GTK+ convenience API for
            icon view tooltips.  (#455985)
    
    
    
    svn path=/trunk/; revision=7867

 ChangeLog                                |  4 ++++
 capplets/appearance/ChangeLog            |  5 +++++
 capplets/appearance/appearance-desktop.c | 35 ++++++++++++++++----------------
 configure.in                             |  2 +-
 4 files changed, 28 insertions(+), 18 deletions(-)

commit 95f4f84c5ac3956a45f38801b13d4470d28c526e
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Sat Jul 21 12:53:11 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7866

 po/ChangeLog |  4 ++++
 po/th.po     | 33 +++++++++++++++++----------------
 2 files changed, 21 insertions(+), 16 deletions(-)

commit 03f2879bce698a15cd5dcd2b2e56136e8b920790
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 19 09:54:51 2007 +0000

    fix last commit when building without gstreamer
    
    2007-07-19  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: fix last commit when building without gstreamer
    
    svn path=/trunk/; revision=7865

 ChangeLog    | 4 ++++
 configure.in | 4 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 3c5853ca3f08de10a9fdc92ec003aefbc0f986d8
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Wed Jul 18 17:30:34 2007 +0000

    Translation updated by Reinout van Schouwen.
    
    2007-07-18  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.
    
    svn path=/trunk/; revision=7864

 po/ChangeLog |    4 +
 po/nl.po     | 4676 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 2172 insertions(+), 2508 deletions(-)

commit 90a7b346825bcf473657ad7e8932464d07cb3e72
Author: Žygimantas Beručka <zygis@src.gnome.org>
Date:   Wed Jul 18 07:45:06 2007 +0000

    Updated Lithuanian translation.
    
    svn path=/trunk/; revision=7863

 po/ChangeLog |    4 +
 po/lt.po     | 3049 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1613 insertions(+), 1440 deletions(-)

commit a700b400233636e0ec5178b565e3e337487d4f39
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Wed Jul 18 04:25:01 2007 +0000

    updating for Punjabi by POST
    
    svn path=/trunk/; revision=7862

 po/pa.po | 1457 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 688 insertions(+), 769 deletions(-)

commit 97808ce919c8684d39bea45bbbf3af6079e67b0a
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Jul 17 15:29:00 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7861

 po/ChangeLog |   4 ++
 po/sv.po     | 219 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 118 insertions(+), 105 deletions(-)

commit dd9fd0ce00efdc3a60e185a89cb41deb4022e790
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Jul 16 16:08:23 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7860

 po/ChangeLog |   4 ++
 po/fi.po     | 232 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 152 insertions(+), 84 deletions(-)

commit b75a357795027c7b74e7a8d6bc493d9fd841d099
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 15 18:07:51 2007 +0000

    don't fail if gstreamer is not available, but simply skip the sound
    
    2007-07-15  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/Makefile.am:
        * configure.in: don't fail if gstreamer is not available, but simply
        skip the sound capplet (closes bug #456957)
    
    svn path=/trunk/; revision=7859

 ChangeLog            |  6 ++++++
 capplets/Makefile.am | 13 ++++++++-----
 configure.in         | 29 ++++++++++++++++-------------
 3 files changed, 30 insertions(+), 18 deletions(-)

commit 079b4de8bf781c7990b423ac0896dea85b4b1e57
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Jul 15 13:11:14 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7858

 po/ChangeLog |  4 ++++
 po/es.po     | 26 +++++++++++++++-----------
 2 files changed, 19 insertions(+), 11 deletions(-)

commit e4be3383a49c149d53063aa6d896794a15ef2654
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jul 14 13:18:02 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-07-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7857

 po/ChangeLog |   4 +
 po/nb.po     | 244 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 146 insertions(+), 102 deletions(-)

commit 2286497f8ede97b71dbe40a1798fbc364ecec2b4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jul 13 18:32:25 2007 +0000

    general cleanup and leak-plugging add cursor theme info
    
    2007-07-13  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gdk_pixbuf_from_xcursor_image),
        (look_for_cursor_theme), (add_common_icon_theme_dir_monitor),
        (gnome_theme_cursor_info_new): general cleanup and leak-plugging
        * gnome-theme-test.c: (main): add cursor theme info
    
    svn path=/trunk/; revision=7856

 capplets/common/ChangeLog          |   7 +++
 capplets/common/gnome-theme-info.c | 119 ++++++++++++++++---------------------
 capplets/common/gnome-theme-test.c |  30 +++++++---
 3 files changed, 82 insertions(+), 74 deletions(-)

commit a69632d6e423b15701573638a2d1d8a9c323b5fe
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Fri Jul 13 10:20:35 2007 +0000

    Estonian translation update by Ivar Smolin.
    
    2007-07-13  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Estonian translation update by Ivar Smolin.
    
    svn path=/trunk/; revision=7855

 po/ChangeLog |   4 +
 po/et.po     | 351 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 179 insertions(+), 176 deletions(-)

commit e62cc67971b714a44b792c9c271fc0995842fbbb
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:   Fri Jul 13 07:35:29 2007 +0000

    Fix crash when no cursor is specified in theme (fixes bug #455952).
    
    2007-07-13  Frederic Crozat  <fcrozat@mandriva.com>
    
            * gnome-theme-info.c: (look_for_cursor_theme):
            Fix crash when no cursor is specified in theme (fixes bug #455952).
    
    
    svn path=/trunk/; revision=7854

 capplets/common/ChangeLog          | 5 +++++
 capplets/common/gnome-theme-info.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 14ba88579a82ae8518a440d8b5ff19a161b92d0f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 12 20:52:15 2007 +0000

    add option to add wallpapers via the command line (closes bug #456337)
    
    2007-07-12  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_load_stuffs), (desktop_init),
        (desktop_shutdown):
        * appearance-desktop.h:
        * appearance-main.c: (main):
        * appearance.h: add option to add wallpapers via the command line
        (closes bug #456337)
    
    svn path=/trunk/; revision=7853

 capplets/appearance/ChangeLog            |  9 +++++++++
 capplets/appearance/appearance-desktop.c | 19 +++++++++++++++++--
 capplets/appearance/appearance-desktop.h |  2 +-
 capplets/appearance/appearance-main.c    | 11 ++++++++++-
 capplets/appearance/appearance.h         |  1 +
 5 files changed, 38 insertions(+), 4 deletions(-)

commit 17f843f6fc2961a8c7427b2124aa88020ff4f786
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 12 17:43:34 2007 +0000

    don't forget the Xft callback (fixes bug #455992)
    
    2007-07-12  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-xsettings.c:
        (gnome_settings_module_xsettings_initialize): don't forget the Xft
        callback (fixes bug #455992)
    
    svn path=/trunk/; revision=7852

 gnome-settings-daemon/ChangeLog                  | 6 ++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit bdc83177c731cd3df764c277f3c4717938799a16
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Thu Jul 12 17:33:58 2007 +0000

    Change the custom command entries to be insensitive, instead of
    
    2007-07-12  Matthias Clasen  <mclasen@redhat.com>
    
            * gnome-default-applications-properties.glade:
            * gnome-da-capplet.c: Change the custom command entries to be
            insensitive, instead of noneditable, unless we are a custom
            command.  (#456308)
    
    
    svn path=/trunk/; revision=7851

 capplets/default-applications/ChangeLog            |  7 ++++++
 capplets/default-applications/gnome-da-capplet.c   | 28 +++++++++++-----------
 .../gnome-default-applications-properties.glade    | 22 ++++++++---------
 3 files changed, 32 insertions(+), 25 deletions(-)

commit 263b364cc9aa9425b79a8a99ca1644c6351c7b73
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Wed Jul 11 22:07:31 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7850

 po/ChangeLog |  4 ++++
 po/es.po     | 39 +++++++++++++++++++--------------------
 2 files changed, 23 insertions(+), 20 deletions(-)

commit 89c1cc7a39ed3ff2be86197d66bc50d4337593d3
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Wed Jul 11 18:33:07 2007 +0000

    Updated Galician Translation.
    
    svn path=/trunk/; revision=7849

 po/ChangeLog |    4 +
 po/gl.po     | 4371 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 2503 insertions(+), 1872 deletions(-)

commit 65fac08e3a1e90af23d1b6482eb0b181308459c0
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 11 15:50:54 2007 +0000

    redraw the selected layouts window
    
    svn path=/trunk/; revision=7848

 capplets/keyboard/ChangeLog                         | 3 +++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 4 ++++
 2 files changed, 7 insertions(+)

commit 8df99660b0923039c31549420233b6f86021c190
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Wed Jul 11 14:42:21 2007 +0000

    Updated Japanese translation.
    
    2007-07-11  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=7847

 po/ChangeLog |    4 +
 po/ja.po     | 3244 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1696 insertions(+), 1552 deletions(-)

commit 3c0e7dce5edbf639d39e4417fae1d711c895075d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 11 10:59:31 2007 +0000

    s/group/layout/
    
    svn path=/trunk/; revision=7846

 capplets/keyboard/ChangeLog                       | 2 ++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit beafb880cb9850019b2f486d22137339ee33edc3
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 11 10:40:54 2007 +0000

    improving layout, b.g.o#455353
    
    svn path=/trunk/; revision=7845

 capplets/keyboard/ChangeLog                        |   7 +
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   4 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 341 +++++++++++----------
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |   4 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 280 +++++++----------
 5 files changed, 311 insertions(+), 325 deletions(-)

commit f221453b2ea8a943b0ed8417902aef664d36cbaf
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Jul 10 23:42:52 2007 +0000

    Translation updated.
    
    2007-07-11 Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=7844

 po/ChangeLog |   4 ++
 po/hu.po     | 195 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 119 insertions(+), 80 deletions(-)

commit 4317df54c58ae1ec38a84a846848989a2392ba5e
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Tue Jul 10 13:20:07 2007 +0000

    Updated Translation
    
    svn path=/trunk/; revision=7843

 po/ChangeLog |    4 +
 po/gu.po     | 3234 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1694 insertions(+), 1544 deletions(-)

commit d5ad5320bc82512913c0e5561f07aad053d72af0
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 9 22:00:15 2007 +0000

    prepare for 2.19.5.
    
    2007-07-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.5.
    
    2007-07-09  Rodrigo Moya <rodrigo@gnome.db.org>
    
        * configure.in: AC_SUBST(XCURSOR... , needed for themus.
    
    svn path=/trunk/; revision=7841

 ChangeLog    |  10 ++++++
 NEWS         | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |   4 ++-
 3 files changed, 119 insertions(+), 1 deletion(-)

commit b9080d724a66830eed20d6c2e5b17e724c5548cd
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 9 21:59:18 2007 +0000

    link to $XCURSOR_LIBS, not GNOMECC_CAPPLETS_LIBS.
    
    2007-07-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: link to $XCURSOR_LIBS, not GNOMECC_CAPPLETS_LIBS.
    
    svn path=/trunk/; revision=7840

 vfs-methods/themus/ChangeLog   | 4 ++++
 vfs-methods/themus/Makefile.am | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 7cb19c4f78baf17d96b6a956562a90c61179bf24
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jul 9 20:30:37 2007 +0000

    added missing libs (for xcursor).
    
    2007-07-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: added missing libs (for xcursor).
    
    svn path=/trunk/; revision=7839

 vfs-methods/themus/ChangeLog   | 4 ++++
 vfs-methods/themus/Makefile.am | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 8261fca0930c35ad4552f45e0e05cfdcb2d08f80
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Mon Jul 9 14:37:44 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7838

 po/ChangeLog |   4 +
 po/th.po     | 591 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 333 insertions(+), 262 deletions(-)

commit 9ebde4757aca599e6d35361416ef75ee4e460295
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 8 20:09:20 2007 +0000

    fix bugzilla info and clean up the Makefile a bit
    
    2007-07-08  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * default-applications-accessibility.desktop.in.in:
        * default-applications.desktop.in.in:
        * gnome-at-mobility.desktop.in.in:
        * gnome-at-session.desktop.in.in:
        * gnome-at-visual.desktop.in.in: fix bugzilla info and clean up the
        Makefile a bit
    
    svn path=/trunk/; revision=7837

 capplets/default-applications/ChangeLog                     | 10 ++++++++++
 capplets/default-applications/Makefile.am                   | 13 +++++++------
 .../default-applications-accessibility.desktop.in.in        |  2 +-
 .../default-applications/default-applications.desktop.in.in |  4 ++--
 .../default-applications/gnome-at-mobility.desktop.in.in    |  2 +-
 .../default-applications/gnome-at-session.desktop.in.in     |  2 +-
 capplets/default-applications/gnome-at-visual.desktop.in.in |  2 +-
 7 files changed, 23 insertions(+), 12 deletions(-)

commit 23ab89ba6a8fe4ac9f4904332c9aa10b0a110c9b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 8 19:07:40 2007 +0000

    plug yet another leak
    
    2007-07-08  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (cursor_size_scale_value_changed_cb): plug yet
        another leak
    
    svn path=/trunk/; revision=7836

 capplets/appearance/ChangeLog          | 5 +++++
 capplets/appearance/appearance-style.c | 9 ++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 07341b7afc838043a42702828a1fe8155cd6e1c1
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jul 8 17:56:26 2007 +0000

    change the button order in themes tab. add an icon to Customize button.
    
    2007-07-08  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade: change the button order in themes tab.
        * appearance-style.c: add an icon to Customize button.
    
    svn path=/trunk/; revision=7835

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 6 +++++-
 capplets/appearance/appearance.glade    | 9 ++++++---
 3 files changed, 16 insertions(+), 4 deletions(-)

commit 04d06f42d614bb1896b617adf0273e6877fa68eb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 8 17:52:41 2007 +0000

    fix leaks
    
    2007-07-08  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_view_tooltip_cb): fix leaks
    
    svn path=/trunk/; revision=7834

 capplets/appearance/ChangeLog            | 4 ++++
 capplets/appearance/appearance-desktop.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit fa41845299faee11863b7e893ecb88d01868a640
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 8 15:23:08 2007 +0000

    include gdk-pixbuf.h (fixes bug #454634)
    
    2007-07-08  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.h: include gdk-pixbuf.h (fixes bug #454634)
    
    svn path=/trunk/; revision=7833

 capplets/common/ChangeLog          | 4 ++++
 capplets/common/gnome-theme-info.h | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 336d47c0952c93519e1fd8747e401638cbd3ca30
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jul 7 11:39:05 2007 +0000

    fix error handling, plug some memory leaks, and properly handle unset
    
    2007-07-07  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-da-capplet.c: (entry_focus_out_event_cb),
        (terminal_checkbutton_toggled_cb), (a11y_checkbutton_toggled_cb),
        (web_radiobutton_toggled_cb), (web_combo_changed_cb),
        (mail_combo_changed_cb), (media_combo_changed_cb),
        (terminal_combo_changed_cb), (visual_combo_changed_cb),
        (mobility_combo_changed_cb), (show_dialog): fix error handling, plug
        some memory leaks, and properly handle unset GConf keys in
        xxx_combo_changed_cb (fixes bug #454103)
    
    svn path=/trunk/; revision=7832

 capplets/default-applications/ChangeLog          |  11 +++
 capplets/default-applications/gnome-da-capplet.c | 115 ++++++++++-------------
 2 files changed, 59 insertions(+), 67 deletions(-)

commit d5182cf7b114a47df6e569632724cdb7b2d52415
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Jul 6 13:23:50 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7831

 po/ChangeLog |   4 ++
 po/es.po     | 167 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 93 insertions(+), 78 deletions(-)

commit cfa78944809677ad964400ce7cc5d8bd364d5b4b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 5 20:11:53 2007 +0000

    ellipsize the "Save As" button
    
    2007-07-05  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init):
        * appearance.glade: ellipsize the "Save As" button
    
    svn path=/trunk/; revision=7830

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 9 ++++++---
 capplets/appearance/appearance.glade    | 3 +--
 3 files changed, 12 insertions(+), 5 deletions(-)

commit 386043886c98b21fc2a92cc7026c6c2f0b7a5e5c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 5 20:00:50 2007 +0000

    don't allocate colors in the colormap (update_cursor_size_scale),
    
    2007-07-05  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (update_color_buttons_from_string): don't allocate
        colors in the colormap
        (update_cursor_size_scale), (cursor_size_scale_value_changed_cb): don't
        crash if we have nothing but the default cursor theme
    
    svn path=/trunk/; revision=7829

 capplets/appearance/ChangeLog          |  7 +++++++
 capplets/appearance/appearance-style.c | 24 +++++++++++-------------
 2 files changed, 18 insertions(+), 13 deletions(-)

commit 118a8090ba1b11d1ea2f638dc275929314fbb01a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jul 5 19:44:02 2007 +0000

    call g_thread_init
    
    2007-07-05  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnailer.c: (main): call g_thread_init
    
    svn path=/trunk/; revision=7828

 vfs-methods/themus/ChangeLog           |  5 ++++-
 vfs-methods/themus/theme-thumbnailer.c | 15 ++++++++-------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit e146c386272b373e5610b1fa9db484b817ef3ae9
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Jul 5 18:00:55 2007 +0000

    set an explicit item width for the metatheme icon view so overly long
    
    2007-07-05  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade: set an explicit item width for the metatheme icon
        view so overly long names don't needlessly widen all items'
    width. Such
        names are wrapped now.
    
    svn path=/trunk/; revision=7827

 capplets/appearance/ChangeLog        | 6 ++++++
 capplets/appearance/appearance.glade | 1 +
 2 files changed, 7 insertions(+)

commit df0060e59d320c479a4db0f507f3644ab3927d92
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu Jul 5 17:51:07 2007 +0000

    Silly me...
    
    svn path=/trunk/; revision=7826

 capplets/common/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1f9ed4e83a3af6e346c8074221e14612916a6116
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu Jul 5 17:50:40 2007 +0000

    Silly me...
    
    svn path=/trunk/; revision=7825

 capplets/appearance/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ebc0ce56a497670063a88469544bbc0ebda4b769
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Jul 5 17:49:01 2007 +0000

    Add cursor themes support.
    
    2007-06-27  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade:
        * appearance-style.c: (cursor_size_scale_value_changed_cb),
        (cursor_theme_changed), (prepare_list), (update_cursor_size_scale):
        * theme-util.h:
        Add cursor themes support.
    
    svn path=/trunk/; revision=7824

 capplets/appearance/ChangeLog          |  10 ++-
 capplets/appearance/appearance-style.c | 123 ++++++++++++++++++++++++++++++++-
 capplets/appearance/appearance.glade   | 102 ++++++++++++++++++++++-----
 capplets/appearance/theme-util.h       |   1 +
 4 files changed, 215 insertions(+), 21 deletions(-)

commit bbee377d3fcfe6059c632fc48e648fd55283a95c
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Thu Jul 5 17:43:09 2007 +0000

    Add support for cursor themes (GnomeThemeCursorInfo); probably still a bit
    
    2007-07-01  Denis Washington  <denisw@svn.gnome.org>
    
        * gnome-theme-info.[ch]:
        Add support for cursor themes (GnomeThemeCursorInfo); probably still a bit
        rough around the edges, but it works.
    
    svn path=/trunk/; revision=7823

 capplets/common/ChangeLog          |   6 ++
 capplets/common/gnome-theme-info.c | 181 +++++++++++++++++++++++++++++++++++++
 capplets/common/gnome-theme-info.h |  17 ++++
 3 files changed, 204 insertions(+)

commit aba35d4e9bc1e573e3d25dcbe29f63b82e594b9b
Author: Alexander Shopov <ash@contact.bg>
Date:   Wed Jul 4 16:16:15 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-07-04  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7822

 po/ChangeLog |   5 +
 po/bg.po     | 393 +++++++++++++++++++----------------------------------------
 2 files changed, 132 insertions(+), 266 deletions(-)

commit 0b1af0579d3d6302b9e5adb7019b6c182dd9a670
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Tue Jul 3 14:22:35 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7821

 po/ChangeLog |    4 +
 po/fi.po     | 4176 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2227 insertions(+), 1953 deletions(-)

commit 664a7fb56ef30d2792b3b4105d8d1aa55137c402
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Jul 3 00:16:58 2007 +0000

    updated vi.po
    
    svn path=/trunk/; revision=7820

 po/ChangeLog | 4 ++++
 po/vi.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 9f0067d2b49829a1426b140e26d8b0594e7b8110
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Sun Jul 1 23:40:01 2007 +0000

    updated vi.po
    
    svn path=/trunk/; revision=7819

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 762d87b655f9908263a497f2cb499d52c303751e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 1 16:45:33 2007 +0000

    Patch by: Grzegorz Dymarek <gregd@interia.pl>
    
    2007-07-01  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Grzegorz Dymarek <gregd@interia.pl>
    
        * gnome-settings-multimedia-keys.c: (do_sound_action): don't
        unmute when lowering the volume and switch to muted when the
        volume reaches 0 (closes bug #337896)
    
    svn path=/trunk/; revision=7818

 gnome-settings-daemon/ChangeLog                        | 8 ++++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 8 +++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 04832abec9d746bba3f2296962137b609d631cb5
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sun Jul 1 16:15:42 2007 +0000

    Fixed header information.
    
    2007-07-01  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR/pt_BR.po: Fixed header information.
    
    svn path=/trunk/; revision=7817

 help/ChangeLog      | 4 ++++
 help/pt_BR/pt_BR.po | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 2675012625db350f7763651aae6ec54e00f88285
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sun Jul 1 16:03:01 2007 +0000

    Added pt_BR to DOC_LINGUAS Added Brazilian Portuguese translation Wendell
    
    2007-07-01  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * Makefile.am: Added pt_BR to DOC_LINGUAS
        * pt_BR/pt_BR.po: Added Brazilian Portuguese translation Wendell Silva
        <thluxx@gmail.com>.
    
    svn path=/trunk/; revision=7815

 help/ChangeLog      |   8 ++-
 help/Makefile.am    |   2 +-
 help/pt_BR/pt_BR.po | 148 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 156 insertions(+), 2 deletions(-)

commit c214dd27e9fd47efe99ea1726f4b10cba90ac211
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 1 15:58:55 2007 +0000

    if we don't take over the background because nautilus is running, don't
    
    2007-07-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-background.c:
        (gnome_settings_module_background_start): if we don't take over
        the background because nautilus is running, don't treat that as
        an error
    
    svn path=/trunk/; revision=7814

 gnome-settings-daemon/ChangeLog                   | 7 +++++++
 gnome-settings-daemon/gnome-settings-background.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit e73cddb29f31977f94da43dd8c6e7a5e98ac9b97
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 1 15:56:19 2007 +0000

    reduce static data
    
    2007-07-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-accessibility-keyboard.c:
        (gnome_settings_module_accessibility_keyboard_get_type):
        * gnome-settings-background.c:
        (gnome_settings_module_background_get_type):
        * gnome-settings-clipboard.c:
        (gnome_settings_module_clipboard_get_type):
        * gnome-settings-default-editor.c:
        (gnome_settings_module_default_editor_get_type):
        * gnome-settings-font.c: (gnome_settings_module_font_get_type):
        * gnome-settings-gtk1theme.c:
        (gnome_settings_module_gtk1_get_type):
        * gnome-settings-keybindings.c:
        (gnome_settings_module_keybindings_get_type):
        * gnome-settings-keyboard.c:
        (gnome_settings_module_keyboard_get_type):
        * gnome-settings-module.c: (gnome_settings_module_get_type):
        * gnome-settings-mouse.c: (gnome_settings_module_mouse_get_type):
        * gnome-settings-multimedia-keys.c:
        (gnome_settings_module_multimedia_keys_get_type):
        * gnome-settings-screensaver.c:
        (gnome_settings_module_screensaver_get_type):
        * gnome-settings-sound.c: (gnome_settings_module_sound_get_type):
        * gnome-settings-typing-break.c:
        (gnome_settings_module_typing_break_get_type):
        * gnome-settings-xrdb.c: (gnome_settings_module_xrdb_get_type):
        * gnome-settings-xsettings.c:
        (gnome_settings_module_xsettings_get_type): reduce static data
    
    svn path=/trunk/; revision=7813

 gnome-settings-daemon/ChangeLog                    |  30 +++++
 .../gnome-settings-accessibility-keyboard.c        |  30 ++---
 gnome-settings-daemon/gnome-settings-background.c  |  28 ++--
 gnome-settings-daemon/gnome-settings-clipboard.c   | 144 ++++++++++-----------
 .../gnome-settings-default-editor.c                |  14 +-
 gnome-settings-daemon/gnome-settings-font.c        |  16 +--
 gnome-settings-daemon/gnome-settings-gtk1theme.c   |  28 ++--
 gnome-settings-daemon/gnome-settings-keybindings.c |   2 +-
 gnome-settings-daemon/gnome-settings-keyboard.c    |  10 +-
 gnome-settings-daemon/gnome-settings-module.c      |  10 +-
 gnome-settings-daemon/gnome-settings-mouse.c       |   2 +-
 .../gnome-settings-multimedia-keys.c               |  12 +-
 gnome-settings-daemon/gnome-settings-screensaver.c |   2 +-
 gnome-settings-daemon/gnome-settings-sound.c       |  24 ++--
 .../gnome-settings-typing-break.c                  |  10 +-
 gnome-settings-daemon/gnome-settings-xrdb.c        |   2 +-
 gnome-settings-daemon/gnome-settings-xsettings.c   |  50 +++----
 17 files changed, 222 insertions(+), 192 deletions(-)

commit d69ad6a3fc43bb2c1dad5ebb56be3f01c2ea9436
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 1 15:37:19 2007 +0000

    fix compiler warnings (closes bug #438152)
    
    2007-07-01  Jens Granseuer  <jensgr@gmx.net>
    
        * factory.c: (main):
        * gnome-settings-keybindings.c:
        * gnome-settings-mouse.c:
        * gnome-settings-screensaver.c: (key_toggled_cb):
        * gnome-settings-xrdb.c: fix compiler warnings (closes bug #438152)
    
    svn path=/trunk/; revision=7811

 gnome-settings-daemon/ChangeLog                    |  8 ++++
 gnome-settings-daemon/factory.c                    |  6 +--
 gnome-settings-daemon/gnome-settings-keybindings.c | 49 +++++++++++-----------
 gnome-settings-daemon/gnome-settings-mouse.c       | 29 ++++++-------
 gnome-settings-daemon/gnome-settings-screensaver.c |  2 +-
 gnome-settings-daemon/gnome-settings-xrdb.c        | 35 ++++++++--------
 6 files changed, 70 insertions(+), 59 deletions(-)

commit 2d521a0b6e17e2adf0ea9312999ce4b29c4177c4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jul 1 15:01:23 2007 +0000

    add safeguards for NULL values (closes bug #441036)
    
    2007-07-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_string_value_changed),
        (peditor_color_value_changed): add safeguards for NULL values (closes
        bug #441036)
    
    svn path=/trunk/; revision=7810

 capplets/common/ChangeLog               |  6 ++++++
 capplets/common/gconf-property-editor.c | 21 +++++++++++++++------
 2 files changed, 21 insertions(+), 6 deletions(-)

commit 6f8421368b82b65ea30d147ffb5b2b1f626a3312
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sun Jul 1 02:52:16 2007 +0000

    Fixed typo in Brazilian Portuguese translation.
    
    2007-06-30  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Fixed typo in Brazilian Portuguese translation.
    
    svn path=/trunk/; revision=7809

 po/ChangeLog | 4 ++++
 po/pt_BR.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 87fb51d92164fd2af6ce7d6af48e1b29d5721d89
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 29 20:53:25 2007 +0000

    compare the string from the widget against the converted gconf value, not
    
    2007-06-29  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_string_value_changed): compare the
        string from the widget against the converted gconf value, not the
        unmodified one
    
    svn path=/trunk/; revision=7807

 capplets/common/ChangeLog               |   6 ++
 capplets/common/gconf-property-editor.c | 106 ++++++++++++++++----------------
 2 files changed, 59 insertions(+), 53 deletions(-)

commit 729cecafc07bc6b83d23f3017624f62be3685fc9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 29 20:05:33 2007 +0000

    remove
    
    2007-06-29  Jens Granseuer  <jensgr@gmx.net>
    
        * display-capplet.png: remove
    
        * Makefile.am:
        * display-properties.desktop.in.in:
        * icons/16x16/gnome-display-properties.png:
        * icons/22x22/gnome-display-properties.png:
        * icons/24x24/gnome-display-properties.png:
        * icons/32x32/gnome-display-properties.png:
        * icons/scalable/gnome-display-properties.svg:
        * main.c: (create_dialog): add and use new icon by Jakub Steiner
        <jimmac@ximian.com>. Closes bug #375230.
    
    svn path=/trunk/; revision=7806

 capplets/display/ChangeLog                         |  14 +
 capplets/display/Makefile.am                       |  24 +-
 capplets/display/display-capplet.png               | Bin 2824 -> 0 bytes
 capplets/display/display-properties.desktop.in.in  |   2 +-
 .../icons/16x16/gnome-display-properties.png       | Bin 0 -> 613 bytes
 .../icons/22x22/gnome-display-properties.png       | Bin 0 -> 866 bytes
 .../icons/24x24/gnome-display-properties.png       | Bin 0 -> 909 bytes
 .../icons/32x32/gnome-display-properties.png       | Bin 0 -> 1602 bytes
 .../icons/scalable/gnome-display-properties.svg    | 470 +++++++++++++++++++++
 capplets/display/main.c                            | 114 ++---
 10 files changed, 558 insertions(+), 66 deletions(-)

commit 68c38dbe66bfed5f38b550ae871bd7e9bcf031cf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 29 19:44:50 2007 +0000

    add and use new icon by Josef Vybiral <cornelius@vybiral.info> (closes bug
    
    2007-06-29  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * gnome-network-preferences.c: (cb_http_details_button_clicked):
        * gnome-network-preferences.desktop.in.in:
        * icons/16x16/gnome-network-preferences.png:
        * icons/16x16/gnome-network-preferences.svg:
        * icons/22x22/gnome-network-preferences.png:
        * icons/22x22/gnome-network-preferences.svg:
        * icons/24x24/gnome-network-preferences.png:
        * icons/32x32/gnome-network-preferences.png:
        * icons/32x32/gnome-network-preferences.svg:
        * icons/scalable/gnome-network-preferences.svg: add and use new
        icon by Josef Vybiral <cornelius@vybiral.info> (closes bug #399051)
    
    svn path=/trunk/; revision=7805

 capplets/network/ChangeLog                         |  39 +-
 capplets/network/Makefile.am                       |  33 +-
 capplets/network/gnome-network-preferences.c       |  86 +--
 .../gnome-network-preferences.desktop.in.in        |   2 +-
 .../icons/16x16/gnome-network-preferences.png      | Bin 0 -> 824 bytes
 .../icons/16x16/gnome-network-preferences.svg      | 364 ++++++++++++
 .../icons/22x22/gnome-network-preferences.png      | Bin 0 -> 1081 bytes
 .../icons/22x22/gnome-network-preferences.svg      | 452 +++++++++++++++
 .../icons/24x24/gnome-network-preferences.png      | Bin 0 -> 1081 bytes
 .../icons/32x32/gnome-network-preferences.png      | Bin 0 -> 1855 bytes
 .../icons/32x32/gnome-network-preferences.svg      | 518 +++++++++++++++++
 .../icons/scalable/gnome-network-preferences.svg   | 628 +++++++++++++++++++++
 12 files changed, 2060 insertions(+), 62 deletions(-)

commit 9b57271af89e8e57b49d6744dcd4b49a97e5a5ba
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 29 18:50:12 2007 +0000

    fix target dir for icons
    
    2007-06-29  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: fix target dir for icons
    
    svn path=/trunk/; revision=7804

 capplets/sound/ChangeLog   |  4 ++++
 capplets/sound/Makefile.am | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 9c0c8e49ec7aa64d21dc027acd46c7fbd530ec31
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 29 16:16:24 2007 +0000

    add a frame to the media popup (closes bug #451674)
    
    2007-06-29  Jens Granseuer  <jensgr@gmx.net>
    
        * actions/acme.glade:
        * gsd-media-keys-window.c: (gsd_media_keys_window_init): add a frame to
        the media popup (closes bug #451674)
    
    svn path=/trunk/; revision=7803

 gnome-settings-daemon/ChangeLog               |  6 +++
 gnome-settings-daemon/actions/acme.glade      | 68 +++++++++++++++------------
 gnome-settings-daemon/gsd-media-keys-window.c | 12 ++---
 3 files changed, 49 insertions(+), 37 deletions(-)

commit ec555198def89136c55aebfe969c017e28262a38
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Fri Jun 29 11:45:53 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-06-29  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=7802

 po/ChangeLog |    4 +
 po/pl.po     | 4311 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2326 insertions(+), 1989 deletions(-)

commit ccb371fe0d5466ad748717be8d102f5a128d4f98
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Fri Jun 29 10:31:10 2007 +0000

    updated dzongkha translation
    
    svn path=/trunk/; revision=7801

 po/ChangeLog |    4 +
 po/dz.po     | 2574 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1411 insertions(+), 1167 deletions(-)

commit a2d38b79247b014f8cd11835bc70b52d5d920053
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 28 21:39:22 2007 +0000

    add explicit width_request to our icon views so we can use
    
    2007-06-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance.glade: add explicit width_request to our icon views so we
        can use GTK_POLICY_NEVER for horizontal scrollbars and still properly
        resize the window (part of bug #451585)
    
    svn path=/trunk/; revision=7800

 capplets/appearance/ChangeLog        | 6 ++++++
 capplets/appearance/appearance.glade | 6 ++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 5ae27eac8f79926f0409ac891a9d30725950fbc6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 28 20:07:34 2007 +0000

    move "selection_mode" to glade file and remove hard-coded item width
    
    2007-06-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init):
        * appearance.glade: move "selection_mode" to glade file and remove
        hard-coded item width
    
    svn path=/trunk/; revision=7799

 capplets/appearance/ChangeLog           | 6 ++++++
 capplets/appearance/appearance-themes.c | 3 +--
 capplets/appearance/appearance.glade    | 3 +--
 3 files changed, 8 insertions(+), 4 deletions(-)

commit ca722b917768ea3abc944e6fdb8a6f8d7d07e178
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 28 18:33:54 2007 +0000

    fix leaks, use g_list_foreach instead of open-coded loop
    
    2007-06-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_store_sort_func), (themes_init): fix leaks,
        use g_list_foreach instead of open-coded loop
    
    svn path=/trunk/; revision=7798

 capplets/appearance/ChangeLog           |  5 +++++
 capplets/appearance/appearance-themes.c | 35 ++++++++++++++++++++++-----------
 2 files changed, 28 insertions(+), 12 deletions(-)

commit 06f1c0403b146ad3199ac8b0e6e0c209276e3541
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 28 17:57:24 2007 +0000

    Patch by: Luca Feretti <elle.uca@libero.it>
    
    2007-06-28  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Luca Feretti <elle.uca@libero.it>
    
        * gnome-settings-sound.desktop.in.in:
        * sound-properties-capplet.c: (main): use new icon name (patch from bug
        #397305)
    
    svn path=/trunk/; revision=7797

 capplets/sound/ChangeLog                          | 8 ++++++++
 capplets/sound/gnome-settings-sound.desktop.in.in | 2 +-
 capplets/sound/sound-properties-capplet.c         | 2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)

commit 91e2cb78259318171c2ed0127fafe97907101249
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 28 17:51:19 2007 +0000

    add new icons by Josef Vybiral (closes bug #397305)
    
    2007-06-28  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * icons/16x16/gnome-sound-properties.svg:
        * icons/22x22/gnome-sound-properties.svg:
        * icons/32x32/gnome-sound-properties.svg:
        * icons/scalable/gnome-sound-properties.svg:
        add new icons by Josef Vybiral (closes bug #397305)
    
    svn path=/trunk/; revision=7796

 capplets/sound/ChangeLog                           |   9 +
 capplets/sound/Makefile.am                         |  47 +-
 .../sound/icons/16x16/gnome-sound-properties.png   | Bin 0 -> 917 bytes
 .../sound/icons/16x16/gnome-sound-properties.svg   | 585 +++++++++++++++++++
 .../sound/icons/22x22/gnome-sound-properties.png   | Bin 0 -> 1424 bytes
 .../sound/icons/22x22/gnome-sound-properties.svg   | 595 +++++++++++++++++++
 .../sound/icons/24x24/gnome-sound-properties.png   | Bin 0 -> 1431 bytes
 .../sound/icons/32x32/gnome-sound-properties.png   | Bin 0 -> 2308 bytes
 .../sound/icons/32x32/gnome-sound-properties.svg   | 633 +++++++++++++++++++++
 .../icons/scalable/gnome-sound-properties.svg      | 554 ++++++++++++++++++
 10 files changed, 2411 insertions(+), 12 deletions(-)

commit 9309d4aa4ac5618148ba8c42404d7f85890be16e
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Jun 28 13:25:58 2007 +0000

    Makefile.am     Added vi to DOC_LINGUAS.
    
    svn path=/trunk/; revision=7795

 help/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 341629e914b1cad1ba9983ba71c9e34cc7c1e80d
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Jun 28 13:25:05 2007 +0000

    vi.po: Added Vietnamese translation.
    
    
    svn path=/trunk/; revision=7794

 help/ChangeLog | 1 +
 1 file changed, 1 insertion(+)

commit 06b731329c66765ca192191a4f52b36f913adf13
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Jun 28 13:23:03 2007 +0000

    vi.po: Added vi directory and Vietnamese translation.
    
    
    svn path=/trunk/; revision=7793

 help/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 9e12bd60c88b972cb76aa6f1aa060b1c6d97ddbd
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Jun 28 13:21:48 2007 +0000

    Added Vietnamese translation.
    
    svn path=/trunk/; revision=7792

 help/vi/vi.po | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 97 insertions(+)

commit f667af59bd8daa3db51e544b4d38c44dfd146cdb
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Thu Jun 28 08:02:30 2007 +0000

    Estonian translation update by Ivar Smolin.
    
    2007-06-28  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Estonian translation update by Ivar Smolin.
    
    svn path=/trunk/; revision=7789

 po/ChangeLog |    4 +
 po/et.po     | 4125 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2229 insertions(+), 1900 deletions(-)

commit fd3fa9876d352c87f5ba78ee7f634ac6986abdd2
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Jun 27 21:22:30 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7788

 po/ChangeLog |   4 ++
 po/sv.po     | 134 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 85 insertions(+), 53 deletions(-)

commit c59e3c28118681ac00368e75ce30703fa89c7631
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jun 27 07:16:01 2007 +0000

    Load the metatheme thumbnails in the order they are in the list.
    
    2007-06-27  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-themes.c: (theme_list_sort_func, themes_init):
        Load the metatheme thumbnails in the order they are in the list.
    
    svn path=/trunk/; revision=7787

 capplets/appearance/ChangeLog           |  5 +++++
 capplets/appearance/appearance-themes.c | 21 ++++++++++++++++-----
 2 files changed, 21 insertions(+), 5 deletions(-)

commit edd29cffe6b71c1a7a58a2fcbd44cd9cf2fe75d3
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Wed Jun 27 06:54:49 2007 +0000

    Make the Custom theme always the first in the list and make it's label
    
    2007-06-27  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.h:
        * appearance-themes.c: (theme_list_sort_func, themes_init):
        Make the Custom theme always the first in the list and make it's label bold
        to diffentiate it from the other themes.
    
    svn path=/trunk/; revision=7786

 capplets/appearance/ChangeLog           |  7 +++++++
 capplets/appearance/appearance-themes.c | 24 ++++++++++++++++++++++--
 capplets/appearance/appearance.glade    |  2 +-
 3 files changed, 30 insertions(+), 3 deletions(-)

commit 0176f18063d8706a0c3a734da9b765e8bdcd0b72
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Wed Jun 27 05:27:07 2007 +0000

    Updated Vietnamese translation.
    
    svn path=/trunk/; revision=7785

 po/ChangeLog |  4 ++++
 po/vi.po     | 25 +++++++++++++------------
 2 files changed, 17 insertions(+), 12 deletions(-)

commit 6b9550b491dfb805456b198d503ddea87d90e160
Author: Michael Terry <mterry@src.gnome.org>
Date:   Tue Jun 26 23:29:58 2007 +0000

    use icon theme for app icons, bug #450777
    
    svn path=/trunk/; revision=7784

 capplets/common/ChangeLog                          |  5 +++
 capplets/common/Makefile.am                        |  2 -
 capplets/common/capplet-util.c                     | 52 ++--------------------
 capplets/display/ChangeLog                         |  6 +++
 capplets/display/Makefile.am                       | 21 ++++++---
 capplets/display/display-properties.desktop.in.in  |  2 +-
 capplets/display/main.c                            |  2 +-
 capplets/file-types/ChangeLog                      |  6 +++
 capplets/file-types/Makefile.am                    | 16 +++++++
 capplets/file-types/file-types-capplet.c           |  2 +-
 .../file-types/file-types-capplet.desktop.in.in    |  2 +-
 capplets/file-types/mime-edit-dialog.c             |  2 +-
 capplets/localization/ChangeLog                    |  6 +++
 capplets/localization/Makefile.am                  | 18 ++++++--
 .../localization/gnome-localization-properties.c   |  2 +-
 capplets/localization/localization.desktop.in.in   |  2 +-
 typing-break/ChangeLog                             |  5 +++
 typing-break/Makefile.am                           |  6 ++-
 18 files changed, 88 insertions(+), 69 deletions(-)

commit 68295d5106b6e894187f94681702e88d413d91a3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 26 18:27:39 2007 +0000

    ... and actually accept an empty color scheme setting as valid
    
    2007-06-26  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_is_equal): ... and actually accept an empty
        color scheme setting as valid
    
    svn path=/trunk/; revision=7783

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 2f0a8f5b10bb4ea7f6c5ad1d5fd2279f3c1b3739
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 26 17:49:37 2007 +0000

    no need to reassign thumbnails inside the loop
    
    2007-06-26  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (prepare_list):
        no need to reassign thumbnails inside the loop
    
        * appearance-themes.c: (theme_load_from_gconf), (theme_is_equal):
        consider NULL and "" equal for color schemes; also reshuffle
        functions a bit and fix the include list
    
    svn path=/trunk/; revision=7782

 capplets/appearance/ChangeLog           |   9 ++
 capplets/appearance/appearance-style.c  |   9 +-
 capplets/appearance/appearance-themes.c | 147 +++++++++++++++-----------------
 3 files changed, 81 insertions(+), 84 deletions(-)

commit 11756d2e52fe82475d434a0e6961beed8204a0fd
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Jun 26 14:45:57 2007 +0000

    Placeholder thumbnails for gtk+, metacity and icon themes.
    
    2007-06-26  Denis Washington  <denisw@svn.gnome.org>
    
        * gtk-theme-thumbnailing.png:
        * icon-theme-thumbnailing.png:
        * window-theme-thumbnailing.png:
        Placeholder thumbnails for gtk+, metacity and icon themes.
    
        * Makefile.am: Add new files.
    
        * appearance.h:
        * appearance-style.h:
        * appearance-style.c: (style_init), (style_shutdown), (prepare_list):
        Use the new placeholder thumbnails for the details window's theme lists.
    
        * appearance-main.c: Call new style_shutdown ().
    
    svn path=/trunk/; revision=7781

 capplets/appearance/ChangeLog                     |  16 +++++++++++++++
 capplets/appearance/Makefile.am                   |   5 ++++-
 capplets/appearance/appearance-main.c             |   1 +
 capplets/appearance/appearance-style.c            |  23 +++++++++++++++++++++-
 capplets/appearance/appearance-style.h            |   1 +
 capplets/appearance/appearance.h                  |   5 +++++
 capplets/appearance/gtk-theme-thumbnailing.png    | Bin 0 -> 1764 bytes
 capplets/appearance/icon-theme-thumbnailing.png   | Bin 0 -> 1167 bytes
 capplets/appearance/window-theme-thumbnailing.png | Bin 0 -> 2183 bytes
 9 files changed, 49 insertions(+), 2 deletions(-)

commit f1bb7e5e6cd5b8d5713296444fc767d7b923f4be
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Tue Jun 26 12:23:26 2007 +0000

    Updated Vietnamese translation.
    
    svn path=/trunk/; revision=7780

 po/ChangeLog |    4 +
 po/vi.po     | 4370 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2329 insertions(+), 2045 deletions(-)

commit 4da29f5eb2d6b72ab7d9eaf5e143c009088dfe6c
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jun 25 18:05:49 2007 +0000

    Fixed resize problems.
    
    2007-06-25  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade: Fixed resize problems.
    
    svn path=/trunk/; revision=7779

 capplets/appearance/ChangeLog        | 4 ++++
 capplets/appearance/appearance.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 359f1c226605c4f37b74584c63e3b96b52fdf509
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 25 16:00:24 2007 +0000

    don't try to use uninitialized GdkPixbuf
    
    2007-06-25  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (prepare_list): don't try to use uninitialized
        GdkPixbuf
    
    svn path=/trunk/; revision=7778

 capplets/appearance/ChangeLog          | 5 +++++
 capplets/appearance/appearance-style.c | 7 +------
 2 files changed, 6 insertions(+), 6 deletions(-)

commit 1d865245f8979535a3e2e5d5754d964c98167c44
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jun 25 15:25:28 2007 +0000

    Update for changes in thumbnailer API.
    
    2007-06-06  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnailer.c: (main):
        Update for changes in thumbnailer API.
    
    svn path=/trunk/; revision=7777

 vfs-methods/themus/ChangeLog           | 6 ++++++
 vfs-methods/themus/theme-thumbnailer.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 304ee0d357b09420c71a0fa42e049a41e69428a0
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jun 25 15:22:45 2007 +0000

    Adjusted for the API changes in theme-thumbnail.c. Thumbnail requestes are
    
    2007-06-25  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-themes.c:
        Adjusted for the API changes in theme-thumbnail.c. Thumbnail requestes are
        now directly queued by generate_*_async(), so do not maintain an own queue
        anymore.
    
        * appearance-style.c:
        Use the new asynchronous thumbnail generation functions, and replace all
        occurrences of "metacity_themes_list" with the correct "window_themes_list".
    
        * appearance.h:
        Remove "theme_queue", it is not needed anymore.
    
    svn path=/trunk/; revision=7776

 capplets/appearance/ChangeLog           | 14 +++++++
 capplets/appearance/appearance-style.c  | 69 +++++++++++++++++++++++++++++----
 capplets/appearance/appearance-themes.c | 52 +++++++------------------
 capplets/appearance/appearance.h        |  1 -
 4 files changed, 89 insertions(+), 47 deletions(-)

commit 443068f132ca2c9e25dc026b9a227381244e1ef8
Author: Denis Washington <denisw@src.gnome.org>
Date:   Mon Jun 25 15:11:22 2007 +0000

    Remove redundant newline in ChangeLog.
    
    svn path=/trunk/; revision=7775

 capplets/common/ChangeLog | 1 -
 1 file changed, 1 deletion(-)

commit 4ac577360b3e476840ae21c9971eca928198e6ee
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Mon Jun 25 15:10:21 2007 +0000

    Generate all types of thumbnails in a seperate process, not just those for
    
    2007-06-25  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnail.[ch]:
        Generate all types of thumbnails in a seperate process, not just those for
        metathemes.
    
    svn path=/trunk/; revision=7774

 capplets/common/ChangeLog         |    7 +
 capplets/common/theme-thumbnail.c | 1218 +++++++++++++++++++++++--------------
 capplets/common/theme-thumbnail.h |   39 +-
 3 files changed, 791 insertions(+), 473 deletions(-)

commit d82de5d216263013456ca5d67a5154cd3d687e8d
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Jun 25 05:53:32 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7773

 po/ChangeLog |   4 ++
 po/es.po     | 192 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 114 insertions(+), 82 deletions(-)

commit 2e88ba9a8b1e905304c216ea6290f8bace52a83d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 24 11:07:56 2007 +0000

    Added theme-save.c
    
    2007-06-24  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in: Added theme-save.c
    
    svn path=/trunk/; revision=7772

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 122df3a8d0bd98936d7ae1abd4d45bf1f94e4de5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 24 11:04:27 2007 +0000

    implement theme saving
    
    2007-06-24  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * appearance-themes.c: (theme_selection_changed_cb),
        (theme_save_cb), (themes_init), (themes_shutdown):
        * appearance.glade:
        * appearance.h:
        * theme-save.c:
        * theme-save.h:
        * theme-util.h: implement theme saving
    
    svn path=/trunk/; revision=7771

 capplets/appearance/ChangeLog           |  11 +
 capplets/appearance/Makefile.am         |   2 +
 capplets/appearance/appearance-themes.c |  16 +-
 capplets/appearance/appearance.glade    | 234 ++++++++++++++++++++-
 capplets/appearance/appearance.h        |   1 +
 capplets/appearance/theme-save.c        | 361 ++++++++++++++++++++++++++++++++
 capplets/appearance/theme-save.h        |  22 ++
 capplets/appearance/theme-util.h        |   1 +
 8 files changed, 646 insertions(+), 2 deletions(-)

commit 4dd7379dbf33b239e8281dc81bb7a446c8d484d3
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jun 24 10:35:07 2007 +0000

    Translation updated.
    
    2007-06-24 Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=7770

 po/ChangeLog |  4 +++
 po/hu.po     | 90 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 53 insertions(+), 41 deletions(-)

commit 491fe698084d68fa6a29e1f8719109f5d2fa41df
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jun 24 10:10:06 2007 +0000

    Fix typo in string. (Closes bug #450405).
    
    2007-06-24  Gabor Kelemen  <kelemeng@gnome.hu>
        * capplets/accessibility/at-properties/at-enable-dialog.glade: Fix typo in string.
        (Closes bug #450405).
    
    
    svn path=/trunk/; revision=7769

 ChangeLog                                                   | 4 ++++
 capplets/accessibility/at-properties/at-enable-dialog.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4969efdf71c95c7e04a7869dde2203709b01d084
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Jun 23 18:04:32 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7768

 po/ChangeLog |   4 +
 po/sv.po     | 680 ++++++++++++++++++++++-------------------------------------
 2 files changed, 258 insertions(+), 426 deletions(-)

commit d62f6441f85cf716139b9450f9403a96384efdb1
Author: Gabor Keleman <kelemeng@src.gnome.org>
Date:   Sat Jun 23 17:29:56 2007 +0000

    typofix
    
    svn path=/trunk/; revision=7767

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 939f2781ad6824e070788de1f4da49c6fd5fd1ac
Author: Guilherme de S. Pastore <gpastore@gnome.org>
Date:   Sat Jun 23 17:14:12 2007 +0000

    fix a small typo ("wether" -> "whether") in the comments.
    
    2007-06-23  Guilherme de S. Pastore  <gpastore@gnome.org>
    
        * gnome-about-me-password.c: fix a small typo ("wether" -> "whether")
          in the comments.
    
    svn path=/trunk/; revision=7766

 capplets/about-me/ChangeLog                 | 5 +++++
 capplets/about-me/gnome-about-me-password.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 18cb9caa424296560892ac7549b9c54b0ecd75bc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Jun 23 17:02:29 2007 +0000

    Translation updated.
    
    2007-06-23 Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    
    svn path=/trunk/; revision=7765

 po/ChangeLog |    4 +
 po/hu.po     | 2763 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1437 insertions(+), 1330 deletions(-)

commit 277341fb0f42041f842b37acae3aa41974ee4d00
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 23 14:22:45 2007 +0000

    rearranged functions (no code changes)
    
    2007-06-23  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: rearranged functions (no code changes)
    
    svn path=/trunk/; revision=7764

 capplets/appearance/ChangeLog          |   4 +
 capplets/appearance/appearance-style.c | 875 ++++++++++++++++-----------------
 2 files changed, 434 insertions(+), 445 deletions(-)

commit ad582ed926d9bc969fbe1193b4559a02f289b1a8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 23 12:55:38 2007 +0000

    use STOCK_DELETE instead of STOCK_OK in the confirmation dialog
    
    2007-06-23  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-util.c: (theme_delete): use STOCK_DELETE instead of STOCK_OK in
        the confirmation dialog
    
    svn path=/trunk/; revision=7763

 capplets/appearance/ChangeLog    |  5 +++++
 capplets/appearance/theme-util.c | 17 +++++++++--------
 2 files changed, 14 insertions(+), 8 deletions(-)

commit 68466d1c27cfc3cbd7768ef8b39daf1a697b5419
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 23 11:08:21 2007 +0000

    listen to on-disk theme changes in the details tabs, too
    
    2007-06-23  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (add_to_treeview), (remove_from_treeview),
        (update_in_treeview), (changed_on_disk_cb), (style_init):
        * appearance-themes.c: (theme_select_name),
        (theme_set_custom_from_theme), (theme_changed_on_disk_cb),
        (theme_thumbnail_done_cb):
        * theme-installer.c: (gnome_theme_installer_run):
        * theme-util.c: (theme_find_in_model):
        * theme-util.h: listen to on-disk theme changes in the details tabs, too
    
    svn path=/trunk/; revision=7762

 capplets/appearance/ChangeLog           |  11 +++
 capplets/appearance/appearance-style.c  | 130 ++++++++++++++++++++++++++++++++
 capplets/appearance/appearance-themes.c |  40 +---------
 capplets/appearance/theme-installer.c   |   5 +-
 capplets/appearance/theme-util.c        |  30 ++++++++
 capplets/appearance/theme-util.h        |   1 +
 6 files changed, 180 insertions(+), 37 deletions(-)

commit 6b8520facc659b23a19821776d5b6aea38c8860d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jun 23 09:33:47 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-06-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7761

 po/ChangeLog |    4 +
 po/nb.po     | 1310 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 593 insertions(+), 721 deletions(-)

commit 6a080d0e51e43d7b6ef447e65f8ff275852b86df
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 22 18:25:21 2007 +0000

    hook up the delete buttons
    
    2007-06-22  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (gtk_theme_changed), (window_theme_changed),
        (icon_theme_changed), (generic_theme_delete),
        (gtk_theme_delete_cb), (window_theme_delete_cb),
        (icon_theme_delete_cb), (style_init), (prepare_list),
        (check_color_schemes_enabled): hook up the delete buttons
    
    svn path=/trunk/; revision=7760

 capplets/appearance/ChangeLog          |   8 ++
 capplets/appearance/appearance-style.c | 187 +++++++++++++++++++++++++--------
 2 files changed, 154 insertions(+), 41 deletions(-)

commit a25bb175c90f1c43e305feea2dcbc6d12a4d290a
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri Jun 22 15:37:21 2007 +0000

    Tweak the metatheme icon view's margin and spacings to better fit to the
    
    2007-06-22  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade:
        Tweak the metatheme icon view's margin and spacings to better fit to the
        new thumbnails.
    
        * theme-thumbnailing.png:
        Modernized and brought to the size of the new metatheme thumbnails.
    
    svn path=/trunk/; revision=7759

 capplets/appearance/ChangeLog              |   9 +++++++++
 capplets/appearance/appearance.glade       |   7 +++++--
 capplets/appearance/theme-thumbnailing.png | Bin 2038 -> 5114 bytes
 3 files changed, 14 insertions(+), 2 deletions(-)

commit 34adc6a2dbd1c357746d22e1a9fd0c70f7c2f0cc
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri Jun 22 15:32:44 2007 +0000

    Make metatheme thumbnails original-sized and add check box + radio button.
    
    2007-06-22  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnail.c: (create_image):
        Make metatheme thumbnails original-sized and add check box + radio button.
    
    svn path=/trunk/; revision=7758

 capplets/common/ChangeLog         |  5 ++++
 capplets/common/theme-thumbnail.c | 50 +++++++++++++++++++++++++--------------
 2 files changed, 37 insertions(+), 18 deletions(-)

commit 1872955fe9277cf322eb2c1fc569a5a2ea12c767
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jun 22 11:48:14 2007 +0000

    incorporate fixes from Matthias Clasen in bug #430889
    
    2007-06-22  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-daemon.c: incorporate fixes from Matthias Clasen in
        bug #430889
        (gnome_settings_daemon_init): create the DBus server here.
        (gnome_settings_daemon_new): install an idle callback to initialize the
        modules.
        (init_modules_idle_cb): initialize modules and install an idle callback
        to start the modules.
        (start_modules_idle_cb): start modules here.
        (finalize): unref the DBus service.
    
    svn path=/trunk/; revision=7757

 gnome-settings-daemon/ChangeLog               | 12 ++++
 gnome-settings-daemon/gnome-settings-daemon.c | 85 +++++++++++++++++----------
 2 files changed, 66 insertions(+), 31 deletions(-)

commit 4f4291f6d49e59d1d08368eebde1e54c9f39dc56
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jun 21 12:19:06 2007 +0000

    all modules use now the new arch.
    
    2007-06-21  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-accessibility-keyboard.c:
        * gnome-settings-keybindings.c:
        * gnome-settings-keyboard.c:
        * gnome-settings-multimedia-keys.c:
        * gnome-settings-xrdb.c:
        * gnome-settings-daemon.c: all modules use now the new arch.
    
        * gnome-settings-background.c (background_callback): pass the correct
        argument to the idle callback.
    
    svn path=/trunk/; revision=7756

 gnome-settings-daemon/ChangeLog                    |  17 +
 gnome-settings-daemon/Makefile.am                  |   5 -
 .../gnome-settings-accessibility-keyboard.c        | 221 ++++---
 .../gnome-settings-accessibility-keyboard.h        |  32 -
 gnome-settings-daemon/gnome-settings-background.c  |   3 +-
 gnome-settings-daemon/gnome-settings-daemon.c      |  42 +-
 gnome-settings-daemon/gnome-settings-keybindings.c | 652 +++++++++++----------
 gnome-settings-daemon/gnome-settings-keybindings.h |  33 --
 gnome-settings-daemon/gnome-settings-keyboard.c    | 112 +++-
 gnome-settings-daemon/gnome-settings-keyboard.h    |  34 --
 .../gnome-settings-multimedia-keys.c               | 180 ++++--
 .../gnome-settings-multimedia-keys.h               |  31 -
 gnome-settings-daemon/gnome-settings-screensaver.c |   2 +-
 gnome-settings-daemon/gnome-settings-xrdb.c        | 129 +++-
 gnome-settings-daemon/gnome-settings-xrdb.h        |  33 --
 15 files changed, 838 insertions(+), 688 deletions(-)

commit 39fc05602e52263ef744f881b42477e2d02c0f68
Author: Alexander Shopov <ash@contact.bg>
Date:   Wed Jun 20 22:10:41 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-06-21  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7755

 po/ChangeLog |   5 +++
 po/bg.po     | 141 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 63 insertions(+), 83 deletions(-)

commit 33dd3f654a2c40134da1e2991178c8f35c73f818
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 20 20:14:18 2007 +0000

    fix function signatures
    
    2007-06-20  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_icon_info_find,
        gnome_theme_is_writable):
        * gnome-theme-info.h: fix function signatures
    
    svn path=/trunk/; revision=7754

 capplets/common/ChangeLog          |  6 ++++++
 capplets/common/gnome-theme-info.c | 10 +++++-----
 capplets/common/gnome-theme-info.h |  4 ++--
 3 files changed, 13 insertions(+), 7 deletions(-)

commit 89d4dc18ff54e7bbf1004770a6bb0e23283ede8b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jun 20 11:07:32 2007 +0000

    return TRUE if the module does not implement the method. It's not an
    
    2007-06-19  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-module.c (gnome_settings_module_start|_stop): return
        TRUE if the module does not implement the method. It's not an error,
        just the module does not need to implement it.
    
        * gnome-settings-daemon.c (gnome_settings_daemon_init): allocate memory
        for the index in the hash table.
    
    svn path=/trunk/; revision=7753

 gnome-settings-daemon/ChangeLog               |  9 +++++++
 gnome-settings-daemon/gnome-settings-daemon.c | 37 +++++++++------------------
 gnome-settings-daemon/gnome-settings-module.c |  8 ++++--
 3 files changed, 27 insertions(+), 27 deletions(-)

commit 4394d63ff58de81c7e84726062dc6c0e829acf52
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue Jun 19 09:26:36 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7752

 po/ChangeLog |   4 ++
 po/es.po     | 134 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 69 insertions(+), 69 deletions(-)

commit 0ca04e0791290eb5f7e7aba69b023dcb03fa929a
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Jun 19 04:27:11 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-06-19  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7751

 po/ChangeLog |   7 +++-
 po/bg.po     | 111 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 58 insertions(+), 60 deletions(-)

commit fdfa46a437e58433cc355383179dd5acfd52d5eb
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Jun 18 21:44:38 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-06-17  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7750

 po/ChangeLog |    5 +
 po/bg.po     | 3320 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 1690 insertions(+), 1635 deletions(-)

commit 8e3b9d4eebee7c903794e7c281fe8c79862c602b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 18 20:56:53 2007 +0000

    prepare for 2.19.4.
    
    2007-06-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.4.
    
    svn path=/trunk/; revision=7748

 ChangeLog    |  5 +++++
 NEWS         | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 64 insertions(+), 1 deletion(-)

commit a4f397b6f793d63140ee1bf42d3d0830d2c240f8
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 18 20:50:39 2007 +0000

    converted to new arch.
    
    2007-06-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-typing-break.c: converted to new arch.
    
        * gnome-settings-daemon.c: use new converted modules.
    
        * Makefile.am: removed unneeded header files.
    
        * factory.c (main): call g_thread_init to avoid warnings.
    
    svn path=/trunk/; revision=7747

 gnome-settings-daemon/ChangeLog                    |  10 ++
 gnome-settings-daemon/Makefile.am                  |   1 -
 gnome-settings-daemon/factory.c                    |   1 +
 gnome-settings-daemon/gnome-settings-daemon.c      |  23 ++-
 gnome-settings-daemon/gnome-settings-dbus.c        |   4 +-
 .../gnome-settings-typing-break.c                  | 179 ++++++++++++++-------
 .../gnome-settings-typing-break.h                  |  25 ---
 7 files changed, 155 insertions(+), 88 deletions(-)

commit 19bc65566be7ec612d37757659c7a6922021e222
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Jun 18 18:42:23 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7746

 po/ChangeLog |  4 ++++
 po/es.po     | 54 +++++++++++++++++++++++++++++++-----------------------
 2 files changed, 35 insertions(+), 23 deletions(-)

commit 4d5c1581701402e1350b65a1f57e8fcccb72eaf4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 18 17:56:39 2007 +0000

    remove obsolete files
    
    2007-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: remove obsolete files
    
    svn path=/trunk/; revision=7745

 capplets/common/ChangeLog   | 4 ++++
 capplets/common/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 73c40991a805cb00aaeac1351fcf2f0153084070
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 18 17:55:52 2007 +0000

    remove non-existing gnome-settings-xsettings.h
    
    2007-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: remove non-existing gnome-settings-xsettings.h
    
    svn path=/trunk/; revision=7744

 gnome-settings-daemon/ChangeLog   | 4 ++++
 gnome-settings-daemon/Makefile.am | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit fed68917689e018b0f376c19e05775b87ebc67bd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 18 17:48:26 2007 +0000

    fix compiler warning
    
    2007-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (gnome_theme_install_real): fix compiler warning
    
    svn path=/trunk/; revision=7743

 capplets/appearance/ChangeLog         | 4 ++++
 capplets/appearance/theme-installer.c | 3 +++
 2 files changed, 7 insertions(+)

commit df1a48a5ab01438dadca8b13c4aa2ee004702e12
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 18 17:14:05 2007 +0000

    remove install buttons from individual detail pages and HIG-ify the
    
    2007-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance.glade: remove install buttons from individual detail pages
        and HIG-ify the "revert to defaults" label
    
    svn path=/trunk/; revision=7742

 capplets/appearance/ChangeLog        |  5 ++++
 capplets/appearance/appearance.glade | 50 +-----------------------------------
 2 files changed, 6 insertions(+), 49 deletions(-)

commit 605992d0e773f8b1d3ec495218cbf44b11b0400c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 18 16:21:28 2007 +0000

    just check for configure instead of configure.in since configure.ac is
    
    2007-06-18  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-installer.c: (file_theme_type): just check for configure
        instead of configure.in since configure.ac is valid as well; we still
        need a better way to identify engines...
    
    svn path=/trunk/; revision=7741

 capplets/appearance/ChangeLog         | 6 ++++++
 capplets/appearance/theme-installer.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit baa992a9ef3a6bd2442bcbf3437e60e3ed14a79b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 18 12:29:52 2007 +0000

    added the names of the pages to the help strings for --show-page argument.
    
    2007-06-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * appearance-main.c: added the names of the pages to the help strings
        for --show-page argument.
    
    svn path=/trunk/; revision=7740

 capplets/appearance/ChangeLog         | 5 +++++
 capplets/appearance/appearance-main.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a74694884b1650ff40d3748f2698a7892c912f7b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 17 15:58:24 2007 +0000

    add --show-page option to specify the page with which to start
    
    2007-06-17  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main):
        * appearance.glade: add --show-page option to specify the page with
        which to start
    
    svn path=/trunk/; revision=7739

 capplets/appearance/ChangeLog         |  6 ++++
 capplets/appearance/appearance-main.c | 57 ++++++++++++++++++++++++++---------
 capplets/appearance/appearance.glade  | 10 +++---
 3 files changed, 53 insertions(+), 20 deletions(-)

commit 45b4503f3453ffb062932dc08a5ea97c9975f271
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jun 17 15:55:58 2007 +0000

    Added metadata tooltips to the thumbnails in the Background tab. Needs
    
    2007-06-17  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-desktop.c: (desktop_init): (wp_view_tooltip_cb):
        * gnome-wp-item.c: (gnome_wp_item_update_description):
        Added metadata tooltips to the thumbnails in the Background tab.
        Needs GTK+ 2.11 to compile (but is surrounded with GTK_CHECK_VERSION()
        for compilation with older gtk+ versions).
    
    svn path=/trunk/; revision=7738

 capplets/appearance/ChangeLog            |  8 ++++++
 capplets/appearance/appearance-desktop.c | 48 ++++++++++++++++++++++++++++++++
 capplets/appearance/gnome-wp-item.c      | 40 ++++++++++----------------
 3 files changed, 70 insertions(+), 26 deletions(-)

commit 7470581e75ab3f4424ca98d7c6c6c77b69f31570
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sun Jun 17 15:21:20 2007 +0000

    Change the weight of the theme titles from bold to normal in the Theme
    
    2007-06-17  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-style.c: (prepare_list):
        Change the weight of the theme titles from bold to normal in the Theme
        Details window's lists.
    
    svn path=/trunk/; revision=7737

 capplets/appearance/ChangeLog          | 6 ++++++
 capplets/appearance/appearance-style.c | 4 ----
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 72a3c741a6c3ae77f48be4107b689a376e5d142d
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Sun Jun 17 14:38:11 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7736

 po/ChangeLog |   4 ++
 po/es.po     | 145 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
 2 files changed, 136 insertions(+), 13 deletions(-)

commit 3047d4732834aa696d01a96d6baca970e9c10198
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 16 15:36:59 2007 +0000

    updated list again
    
    2007-06-16  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in: updated list again
    
    svn path=/trunk/; revision=7734

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit a466c698e2d77cf15ac8ac9023142c87f995bea7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 16 15:35:15 2007 +0000

    add back gnome-theme-installer.desktop.in
    
    2007-06-16  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: add back gnome-theme-installer.desktop.in
    
    svn path=/trunk/; revision=7733

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit fa2cdf3c301e991512f3c9b0d1e5b15fc0fb8809
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 16 15:34:54 2007 +0000

    updated lists again
    
    2007-06-16  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in:
        * POTFILES.skip: updated lists again
    
    svn path=/trunk/; revision=7732

 po/ChangeLog     | 5 +++++
 po/POTFILES.in   | 3 +++
 po/POTFILES.skip | 1 +
 3 files changed, 9 insertions(+)

commit cba96896bc9ddcc6553aff1101a94f799d153f47
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 16 15:32:12 2007 +0000

    make gnome-theme-installer work
    
    2007-06-16  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * appearance-main.c: (init_appearance_data), (main):
        * gnome-theme-installer.desktop.in.in: make gnome-theme-installer
        work
    
    svn path=/trunk/; revision=7731

 capplets/appearance/ChangeLog                      |  7 ++++++
 capplets/appearance/Makefile.am                    |  4 +++-
 capplets/appearance/appearance-main.c              | 26 ++++++++++++++++++++++
 .../appearance/gnome-theme-installer.desktop.in.in | 17 ++++++++++++++
 4 files changed, 53 insertions(+), 1 deletion(-)

commit dbc58d64cb5123c4e5e589d26c5e2aa2b1653922
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 16 15:08:20 2007 +0000

    add initial support for installing themes, includes support for packages
    
    2007-06-16  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * appearance-style.c: (prepare_list):
        * appearance-themes.c: (theme_install_cb), (theme_delete_cb),
        (theme_details_changed_cb):
        * theme-installer.c: (cleanup_tmp_dir), (file_theme_type),
        (missing_utility_message_dialog), (transfer_done_tgz_tbz),
        (transfer_done_archive), (gnome_theme_install_real),
        (transfer_done_cb), (gnome_theme_install_from_uri),
        (gnome_theme_installer_run):
        * theme-installer.h: add initial support for installing themes,
        includes support for packages containing more than one theme
        (bug #409624)
    
    svn path=/trunk/; revision=7730

 capplets/appearance/ChangeLog           |  15 +
 capplets/appearance/Makefile.am         |   6 +-
 capplets/appearance/appearance-style.c  |   2 -
 capplets/appearance/appearance-themes.c |   8 +-
 capplets/appearance/theme-installer.c   | 623 ++++++++++++++++++++++++++++++++
 capplets/appearance/theme-installer.h   |  28 ++
 6 files changed, 674 insertions(+), 8 deletions(-)

commit c8e0000859058a62138fc70ae060e7706b54c297
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 16 11:31:45 2007 +0000

    don't make the revert dialog transient since it's actually never on screen
    
    2007-06-16  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (run_revert_dialog), (cb_dialog_response): don't make the
        revert dialog transient since it's actually never on screen at the
        same time as the main dialog. Closes bug #448160.
    
    svn path=/trunk/; revision=7729

 capplets/display/ChangeLog | 6 ++++++
 capplets/display/main.c    | 7 ++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 1c5d2a43bde961f01dc2597da1ec7195a0f9ff5a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 15 17:57:49 2007 +0000

    be extra careful when generating pixbufs (should mean we just get no
    
    2007-06-15  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_props_load_wallpaper),
        (wp_scale_type_changed), (wp_shade_type_changed):
        * gnome-wp-utils.c: (gnome_wp_pixbuf_tile): be extra careful when
        generating pixbufs (should mean we just get no thumbs instead of
        assertion failures, bug #403160)
    
    svn path=/trunk/; revision=7728

 capplets/appearance/ChangeLog            |  8 ++++++++
 capplets/appearance/appearance-desktop.c | 31 +++++++++++++------------------
 capplets/appearance/gnome-wp-utils.c     |  6 ++++--
 3 files changed, 25 insertions(+), 20 deletions(-)

commit a2ec24622185c7da5cbcd292b88339580addd67f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jun 15 16:31:15 2007 +0000

    don't leak the GError
    
    2007-06-15  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-screensaver.c:
        (gnome_settings_module_screensaver_start): don't leak the GError
    
    svn path=/trunk/; revision=7727

 gnome-settings-daemon/ChangeLog                    |  5 +++++
 gnome-settings-daemon/gnome-settings-screensaver.c | 19 ++++++++++---------
 2 files changed, 15 insertions(+), 9 deletions(-)

commit d4c85096a49a81f00475260633f3c4a99c88eb9f
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Jun 15 09:30:53 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7726

 po/ChangeLog |   4 ++
 po/es.po     | 128 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 74 insertions(+), 58 deletions(-)

commit 48dca61dd7d88733f5cd3e40b9acedb176a046ca
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 14 21:20:25 2007 +0000

    new files
    
    2007-06-14  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * theme-util.c: (theme_delete), (theme_model_iter_last):
        * theme-util.h: new files
    
        * appearance.glade: default delete buttons to insensitive,
        change label for "Custom" key, adjust column ids for icon view
    
        * appearance-style.c: (style_init), (prepare_list),
        (update_color_buttons_from_settings), (theme_name_changed),
        (color_button_clicked_cb),
        (color_scheme_defaults_button_clicked_cb):
        * appearance-themes.c: (theme_get_selected_name),
        (theme_get_selected), (theme_select_iter), (theme_select_name),
        (theme_is_equal), (theme_set_custom_from_theme),
        (theme_changed_on_disk_cb), (theme_custom_cb), (theme_delete_cb),
        (theme_details_changed_cb), (theme_color_scheme_changed_cb),
        (theme_gconf_changed), (theme_postinit), (themes_init),
        (themes_shutdown):
        * appearance.h: improvements all around the block (metatheme
        deletion now working, and custom theme working much better)
    
    svn path=/trunk/; revision=7725

 capplets/appearance/ChangeLog           |  23 +++
 capplets/appearance/Makefile.am         |   2 +
 capplets/appearance/appearance-style.c  |  97 +++++-------
 capplets/appearance/appearance-themes.c | 267 ++++++++++++++++++++------------
 capplets/appearance/appearance.glade    |  13 +-
 capplets/appearance/appearance.h        |   1 +
 capplets/appearance/theme-util.c        | 115 ++++++++++++++
 capplets/appearance/theme-util.h        |  44 ++++++
 8 files changed, 404 insertions(+), 158 deletions(-)

commit 0eb282cfa115aebe2051ef1c88e81a11693265c6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 14 19:47:28 2007 +0000

    fix GConf notification
    
    2007-06-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (setup_dialog): fix GConf
        notification
    
    svn path=/trunk/; revision=7724

 capplets/keybindings/ChangeLog                     |  5 +++
 capplets/keybindings/gnome-keybinding-properties.c | 36 +++++++++++-----------
 2 files changed, 23 insertions(+), 18 deletions(-)

commit 0e75c955933ee985b0fd48afae891c5e02554ba6
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Wed Jun 13 06:14:21 2007 +0000

    updated dzongkha translation
    
    svn path=/trunk/; revision=7723

 po/ChangeLog |    4 +
 po/dz.po     | 1081 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 603 insertions(+), 482 deletions(-)

commit 556f49a625c7fa0e745039c19bf776674cab62e4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 12 20:57:39 2007 +0000

    plug leak fix comment
    
    2007-06-12  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_icon_info_free): plug leak
        * theme-thumbnail.c: (message_from_child): fix comment
    
    svn path=/trunk/; revision=7722

 capplets/common/ChangeLog          |  5 +++++
 capplets/common/gnome-theme-info.c | 43 +++++++++++++++++++-------------------
 capplets/common/theme-thumbnail.c  | 28 ++++++++++++-------------
 3 files changed, 41 insertions(+), 35 deletions(-)

commit c5a8051080a7ba408d447196d986fe607b8536d3
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Jun 12 17:07:44 2007 +0000

    Manually deal with gtk+ theme changes now that the theme thumbnailing code
    
    2007-06-09  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance-style.c: (theme_name_changed):
        Manually deal with gtk+ theme changes now that the theme thumbnailing
        code uses the default GtkSettings again.
    
    svn path=/trunk/; revision=7721

 capplets/appearance/ChangeLog          |  6 ++++++
 capplets/appearance/appearance-style.c | 13 ++++++++++++-
 2 files changed, 18 insertions(+), 1 deletion(-)

commit 3b1d45c537bcb9a76c80b1aec55f8af96d9b1da1
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Jun 12 17:05:17 2007 +0000

    Stop the GdkDisplay mess and let gnome-appearance-properties handle gtk+
    
    2007-06-09  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnail.c: (generate_gtk_theme_thumbnail):
        Stop the GdkDisplay mess and let gnome-appearance-properties handle
        gtk+ theme changes manually instead.
    
    svn path=/trunk/; revision=7720

 capplets/common/ChangeLog         |  6 ++++++
 capplets/common/theme-thumbnail.c | 21 ++++++---------------
 2 files changed, 12 insertions(+), 15 deletions(-)

commit 06639be4b811c01badc8e5c3a1833816d3cff133
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 12 15:56:53 2007 +0000

    revert last commit. gnome-theme-package.xml is created by intltool, not
    
    2007-06-12  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: revert last commit. gnome-theme-package.xml is
        created by intltool, not autoconf (closes bug #446733)
    
    svn path=/trunk/; revision=7719

 ChangeLog    | 5 +++++
 configure.in | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit fcfa955178121060a7b71a3cf7b086fc2b0aa003
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 11 18:38:34 2007 +0000

    add back missing desktop.in files removed in revision 7032, and throw in a
    
    2007-06-11  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in:
        * POTFILES.skip: add back missing desktop.in files removed
        in revision 7032, and throw in a few more files for good
        measure
    
    svn path=/trunk/; revision=7718

 po/ChangeLog     |  7 +++++++
 po/POTFILES.in   |  2 ++
 po/POTFILES.skip | 43 +++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 52 insertions(+)

commit 3fe829a6d9b504bae0f881fc652bcddd6195b82b
Author: Funda Wang <fwang@src.gnome.org>
Date:   Mon Jun 11 10:27:29 2007 +0000

    Updated g-c-c translation
    
    svn path=/trunk/; revision=7717

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1378 +++++++++++++++++++++++-----------------------------------
 2 files changed, 548 insertions(+), 834 deletions(-)

commit 0faffda2022b2b0778ea7482b56d97b4c61a5180
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jun 11 09:06:15 2007 +0000

    Force launching nautilus in the home directory, rather than relying on it
    
    2007-06-11  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-settings-multimedia-keys.c: (do_action): Force launching
        nautilus in the home directory, rather than relying on it
        opening there (Closes: #356069)
    
    
    svn path=/trunk/; revision=7716

 gnome-settings-daemon/ChangeLog                        | 8 +++++++-
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 7 ++++++-
 2 files changed, 13 insertions(+), 2 deletions(-)

commit dcb6f5bd6ffc5243c439fa1faea11a99bc983af4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 10 20:29:08 2007 +0000

    fix "reset to defaults" sensitivity for real listen to colour scheme
    
    2007-06-10  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (style_init), (check_color_schemes_enabled):
        fix "reset to defaults" sensitivity for real
        * appearance-themes.c: (theme_color_scheme_changed_cb),
        (themes_init): listen to colour scheme changes as well
    
    svn path=/trunk/; revision=7715

 capplets/appearance/ChangeLog           |  7 +++++++
 capplets/appearance/appearance-style.c  | 11 +++++------
 capplets/appearance/appearance-themes.c | 11 ++++++++++-
 3 files changed, 22 insertions(+), 7 deletions(-)

commit a994bfc05d8ba9130d000b20cb0029a8f082e0e3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 10 18:51:42 2007 +0000

    disable the "reset to defaults" button if the theme doesn't support custom
    
    2007-06-10  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (check_color_schemes_enabled): disable the "reset
        to defaults" button if the theme doesn't support custom colours
    
    svn path=/trunk/; revision=7714

 capplets/appearance/ChangeLog          | 5 +++++
 capplets/appearance/appearance-style.c | 8 +++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 196cc925dbd2b9ad7374249964c76731a8b5d82c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 10 18:15:06 2007 +0000

    we don't need the engine stuff, so don't retrieve it in the first place
    
    2007-06-10  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (check_color_schemes_enabled): we don't need the
        engine stuff, so don't retrieve it in the first place
    
    svn path=/trunk/; revision=7713

 capplets/appearance/ChangeLog          | 5 +++++
 capplets/appearance/appearance-style.c | 6 ++----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit 934b33e8c794cdd8522cd7967feb2c6b09614fbb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 10 18:10:38 2007 +0000

    make it possible to skip engine information if we're not interested and
    
    2007-06-10  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_details), (gtkrc_get_color_scheme):
        make it possible to skip engine information if we're not interested
        and fix a warning
    
    svn path=/trunk/; revision=7712

 capplets/common/ChangeLog     | 6 ++++++
 capplets/common/gtkrc-utils.c | 7 +++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit a5189eddb9046bca8ecee2627afd2fee534d08a4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 10 17:37:00 2007 +0000

    fix passing and parsing of command line args
    
    2007-06-10  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (init_appearance_data), (main):
        * appearance.h: fix passing and parsing of command line args
    
        * appearance-style.c: (update_color_buttons_from_settings),
        (check_color_schemes_enabled): fix leaks
    
        * appearance.glade: revert response_id sillyness from last commit
    
    svn path=/trunk/; revision=7711

 capplets/appearance/ChangeLog          | 10 ++++++++
 capplets/appearance/appearance-main.c  | 10 +++-----
 capplets/appearance/appearance-style.c | 10 ++++++--
 capplets/appearance/appearance.glade   | 45 ----------------------------------
 capplets/appearance/appearance.h       |  2 --
 5 files changed, 22 insertions(+), 55 deletions(-)

commit 19cfd08b3dd55c523e590209ccba0de89a6201e0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 10 17:22:16 2007 +0000

    add some more checks so we don't try to strcmp NULL strings (fixes bug
    
    2007-06-10  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set): add some more checks so
        we don't try to strcmp NULL strings (fixes bug #445908)
    
    svn path=/trunk/; revision=7710

 capplets/common/ChangeLog           | 5 +++++
 capplets/common/gnome-theme-apply.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 1b9649f12664ebb0133a6e4bf66f2de3a8d0ccaa
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun Jun 10 11:57:52 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7709

 po/ChangeLog |    4 +
 po/sv.po     | 1968 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1010 insertions(+), 962 deletions(-)

commit 6c21c710369f93e4f73bc6796e72173df9ddcd00
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Jun 9 14:34:33 2007 +0000

    Add all missing color schemes options from gnome-theme-manager, including
    
    2007-06-09  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade:
        * appearance-style.c:
        Add all missing color schemes options from gnome-theme-manager, including a Reset To Defaults button.
    
    svn path=/trunk/; revision=7708

 capplets/appearance/ChangeLog          |   7 ++
 capplets/appearance/appearance-style.c | 113 ++++++++++++++---
 capplets/appearance/appearance.glade   | 220 +++++++++++++++++++++++++++------
 3 files changed, 287 insertions(+), 53 deletions(-)

commit f4ee5fb273a3cb61672e199bfe00ef573342a1b5
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Sat Jun 9 14:17:58 2007 +0000

    Fix the appearance capplet windows not reacting to gtk+ theme changes.
    
    2007-06-09  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnail.c: (generate_gtk_theme_thumbnail):
        Fix the appearance capplet windows not reacting to gtk+ theme changes.
    
    svn path=/trunk/; revision=7707

 capplets/common/ChangeLog         |  5 +++++
 capplets/common/theme-thumbnail.c | 23 ++++++++++++++++-------
 2 files changed, 21 insertions(+), 7 deletions(-)

commit 41bf5ab8ccd23d5f1ad35ff4ba79a6f8f5e9650f
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri Jun 8 12:35:26 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7706

 po/ChangeLog |  4 ++++
 po/es.po     | 30 +++++++++++++++++++-----------
 2 files changed, 23 insertions(+), 11 deletions(-)

commit 1eb8cc98ae1bfb3e3d83704147fe9c5e830af0b6
Author: Christian Persch <chpe@gnome.org>
Date:   Fri Jun 8 11:56:47 2007 +0000

    NULL-terminate the options array. fixed.
    
    2007-06-08  Christian Persch  <chpe@gnome.org>
    
        * main.c: (main): NULL-terminate the options array.
        * ChangeLog: fixed.
    
    svn path=/trunk/; revision=7705

 ChangeLog              |  5 -----
 typing-break/ChangeLog | 10 ++++++++++
 typing-break/main.c    |  1 +
 3 files changed, 11 insertions(+), 5 deletions(-)

commit 8ccc187c76072e5754cd448ebbba071ffd6f9a89
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 7 19:11:36 2007 +0000

    add initial lockdown bits from theme-manager, delete button sensitivity
    
    2007-06-07  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (is_locked_down),
        (theme_changed_on_disk_cb), (theme_selection_changed_cb),
        (themes_init): add initial lockdown bits from theme-manager,
        delete button sensitivity updates, and preliminary support
        for reacting to metatheme changes
    
    svn path=/trunk/; revision=7704

 capplets/appearance/ChangeLog           |  8 ++++
 capplets/appearance/appearance-themes.c | 71 +++++++++++++++++++++++++++------
 2 files changed, 66 insertions(+), 13 deletions(-)

commit 7144393cbc5136fcffae1875a81e4a282205ebf9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Jun 7 19:08:19 2007 +0000

    modify the theme change callback to return more useful information and add
    
    2007-06-07  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (handle_change_signal),
        (gnome_theme_is_writable),
        (gnome_theme_info_register_theme_change):
        * gnome-theme-info.h:
        modify the theme change callback to return more useful
        information and add a function to determine whether a given
        theme is writable
    
    svn path=/trunk/; revision=7703

 capplets/common/ChangeLog          | 10 +++++++
 capplets/common/gnome-theme-info.c | 57 ++++++++++++++++++++++++++++++--------
 capplets/common/gnome-theme-info.h | 15 +++++++---
 3 files changed, 66 insertions(+), 16 deletions(-)

commit b8981e28cf8ff41b1789b547d089eab24890717e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 6 16:26:09 2007 +0000

    update for changes in thumbnailer API
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnailer.c: (main): update for changes in thumbnailer API
    
    svn path=/trunk/; revision=7702

 vfs-methods/themus/ChangeLog           | 4 ++++
 vfs-methods/themus/theme-thumbnailer.c | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 893ab11dd07032b5d34f8e0ce70f4342794fac47
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 6 16:25:25 2007 +0000

    update for changes in thumbnailer API
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_thumbnail_generate),
        (theme_queue_for_thumbnail), (theme_thumbnail_done_cb): update
        for changes in thumbnailer API
    
    svn path=/trunk/; revision=7701

 capplets/appearance/ChangeLog           |  6 ++++++
 capplets/appearance/appearance-themes.c | 10 +++++++---
 2 files changed, 13 insertions(+), 3 deletions(-)

commit 5a510b1c3f539e9689c5f722d596e7d58adc4b4c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 6 16:24:17 2007 +0000

    remove obsolete files
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * Bonobo_Control_Capplet_generic.oaf.in:
        * wrapper-script.in: remove obsolete files
    
    svn path=/trunk/; revision=7700

 .../common/Bonobo_Control_Capplet_generic.oaf.in    | 21 ---------------------
 capplets/common/ChangeLog                           |  5 +++++
 capplets/common/wrapper-script.in                   |  9 ---------
 3 files changed, 5 insertions(+), 30 deletions(-)

commit 94e474bcd73b87a69fb1051dc42aa44124015229
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 6 16:22:51 2007 +0000

    remove caching from the thumbnailer since all of the current users work
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (message_from_child),
        (generate_theme_thumbnail), (generate_theme_thumbnail_async),
        (theme_thumbnail_factory_init):
        * theme-thumbnail.h: remove caching from the thumbnailer since
        all of the current users work around it anyway, and resources
        aren't managed properly
    
    svn path=/trunk/; revision=7699

 capplets/common/ChangeLog         |  9 +++++++
 capplets/common/theme-thumbnail.c | 57 ++++-----------------------------------
 capplets/common/theme-thumbnail.h |  5 +---
 3 files changed, 15 insertions(+), 56 deletions(-)

commit f7873f13043f4c5d31c5bca15f895177566e3171
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jun 6 16:05:55 2007 +0000

    some more house-keeping
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (safe_strcmp), (get_data_from_hash_by_name),
        (read_icon_theme), (handle_change_signal), (update_theme_index),
        (gnome_theme_meta_info_compare):
        * gnome-theme-info.h: some more house-keeping
    
    svn path=/trunk/; revision=7698

 capplets/common/ChangeLog          | 16 +++++++---------
 capplets/common/gnome-theme-info.c | 37 ++++++++++++-------------------------
 capplets/common/gnome-theme-info.h |  7 +------
 3 files changed, 20 insertions(+), 40 deletions(-)

commit ff9f268fffcb7809c6c286edae903d0120e062f4
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jun 6 11:51:40 2007 +0000

    converted more modules to the new arch.
    
    2007-06-06  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-default-editor.c:
        * gnome-settings-gtk1theme.c:
        * gnome-settings-mouse.c:
        * gnome-settings-sound.c:
        * gnome-settings-xsettings.c: converted more modules to the new arch.
    
        * gnome-settings-daemon.c (gnome_settings_daemon_new): now this is much
        cleaner.
    
    svn path=/trunk/; revision=7697

 gnome-settings-daemon/ChangeLog                    |  11 +
 gnome-settings-daemon/Makefile.am                  |   4 -
 gnome-settings-daemon/gnome-settings-daemon.c      |  27 +-
 .../gnome-settings-default-editor.c                |  91 ++-
 .../gnome-settings-default-editor.h                |  18 -
 gnome-settings-daemon/gnome-settings-gtk1theme.c   |  85 ++-
 gnome-settings-daemon/gnome-settings-gtk1theme.h   |  34 -
 gnome-settings-daemon/gnome-settings-mouse.c       | 769 +++++++++++----------
 gnome-settings-daemon/gnome-settings-mouse.h       |  25 -
 gnome-settings-daemon/gnome-settings-sound.c       |  93 ++-
 gnome-settings-daemon/gnome-settings-sound.h       |  33 -
 gnome-settings-daemon/gnome-settings-xsettings.c   | 746 +++++++++++---------
 gnome-settings-daemon/gnome-settings-xsettings.h   |  33 -
 13 files changed, 1068 insertions(+), 901 deletions(-)

commit 6bfc75101d55d1074b074957418c314c30dcd8c0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 5 22:20:33 2007 +0000

    don't destroy the window on "delete-event"
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (style_response_cb), (style_init): don't
        destroy the window on "delete-event"
    
        * appearance-themes.c: (theme_load_from_gconf),
        (theme_thumbnail_generate), (theme_queue_for_thumbnail),
        (theme_get_selected), (theme_set_custom_from_selected),
        (theme_remove_custom), (theme_thumbnail_done_cb),
        (theme_selection_changed_cb), (theme_custom_cb),
        (theme_details_changed_cb), (themes_init): hook up more of the
        customization functionality; don't unref generated thumbnails
        because they are still held in a cache by the thumbnailer
    
    svn path=/trunk/; revision=7696

 capplets/appearance/ChangeLog           |  14 ++
 capplets/appearance/appearance-style.c  |  14 +-
 capplets/appearance/appearance-themes.c | 320 +++++++++++++++++++-------------
 3 files changed, 219 insertions(+), 129 deletions(-)

commit e57c99d8e09a7f76baeb228153855a62973589e9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 5 22:16:51 2007 +0000

    add a parameter to circumvent the internal thumbnail cache to the
    
    2007-06-06  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (generate_theme_thumbnail_async):
        * theme-thumbnail.h: add a parameter to circumvent the internal
        thumbnail cache to the asynchronous generator
    
    svn path=/trunk/; revision=7695

 capplets/common/ChangeLog         | 15 +++++++++++++++
 capplets/common/theme-thumbnail.c | 14 ++++++++++----
 capplets/common/theme-thumbnail.h |  1 +
 3 files changed, 26 insertions(+), 4 deletions(-)

commit a9fee19f43d08ca5b2acf1ac54036ba3ad53cf19
Author: Christian Persch <chpe@gnome.org>
Date:   Tue Jun 5 19:47:16 2007 +0000

    Use GOption to parse the arguments. Bug #444399.
    
    2007-06-05  Christian Persch  <chpe@gnome.org>
    
        * typing-break/main.c: (main): Use GOption to parse the arguments. Bug
        #444399.
    
    svn path=/trunk/; revision=7694

 ChangeLog           |  5 +++++
 typing-break/main.c | 45 ++++++++++++++++++++++++---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit f5fe47e66ea4ef0f818e463d7d69a5e8977d87a2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jun 5 18:32:05 2007 +0000

    add capplets/appearance/gnome-theme-package.xml to generated files
    
    2007-06-05  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: add capplets/appearance/gnome-theme-package.xml
        to generated files
    
        * capplets/appearance/Makefile.am:
        * capplets/appearance/gnome-theme-package.xml.in: move theme
        package mime type over from the theme-manager (closes bug #444336)
    
    svn path=/trunk/; revision=7693

 ChangeLog                                      |  5 +++
 capplets/appearance/ChangeLog                  |  6 +++
 capplets/appearance/Makefile.am                | 57 +++++++++++++++++---------
 capplets/appearance/appearance-themes.c        | 46 +++++++++++++++++----
 capplets/appearance/gnome-theme-package.xml.in |  9 ++++
 configure.in                                   |  1 +
 6 files changed, 95 insertions(+), 29 deletions(-)

commit 9fac3c0c5a4767111349101730a520bf921abed1
Author: Ross Burton <ross@openedhand.com>
Date:   Tue Jun 5 16:55:01 2007 +0000

    Bump glib requirement to 2.13, for the ~second-accurate timers.
    
    2007-06-05  Ross Burton  <ross@openedhand.com>
    
        * configure.in:
        Bump glib requirement to 2.13, for the ~second-accurate timers.
    
    2007-06-05  Ross Burton  <ross@openedhand.com>
    
        * drw-monitor.c:
        * drw-break-window.c:
        * drwright.c:
        Use the second-accurate timers instead of the millisecond timers,
        in an attempt to use less processor time (#443547).
    
    svn path=/trunk/; revision=7692

 ChangeLog                       | 5 +++++
 configure.in                    | 2 +-
 typing-break/ChangeLog          | 8 ++++++++
 typing-break/drw-break-window.c | 6 +++---
 typing-break/drw-monitor.c      | 2 +-
 typing-break/drwright.c         | 5 ++---
 6 files changed, 20 insertions(+), 8 deletions(-)

commit 759c98a60836f83b10dd4c0fe3dbd46e97577564
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue Jun 5 15:45:16 2007 +0000

    converted font module to a loadable module.
    
    2007-06-05  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-font.c:
        * gnome-settings-daemon.c: converted font module to a loadable module.
    
    svn path=/trunk/; revision=7691

 gnome-settings-daemon/ChangeLog                    |   5 +
 gnome-settings-daemon/Makefile.am                  |   1 -
 gnome-settings-daemon/gnome-settings-daemon.c      |   5 +-
 gnome-settings-daemon/gnome-settings-font.c        | 415 ++++++++++++---------
 gnome-settings-daemon/gnome-settings-font.h        |  25 --
 gnome-settings-daemon/gnome-settings-screensaver.c |   3 -
 6 files changed, 245 insertions(+), 209 deletions(-)

commit 9843f45f543e1701a2ebc9dc9f110eb3611e5509
Author: Ross Burton <rburton@src.gnome.org>
Date:   Tue Jun 5 15:44:40 2007 +0000

    Don't use libgnome in typing-break (#443554)
    
    svn path=/trunk/; revision=7690

 ChangeLog                |  5 +++++
 configure.in             |  1 +
 typing-break/ChangeLog   |  6 ++++++
 typing-break/Makefile.am | 15 +++++----------
 typing-break/main.c      |  6 ++----
 5 files changed, 19 insertions(+), 14 deletions(-)

commit a84a68182acb300bb6eaad327eb21aa27dc0bda1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Jun 4 20:23:47 2007 +0000

    major resource handling fixup and initial bits for handling custom
    
    2007-06-04  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init), (desktop_shutdown):
        * appearance-desktop.h:
        * appearance-font.c: (font_init), (font_shutdown):
        * appearance-font.h:
        * appearance-main.c: (main_window_response), (main):
        * appearance-style.c: (style_init), (conv_to_widget_cb),
        (conv_from_widget_cb):
        * appearance-style.h:
        * appearance-themes.c:
        * appearance-themes.h:
        * appearance.h: major resource handling fixup and initial bits
        for handling custom metathemes
    
    svn path=/trunk/; revision=7689

 capplets/appearance/ChangeLog            |  15 ++
 capplets/appearance/appearance-desktop.c |  27 +--
 capplets/appearance/appearance-desktop.h |   3 +-
 capplets/appearance/appearance-font.c    |  19 +-
 capplets/appearance/appearance-font.h    |   1 +
 capplets/appearance/appearance-main.c    |  34 ++-
 capplets/appearance/appearance-style.c   |  12 +-
 capplets/appearance/appearance-style.h   |   2 -
 capplets/appearance/appearance-themes.c  | 370 ++++++++++++++++++++++---------
 capplets/appearance/appearance-themes.h  |   3 +-
 capplets/appearance/appearance.h         |   7 +
 11 files changed, 335 insertions(+), 158 deletions(-)

commit 1660c3fd02093c72b2ef4a3f48cd5f89c5b09b30
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Jun 4 19:26:06 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7688

 po/ChangeLog |    4 +
 po/es.po     | 1172 ++++++++++++++++++++++------------------------------------
 2 files changed, 451 insertions(+), 725 deletions(-)

commit 87e767a7ef27ba61a162b330e7b8bd9029fcc987
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jun 4 16:49:58 2007 +0000

    prepare for 2.19.3.
    
    2007-06-04  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.3.
    
    svn path=/trunk/; revision=7686

 ChangeLog    |  5 ++++
 NEWS         | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 94 insertions(+), 1 deletion(-)

commit 40ea6c128ba75419f3dca57edef0c67b9b9b4cb7
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Jun 4 16:03:09 2007 +0000

    Updated Czech translation.
    
    2007-06-04  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7685

 po/ChangeLog |    4 +
 po/cs.po     | 1164 ++++++++++++++++++++++------------------------------------
 2 files changed, 435 insertions(+), 733 deletions(-)

commit 1da8ce6a2a202ebf3377d5c1881b4102ec4cf59a
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Mon Jun 4 06:25:11 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7684

 po/ChangeLog |    4 +
 po/th.po     | 1613 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 799 insertions(+), 818 deletions(-)

commit 9603af9aed66a1e93943f13164238c1ceef1e3b3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Jun 3 18:50:08 2007 +0000

    Updated files list
    
    2007-06-03  Jens Granseuer  <jensgr@gmx.net>
    
        * POTFILES.in:
        * POTFILES.skip: Updated files list
    
    svn path=/trunk/; revision=7683

 po/ChangeLog     |  5 +++++
 po/POTFILES.in   | 25 ++++++-------------------
 po/POTFILES.skip | 13 -------------
 3 files changed, 11 insertions(+), 32 deletions(-)

commit 3aaf0a74725dcf4614d256c202f10e815d9ab7b1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 2 12:02:22 2007 +0000

    remove obsolete files remove leftover bits from bug #386413 to make
    
    2007-06-02  Jens Granseuer  <jensgr@gmx.net>
    
        * at-startup-session.c:
        * at-startup-session.h: remove obsolete files
        * main.c: (at_enable_toggled): remove leftover bits from bug
        #386413 to make distcheck pass
    
    svn path=/trunk/; revision=7682

 capplets/accessibility/at-properties/ChangeLog     |   7 +
 .../at-properties/at-startup-session.c             | 184 ---------------------
 .../at-properties/at-startup-session.h             |  20 ---
 capplets/accessibility/at-properties/main.c        |   4 -
 4 files changed, 7 insertions(+), 208 deletions(-)

commit 2406e8074814d2378ac12f28179d51a77ef18941
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Jun 2 11:26:19 2007 +0000

    don't try to distribute removed files...
    
    2007-06-02  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: don't try to distribute removed files...
    
    svn path=/trunk/; revision=7681

 ChangeLog   |  4 ++++
 Makefile.am | 24 +++++++-----------------
 2 files changed, 11 insertions(+), 17 deletions(-)

commit c5cec1dd9188c615b0424a725b126db6b19b4f90
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Wed May 30 18:06:33 2007 +0000

    Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    2007-05-30  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    svn path=/trunk/; revision=7680

 po/ChangeLog |   4 ++
 po/et.po     | 221 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 115 insertions(+), 110 deletions(-)

commit d64a72b4b3e46d6a3d58a86acb6b8cf9dc99fbe1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 30 17:36:26 2007 +0000

    fix duplicate mnemonic
    
    2007-05-30  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance.glade: fix duplicate mnemonic
    
    svn path=/trunk/; revision=7679

 capplets/appearance/ChangeLog        | 4 ++++
 capplets/appearance/appearance.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3da1e198a6036e91f6f9ab85b5f338d14cd273d6
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Wed May 30 12:12:37 2007 +0000

    Updated Czech translation.
    
    2007-05-30  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7678

 po/ChangeLog |    6 +-
 po/cs.po     | 1284 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 749 insertions(+), 541 deletions(-)

commit 76d0c77d85094051c1eb73f2a1d55c063e104372
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 29 23:17:39 2007 +0000

    simplify, clean up, and fix a few leaks
    
    2007-05-30  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (safe_strcmp), (add_data_to_hash_by_name),
        (handle_change_signal), (update_common_theme_dir_index),
        (gtk2_dir_changed), (keybinding_dir_changed),
        (metacity_dir_changed), (common_theme_dir_changed),
        (common_icon_theme_dir_changed), (top_theme_dir_changed),
        (top_icon_theme_dir_changed), (real_add_top_theme_dir_monitor),
        (gnome_theme_info_find_by_type_helper),
        (gnome_theme_info_find_by_type),
        (gnome_theme_icon_info_find_all_helper),
        (gnome_theme_icon_info_find_all), (gnome_theme_icon_info_compare),
        (gnome_theme_meta_info_new),
        (gnome_theme_meta_info_find_all_helper),
        (gnome_theme_meta_info_find_all), (gnome_theme_meta_info_compare),
        (gnome_theme_info_register_theme_change): simplify, clean up, and fix
        a few leaks
    
    svn path=/trunk/; revision=7677

 capplets/common/ChangeLog          |  18 ++
 capplets/common/gnome-theme-info.c | 488 +++++++++++++------------------------
 2 files changed, 189 insertions(+), 317 deletions(-)

commit 6fc827db4d8c806d6451e9ec30933aaa102cf050
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 29 19:20:07 2007 +0000

    recognize both "gtk-color-scheme" and "gtk_color_scheme" (fixes thumbnail
    
    2007-05-29  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_get_color_scheme): recognize both
        "gtk-color-scheme" and "gtk_color_scheme" (fixes thumbnail generation
        for e.g. the Mist metatheme)
    
    svn path=/trunk/; revision=7676

 capplets/common/ChangeLog     |  6 ++++++
 capplets/common/gtkrc-utils.c | 18 ++++++------------
 2 files changed, 12 insertions(+), 12 deletions(-)

commit 96299749bbca6eaa83b593969d1bd7d552475102
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 29 08:11:19 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-05-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7675

 po/ChangeLog |  4 +++
 po/nb.po     | 80 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 49 insertions(+), 35 deletions(-)

commit 8ad25db4a134f46ba097bf290f5f33ac76fa1589
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 28 20:19:32 2007 +0000

    remove property editor for the deprecated GtkOptionMenu, now that all
    
    2007-05-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c:
        * gconf-property-editor.h: remove property editor for the deprecated
        GtkOptionMenu, now that all users are upgraded to GtkComboBox
    
    svn path=/trunk/; revision=7674

 capplets/common/ChangeLog               |   6 ++
 capplets/common/gconf-property-editor.c | 116 --------------------------------
 capplets/common/gconf-property-editor.h |  14 ----
 3 files changed, 6 insertions(+), 130 deletions(-)

commit 20f8aa0d5e7e95a9751a4a2fec0ab43759c017db
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon May 28 19:34:38 2007 +0000

    Translation updated.
    
    2007-05-28  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=7672

 po/ChangeLog |  4 ++++
 po/hu.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit bd8a7ca464464c9a88d17d1523e2801128ea6a65
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 28 18:56:22 2007 +0000

    drop unnecessary strlen (generate_theme_thumbnail_async): save some casts
    
    2007-05-28  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-thumbnail.c: (generate_theme_thumbnail): drop unnecessary strlen
        (generate_theme_thumbnail_async): save some casts
        (generate_gtk_theme_thumbnail): don't leak the theme name
    
    svn path=/trunk/; revision=7671

 capplets/common/ChangeLog         |  6 ++++++
 capplets/common/theme-thumbnail.c | 16 +++++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

commit 47099c43e3c25ed63b8be790ca8316c8aad47e5d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 28 14:02:46 2007 +0000

    minor code simplification/cleanup
    
    2007-05-28  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (style_init), (find_string_in_model),
        (conv_to_widget_cb), (update_color_buttons_from_string): minor
        code simplification/cleanup
    
    svn path=/trunk/; revision=7670

 capplets/appearance/ChangeLog          |  6 ++++
 capplets/appearance/appearance-style.c | 52 +++++++++++++++++-----------------
 2 files changed, 32 insertions(+), 26 deletions(-)

commit d2b6d5ef48b670069742218e996670e23e861d6b
Author: Jan Arne Petersen <jpetersen@jpetersen.org>
Date:   Mon May 28 12:25:56 2007 +0000

    set the device property to the correct value before opening the mixer.
    
    2007-05-28  Jan Arne Petersen  <jpetersen@jpetersen.org>
    
        * actions/acme-volume-gstreamer.c: (acme_volume_gstreamer_open): set
        the device property to the correct value before opening the mixer.
        (closes bug #441552)
    
    
    svn path=/trunk/; revision=7668

 gnome-settings-daemon/ChangeLog                       |  6 ++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 19 +++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit 3ba13b0c461ef9bf04859fa4d3c0d7ddf8b087de
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 28 12:09:18 2007 +0000

    archiver/*
    
    2007-05-28  Jens Granseuer  <jensgr@gmx.net>
    
        * TODO.xml:
        * archiver/*
        * control-center.spec.in:
        * debian/*:
        * idl/*:
        * root-manager/*: remove obsolete files
    
    2007-05-28  Jens Granseuer  <jensgr@gmx.net>
    
        * GNOME_SettingsDaemon.server.in: remove file
    
    svn path=/trunk/; revision=7667

 ChangeLog                                          |    9 +
 TODO.xml                                           |   19 -
 archiver/Bonobo_Moniker_archiver.oaf.in            |   35 -
 archiver/ChangeLog                                 | 1084 -----------
 archiver/Makefile.am                               |   99 -
 archiver/README                                    |    2 -
 archiver/TODO                                      |   40 -
 archiver/archive.c                                 |  781 --------
 archiver/archive.h                                 |   94 -
 archiver/archiver-client.c                         |  442 -----
 archiver/archiver-client.h                         |   46 -
 archiver/archiver-spec                             |  122 --
 archiver/backend-list.c                            |  363 ----
 archiver/backend-list.h                            |   78 -
 archiver/bonobo-config-archiver.c                  |  942 ----------
 archiver/bonobo-config-archiver.h                  |   89 -
 archiver/bonobo-moniker-archiver.c                 |  146 --
 archiver/cluster-location.c                        |  222 ---
 archiver/cluster-location.h                        |   59 -
 archiver/cluster.c                                 |  437 -----
 archiver/cluster.h                                 |   71 -
 archiver/config-archiver.c                         |  439 -----
 archiver/config-log.c                              | 1071 -----------
 archiver/config-log.h                              |   90 -
 archiver/config-manager.c                          |   54 -
 archiver/config_archiverConf.sh.in                 |    4 -
 archiver/default-global.xml                        |   13 -
 archiver/default-user.xml                          |   10 -
 archiver/future-spec                               |   95 -
 archiver/location.c                                | 1889 --------------------
 archiver/location.h                                |  144 --
 archiver/main.c                                    |  384 ----
 archiver/tests/ChangeLog                           |  125 --
 archiver/tests/README                              |   48 -
 archiver/tests/test-1.sh                           |  187 --
 archiver/tests/test-2.sh                           |  219 ---
 archiver/tests/test-3.sh                           |  245 ---
 archiver/util.c                                    |  113 --
 archiver/util.h                                    |   51 -
 archiver/versioning-spec                           |  193 --
 control-center.spec.in                             |  135 --
 debian/changelog                                   |  428 -----
 debian/control                                     |   51 -
 debian/copyright                                   |   10 -
 debian/libconfig-archiver-dev.files                |    3 -
 debian/libconfig-archiver-dev.links                |    1 -
 debian/libconfig-archiver0.files                   |    1 -
 debian/menu                                        |   24 -
 debian/postinst                                    |   10 -
 debian/postrm                                      |   10 -
 debian/preinst                                     |   10 -
 debian/rules                                       |  127 --
 gnome-settings-daemon/ChangeLog                    |    4 +
 .../GNOME_SettingsDaemon.server.in                 |   11 -
 idl/ConfigArchiver.idl                             |  123 --
 idl/GNOME_SettingsDaemon.idl                       |   13 -
 idl/Makefile.am                                    |    7 -
 root-manager/Makefile.am                           |   32 -
 root-manager/TODO                                  |    1 -
 root-manager/root-manager-helper.c                 |   74 -
 root-manager/root-manager-wrap.c                   |  576 ------
 root-manager/root-manager-wrap.h                   |   68 -
 root-manager/root-manager.c                        |  720 --------
 root-manager/root-manager.h                        |   52 -
 root-manager/shvar.c                               |  377 ----
 root-manager/shvar.h                               |  100 --
 root-manager/xst-keys.png                          |  Bin 3778 -> 0 bytes
 67 files changed, 13 insertions(+), 13509 deletions(-)

commit 8f81487ceab3c554a2b3a9ee883beac7cf271ae2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 28 12:05:12 2007 +0000

    remove fonts, theme, and ui capplets from the build and purge some
    
    2007-05-28  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in:
        * capplets/Makefile.am: remove fonts, theme, and ui capplets from the build
        and purge some obsolete stuff from configure.in
    
    svn path=/trunk/; revision=7666

 ChangeLog            |   6 ++
 capplets/Makefile.am |  17 +++--
 configure.in         | 172 ++++++++++++++++++---------------------------------
 3 files changed, 76 insertions(+), 119 deletions(-)

commit b5d7092ee9e6ff507bcb7df8f0eee75a38efec77
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 27 19:12:12 2007 +0000

    and don't use gtk_timeout_remove, either..
    
    2007-05-27  Jens Granseuer  <jensgr@gmx.net>
    
        * pipeline-tests.c: (user_test_pipeline): and don't use
        gtk_timeout_remove, either..
    
    svn path=/trunk/; revision=7665

 capplets/sound/ChangeLog        | 5 +++++
 capplets/sound/pipeline-tests.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d66e29fc599c7799e07b732db6b7c32f4eed01d7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 27 18:50:41 2007 +0000

    use g_timeout_add() instead of the deprecated gtk_timeout_add() set non-0
    
    2007-05-27  Jens Granseuer  <jensgr@gmx.net>
    
        * pipeline-tests.c: (user_test_pipeline): use g_timeout_add() instead
        of the deprecated gtk_timeout_add()
        * sound-properties.glade: set non-0 pulse step for the progress bar to
        actually make it move (fixes bug #441587)
    
    svn path=/trunk/; revision=7664

 capplets/sound/ChangeLog              | 7 +++++++
 capplets/sound/pipeline-tests.c       | 4 ++--
 capplets/sound/sound-properties.glade | 2 +-
 3 files changed, 10 insertions(+), 3 deletions(-)

commit 1f606a3e3d86793b4e7ade4bf912e3a9aa10b108
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sun May 27 10:27:04 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7663

 po/ChangeLog |   4 +
 po/sv.po     | 575 ++++++++++++-----------------------------------------------
 2 files changed, 117 insertions(+), 462 deletions(-)

commit 41c0f5b2065d414aca10ca171425073b016b1992
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 25 20:26:57 2007 +0000

    don't leak thumbnails
    
    2007-05-25  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (prepare_list): don't leak thumbnails
    
    svn path=/trunk/; revision=7662

 capplets/appearance/ChangeLog          | 4 ++++
 capplets/appearance/appearance-style.c | 2 ++
 2 files changed, 6 insertions(+)

commit cfb2e71789230f063ef6e7801beede803574a959
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 25 20:22:44 2007 +0000

    properly distinguish between theme name and theme label (currently only
    
    2007-05-25  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (prepare_list), (conv_to_widget_cb),
        (conv_from_widget_cb): properly distinguish between theme name and
        theme label (currently only relevant for icon themes)
    
    svn path=/trunk/; revision=7661

 capplets/appearance/ChangeLog          |  6 ++++
 capplets/appearance/appearance-style.c | 53 ++++++++++++++++++++++------------
 2 files changed, 40 insertions(+), 19 deletions(-)

commit f86808e954c7073d4f1ee9fb88862f18a59e3699
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 25 20:16:10 2007 +0000

    add a "readable_name" property for icon themes, and make sure "name"
    
    2007-05-25  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (read_icon_theme):
        * gnome-theme-info.h:
        add a "readable_name" property for icon themes, and make sure "name"
        points to the internal theme name
    
    svn path=/trunk/; revision=7660

 capplets/common/ChangeLog          | 7 +++++++
 capplets/common/gnome-theme-info.c | 8 ++++++--
 capplets/common/gnome-theme-info.h | 1 +
 3 files changed, 14 insertions(+), 2 deletions(-)

commit 729d77ed0ed8aa75b0c97c9e12fb0ccea7d36dcd
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri May 25 18:14:11 2007 +0000

    Make gtk+ theme previews more compact.
    
    2007-05-25  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnail.c:
        Make gtk+ theme previews more compact.
    
    svn path=/trunk/; revision=7659

 capplets/common/ChangeLog         |  5 +++++
 capplets/common/theme-thumbnail.c | 38 ++++++++++++++++++++------------------
 2 files changed, 25 insertions(+), 18 deletions(-)

commit f9e6d4c508581fbd700dab4694af8cbeb03a1d0e
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri May 25 17:49:38 2007 +0000

    Add theme-thumbnailing.png to Makefile.am.
    
    2007-05-25  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnailing.png:
        Add theme-thumbnailing.png to Makefile.am.
    
    svn path=/trunk/; revision=7658

 capplets/appearance/ChangeLog   | 5 +++++
 capplets/appearance/Makefile.am | 1 +
 2 files changed, 6 insertions(+)

commit ec444482352036499d77c1dbe4c61de081ed2efc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 25 17:28:05 2007 +0000

    sync with libegg code (closes bug #441042)
    
    2007-05-25  Jens Granseuer  <jensgr@gmx.net>
    
        * eggaccelerators.c: (egg_accelerator_parse_virtual): sync with libegg
        code (closes bug #441042)
    
    svn path=/trunk/; revision=7657

 gnome-settings-daemon/ChangeLog         | 5 +++++
 gnome-settings-daemon/eggaccelerators.c | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 82a2c1f64dfe5b4be0f5256918400d6238e548cf
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri May 25 15:25:20 2007 +0000

    Added as it is used by appearance-themes.c
    
    2007-05-25  Denis Washington  <denisw@svn.gnome.org>
    
        * theme-thumbnailing.png:
        Added as it is used by appearance-themes.c
    
    svn path=/trunk/; revision=7656

 capplets/appearance/ChangeLog              |   5 +++++
 capplets/appearance/theme-thumbnailing.png | Bin 0 -> 2038 bytes
 2 files changed, 5 insertions(+)

commit 339c2f5307e73bf659e31ce07cf9639285a099ca
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Fri May 25 14:50:32 2007 +0000

    Fix button order in theme details dialog again.
    
    2007-05-25  Denis Washington  <denisw@svn.gnome.org>
    
        * appearance.glade: Fix button order in theme details dialog
    again.
    
    svn path=/trunk/; revision=7655

 capplets/appearance/ChangeLog        | 4 ++++
 capplets/appearance/appearance.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 70f7e8358fa98dbe4568a608c2ee1d760ac1b76d
Author: Denis Washington <denisw@src.gnome.org>
Date:   Fri May 25 14:44:03 2007 +0000

    Revert the organization of the theme details dialog to the old (2.18)
    
    * appearance.glade:
    * appearance-style.c:
    Revert the organization of the theme details dialog to the old (2.18)
    style again, but now with thumbnails for gtk+, metacity and icon themes.
    
    svn path=/trunk/; revision=7654

 capplets/appearance/ChangeLog          |   7 +
 capplets/appearance/appearance-style.c | 134 +++++---
 capplets/appearance/appearance.glade   | 543 +++++++++++++++++++++------------
 3 files changed, 441 insertions(+), 243 deletions(-)

commit 4fe155f858508344c405cb866260845042e3c158
Author: Denis Washington <denisw@src.gnome.org>
Date:   Fri May 25 14:35:52 2007 +0000

    Add functions to generate thumbnails for specific types of themes, for
    
    * theme-thumbnail.[ch]:
    Add functions to generate thumbnails for specific types of themes, for
    instance a metacity theme thumbnail.
    
    
    svn path=/trunk/; revision=7653

 capplets/common/ChangeLog         |   6 +
 capplets/common/theme-thumbnail.c | 306 ++++++++++++++++++++++++++++++--------
 capplets/common/theme-thumbnail.h |   4 +
 3 files changed, 258 insertions(+), 58 deletions(-)

commit 7f790a7a9a164e4ca7b8e8f3ed1092193be5775e
Author: Kenneth Nielsen <kennethn@src.gnome.org>
Date:   Thu May 24 22:20:27 2007 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=7652

 po/da.po | 2998 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1934 insertions(+), 1064 deletions(-)

commit 8babb526198a9f1efc9f0cebc92b18c9e269dd5a
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu May 24 15:05:51 2007 +0000

    Scroll to new selected cell if the gconf value changes.
    
    * gconf-property-editor.c: (peditor_tree_view_widget_changed):
    Scroll to new selected cell if the gconf value changes.
    
    svn path=/trunk/; revision=7651

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 6 ++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit c1a2b4655331bbbea84531077f00c72d08599638
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 23 17:30:07 2007 +0000

    make sure we always return a copy of the window manager name, not a static
    
    2007-05-23  Jens Granseuer  <jensgr@gmx.net>
    
        * wm-common.c: (wm_common_get_current_window_manager): make sure we
        always return a copy of the window manager name, not a static string
        (fixes bug #439244)
    
    svn path=/trunk/; revision=7650

 capplets/common/ChangeLog   |  6 ++++++
 capplets/common/wm-common.c | 29 +++++++++++------------------
 2 files changed, 17 insertions(+), 18 deletions(-)

commit 878855e507bd0ef118cd141e83ad625d329f5a33
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Wed May 23 09:08:14 2007 +0000

    updaed hebrew translation
    
    svn path=/trunk/; revision=7648

 po/ChangeLog |    4 +
 po/he.po     | 1827 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1079 insertions(+), 752 deletions(-)

commit 29c6ddb8cc7277c16e4af369f15589281f899ebf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 22 17:46:43 2007 +0000

    surivive XRandR returning weird results for some dual-screen setups. This
    
    2007-05-22  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (get_current_resolution): surivive XRandR returning weird
        results for some dual-screen setups. This fixes the crash in bug
        #356520, but a proper fix for handling this situation is still
        necessary, unless this is just a driver/X bug...
    
    svn path=/trunk/; revision=7646

 capplets/display/ChangeLog |  7 +++++++
 capplets/display/main.c    | 11 +++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit fdaca460c4020839c85c0ec02af603ea9853e94d
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue May 22 17:14:46 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7645

 po/ChangeLog |  4 ++++
 po/es.po     | 31 +++++++++++++++++++------------
 2 files changed, 23 insertions(+), 12 deletions(-)

commit 277c0eba4b84dc36be44416c31c23729717de2bb
Author: Stanislav Brabec <utx@src.gnome.org>
Date:   Tue May 22 10:33:28 2007 +0000

    Removed superfluous X-SuSE-translate tag.
    
    svn path=/trunk/; revision=7644

 shell/ChangeLog             | 4 ++++
 shell/gnomecc.desktop.in.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 7bbfdbacac82cac3f4acad442935fc2dcef1f738
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sun May 20 01:17:28 2007 +0000

    Fixes in Brazilian Portuguese translation by Raul Pereira
    
    2007-05-19  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Fixes in Brazilian Portuguese translation by Raul Pereira
        <contato@raulpereira.com>.
    
    svn path=/trunk/; revision=7642

 po/ChangeLog |  5 +++++
 po/pt_BR.po  | 19 +++++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

commit f8aa7cb87bdf3b5bd074f481661c71a8d5db536b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat May 19 13:36:22 2007 +0000

    properly building gobject
    
    svn path=/trunk/; revision=7640

 capplets/keyboard/ChangeLog                            |  3 +++
 capplets/keyboard/gnome-keyboard-properties-xkb.c      | 12 ++++++------
 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c |  8 ++++----
 capplets/keyboard/gnome-keyboard-properties-xkbmc.c    | 10 ++++++++--
 4 files changed, 21 insertions(+), 12 deletions(-)

commit 251deaaff828312d591b4d394a79b1779b664e1b
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Sat May 19 13:14:40 2007 +0000

    use OnlyShowIn=; so the item is not listed in the menu editor (Closes:
    
    2007-05-19  Sebastien Bacher  <seb128@ubuntu.com>
    
        * themus-theme-applier.desktop.in.in: use OnlyShowIn=; so the item is
        not listed in the menu editor (Closes: #434956)
    
    svn path=/trunk/; revision=7639

 vfs-methods/themus/ChangeLog                          | 5 +++++
 vfs-methods/themus/themus-theme-applier.desktop.in.in | 1 +
 2 files changed, 6 insertions(+)

commit 8e4cd527042c45c339c65cf3ce70a3c684ccc730
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 19 12:46:42 2007 +0000

    don't call gconf_value_free with a NULL value
    
    2007-05-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_tree_view_widget_changed):
        don't call gconf_value_free with a NULL value
    
    svn path=/trunk/; revision=7638

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 23839961ae0e93700d001de84f763ab6ed143c16
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat May 19 11:27:06 2007 +0000

    make things buildable with libxklavier 3.2
    
    svn path=/trunk/; revision=7637

 ChangeLog                                           | 4 ++++
 capplets/keyboard/ChangeLog                         | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkbmc.c | 4 ++--
 configure.in                                        | 2 +-
 4 files changed, 12 insertions(+), 3 deletions(-)

commit 9bc2394d4eca65d32919fe8ad4718a9469b3cefc
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 18 18:55:39 2007 +0000

    add a property editor for GtkTreeView and fix crashes with all peditors if
    
    2007-05-18  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_boolean_value_changed),
        (peditor_integer_value_changed), (peditor_string_value_changed),
        (peditor_color_value_changed), (peditor_select_menu_value_changed),
        (peditor_combo_box_value_changed),
        (peditor_select_radio_value_changed),
        (peditor_numeric_range_value_changed),
        (peditor_font_value_changed), (peditor_image_value_changed),
        (gconf_peditor_new_select_radio_with_enum),
        (peditor_tree_view_value_changed),
        (peditor_tree_view_widget_changed), (gconf_peditor_new_tree_view):
        * gconf-property-editor.h: add a property editor for GtkTreeView
        and fix crashes with all peditors if the requested key is not
        available
    
    svn path=/trunk/; revision=7636

 capplets/common/ChangeLog               |  16 ++++
 capplets/common/gconf-property-editor.c | 135 +++++++++++++++++++++++++-------
 capplets/common/gconf-property-editor.h |   8 +-
 3 files changed, 129 insertions(+), 30 deletions(-)

commit c550a6de3218c4fc13b45a887650a2ff44893edd
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Fri May 18 05:45:10 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7635

 po/ChangeLog |    4 +
 po/th.po     | 1711 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1007 insertions(+), 708 deletions(-)

commit a0b8e6e3e22036facdb2a12b71dba79ab2b1330a
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu May 17 22:23:00 2007 +0000

    Adding optional vendor combo
    
    svn path=/trunk/; revision=7634

 capplets/keyboard/ChangeLog                        |   6 +
 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 240 +++++++++++++++++----
 capplets/keyboard/gnome-keyboard-properties.glade  |  40 +++-
 3 files changed, 245 insertions(+), 41 deletions(-)

commit eb516cd2181c984e528e00a646d872ed73ec9e55
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu May 17 22:18:29 2007 +0000

    Include libxklavier 3.3 into libgnomekbd deps
    
    svn path=/trunk/; revision=7633

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a76ef5e383f02aadf3038e069ad841ddf1c6a81b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu May 17 19:45:08 2007 +0000

    Patch by: Chad Miller
    
    2007-05-17  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Chad Miller
    
        * gnome-settings-dbus.c: (gnome_settings_server_init): double-check
        that DBUS really passed us an error (closes bug #439208)
    
    svn path=/trunk/; revision=7632

 gnome-settings-daemon/ChangeLog             |  7 +++++++
 gnome-settings-daemon/gnome-settings-dbus.c | 10 +++++++---
 2 files changed, 14 insertions(+), 3 deletions(-)

commit ab651d94c1db5d4ca547d2c6b92673a6d90dfbf4
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu May 17 09:00:56 2007 +0000

    declare module types registration functions.
    
    2007-05-17  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-daemon.c: declare module types registration functions.
    
    svn path=/trunk/; revision=7630

 gnome-settings-daemon/ChangeLog               | 2 ++
 gnome-settings-daemon/gnome-settings-daemon.c | 7 +++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 5d9f6730eac19f21fcaabfc70f13b928fa63cc85
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu May 17 08:47:57 2007 +0000

    use correct parent for GnomeSettingsModuleScreensaverClass.
    
    2007-05-17  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-screensaver.c: use correct parent for
        GnomeSettingsModuleScreensaverClass.
    
    svn path=/trunk/; revision=7629

 gnome-settings-daemon/ChangeLog                    | 5 +++++
 gnome-settings-daemon/gnome-settings-screensaver.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit dae19528050b1ffcce1559d19a8f0db532c2357e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 16 16:48:59 2007 +0000

    minor cleanup and getting rid of unnecessary casts
    
    2007-05-16  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: (prepare_combo), (find_string_in_model),
        (conv_to_widget_cb), (conv_from_widget_cb),
        (update_color_buttons_from_string), (color_button_clicked_cb):
        minor cleanup and getting rid of unnecessary casts
    
    svn path=/trunk/; revision=7628

 capplets/appearance/ChangeLog          |  7 +++++++
 capplets/appearance/appearance-style.c | 37 +++++++++++++++-------------------
 2 files changed, 23 insertions(+), 21 deletions(-)

commit c5b68b203c08b0bce1e61b9899bd4c4850b0781c
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 16 16:35:28 2007 +0000

    Minor code cleanup.
    
    * appearance-desktop.c: (desktop_init): Minor code cleanup.
    
    svn path=/trunk/; revision=7627

 capplets/appearance/ChangeLog            |   4 +
 capplets/appearance/appearance-desktop.c |  12 +-
 capplets/appearance/appearance.glade     | 492 ++++++++++++++++---------------
 3 files changed, 257 insertions(+), 251 deletions(-)

commit c2ac13ab3b88867e138af76159a04d00b52347b8
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 16 16:15:45 2007 +0000

    re-enable drag-and-drop for the wallpaper list.
    
    * appearance-desktop.c: (desktop_init): re-enable drag-and-drop for the
    wallpaper list.
    
    svn path=/trunk/; revision=7626

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 7270a09cc310c72122f251ceb486a16eb3aa49e2
Author: David Lodge <dlodge@src.gnome.org>
Date:   Tue May 15 21:36:35 2007 +0000

    Updated en_GB translation
    
    svn path=/trunk/; revision=7625

 po/ChangeLog |   6 +-
 po/en_GB.po  | 243 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 126 insertions(+), 123 deletions(-)

commit de591bd5e2a898a6415b647efd7dfd34e1268591
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Tue May 15 17:00:11 2007 +0000

    + Occitan
    
    svn path=/trunk/; revision=7624

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit 931f67683faccd4eddff3e11de3855aef43f4871
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   Tue May 15 16:59:43 2007 +0000

    Occitan first translation
    
    svn path=/trunk/; revision=7623

 po/oc.po | 3887 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3887 insertions(+)

commit 5d5877c4f4c4344802b2aedf71c78b031868e37b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 14 17:58:01 2007 +0000

    fix button order, remove redundant receives_default, don't mark stock
    
    2007-05-14  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance.glade: fix button order, remove redundant receives_default,
        don't mark stock labels translatable, and other minor cleanups
    
    svn path=/trunk/; revision=7622

 capplets/appearance/ChangeLog        |  5 +++++
 capplets/appearance/appearance.glade | 31 +++++++++++--------------------
 2 files changed, 16 insertions(+), 20 deletions(-)

commit 8c952454962af72faeedf451cdd016c3f1f2cdfe
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon May 14 17:28:54 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7621

 po/ChangeLog |    4 +
 po/sv.po     | 1167 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 546 insertions(+), 625 deletions(-)

commit 045ad6117243beadd7470c0d1e31dc0f927dbb6a
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 21:26:03 2007 +0000

    Connect up colour scheme monitor. Hide window on delete, rather than
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (prepare_combo): Connect up colour scheme monitor. Hide
        window on delete, rather than destroy. Add an item to the theme lists if the
        current theme is not present already.
        * appearance-themes.c: (theme_custom_cb): Add missing #include. Moved some
        code to appearance-style.c
    
    svn path=/trunk/; revision=7620

 capplets/appearance/ChangeLog           |  8 ++++
 capplets/appearance/appearance-style.c  | 79 ++++++++++++++++++++++++++-------
 capplets/appearance/appearance-themes.c |  3 +-
 3 files changed, 74 insertions(+), 16 deletions(-)

commit 64c8cbba68e94160d14c229c12e276f7cd3ac15c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 20:24:14 2007 +0000

    Sort the items in the theme lists
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (prepare_combo): Sort the items in the theme lists
    
    svn path=/trunk/; revision=7619

 capplets/appearance/ChangeLog          | 4 ++++
 capplets/appearance/appearance-style.c | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 91e5a65efa80364c2718e4cdd0aaf7ae2e86884a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 19:33:50 2007 +0000

    unref the thumbnail when we're done with it
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (theme_thumbnail_func): unref the thumbnail when
        we're done with it
    
    svn path=/trunk/; revision=7618

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 0b671b7b69a44ca5f23165cee3e3033f7d43f687
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 19:30:35 2007 +0000

    Don't free data we don't own. Prevents crash when changing themes.
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-themes.c: (theme_thumbnail_func): Don't free data we don't own.
        Prevents crash when changing themes.
    
    svn path=/trunk/; revision=7617

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit fc7b01eb53b0220a249b759b8da5334512b87295
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 19:12:37 2007 +0000

    fix asynchronous thumbnail generation
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init), (theme_thumbnail_generate),
        (theme_thumbnail_func): fix asynchronous thumbnail generation
    
    svn path=/trunk/; revision=7616

 capplets/appearance/ChangeLog           |  5 ++
 capplets/appearance/appearance-themes.c | 89 +++++++++++++++++++++++++--------
 2 files changed, 72 insertions(+), 22 deletions(-)

commit 2717cd85e6830a50cebc98538de848b46dc5811b
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 18:23:12 2007 +0000

    Add colour scheme functions
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: Add colour scheme functions
    
    svn path=/trunk/; revision=7615

 capplets/appearance/ChangeLog          |   4 +
 capplets/appearance/appearance-style.c | 253 ++++++++++++++++++++++++++-------
 2 files changed, 208 insertions(+), 49 deletions(-)

commit 3f22b2e8b35b0e84b81ba5e48122ef78ac8e4a0a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 16:59:24 2007 +0000

    fix duplicate mnemonic
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance.glade: fix duplicate mnemonic
    
    svn path=/trunk/; revision=7614

 capplets/appearance/ChangeLog        | 4 ++++
 capplets/appearance/appearance.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 916f12d16ecf37530aabcb390b84dc39347beedb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 16:55:14 2007 +0000

    refix button name, too
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): refix button name, too
    
    svn path=/trunk/; revision=7613

 capplets/appearance/ChangeLog           | 4 ++++
 capplets/appearance/appearance-themes.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit d693498c6fc20e5333c8afd831f85449b5b51ebb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 16:35:57 2007 +0000

    fix gcc 2 build again (bad thos)
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): fix gcc 2 build again (bad thos)
    
    svn path=/trunk/; revision=7612

 capplets/appearance/ChangeLog           | 4 ++++
 capplets/appearance/appearance-themes.c | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 2e4c1f2e64a9a916793685d76a1ffd4e8d433b5e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 16:26:33 2007 +0000

    use predefined GTK constants for reponse ids
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (appearance_window_response):
        * appearance.glade: use predefined GTK constants for reponse ids
    
    svn path=/trunk/; revision=7611

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 3 ++-
 capplets/appearance/appearance.glade     | 3 ++-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit a0e3a8b48d06cfab27fab08603531c4969173779
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 16:21:54 2007 +0000

    Use asynchronous methods to generate thumbnails.
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-themes.c: (themes_init), (theme_changed_func): Use asynchronous
        methods to generate thumbnails.
    
    svn path=/trunk/; revision=7610

 capplets/appearance/ChangeLog           |  5 ++++
 capplets/appearance/appearance-themes.c | 45 +++++++++++++++++++++++----------
 2 files changed, 36 insertions(+), 14 deletions(-)

commit 55f1e82094ef50eaaf3e52dba312b9a1a2fe88da
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 16:20:17 2007 +0000

    now we parse the entire glade file at startup, there's no need to reparse
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-font.c: (cb_details_response), (cb_show_details):
        now we parse the entire glade file at startup, there's no need to
        reparse it for the font details dialog
    
    svn path=/trunk/; revision=7609

 capplets/appearance/ChangeLog         |  6 +++
 capplets/appearance/appearance-font.c | 78 +++++++++++++++--------------------
 2 files changed, 39 insertions(+), 45 deletions(-)

commit 150a7cdbf6f71a60083b5da0181a573cee1facb7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 15:59:00 2007 +0000

    update button name, declare variables at beginning of block fix button
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init): update button name, declare
        variables at beginning of block
        * appearance.glade: fix button group assignment (again)
    
    svn path=/trunk/; revision=7608

 capplets/appearance/ChangeLog           | 6 ++++++
 capplets/appearance/appearance-themes.c | 5 +++--
 capplets/appearance/appearance.glade    | 2 +-
 3 files changed, 10 insertions(+), 3 deletions(-)

commit ab26956b2ef71db2b34a9a55ef658cf0b6181620
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 15:41:30 2007 +0000

    don't leak the WPItems
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-item.c: (gnome_wp_item_free): don't leak the WPItems
    
    svn path=/trunk/; revision=7607

 capplets/appearance/ChangeLog       | 4 ++++
 capplets/appearance/gnome-wp-item.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 33aded2641016488a39509f3ee8bdc73f93b7224
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 15:37:13 2007 +0000

    - Sort metathemes icon view - Apply theme on selection change - Use theme
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-themes.c: (themes_init), (theme_changed_func),
        (theme_selection_changed_cb), (theme_custom_cb):
        - Sort metathemes icon view
        - Apply theme on selection change
        - Use theme name rather than display name to apply theme
    
    svn path=/trunk/; revision=7606

 capplets/appearance/ChangeLog           |  8 ++++++
 capplets/appearance/appearance-themes.c | 45 ++++++++++++++++++++-------------
 2 files changed, 36 insertions(+), 17 deletions(-)

commit ff9e8696411dd135925ab6d9768a88e7565b8769
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 15:20:18 2007 +0000

    Move style tab into new window
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance-main.c: (init_appearance_data):
        * appearance-themes.c: (themes_init), (theme_activated_cb):
        * appearance.glade:
    
        Move style tab into new window
    
    svn path=/trunk/; revision=7605

 capplets/appearance/ChangeLog           |    8 +
 capplets/appearance/appearance-main.c   |    2 +-
 capplets/appearance/appearance-themes.c |   20 +-
 capplets/appearance/appearance.glade    | 1101 ++++++++++++++++---------------
 4 files changed, 591 insertions(+), 540 deletions(-)

commit b0c19d8242c8fab63fa118ab2465bcfb1926cf6e
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sun May 13 15:00:15 2007 +0000

    fixed a small mistake in Jens' last commit.
    
    * appearance.glade: fixed a small mistake in Jens' last commit.
    
    svn path=/trunk/; revision=7604

 capplets/appearance/ChangeLog        | 4 ++++
 capplets/appearance/appearance.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a729c6ff0ffc940fb15365f2a23a5cbb63dd237c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 14:46:29 2007 +0000

    fix font rendering button group assignment, rename Preferences tab to
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance.glade: fix font rendering button group assignment,
        rename Preferences tab to Interface
    
    svn path=/trunk/; revision=7603

 capplets/appearance/ChangeLog        | 5 +++++
 capplets/appearance/appearance.glade | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 4bc56320e36efa3294a5cedbc4a39cc2f6383f4f
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sun May 13 14:15:51 2007 +0000

    Made thumbnails in Desktop tab a bit smaller.
    
    * gnome-wp-item.c: Made thumbnails in Desktop tab a bit smaller.
    
    svn path=/trunk/; revision=7602

 capplets/appearance/ChangeLog       | 4 ++++
 capplets/appearance/gnome-wp-item.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5562ed15ea54f2ece14f73d2a8f7d5bb29b09bb6
Author: Thomas Wood <thos@gnome.org>
Date:   Sun May 13 14:05:22 2007 +0000

    Change "Desktop" tab label to "Background"
    
    2007-05-13  Thomas Wood  <thos@gnome.org>
    
        * appearance.glade: Change "Desktop" tab label to "Background"
    
    svn path=/trunk/; revision=7601

 capplets/appearance/ChangeLog        |   4 +
 capplets/appearance/appearance.glade | 493 +++++++++++++++++------------------
 2 files changed, 250 insertions(+), 247 deletions(-)

commit 600e0694c9fea8f2db62b5335a34a0355b730d3b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 13 13:09:25 2007 +0000

    use "eject -T" as the default eject command (closes bug #386297)
    
    2007-05-13  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-multimedia-keys.c: (do_eject_action): use "eject -T" as
        the default eject command (closes bug #386297)
    
    svn path=/trunk/; revision=7600

 gnome-settings-daemon/ChangeLog                        | 5 +++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 6631bcb8789d08231394d599ec206b5ee99669be
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sat May 12 13:30:05 2007 +0000

    Changed the icon view's selection mode to GTK_SELECTION_BROWSE, fixed
    
    * appearance-desktop.c: Changed the icon view's selection mode to
    GTK_SELECTION_BROWSE, fixed scrolling to the currently active background
    after the icon view is realized, and two other minor fixes.
    
    svn path=/trunk/; revision=7599

 capplets/appearance/ChangeLog            |  7 ++++++
 capplets/appearance/appearance-desktop.c | 40 ++++++++++++++++++++++----------
 capplets/appearance/appearance.glade     |  1 +
 3 files changed, 36 insertions(+), 12 deletions(-)

commit 166cc28035365a022d6dd7b8ee237359e2331ec5
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sat May 12 11:29:58 2007 +0000

    gtk_icon_view_set_cursor() => gtk_icon_view_select_path()
    
    * appearance-desktop.c: (wp_remove_wallpaper):
    gtk_icon_view_set_cursor() => gtk_icon_view_select_path()
    
    svn path=/trunk/; revision=7598

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 63851865b791e2aa84b08b26014653987e86c834
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sat May 12 11:25:30 2007 +0000

    Fix for my last commit so there is no double free when the Help button has
    
    * appearance.glade:
    * appearance-desktop.c: (wp_tree_delete_event):
    Fix for my last commit so there is no double free when the Help button
    has been clicked.
    
    
    svn path=/trunk/; revision=7597

 capplets/appearance/ChangeLog            |  7 +++++++
 capplets/appearance/appearance-desktop.c | 13 ++++++++-----
 capplets/appearance/appearance.glade     |  2 ++
 3 files changed, 17 insertions(+), 5 deletions(-)

commit 7f2ef38448005ab04647e12345e2984295373ecb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 11 23:22:03 2007 +0000

    fix secondary color picker being ignored and initial dialog state when no
    
    2007-05-12  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (wp_scale_type_changed),
        (wp_color_changed), (wp_props_wp_set), (wp_props_wp_selected),
        (wp_load_stuffs): fix secondary color picker being ignored and initial
        dialog state when no wallpaper is selected
    
    svn path=/trunk/; revision=7596

 capplets/appearance/ChangeLog            |  7 ++++
 capplets/appearance/appearance-desktop.c | 61 +++++++++++++++-----------------
 2 files changed, 36 insertions(+), 32 deletions(-)

commit 6670dd102918f98c25c2cb29ba78fac12f897973
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 11 22:04:03 2007 +0000

    move some strings to glade file, don't leak the file selector, plus a few
    
    2007-05-12  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (get_selected_item),
        (wp_tree_delete_event), (wp_update_preview), (desktop_init):
        * appearance.glade: move some strings to glade file, don't leak the
        file selector, plus a few minor beautifications
    
    svn path=/trunk/; revision=7595

 capplets/appearance/ChangeLog            |  7 +++++++
 capplets/appearance/appearance-desktop.c | 25 +++++++------------------
 capplets/appearance/appearance.glade     | 10 ++++++++--
 3 files changed, 22 insertions(+), 20 deletions(-)

commit 8e26b48607619c7dcc60e9b4d94ca3f0eb54ef7e
Author: Denis Washington <denisw@src.gnome.org>
Date:   Fri May 11 19:28:15 2007 +0000

    Fix the background list not being saved when closing the capplet window.
    
    * appearance-desktop.c: (desktop_init):
    Fix the background list not being saved when closing the capplet window.
    
    svn path=/trunk/; revision=7594

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3a908d7a9953b7079e6fc3946841ab8166378b0e
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu May 10 16:31:18 2007 +0000

    Replace the background treeview with an icon view that only shows the
    
    * appearance.h:
    * appearance-desktop.c:
    * appearance.glade:
    * gnome-wp-item.c:
    * Makefile.am:
    * wp-cellrenderer.[ch]:
    Replace the background treeview with an icon view that only shows the
    thumbnails. Tooltips are to be done.
    
    
    svn path=/trunk/; revision=7593

 capplets/appearance/ChangeLog            |  11 +
 capplets/appearance/Makefile.am          |   4 +-
 capplets/appearance/appearance-desktop.c | 284 +++++++-----------
 capplets/appearance/appearance.glade     | 499 ++++++++++++++++---------------
 capplets/appearance/appearance.h         |   3 +-
 capplets/appearance/gnome-wp-item.c      |   2 +-
 capplets/appearance/wp-cellrenderer.c    |  64 ++++
 capplets/appearance/wp-cellrenderer.h    |  25 ++
 8 files changed, 459 insertions(+), 433 deletions(-)

commit c1a597bb4d2aa7442b587765db68abbabec5b755
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Thu May 10 02:13:01 2007 +0000

    updating for Punjabi
    
    svn path=/trunk/; revision=7592

 po/pa.po | 1649 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 940 insertions(+), 709 deletions(-)

commit 6262a9fb4f5910343ab72dc9dcba88ff5a24c7ab
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 9 20:34:25 2007 +0000

    change Open button label to Install...
    
    2007-05-09  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-themes.c: (themes_init):
        * appearance.glade: change Open button label to Install...
    
    svn path=/trunk/; revision=7591

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 3 +++
 capplets/appearance/appearance.glade    | 3 +--
 3 files changed, 9 insertions(+), 2 deletions(-)

commit 9b3abdb95d79ec0e44fb9f67fd7c5c35b6153386
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 9 19:50:39 2007 +0000

    make sure that appearance.h (and thereby config.h) is included first;
    
    2007-05-09  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-style.c: make sure that appearance.h (and thereby config.h)
        is included first; constify strings
    
        * gnome-wp-xml.c: (gnome_wp_xml_load_xml): fix leak
    
    svn path=/trunk/; revision=7590

 capplets/appearance/ChangeLog          | 7 +++++++
 capplets/appearance/appearance-style.c | 6 +++---
 capplets/appearance/gnome-wp-xml.c     | 1 +
 3 files changed, 11 insertions(+), 3 deletions(-)

commit 60bf46d1336a77fdd89fdbf3f29f20b335f9d156
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 9 19:48:03 2007 +0000

    fix memory leaks
    
    2007-05-09  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme):
        * gtkrc-utils.c: (gtkrc_find_named), (gtkrc_get_color_scheme): fix
        memory leaks
    
        * gnome-theme-test.c: (main): init g_thread
    
    svn path=/trunk/; revision=7589

 capplets/common/ChangeLog          |  8 ++++++++
 capplets/common/gnome-theme-info.c | 19 ++++++++++++-------
 capplets/common/gnome-theme-test.c |  1 +
 capplets/common/gtkrc-utils.c      |  4 ++--
 4 files changed, 23 insertions(+), 9 deletions(-)

commit d3cad0bcbec6499a88db97a2ecdd4b1a3f199fa5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 9 18:52:47 2007 +0000

    constify a number of function arguments
    
    2007-05-09  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (gconf_peditor_new),
        (gconf_peditor_new_boolean), (gconf_peditor_new_integer_valist),
        (gconf_peditor_new_integer), (gconf_peditor_new_string_valist),
        (gconf_peditor_new_string), (gconf_peditor_new_filename),
        (gconf_peditor_new_color), (gconf_peditor_new_select_menu),
        (gconf_peditor_new_select_menu_with_enum),
        (gconf_peditor_new_combo_box),
        (gconf_peditor_new_combo_box_with_enum),
        (gconf_peditor_new_select_radio),
        (gconf_peditor_new_numeric_range), (gconf_peditor_new_font),
        (gconf_peditor_new_enum_toggle), (gconf_peditor_new_image),
        (gconf_peditor_new_select_radio_with_enum):
        * gconf-property-editor.h: constify a number of function arguments
    
    svn path=/trunk/; revision=7588

 capplets/common/ChangeLog               |  16 ++++
 capplets/common/gconf-property-editor.c | 127 +++++++++++++++-----------------
 capplets/common/gconf-property-editor.h |  62 ++++++++--------
 3 files changed, 107 insertions(+), 98 deletions(-)

commit cf66c0fd80f7b9b9b7c7d8af50db9390c0d88c73
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Wed May 9 18:42:25 2007 +0000

    svn path=/trunk/; revision=7587
    
    
    
    svn path=/trunk/; revision=7587

 gnome-settings-daemon/gnome-settings-clipboard.c | 907 +++++++++++++++++++++++
 1 file changed, 907 insertions(+)

commit 01a3eccfdc5ed891174856b8f9bb274f18635798
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed May 9 15:51:40 2007 +0000

    converted to a loadable module.
    
    2007-05-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-screensaver.c: converted to a loadable module.
    
        * gnome-settings-screensaver.h: removed unneeded file.
    
    svn path=/trunk/; revision=7586

 gnome-settings-daemon/ChangeLog                    |   6 +
 gnome-settings-daemon/Makefile.am                  |   1 -
 gnome-settings-daemon/gnome-settings-background.c  |   5 +-
 gnome-settings-daemon/gnome-settings-daemon.c      |   6 +-
 gnome-settings-daemon/gnome-settings-screensaver.c | 171 +++++++++++++++------
 gnome-settings-daemon/gnome-settings-screensaver.h |  33 ----
 6 files changed, 136 insertions(+), 86 deletions(-)

commit 275f942e681e6611ae20a9a96aaa996873d84858
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed May 9 15:05:11 2007 +0000

    no need to keep the GConfClient around, it is already stored in the
    
    2007-05-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-background.c (gnome_settings_module_background_init,
        gnome_settings_module_background_start): no need to keep the GConfClient
        around, it is already stored in the GnomeSettingsModule class.
    
    svn path=/trunk/; revision=7585

 gnome-settings-daemon/ChangeLog                   | 6 ++++++
 gnome-settings-daemon/gnome-settings-background.c | 7 +++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 19cba117f348b8982fdad2a40f77f9df95155f42
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed May 9 15:01:51 2007 +0000

    removed G_BEGIN|END_DECLS. (gnome_settings_module_background_get_type):
    
    2007-05-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-background.c: removed G_BEGIN|END_DECLS.
        (gnome_settings_module_background_get_type): register with correct type.
        (gnome_settings_module_background_initialize): store the GConfClient we get.
        (gnome_settings_module_background_start): use the stored GConfClient.
    
        * gnome-settings-background.h: removed unneeded file.
    
        * gnome-settins-clipboard.c: new file to implement the clipboard manager as
        a loadable module. Replaces clipboard-manager.[ch].
    
        * gnome-settings-daemon.c: removed old clipboard manager and use the new
        module-based one.
    
        * Makefile.am: added/removed sources.
    
    svn path=/trunk/; revision=7584

 gnome-settings-daemon/ChangeLog                   |  17 +
 gnome-settings-daemon/Makefile.am                 |   4 +-
 gnome-settings-daemon/clipboard-manager.c         | 919 ----------------------
 gnome-settings-daemon/clipboard-manager.h         |  51 --
 gnome-settings-daemon/gnome-settings-background.c |  30 +-
 gnome-settings-daemon/gnome-settings-background.h |  33 -
 gnome-settings-daemon/gnome-settings-daemon.c     |  65 +-
 7 files changed, 34 insertions(+), 1085 deletions(-)

commit 2ddc183f632488af9688a52061d96c82e91a6165
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Tue May 8 15:24:45 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7583

 po/ChangeLog |   4 +++
 po/es.po     | 108 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 57 insertions(+), 55 deletions(-)

commit a49ff5cf178d3a37616b37a5d2950138d27505e3
Author: Denis Washington <denisw@src.gnome.org>
Date:   Tue May 8 14:47:18 2007 +0000

    Set mnemonic widgets for the labels in the Desktop tab.
    
    * appearance.glade:
    Set mnemonic widgets for the labels in the Desktop tab.
    
    svn path=/trunk/; revision=7582

 capplets/appearance/ChangeLog        | 5 +++++
 capplets/appearance/appearance.glade | 3 +++
 2 files changed, 8 insertions(+)

commit d4a329965ede4c53d1a3d84db089d4f829b9604f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 8 13:50:36 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-05-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7581

 po/ChangeLog |  4 +++
 po/nb.po     | 98 ++++++++++++++++++++++++++++--------------------------------
 2 files changed, 49 insertions(+), 53 deletions(-)

commit 55b39ed23a445a212332b4e57b47fc668acd7c5b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Tue May 8 10:51:22 2007 +0000

    changed to use the new GnomeSettingsModule class for loadable modules.
    
    2007-05-08  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-background.c: changed to use the new GnomeSettingsModule
        class for loadable modules.
    
        * gnome-settings-daemon.c (initialize_modules, start_modules,
        stop_modules): new functions to call modules's methods.
        (gnome_settings_daemon_init): get all module types and create objects
        from each of them.
        (gnome_settings_daemon_new): added code to call loadable modules's
        methods where appropriate.
    
    svn path=/trunk/; revision=7580

 gnome-settings-daemon/ChangeLog                   |  16 ++
 gnome-settings-daemon/gnome-settings-background.c | 152 +++++++++++++---
 gnome-settings-daemon/gnome-settings-daemon.c     | 208 ++++++++++++++++------
 gnome-settings-daemon/gnome-settings-daemon.h     |   2 +-
 gnome-settings-daemon/gnome-settings-module.h     |   5 +-
 5 files changed, 297 insertions(+), 86 deletions(-)

commit 1cf628cbef95570a21ed84f13817de6d622534d4
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue May 8 03:24:38 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-05-08  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7578

 po/ChangeLog |  5 +++++
 po/bg.po     | 18 ++++++++----------
 2 files changed, 13 insertions(+), 10 deletions(-)

commit 0fe16259c9dbbb8f4981a2e18221cc0add223724
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue May 8 03:09:02 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-05-08  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7576

 po/ChangeLog |    5 +
 po/bg.po     | 1691 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 980 insertions(+), 716 deletions(-)

commit f51b1f9dea1f0b415c8e4446b0b0fc54e91f7070
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 7 22:31:51 2007 +0000

    port from deprecated GtkOptionMenu to GtkComboBox
    
    2007-05-08  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-mouse-properties.c: (cursor_size_from_widget),
        (setup_dialog):
        * gnome-mouse-properties.glade: port from deprecated GtkOptionMenu to
        GtkComboBox
    
    svn path=/trunk/; revision=7575

 capplets/mouse/ChangeLog                    |  7 ++++++
 capplets/mouse/gnome-mouse-properties.c     | 16 ++++++++-----
 capplets/mouse/gnome-mouse-properties.glade | 36 ++++-------------------------
 3 files changed, 21 insertions(+), 38 deletions(-)

commit b0ea25cd5ccb2a2c9b2c3f4c2118f3cff7af92d9
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 22:29:37 2007 +0000

    Remove some unnecessary code.
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (conv_to_widget_cb), (prepare_combo): Remove some
        unnecessary code.
    
    svn path=/trunk/; revision=7574

 capplets/appearance/ChangeLog          | 5 +++++
 capplets/appearance/appearance-style.c | 8 ++------
 2 files changed, 7 insertions(+), 6 deletions(-)

commit 8ae230b9ae23348fadfd0f4be1a13c8e85855c1d
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon May 7 22:28:48 2007 +0000

    add support for unsetting GConf values if the conversion handlers return
    
    2007-05-08  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_set_gconf_value),
        (peditor_combo_box_widget_changed):
        add support for unsetting GConf values if the conversion handlers return
        null, and use it for the combo box editor
    
    svn path=/trunk/; revision=7573

 capplets/common/ChangeLog               |  7 +++++++
 capplets/common/gconf-property-editor.c | 24 +++++++++++++++++-------
 2 files changed, 24 insertions(+), 7 deletions(-)

commit 21b005ca5f17ee4e40d60192bb6083ebaf0a8f4b
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 22:18:48 2007 +0000

    Fix icon theme combo box
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (prepare_combo): Fix icon theme combo box
    
    svn path=/trunk/; revision=7572

 capplets/appearance/ChangeLog          | 4 ++++
 capplets/appearance/appearance-style.c | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 679410b323bbd0ca2973f0976285ff65dd27a366
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 22:00:05 2007 +0000

    Use GConfPropertyEditor for theme combo boxes
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * appearance-style.c: (prepare_combo): Use GConfPropertyEditor for theme
        combo boxes
    
    svn path=/trunk/; revision=7571

 capplets/appearance/ChangeLog          |  5 +++
 capplets/appearance/appearance-style.c | 63 +++++++++++++++++++++++++++-------
 2 files changed, 55 insertions(+), 13 deletions(-)

commit 88c4cb5314bc82ba72b2744295845527116f7b35
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 19:09:24 2007 +0000

    - Add files for Style tab - Implement changing gtk and metacity themes
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am:
        * appearance-main.c: (main):
        * appearance-style.c:
        * appearance-style.h:
        - Add files for Style tab
        - Implement changing gtk and metacity themes
    
        * appearance.glade: Change "Themes" to "Theme" and name some widgets
    
    svn path=/trunk/; revision=7570

 capplets/appearance/ChangeLog          |  11 +++
 capplets/appearance/Makefile.am        |   2 +
 capplets/appearance/appearance-main.c  |   2 +
 capplets/appearance/appearance-style.c | 128 +++++++++++++++++++++++++++++++++
 capplets/appearance/appearance-style.h |  23 ++++++
 capplets/appearance/appearance.glade   |  12 ++--
 6 files changed, 172 insertions(+), 6 deletions(-)

commit 5a4c4094188ec7cfd153b92625b8bebd17988a7a
Author: Denis Washington <denisw@src.gnome.org>
Date:   Mon May 7 18:22:01 2007 +0000

    Changed "Add" button in Desktop tab to "Add...".
    
    * appearance.glade:
    * appearance-desktop.c: (desktop_init):
    Changed "Add" button in Desktop tab to "Add...".
    
    svn path=/trunk/; revision=7569

 capplets/appearance/ChangeLog            |  6 ++++++
 capplets/appearance/appearance-desktop.c | 11 ++++++++---
 capplets/appearance/appearance.glade     |  4 ++--
 3 files changed, 16 insertions(+), 5 deletions(-)

commit ad9086bde7c2698a8938c91cc32fdc6974cb9bbd
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 17:19:34 2007 +0000

    - Change GtkWindow to GtkDialog - Add Help and Close buttons - Set theme
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * appearance-main.c: (main):
        * appearance.glade:
    
        - Change GtkWindow to GtkDialog
        - Add Help and Close buttons
        - Set theme list scrolling policy to automatic
    
    svn path=/trunk/; revision=7568

 capplets/appearance/ChangeLog         |    9 +
 capplets/appearance/appearance-main.c |    3 +
 capplets/appearance/appearance.glade  | 3193 +++++++++++++++++----------------
 3 files changed, 1631 insertions(+), 1574 deletions(-)

commit 92bb9af3e04702fcb6e3d64fd87e0112867abfbd
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 16:47:41 2007 +0000

    Add a "Style" tab for the theme detail options
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * appearance.glade: Add a "Style" tab for the theme detail options
    
    svn path=/trunk/; revision=7567

 capplets/appearance/ChangeLog        |   4 +
 capplets/appearance/appearance.glade | 807 ++++++++++++++++++-----------------
 2 files changed, 411 insertions(+), 400 deletions(-)

commit 6c95e5a6d3170ebf674b096d767f5cba1e8d802f
Author: Thomas Wood <thos@gnome.org>
Date:   Mon May 7 16:40:51 2007 +0000

    Add FONT_CAPPLET_CFLAGS to INCLUDES
    
    2007-05-07  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am: Add FONT_CAPPLET_CFLAGS to INCLUDES
    
    svn path=/trunk/; revision=7566

 capplets/appearance/ChangeLog   | 4 ++++
 capplets/appearance/Makefile.am | 1 +
 2 files changed, 5 insertions(+)

commit 1701b5a7cc31e546e5d5362658fef6cd8f9617b6
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon May 7 14:57:02 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7565

 po/ChangeLog |   4 ++
 po/es.po     | 135 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 68 insertions(+), 71 deletions(-)

commit 1907db2d318d9dce159895f6e69743081933eb70
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun May 6 20:40:02 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-05-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7564

 po/ChangeLog |    4 +
 po/nb.po     | 1241 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 731 insertions(+), 514 deletions(-)

commit b95cceffb94b2a53d0e9dc60a8b23cdfeec0695f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 6 20:14:56 2007 +0000

    set application icon
    
    2007-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main): set application icon
    
    svn path=/trunk/; revision=7563

 capplets/appearance/ChangeLog         | 4 ++++
 capplets/appearance/appearance-main.c | 2 ++
 2 files changed, 6 insertions(+)

commit 08c474554f305968ecb42fe23fd38842614f69c3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 6 19:39:46 2007 +0000

    add a desktop file for the appearance capplet
    
    2007-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in:
        * capplets/appearance/Makefile.am:
        * capplets/appearance/gnome-appearance-properties.desktop.in.in:
        add a desktop file for the appearance capplet
    
    svn path=/trunk/; revision=7562

 ChangeLog                                          |  4 +++
 capplets/appearance/ChangeLog                      |  5 +++
 capplets/appearance/Makefile.am                    | 41 +++++++++++++---------
 .../gnome-appearance-properties.desktop.in.in      | 15 ++++++++
 configure.in                                       |  1 +
 5 files changed, 49 insertions(+), 17 deletions(-)

commit b21871170dd22568d0f47fcf33ef37040f2ca35c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 6 12:49:06 2007 +0000

    don't crash if glade file is not available
    
    2007-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-properties-capplet.c: (create_dialog), (main): don't crash if
        glade file is not available
    
    svn path=/trunk/; revision=7561

 capplets/sound/ChangeLog                  |  5 +++++
 capplets/sound/sound-properties-capplet.c | 34 ++++++++++++++++++-------------
 2 files changed, 25 insertions(+), 14 deletions(-)

commit c40974353b0ea1f4c29f5479a133e06678da5b54
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun May 6 12:44:47 2007 +0000

    set button images via code instead of relying on glade, so they respect
    
    2007-05-06  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-properties-capplet.c: (create_dialog):
        * sound-properties.glade: set button images via code instead of
        relying on glade, so they respect the gtk-button-images xsetting
    
    svn path=/trunk/; revision=7560

 capplets/sound/ChangeLog                  |   6 +
 capplets/sound/sound-properties-capplet.c |  14 +-
 capplets/sound/sound-properties.glade     | 264 +-----------------------------
 3 files changed, 27 insertions(+), 257 deletions(-)

commit fba9c74b97b38aa18813288d459443897851a5a9
Author: Denis Washington <denisw@src.gnome.org>
Date:   Sun May 6 12:25:20 2007 +0000

    make the Add Wallpaper and Remove buttons in the Desktop tab stock
    
    * appearance.glade: make the Add Wallpaper and Remove buttons in the
    Desktop tab stock buttons.
    
    
    svn path=/trunk/; revision=7559

 capplets/appearance/ChangeLog        |   5 +
 capplets/appearance/appearance.glade | 498 +++++++++++++++++------------------
 2 files changed, 254 insertions(+), 249 deletions(-)

commit 6d19d880683ee94c4d074f074653fb6a1a2a5460
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 5 18:57:09 2007 +0000

    set button images via code instead of relying on glade, so they respect
    
    2007-05-05  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties.c: (create_dialog):
        * gnome-keyboard-properties.glade: set button images via code instead
        of relying on glade, so they respect the gtk-button-images xsetting
    
    svn path=/trunk/; revision=7558

 capplets/keyboard/ChangeLog                       |   6 ++
 capplets/keyboard/gnome-keyboard-properties.c     |  22 +++--
 capplets/keyboard/gnome-keyboard-properties.glade | 115 ++--------------------
 3 files changed, 29 insertions(+), 114 deletions(-)

commit 9a75f911376a038b131237cce65bdfc4e994c184
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 5 12:33:24 2007 +0000

    set button images via code instead of relying on glade, so they respect
    
    2007-05-05  Jens Granseuer  <jensgr@gmx.net>
    
        * accessibility-keyboard.c: (setup_images):
        * gnome-accessibility-keyboard-properties.glade: set button images
        via code instead of relying on glade, so they respect the
        gtk-button-images xsetting (bug #362880)
    
    svn path=/trunk/; revision=7557

 capplets/accessibility/keyboard/ChangeLog          |   7 ++
 .../keyboard/accessibility-keyboard.c              |  14 ++-
 .../gnome-accessibility-keyboard-properties.glade  | 116 +--------------------
 3 files changed, 22 insertions(+), 115 deletions(-)

commit 912be5ce979b585cf4cc067745f400bfa62bdfde
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 5 11:14:54 2007 +0000

    set button images via code instead of relying on glade, so they respect
    
    2007-05-05  Jens Granseuer  <jensgr@gmx.net>
    
        * at-enable-dialog.glade:
        * main.c: (create_dialog): set button images via code instead of
        relying on glade, so they respect the gtk-button-images xsetting
        (closes bug #362880)
    
    svn path=/trunk/; revision=7556

 capplets/accessibility/at-properties/ChangeLog     |   7 +
 .../at-properties/at-enable-dialog.glade           | 266 +--------------------
 capplets/accessibility/at-properties/main.c        |  63 +++--
 3 files changed, 52 insertions(+), 284 deletions(-)

commit d1282b4146ccd425a2c94cc34a2b19e0338d060e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat May 5 10:30:17 2007 +0000

    fix critical warning
    
    2007-05-05  Jens Granseuer  <jensgr@gmx.net>
    
        * at-enable-dialog.glade: fix critical warning
    
    svn path=/trunk/; revision=7555

 capplets/accessibility/at-properties/ChangeLog              | 4 ++++
 capplets/accessibility/at-properties/at-enable-dialog.glade | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit a0690623e199463d48c4a4e72cc42332e6bc26fd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 4 21:48:01 2007 +0000

    remove the dpi default value since g-s-d and the capplet ignore it anyway
    
    2007-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * schemas/desktop_gnome_font_rendering.schemas.in: remove the dpi
        default value since g-s-d and the capplet ignore it anyway but gconf-editor
        doesn't know that (related to bug #378338)
    
    svn path=/trunk/; revision=7554

 ChangeLog                                       | 6 ++++++
 schemas/desktop_gnome_font_rendering.schemas.in | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 8529e2f343a9d0a027cd00a4d6f710b059d7483f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 4 19:40:47 2007 +0000

    more HIG and consistency fixing
    
    2007-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init):
        * appearance.glade: more HIG and consistency fixing
    
    svn path=/trunk/; revision=7553

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 2 +-
 capplets/appearance/appearance.glade     | 8 ++++----
 3 files changed, 10 insertions(+), 5 deletions(-)

commit b7ac6f9339b8767df69da636fbacefd301242f8a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 4 19:15:50 2007 +0000

    fix string capitalization according to HIG
    
    2007-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-desktop.c: (desktop_init):
        * appearance.glade: fix string capitalization according to HIG
    
    svn path=/trunk/; revision=7552

 capplets/appearance/ChangeLog            | 5 +++++
 capplets/appearance/appearance-desktop.c | 8 ++++----
 capplets/appearance/appearance.glade     | 2 +-
 3 files changed, 10 insertions(+), 5 deletions(-)

commit b58c57d8f23f87e0d7a49aeba1c26ea67b7b165c
Author: Denis Washington <denisw@src.gnome.org>
Date:   Fri May 4 17:56:06 2007 +0000

    Change tab order; Desktop now comes before Fonts.
    
    * appearance.glade: Change tab order; Desktop now comes before Fonts.
    
    svn path=/trunk/; revision=7551

 capplets/appearance/ChangeLog        |    4 +
 capplets/appearance/appearance.glade | 2573 +++++++++++++++-------------------
 2 files changed, 1102 insertions(+), 1475 deletions(-)

commit 709cb35f2975f03bc43c2a330ab771e879921029
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri May 4 17:18:34 2007 +0000

    add implementation for fonts tab
    
    2007-05-04  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * appearance-font.c:
        * appearance-font.h:
        * appearance-main.c: (init_appearance_data), (main):
        * appearance.glade:
        * appearance.h:
        * subpixel-bgr.png:
        * subpixel-rgb.png:
        * subpixel-vbgr.png:
        * subpixel-vrgb.png:
    
        add implementation for fonts tab
    
    svn path=/trunk/; revision=7550

 capplets/appearance/ChangeLog         |   17 +-
 capplets/appearance/Makefile.am       |   27 +-
 capplets/appearance/appearance-font.c |  993 ++++++++++++++++++++++++++++++++
 capplets/appearance/appearance-font.h |   21 +
 capplets/appearance/appearance-main.c |    9 +-
 capplets/appearance/appearance.glade  | 1005 ++++++++++++++++++++++++++++++++-
 capplets/appearance/appearance.h      |    4 +-
 capplets/appearance/subpixel-bgr.png  |  Bin 0 -> 125 bytes
 capplets/appearance/subpixel-rgb.png  |  Bin 0 -> 125 bytes
 capplets/appearance/subpixel-vbgr.png |  Bin 0 -> 138 bytes
 capplets/appearance/subpixel-vrgb.png |  Bin 0 -> 138 bytes
 11 files changed, 2047 insertions(+), 29 deletions(-)

commit 207ce8799512384d69829f6fc01a7fb13c0de3ed
Author: Thomas Wood <thos@gnome.org>
Date:   Fri May 4 17:11:12 2007 +0000

    Remove WID() macro, which has an incompatible definition in
    
    2007-05-04  Thomas Wood  <thos@gnome.org>
    
        * appearance-desktop.c: (wp_add_images), (wp_dragged_image),
        (desktop_init):
        * appearance-main.c: (main):
        * appearance-themes.c: (themes_init):
        * appearance-ui.c: (set_toolbar_style), (set_have_icons),
        (ui_init):
        * appearance.h:
        Remove WID() macro, which has an incompatible definition in capplet-utils.h
    
    svn path=/trunk/; revision=7549

 capplets/appearance/ChangeLog            | 11 +++++++++++
 capplets/appearance/appearance-desktop.c | 22 +++++++++++-----------
 capplets/appearance/appearance-main.c    |  2 +-
 capplets/appearance/appearance-themes.c  | 10 +++++-----
 capplets/appearance/appearance-ui.c      | 18 +++++++++---------
 capplets/appearance/appearance.h         |  2 --
 6 files changed, 37 insertions(+), 28 deletions(-)

commit af3c712e632c7040c268e0a7727e3bc2c4bac8d1
Author: Thomas Wood <thos@gnome.org>
Date:   Fri May 4 17:07:05 2007 +0000

    Use readable name rather than file name in themes list
    
    2007-05-04  Thomas Wood  <thos@gnome.org>
    
        * appearance-themes.c: (themes_init): Use readable name rather than file name
        in themes list
    
    svn path=/trunk/; revision=7548

 capplets/appearance/ChangeLog           | 5 +++++
 capplets/appearance/appearance-themes.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit ad3bc15a9a7fd2588ab3a3e5eaf2b1b7e377446b
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Fri May 4 00:25:24 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7547

 po/ChangeLog |   4 ++
 po/es.po     | 177 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 98 insertions(+), 83 deletions(-)

commit fac8387c9eedec397b559ad8ee85d297e59fb3bb
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu May 3 17:06:48 2007 +0000

    Fixed a leak.
    
    * appearance-desktop.c: (wp_tree_delete_event): Fixed a leak.
    
    svn path=/trunk/; revision=7546

 capplets/appearance/ChangeLog            | 4 ++++
 capplets/appearance/appearance-desktop.c | 1 +
 2 files changed, 5 insertions(+)

commit 1a6f041cb9c5c2641c90da7b92d8f53ab40ec8e9
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu May 3 14:00:21 2007 +0000

    Why can't I just commit ONE change without mistakes...
    
    svn path=/trunk/; revision=7545

 capplets/appearance/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b713d48c466ba783e9ea8897c377c3e6d00e3ab4
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu May 3 13:58:07 2007 +0000

    And here is the ChangeLog entry for the last revision.....
    
    svn path=/trunk/; revision=7544

 capplets/appearance/ChangeLog | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 608cac39ef6bfbe3f5fe0ccaeaf73488da850492
Author: Denis Washington <denisw@src.gnome.org>
Date:   Thu May 3 13:57:09 2007 +0000

    Ported Jens Gransauer's patch for bug #332810 to the appearance capplet
    
    * appearance.h:
    * appearance-desktop.c:
    Ported Jens Gransauer's patch for bug #332810 to the appearance capplet
    and applied it.
    
    svn path=/trunk/; revision=7543

 capplets/appearance/appearance-desktop.c | 86 ++++++++++++++++++++------------
 capplets/appearance/appearance.h         |  2 +-
 2 files changed, 54 insertions(+), 34 deletions(-)

commit bb29ad69ee766f69dca9da655a60187616c83349
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 2 18:48:25 2007 +0000

    add g_thread_init as required by glib
    
    2007-05-02  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (main): add g_thread_init as
        required by glib
    
    svn path=/trunk/; revision=7542

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit c556b06ce7eb981e94d8cb95dbc79ccf4f0113c9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed May 2 18:22:42 2007 +0000

    use proper GConf notification instead of hand-picking the correct signal
    
    2007-05-02  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-ui.c: (toolbar_detachable_cb), (ui_init): use proper
        GConf notification instead of hand-picking the correct signal for
        detachable toolbar
    
    svn path=/trunk/; revision=7541

 capplets/appearance/ChangeLog       |  8 +++++++-
 capplets/appearance/appearance-ui.c | 16 ++++++++--------
 2 files changed, 15 insertions(+), 9 deletions(-)

commit 28787c51a2bf908dadb00213d53c3346f2b2fe89
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 2 17:52:47 2007 +0000

    fizz says: don't indent with spaces in Makefile.am. I say: don't do so in
    
    * Makefile.am: fizz says: don't indent with spaces in Makefile.am.
    * ChangeLog: I say: don't do so in ChangeLog either.
    
    
    svn path=/trunk/; revision=7540

 capplets/appearance/ChangeLog   | 15 ++++++++++-----
 capplets/appearance/Makefile.am |  2 +-
 2 files changed, 11 insertions(+), 6 deletions(-)

commit dcec5a1423660d09ca26e6284d379f9f4f9636c3
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 2 15:27:28 2007 +0000

    Forgot the ChangeLog entry...
    
    svn path=/trunk/; revision=7539

 capplets/appearance/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 6bc2415583dfa54b9767576e91a9932859f99dbd
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 2 15:26:07 2007 +0000

    Added drag and drop, re-enabled the watch cursor when adding images, and
    
    * appearance-desktop.c: Added drag and drop, re-enabled the watch cursor
    when adding images, and removed some commented out code.
    
    
    svn path=/trunk/; revision=7538

 capplets/appearance/appearance-desktop.c | 82 +++++++++++++++++++++++++++-----
 1 file changed, 71 insertions(+), 11 deletions(-)

commit 255eb9da7d18529b1a21aa1689e430b9774a65cd
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 2 14:19:39 2007 +0000

    Corrected copyright notice authors.
    
    * appearance-desktop.[ch]: Corrected copyright notice authors.
    
    svn path=/trunk/; revision=7537

 capplets/appearance/ChangeLog            | 4 ++++
 capplets/appearance/appearance-desktop.c | 3 ++-
 capplets/appearance/appearance-desktop.h | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit e3dafbb58515cd711de3479328733587f9c141a4
Author: Denis Washington <denisw@src.gnome.org>
Date:   Wed May 2 14:04:53 2007 +0000

    Implement the the Desktop tab. Drag and drop still has to be done.
    
    * appearance.glade:
    * appearance-desktop.c:
    * appearance-desktop.h:
    * appearance-main.h:
    * Makefile.am:
    * gnome-wp-*.[ch]:
    
    Implement the the Desktop tab. Drag and drop still has to be done.
    
    svn path=/trunk/; revision=7536

 capplets/appearance/ChangeLog            |   11 +
 capplets/appearance/Makefile.am          |   20 +-
 capplets/appearance/appearance-desktop.c | 1048 ++++++++++++++++++++++++++++++
 capplets/appearance/appearance-desktop.h |   23 +
 capplets/appearance/appearance-main.c    |    2 +
 capplets/appearance/appearance.glade     |  347 +++++-----
 capplets/appearance/appearance.h         |   19 +
 capplets/appearance/gnome-wp-info.c      |  103 +++
 capplets/appearance/gnome-wp-info.h      |   47 ++
 capplets/appearance/gnome-wp-item.c      |  385 +++++++++++
 capplets/appearance/gnome-wp-item.h      |   71 ++
 capplets/appearance/gnome-wp-utils.c     |  198 ++++++
 capplets/appearance/gnome-wp-utils.h     |   58 ++
 capplets/appearance/gnome-wp-xml.c       |  411 ++++++++++++
 capplets/appearance/gnome-wp-xml.h       |   28 +
 15 files changed, 2596 insertions(+), 175 deletions(-)

commit 756014edd1ea80d8c1d89d9cd3e5a41559954c13
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed May 2 13:18:50 2007 +0000

    Fix keysdir substitution, as reported by Christian Persch
    
    2007-05-02  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybindings.pc.in: Fix keysdir substitution, as
        reported by Christian Persch <chpe@svn.gnome.org>
        (Closes: #434591)
    
    
    svn path=/trunk/; revision=7535

 capplets/keybindings/ChangeLog               | 6 ++++++
 capplets/keybindings/gnome-keybindings.pc.in | 4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 280eb0b7834b7a15ad51b581d3f084af2c5ce619
Author: Thomas Wood <thos@gnome.org>
Date:   Tue May 1 17:25:36 2007 +0000

    Combine Themes and Appearance tabs
    
    2007-05-01  Thomas Wood  <thos@gnome.org>
    
        * appearance.glade: Combine Themes and Appearance tabs
    
    svn path=/trunk/; revision=7534

 capplets/appearance/ChangeLog        |   4 +
 capplets/appearance/appearance.glade | 745 +++++++++++++++--------------------
 2 files changed, 327 insertions(+), 422 deletions(-)

commit 0f71452a50d7296e054c41601cfcffe2f18a6461
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 1 16:34:32 2007 +0000

    convert all instances GtkOptionMenu to GtkComboBox
    
    2007-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-ui.c: (ui_init):
        * appearance.glade: convert all instances GtkOptionMenu to
        GtkComboBox
    
    svn path=/trunk/; revision=7533

 capplets/appearance/ChangeLog        |  6 ++++
 capplets/appearance/appearance-ui.c  |  4 +--
 capplets/appearance/appearance.glade | 58 ++++++++----------------------------
 3 files changed, 20 insertions(+), 48 deletions(-)

commit 76b657073e24284658af11ef7f9431095ec60d75
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 1 16:33:19 2007 +0000

    add GConfPropertyEditor support for GtkComboBox
    
    2007-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * gconf-property-editor.c: (peditor_combo_box_value_changed),
        (peditor_combo_box_widget_changed), (gconf_peditor_new_combo_box),
        (gconf_peditor_new_combo_box_with_enum):
        * gconf-property-editor.h: add GConfPropertyEditor support for GtkComboBox
    
    svn path=/trunk/; revision=7532

 capplets/common/ChangeLog               |   7 ++
 capplets/common/gconf-property-editor.c | 119 ++++++++++++++++++++++++++++++++
 capplets/common/gconf-property-editor.h |  15 ++++
 3 files changed, 141 insertions(+)

commit 0a17b8dc43d64a3a230aef3e1bbe47bdbc89a2b2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 1 13:53:13 2007 +0000

    we don't need to unref the GConfPropertyEditors
    
    2007-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main):
        * appearance-ui.c: (ui_init):
        * appearance-ui.h:
        * appearance.h: we don't need to unref the GConfPropertyEditors
    
    svn path=/trunk/; revision=7531

 capplets/appearance/ChangeLog         |  7 +++++++
 capplets/appearance/appearance-main.c |  1 -
 capplets/appearance/appearance-ui.c   | 13 -------------
 capplets/appearance/appearance-ui.h   |  1 -
 capplets/appearance/appearance.h      |  3 ---
 5 files changed, 7 insertions(+), 18 deletions(-)

commit e794639a0c8c5ad95039fc1f3dd3e619993ab105
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 1 13:02:29 2007 +0000

    fill the Preferences tab with life
    
    2007-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (main):
        * appearance-ui.c:
        * appearance-ui.h:
        * appearance.h:
        * appearance.glade:
    
        fill the Preferences tab with life
    
    svn path=/trunk/; revision=7530

 capplets/appearance/ChangeLog         |  10 ++
 capplets/appearance/appearance-main.c |   3 +
 capplets/appearance/appearance-ui.c   | 252 ++++++++++++++++++++++++++++++++++
 capplets/appearance/appearance-ui.h   |  22 +++
 capplets/appearance/appearance.glade  | 124 ++++++++---------
 capplets/appearance/appearance.h      |   3 +
 6 files changed, 345 insertions(+), 69 deletions(-)

commit 93bc8933ef801abbe984fbc2f5fbe403eefa4106
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue May 1 10:25:29 2007 +0000

    include config.h before anything else and add a GConfClient reference to
    
    2007-05-01  Jens Granseuer  <jensgr@gmx.net>
    
        * appearance-main.c: (init_appearance_data), (main):
        * appearance.h:
    
        include config.h before anything else and add a GConfClient
        reference to the AppearanceData struct
    
    svn path=/trunk/; revision=7529

 capplets/appearance/ChangeLog         | 8 ++++++++
 capplets/appearance/Makefile.am       | 4 +++-
 capplets/appearance/appearance-main.c | 2 ++
 capplets/appearance/appearance.h      | 5 ++++-
 4 files changed, 17 insertions(+), 2 deletions(-)

commit 1b63c9b2450ff1e389d59b02dcbe1e014cba09b1
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Apr 30 17:50:37 2007 +0000

    Include config.h and add some comments.
    
    2007-04-30  Thomas Wood  <thos@gnome.org>
    
        * appearance-main.c: (main):
        * appearance.h:
    
        Include config.h and add some comments.
    
    svn path=/trunk/; revision=7528

 capplets/appearance/ChangeLog         |  7 +++++++
 capplets/appearance/appearance-main.c | 15 +++++++++------
 capplets/appearance/appearance.h      |  1 +
 3 files changed, 17 insertions(+), 6 deletions(-)

commit abaddb861ef862e611a5fdef10c8737f9c11bce1
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 30 17:21:11 2007 +0000

    add new appearance capplet to build system
    
    2007-04-30  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/Makefile.am:
        * configure.in:
        add new appearance capplet to build system
    
    svn path=/trunk/; revision=7525

 ChangeLog            | 6 ++++++
 capplets/Makefile.am | 2 +-
 configure.in         | 1 +
 3 files changed, 8 insertions(+), 1 deletion(-)

commit 34c07dbd6ead0e499d38f667cb1c02dbe178cf4b
Author: Denis Washington <denisw@src.gnome.org>
Date:   Mon Apr 30 17:18:20 2007 +0000

    replace occurrences of "colour" with "color".
    
    * appearance.glade: replace occurrences of "colour" with "color".
    
    svn path=/trunk/; revision=7524

 capplets/appearance/ChangeLog        | 4 ++++
 capplets/appearance/appearance.glade | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 06ef162d4f2814e6c443a084ec7dfc44e480f569
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 17:14:47 2007 +0000

    Use g_file_set_contents instead of a single fwrite to write the ~/.face
    
    2007-04-30  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-about-me.c: (about_me_update_photo): Use g_file_set_contents
        instead of a single fwrite to write the ~/.face image, also set the
        default permission to be 0644, even if the umask is more permissive,
        otherwise GDM won't show the icon in the chooser (Closes: #433898)
    
    
    svn path=/trunk/; revision=7523

 capplets/about-me/ChangeLog        |  7 +++++++
 capplets/about-me/gnome-about-me.c | 20 ++++++++++++++------
 2 files changed, 21 insertions(+), 6 deletions(-)

commit bcbee706e8e50c6ea0d3216ff140ba3d8a94c594
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 30 16:55:29 2007 +0000

    use GNOMECC_GLADE_DIR like the other capplets do move initialization to a
    
    2007-04-30  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: use GNOMECC_GLADE_DIR like the other capplets
        do
        * appearance-main.c: (init), (main): move initialization to
        a separate function, fix glade file location, leak less
        memory, and init g_threads
    
    svn path=/trunk/; revision=7521

 capplets/appearance/ChangeLog         |  8 +++++++
 capplets/appearance/Makefile.am       |  2 +-
 capplets/appearance/appearance-main.c | 44 ++++++++++++++++++++++++++---------
 3 files changed, 42 insertions(+), 12 deletions(-)

commit 068d417c59f74387a86ec4e00349e5b4319c298a
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Apr 30 16:51:31 2007 +0000

    Add license headers
    
    2007-04-30  Thomas Wood  <thos@gnome.org>
    
        * appearance-main.c:
        * appearance-themes.c:
        * appearance-themes.h:
        * appearance.h:
    
        Add license headers
    
    
    svn path=/trunk/; revision=7520

 capplets/appearance/ChangeLog           |  9 +++++++++
 capplets/appearance/appearance-main.c   | 20 ++++++++++++++++++++
 capplets/appearance/appearance-themes.c | 20 ++++++++++++++++++++
 capplets/appearance/appearance-themes.h | 21 +++++++++++++++++++++
 capplets/appearance/appearance.h        | 20 ++++++++++++++++++++
 5 files changed, 90 insertions(+)

commit a7d9950ae648c200ec01c18b9678649ba4ee12e1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Apr 30 16:12:08 2007 +0000

    Generate a capplets/keybindings/gnome-keybindings.pc from the .in file
    
    2007-04-30  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: Generate a capplets/keybindings/gnome-keybindings.pc
        from the .in file
    
    2007-04-30  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am: upd
        * gnome-keybindings.pc.in: add a noarch pkgconfig file to allow
        applications to know where to add their keybindings
        (Closes: #434591)
    
    
    svn path=/trunk/; revision=7519

 ChangeLog                                    | 5 +++++
 capplets/keybindings/ChangeLog               | 7 +++++++
 capplets/keybindings/Makefile.am             | 5 ++++-
 capplets/keybindings/gnome-keybindings.pc.in | 8 ++++++++
 configure.in                                 | 2 ++
 5 files changed, 26 insertions(+), 1 deletion(-)

commit b98e469088c6d340897d056a2cd3bf56825e9060
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Apr 30 14:33:05 2007 +0000

    Add some code for a new appearance capplet
    
    2007-04-30  Thomas Wood  <thos@gnome.org>
    
        * capplets/appearance/Makefile.am:
        * capplets/appearance/appearance-main.c:
        * capplets/appearance/appearance-themes.c:
        * capplets/appearance/appearance-themes.h:
        * capplets/appearance/appearance.glade:
        * capplets/appearance/appearance.h:
    
        Add some code for a new appearance capplet
    
    svn path=/trunk/; revision=7518

 ChangeLog                               |   11 +
 capplets/appearance/Makefile.am         |   26 +
 capplets/appearance/appearance-main.c   |   57 ++
 capplets/appearance/appearance-themes.c |  112 +++
 capplets/appearance/appearance-themes.h |    2 +
 capplets/appearance/appearance.glade    | 1603 +++++++++++++++++++++++++++++++
 capplets/appearance/appearance.h        |   11 +
 7 files changed, 1822 insertions(+)

commit a8006b93154257196ba20a548712d7156fb0e160
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Apr 28 19:44:58 2007 +0000

    after removing a wallpaper select the next one in the list instead of
    
    2007-04-28  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-capplet.c: (gnome_wp_remove_wallpaper): after removing a
        wallpaper select the next one in the list instead of always going
        to "No Wallpaper" (closes bug #432514)
    
    svn path=/trunk/; revision=7517

 capplets/background/ChangeLog          |  6 ++++++
 capplets/background/gnome-wp-capplet.c | 18 ++++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

commit 65834137f5eb654e276a9363a73d95d84e7bebaa
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:30:38 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * themus-theme-applier.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7515

 vfs-methods/themus/ChangeLog                          | 4 ++++
 vfs-methods/themus/themus-theme-applier.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7e6305da4a69d8d3e15948b43a0f5995c230aa40
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:29:40 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-font-viewer.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7514

 vfs-methods/fontilus/ChangeLog                       | 4 ++++
 vfs-methods/fontilus/gnome-font-viewer.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a9c1f24c0cde6f001b8291f8e8534579fed11e3b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:28:07 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnomecc.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7513

 shell/ChangeLog             | 4 ++++
 shell/gnomecc.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 94233ec070311c5eca0be23ff31960b43984c865
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:22:47 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * window-properties.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7512

 capplets/windows/ChangeLog                       | 4 ++++
 capplets/windows/window-properties.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7b63299ebbe6df843784fe667ea6430de17bdd1d
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:21:35 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-ui-properties.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7511

 capplets/ui-properties/ChangeLog                         | 4 ++++
 capplets/ui-properties/gnome-ui-properties.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7e9057858f013305eb241b0b54733a69eed72d97
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:20:47 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-theme-installer.desktop.in.in:
        * gtk-theme-selector.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7510

 capplets/theme-switcher/ChangeLog                           | 5 +++++
 capplets/theme-switcher/gnome-theme-installer.desktop.in.in | 2 +-
 capplets/theme-switcher/gtk-theme-selector.desktop.in.in    | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit caa4dafea5c11675780ef82080754ebb09e633f1
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:19:11 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-sound.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7509

 capplets/sound/ChangeLog                          | 4 ++++
 capplets/sound/gnome-settings-sound.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5e60274240c2d15990104b2bdc875db9ac3a091e
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:18:19 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-network-preferences.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7508

 capplets/network/ChangeLog                               | 4 ++++
 capplets/network/gnome-network-preferences.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4b1e519b84c329ea8e074857189705d3e8364433
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:17:32 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-mouse.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7507

 capplets/mouse/ChangeLog                          | 4 ++++
 capplets/mouse/gnome-settings-mouse.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1b6764ae9c13e8f590decb9d800fa951fc47ebed
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:16:02 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * keyboard.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7506

 capplets/keyboard/ChangeLog              | 4 ++++
 capplets/keyboard/keyboard.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f6ad47dcd7a0411df38b201dd051bb09094fae9c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:15:15 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * keybinding.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7505

 capplets/keybindings/ChangeLog                | 4 ++++
 capplets/keybindings/keybinding.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3641154ff58f968b25bdd14fd6983d975ee71ab1
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:14:24 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * font-properties.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7504

 capplets/font/ChangeLog                     | 4 ++++
 capplets/font/font-properties.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 19e6ec348dbc57808482421f227a23fa02ce5366
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:13:17 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * display-properties.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7503

 capplets/display/ChangeLog                        | 4 ++++
 capplets/display/display-properties.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit a036a00187ee3d22324f46ab997e5983ba2b7a6f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:12:25 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * default-applications-accessibility.desktop.in.in: renamed Bugzilla
        product.
    
    svn path=/trunk/; revision=7502

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications-accessibility.desktop.in.in                 | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 92df10605ed98dcfac0bcf91a0f2cff9b447a42f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:11:21 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * background.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7501

 capplets/background/ChangeLog                | 4 ++++
 capplets/background/background.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 09de2d53304b88216bcd19556b25a655c8bf0378
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:09:48 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * accessibility-keyboard.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7500

 capplets/accessibility/keyboard/ChangeLog                            | 4 ++++
 capplets/accessibility/keyboard/accessibility-keyboard.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2ad2ed7d74d8c42e7877c0943fdfb49ace3079c7
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:07:41 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * at-properties.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7499

 capplets/accessibility/at-properties/ChangeLog                   | 4 ++++
 capplets/accessibility/at-properties/at-properties.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 641ff9cf45c5711739844e270e228c2b9333b534
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 27 10:04:07 2007 +0000

    renamed Bugzilla product.
    
    2007-04-27  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-about-me.desktop.in.in: renamed Bugzilla product.
    
    svn path=/trunk/; revision=7498

 capplets/about-me/ChangeLog                    | 4 ++++
 capplets/about-me/gnome-about-me.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 11b5220f992316688d5d831c8bc52a84fcc7f787
Author: David Lodge <dlodge@src.gnome.org>
Date:   Fri Apr 27 06:05:25 2007 +0000

    Updated en_GB translation
    
    svn path=/trunk/; revision=7497

 po/ChangeLog |   4 ++
 po/en_GB.po  | 161 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 104 insertions(+), 61 deletions(-)

commit 14339a470b814572b564f808c56f2617d3fa2f30
Author: George Kraft IV <gk4@austin.ibm.com>
Date:   Thu Apr 26 11:14:15 2007 +0000

    Fixes #386413
    
    2007-04-26  George Kraft IV  <gk4@austin.ibm.com>
    
        Fixes #386413
    
        * main.c: (AT_STARTUP_DIR, AT_STARTUP_KEY, SR_PREFS_DIR),
        (init_startup_state, at_startup_toggled, at_startup_update_ui,
        (at_startup_changed): depricated the selection and startup
        of hardcoded assistive technologies.
    
        * main.c: (cb_at_preferences, cb_keyboard_preferences,
        cb_login_preferences): added callbacks to launch preference dialogs.
    
        * Makefile.am: depricated files at-startup-session.[ch]
    
        * at-enable-dialog.glade: removed the checkbox selection of
        assistive technologies and added a push button to launch
        the Preferred Applications dialog to setup ATs.
    
    svn path=/trunk/; revision=7496

 capplets/accessibility/at-properties/ChangeLog     |  18 +
 capplets/accessibility/at-properties/Makefile.am   |   4 +-
 .../at-properties/at-enable-dialog.glade           | 397 +++++++++++++++------
 capplets/accessibility/at-properties/main.c        | 163 ++-------
 4 files changed, 330 insertions(+), 252 deletions(-)

commit 03f1d46f0cb5238b53b318760400cc2c7d62a560
Author: Funda Wang <fwang@src.gnome.org>
Date:   Thu Apr 26 06:20:50 2007 +0000

    Updated g-c-c zh_CN translation.
    
    svn path=/trunk/; revision=7495

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1671 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 1031 insertions(+), 644 deletions(-)

commit 9c8c1435e9f6803658f0055f47f059ae51d4ee08
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Apr 25 18:17:13 2007 +0000

    remove obsolete build stuff from the about-me capplet (bug #430219)
    
    2007-04-25  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in:
        * capplets/about-me/Makefile.am:
        * capplets/about-me/gnome-about-me-password.c:
        remove obsolete build stuff from the about-me capplet (bug #430219)
    
    svn path=/trunk/; revision=7494

 ChangeLog                                   |  7 +++
 capplets/about-me/Makefile.am               |  2 +-
 capplets/about-me/gnome-about-me-password.c | 10 -----
 configure.in                                | 66 ++---------------------------
 4 files changed, 12 insertions(+), 73 deletions(-)

commit 479c56d859b502decba02c6f754184e909485d6b
Author: David Lodge <dlodge@src.gnome.org>
Date:   Wed Apr 25 05:41:59 2007 +0000

    Update en_GB translation
    
    svn path=/trunk/; revision=7493

 po/ChangeLog |   4 +
 po/en_GB.po  | 233 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 166 insertions(+), 71 deletions(-)

commit 24bb88dc4d956a3d4b3e346ccebf2cb02bb276c7
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Apr 23 22:52:40 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7492

 po/ChangeLog   | 1 +
 po/POTFILES.in | 6 +++++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 90bc2d26ba0babb36fdbc1eb84af70cd102248e5
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 23 22:43:22 2007 +0000

    prepare for 2.19.1.
    
    2007-04-23  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in:
        * NEWS: prepare for 2.19.1.
    
    svn path=/trunk/; revision=7491

 ChangeLog                        |   5 ++
 NEWS                             | 116 +++++++++++++++++++++++++++++++++++++++
 capplets/keybindings/Makefile.am |   2 +-
 configure.in                     |   2 +-
 4 files changed, 123 insertions(+), 2 deletions(-)

commit a357dfc783d3669d00024e567d4effe934ec6b63
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Mon Apr 23 21:45:33 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7490

 po/ChangeLog |   4 +
 po/sv.po     | 242 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 170 insertions(+), 76 deletions(-)

commit a0ef69665fb610941b9574209323cb9ebea4970d
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Apr 23 21:35:37 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7489

 po/es.po | 253 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 167 insertions(+), 86 deletions(-)

commit b3c29eb8c8efa99c9f0d014141cf7747a01ab094
Author: George Kraft IV <gk4@austin.ibm.com>
Date:   Mon Apr 23 21:33:06 2007 +0000

    better icons for A11Y categories.
    
    2007-04-23  George Kraft IV <gk4@austin.ibm.com>
    
        * gnome-da-applet.c: better icons for A11Y categories.
    
    svn path=/trunk/; revision=7488

 capplets/default-applications/ChangeLog          | 4 ++++
 capplets/default-applications/gnome-da-capplet.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit ec799e4a978fcaf2474cbeb56e262175c4f19b4c
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   Mon Apr 23 21:27:30 2007 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=7487

 help/ChangeLog |    4 +
 help/es/es.po  |  137 ++--
 po/ChangeLog   |    4 +
 po/es.po       | 1988 ++++++++++++++++++++++++++++++++------------------------
 4 files changed, 1246 insertions(+), 887 deletions(-)

commit 0d8fd1c667a6bc9ac71bd9d7646c11d5ddeab21a
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Apr 23 17:28:52 2007 +0000

    Added missing files
    
    svn path=/trunk/; revision=7486

 ...efault-applications-accessibility.desktop.in.in |  15 +++
 .../gnome-at-commandline.in.in                     | 102 +++++++++++++++++++++
 .../gnome-at-mobility.desktop.in.in                |  15 +++
 .../gnome-at-session.desktop.in.in                 |  16 ++++
 .../gnome-at-visual.desktop.in.in                  |  15 +++
 5 files changed, 163 insertions(+)

commit c246e6aa6ccbe92e5a9be902850d8425ff68f31f
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 23 16:26:37 2007 +0000

    new method.
    
    2007-04-23  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-module.[ch] (gnome_settings_module_get_runlevel):
        new method.
    
    svn path=/trunk/; revision=7485

 gnome-settings-daemon/ChangeLog               | 5 +++++
 gnome-settings-daemon/gnome-settings-module.c | 9 +++++++++
 gnome-settings-daemon/gnome-settings-module.h | 9 +++++++++
 3 files changed, 23 insertions(+)

commit f912cb6f4a09d4f39038a41e8e3b4d1f64bd2dc9
Author: George Kraft IV <gk4@austin.ibm.com>
Date:   Mon Apr 23 15:04:41 2007 +0000

    added A11Y applications to the default applications capplet.
    
    2007-04-23  George Kraft IV <gk4@austin.ibm.com>
    
        * configure.in:
        * capplets/default-applications/*: added A11Y applications to the
        default applications capplet.
    
    svn path=/trunk/; revision=7484

 ChangeLog                                          |   6 +
 capplets/default-applications/Makefile.am          |  19 +-
 capplets/default-applications/gnome-da-capplet.c   | 308 ++++++++++++++++
 capplets/default-applications/gnome-da-capplet.h   |  20 ++
 capplets/default-applications/gnome-da-item.c      |  49 +++
 capplets/default-applications/gnome-da-item.h      |  16 +
 capplets/default-applications/gnome-da-xml.c       |  49 +++
 .../gnome-default-applications-properties.glade    | 394 +++++++++++++++++++++
 .../gnome-default-applications.xml.in              |  84 +++++
 configure.in                                       |   5 +
 10 files changed, 948 insertions(+), 2 deletions(-)

commit c23e87b68927e559afa3727827f77f8edaef7aa4
Author: David Lodge <dlodge@src.gnome.org>
Date:   Mon Apr 23 05:52:17 2007 +0000

    Updated British English translation
    
    svn path=/trunk/; revision=7483

 po/ChangeLog |    4 +
 po/en_GB.po  | 1359 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 773 insertions(+), 590 deletions(-)

commit 0b54a305cf1714a7a6d3d9b4789f42a77c5d2f92
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Sat Apr 21 23:29:22 2007 +0000

    Fixes in Brazilian Portuguese translation by Washington Lins
    
    2007-04-21  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Fixes in Brazilian Portuguese translation by Washington
        Lins <washington-lins@uol.com.br> and me (Leonardo F. Fontenelle
        <leo.fontenelle@gmail.com>).
    
    svn path=/trunk/; revision=7482

 po/ChangeLog |   6 ++
 po/pt_BR.po  | 209 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 111 insertions(+), 104 deletions(-)

commit edafff81d6a94a4853361f91ca3c5a225cbbbae8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Apr 21 19:03:59 2007 +0000

    don't print a warning to the console if the "self" contact does not yet
    
    2007-04-21  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_setup_dialog): don't print a warning to
        the console if the "self" contact does not yet exist (closes bug
        #419332). Also fix a small memory leak
    
    svn path=/trunk/; revision=7480

 capplets/about-me/ChangeLog        | 6 ++++++
 capplets/about-me/gnome-about-me.c | 7 +++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 94cf3579743dce8dd565b47087042bd83804380b
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Apr 21 11:38:28 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7479

 po/ChangeLog   |    5 +
 po/POTFILES.in |   33 +-
 po/sv.po       | 1357 ++++++++++++++++++++++++++++++++------------------------
 3 files changed, 791 insertions(+), 604 deletions(-)

commit 6535f4364ec2e447fc567c406471989dda21e09b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Apr 20 08:35:45 2007 +0000

    new class for modules.
    
    2007-04-20  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-module.[ch]: new class for modules.
    
        * Makefile.am: added new files.
    
    svn path=/trunk/; revision=7478

 gnome-settings-daemon/ChangeLog               |   6 +
 gnome-settings-daemon/Makefile.am             |   2 +
 gnome-settings-daemon/gnome-settings-module.c | 176 ++++++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-module.h |  75 +++++++++++
 4 files changed, 259 insertions(+)

commit 99e9b414dd6dab15f5e815902310de010ff78c01
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Wed Apr 18 15:47:30 2007 +0000

    Updated Czech translation
    
    2007-04-18  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation
    
    
    svn path=/trunk/; revision=7476

 po/ChangeLog |  4 ++++
 po/cs.po     | 63 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 37 insertions(+), 30 deletions(-)

commit 933cef144a3653a37fd21f4f86ca923b73fac32c
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Apr 18 12:12:14 2007 +0000

    Patch from SuSE package
    
    2007-04-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Patch from SuSE package
    
        * gnome-default-applications.xml.in: added Seamonkey as web browser and
        mail reader.
    
    svn path=/trunk/; revision=7475

 capplets/default-applications/ChangeLog                 |  7 +++++++
 .../gnome-default-applications.xml.in                   | 17 +++++++++++++++++
 2 files changed, 24 insertions(+)

commit dd75320d14ba9bb815ed1d8a352fffde4a12fbf5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 16 18:45:54 2007 +0000

    Patch by: Erich Schubert <erich@debian.org>
    
    2007-04-16  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Erich Schubert <erich@debian.org>
    
        * applier.c: (get_geometry): fix scaling for WPTYPE_ZOOM. Fixes
        bug #342356.
    
    svn path=/trunk/; revision=7473

 libbackground/ChangeLog |  7 +++++++
 libbackground/applier.c | 15 ++++-----------
 2 files changed, 11 insertions(+), 11 deletions(-)

commit ef714f2d83007c023553822cebcc0e16f38410a3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 16 18:20:06 2007 +0000

    Patch by: Priit Laes <amd@store20.com>
    
    2007-04-16  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Priit Laes <amd@store20.com>
    
        * gnome-background-properties.glade:
        * gnome-wp-capplet.c: (gnome_wp_option_menu_set),
        (gnome_wp_scale_type_changed), (gnome_wp_shade_type_changed),
        (wallpaper_properties_init): replace deprecated GtkOptionMenu with
        GtkComboBox (closes bug #421199)
    
    svn path=/trunk/; revision=7472

 capplets/background/ChangeLog                      | 10 +++
 .../background/gnome-background-properties.glade   | 15 ++--
 capplets/background/gnome-wp-capplet.c             | 85 +++++-----------------
 3 files changed, 38 insertions(+), 72 deletions(-)

commit 25fe0c1319324f563cddba361946a126ab146983
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Apr 16 18:15:11 2007 +0000

    don't crash if the GConf schema is missing (bug #430253). Also fix
    
    2007-04-16  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-capplet.c: (gnome_wp_load_stuffs): don't crash if the
        GConf schema is missing (bug #430253). Also fix initialization of
        the secondary colour picker
    
    svn path=/trunk/; revision=7471

 capplets/background/ChangeLog          |  6 ++++++
 capplets/background/gnome-wp-capplet.c | 14 +++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit bbe22836be2439e9a3983dde7ec8488f11f4e5c2
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Apr 16 14:42:34 2007 +0000

    Fixed Czech sound names
    
    2007-04-16  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Fixed Czech sound names
    
    
    svn path=/trunk/; revision=7470

 po/ChangeLog | 4 ++++
 po/cs.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit a0d5e201202b8cd5928024a4e354901e5f5f84a2
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Apr 16 14:28:36 2007 +0000

    Merged sound names from SUSE's gnome-patch-translation.cs.po
    
    2007-04-16  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Merged sound names from SUSE's gnome-patch-translation.cs.po
    
    
    svn path=/trunk/; revision=7469

 po/ChangeLog |  4 ++++
 po/cs.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 3b02d561181205a27df235bd520d7c99a519d130
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Apr 15 09:46:49 2007 +0000

    Updated g-c-c translation from Yang Zhang.
    
    svn path=/trunk/; revision=7467

 po/ChangeLog |   4 +
 po/zh_CN.po  | 498 +++++++++++++++++++++++------------------------------------
 2 files changed, 194 insertions(+), 308 deletions(-)

commit 0d259a856abd8d70b972ba6f9c3a5e7ceef803c1
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sat Apr 14 18:47:05 2007 +0000

    Updated Arabic Translation by .
    
    svn path=/trunk/; revision=7466

 po/ChangeLog |    4 +
 po/ar.po     | 1065 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 649 insertions(+), 420 deletions(-)

commit 8e4d835261d51fb007f9f09d34f2fb77e9bdfcf1
Author: Ross Burton <ross@burtonini.com>
Date:   Wed Apr 11 19:02:18 2007 +0000

    Remove all settings that are not related to colour (#428615).
    
    2007-04-11  Ross Burton  <ross@burtonini.com>
    
        * xrdb/General.ad:
        * xrdb/Motif.ad:
        * xrdb/Editres.ad:
        * xrdb/Xaw.ad:
        * xrdb/Emacs.ad:
        Remove all settings that are not related to colour (#428615).
    
    svn path=/trunk/; revision=7462

 gnome-settings-daemon/ChangeLog       |  9 +++++++++
 gnome-settings-daemon/xrdb/Editres.ad |  1 -
 gnome-settings-daemon/xrdb/Emacs.ad   |  8 --------
 gnome-settings-daemon/xrdb/General.ad |  3 ---
 gnome-settings-daemon/xrdb/Motif.ad   |  7 -------
 gnome-settings-daemon/xrdb/Xaw.ad     | 16 ----------------
 6 files changed, 9 insertions(+), 35 deletions(-)

commit a06753d6b4396ca9773ff9a28f20a3d0e55a3c38
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Wed Apr 11 15:09:55 2007 +0000

    Updated Czech translation.
    
    2007-04-12  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7461

 po/ChangeLog |  10 +-
 po/cs.po     | 591 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 325 insertions(+), 276 deletions(-)

commit 69a50ae0cc397d78f598af80f4915076055f2528
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Tue Apr 10 20:43:16 2007 +0000

    Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    2007-04-12  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    svn path=/trunk/; revision=7459

 po/ChangeLog |  4 ++++
 po/et.po     | 32 ++++++++++++++++++++------------
 2 files changed, 24 insertions(+), 12 deletions(-)

commit d685e008598452c22dad86deb4ae6aface7b4964
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Apr 10 14:01:01 2007 +0000

    Use OnlyShowIn=; to hide the theme installer from menus and menu editors.
    
    2007-04-10  Matthias Clasen  <mclasen@redhat.com>
    
            * gnome-theme-installer.desktop.in.in: Use OnlyShowIn=; to
            hide the theme installer from menus and menu editors.  (#420154)
    
    
    svn path=/trunk/; revision=7457

 capplets/theme-switcher/ChangeLog                           | 5 +++++
 capplets/theme-switcher/gnome-theme-installer.desktop.in.in | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit d8426a96773c3bfc6f0abdb84cf2b789066633e1
Author: Alexander Larsson <alexl@redhat.com>
Date:   Tue Apr 10 11:50:49 2007 +0000

    Also check registered directories for notification. Fixes theme e.g.
    
    2007-04-10  Alexander Larsson <alexl@redhat.com>
    
        * utils.c (config_notify):
        Also check registered directories for notification.
        Fixes theme e.g. switching.
    
    
    svn path=/trunk/; revision=7456

 gnome-settings-daemon/ChangeLog |  6 ++++++
 gnome-settings-daemon/utils.c   | 16 ++++++++++++++++
 2 files changed, 22 insertions(+)

commit 25464aad376a330c23e78df5a2e2339305810fec
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Apr 9 22:37:37 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-04-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7455

 po/ChangeLog |   4 +
 po/nb.po     | 670 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 360 insertions(+), 314 deletions(-)

commit 9b98d1d1ebd968e0b5f3e167f00859ac80ce184a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 9 14:49:59 2007 +0000

    build libslab statically, to avoid conflicts with gnome-main-menu, which
    
    2007-04-09  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in: build libslab statically, to avoid conflicts with
        gnome-main-menu, which installs its .so and header files.
    
    svn path=/trunk/; revision=7453

 ChangeLog    | 5 +++++
 configure.in | 3 +++
 2 files changed, 8 insertions(+)

commit 214b8cbcefe3e98e6863467db11468b79ffd3386
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 8 12:33:50 2007 +0000

    Patch by: Kristof Vansant <de_lupus@pandora.be>
    
    2007-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Kristof Vansant <de_lupus@pandora.be>
    
        * gnome-about-me.c: (about_me_image_clicked_cb): add image filter to
        file chooser (closes bug #424958)
    
    svn path=/trunk/; revision=7449

 capplets/about-me/ChangeLog        |  7 +++++++
 capplets/about-me/gnome-about-me.c | 11 +++++++++++
 2 files changed, 18 insertions(+)

commit 2c82f3bcb8a7cf5c404cf15508ebd57fe68dad55
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 8 12:30:02 2007 +0000

    Based on a patch by: Kristof Vansant <de_lupus@pandora.be>
    
    2007-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Kristof Vansant <de_lupus@pandora.be>
    
        * gnome-theme-installer.c: (gnome_theme_installer_run): add filters
        for theme packages to the file chooser and mark the file chooser
        title for translation. Closes bug #424960.
    
    svn path=/trunk/; revision=7448

 capplets/theme-switcher/ChangeLog               |  8 ++++++++
 capplets/theme-switcher/gnome-theme-installer.c | 17 ++++++++++++++++-
 2 files changed, 24 insertions(+), 1 deletion(-)

commit e1ca865e36a3e40e0582b3d3abdb7ba92e662db4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 8 12:22:41 2007 +0000

    Patch by: Kristof Vansant <de_lupus@pandora.be>
    
    2007-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Kristof Vansant <de_lupus@pandora.be>
    
        * gnome-default-applications-properties.glade: don't require gnome
        glade lib
    
    svn path=/trunk/; revision=7447

 capplets/default-applications/ChangeLog                            | 7 +++++++
 .../gnome-default-applications-properties.glade                    | 2 --
 2 files changed, 7 insertions(+), 2 deletions(-)

commit fd82526691fa46d81b2b536ee236ce5c51a3914e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 8 12:20:42 2007 +0000

    Patch by: Kristof Vansant <de_lupus@pandora.be>
    
    2007-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Kristof Vansant <de_lupus@pandora.be>
    
        * gnome-background-properties.glade: don't require gnome glade lib
    
    svn path=/trunk/; revision=7446

 capplets/background/ChangeLog                         | 6 ++++++
 capplets/background/gnome-background-properties.glade | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

commit c0346756dd67ec53faa0c4d341b3a08e7372cbae
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 8 12:18:43 2007 +0000

    Patch by: Kristof Vansant <de_lupus@pandora.be>
    
    2007-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Kristof Vansant <de_lupus@pandora.be>
    
        * at-enable-dialog.glade: don't require gnome glade lib
    
    svn path=/trunk/; revision=7445

 capplets/accessibility/at-properties/ChangeLog              | 6 ++++++
 capplets/accessibility/at-properties/at-enable-dialog.glade | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 848e023bb0d641778f42e55abc2a7a2aecec93f5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Apr 8 12:15:38 2007 +0000

    Patch by: Kristof Vansant <de_lupus@pandora.be>
    
    2007-04-08  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Kristof Vansant <de_lupus@pandora.be>
    
        * font-properties.glade: don't require gnome glade lib
    
    svn path=/trunk/; revision=7444

 capplets/font/ChangeLog             | 6 ++++++
 capplets/font/font-properties.glade | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 6e718f6ed083b98916c771367740d09656078781
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 5 09:26:34 2007 +0000

    Remove the metacity keybindings definitions, they're in metacity now
    
    2007-04-05  Bastien Nocera  <hadess@hadess.net>
    
        * 50-metacity-desktop-key.xml.in:
        * 50-metacity-key.xml.in:
        * Makefile.am: Remove the metacity keybindings definitions, they're
        in metacity now
    
    2007-04-05  Bastien Nocera  <hadess@hadess.net>
    
        * POTFILES.in: Updated for removed files
    
    
    svn path=/trunk/; revision=7442

 .../keybindings/50-metacity-desktop-key.xml.in     |  20 --
 capplets/keybindings/50-metacity-key.xml.in        | 266 ---------------------
 capplets/keybindings/ChangeLog                     |   7 +
 capplets/keybindings/Makefile.am                   |   2 +-
 po/ChangeLog                                       |   6 +-
 po/POTFILES.in                                     |   2 -
 6 files changed, 13 insertions(+), 290 deletions(-)

commit 7eeb3afb397cc595cb336a98a68917cefaad3de6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 3 21:05:11 2007 +0000

    don't crash if the color string is mangled, and close a small memory leak
    
    2007-04-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-details.c: (update_color_buttons_from_string):
        don't crash if the color string is mangled, and close a small
        memory leak
    
    svn path=/trunk/; revision=7439

 capplets/theme-switcher/ChangeLog             |  6 +++++
 capplets/theme-switcher/gnome-theme-details.c | 37 +++++++++++++--------------
 2 files changed, 24 insertions(+), 19 deletions(-)

commit 66283c87ede5b6fe6d2679cfe77a08f820fc61d2
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 3 19:17:47 2007 +0000

    move function inside USE_HAL
    
    2007-04-03  Jens Granseuer  <jensgr@gmx.net>
    
        * sound-properties-capplet.c: (remove_device): move function inside
        USE_HAL
    
    svn path=/trunk/; revision=7438

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3804bf4a442e0f934f1ff34119e492462f45b2d0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Apr 3 19:13:17 2007 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2007-04-03  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * sound-properties-capplet.c: (setup_default_mixer): ellipsize the
        device combobox (bug #425650)
    
    svn path=/trunk/; revision=7437

 capplets/sound/ChangeLog                  | 7 +++++++
 capplets/sound/sound-properties-capplet.c | 1 +
 2 files changed, 8 insertions(+)

commit fbfb49fd95a3e1034c55b15c427bc2d9329ea551
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Apr 2 15:30:30 2007 +0000

    Added missing files
    
    svn path=/trunk/; revision=7436

 gnome-settings-daemon/utils.c | 177 ++++++++++++++++++++++++++++++++++++++++++
 gnome-settings-daemon/utils.h |  43 ++++++++++
 2 files changed, 220 insertions(+)

commit 53bb60e945ea5157ca8e65ae32562af1bf487c49
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 2 15:29:28 2007 +0000

    return NULL when there is an error, not exit(), so that we do proper
    
    2007-04-02  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-daemon.c (gnome_settings_daemon_new): return NULL
        when there is an error, not exit(), so that we do proper cleanup.
        Remove code to register GConf callbacks, that is done in utils.c.
        (gnome_settings_daemon_get_conf_client,
         gnome_settings_daemon_register_callback,
         gnome_settings_daemon_spawn_with_input,
         gnome_settings_daemon_get_invisible,
         gnome_settings_daemon_delayed_show_dialog): removed from the
        GnomeSettingsDaemon interface.
    
        * utils.c (gnome_settings_get_config_client,
         gnome_settings_get_invisible,
         gnome_settings_register_config_callback,
         gnome_settings_spawn_with_input,
         gnome_settings_delayed_show_dialog): moved from GnomeSettingsDaemon
        interface.
    
        * factory.c (main): check return value from gnome_settings_daemon().
    
        * *.c: adapted to changes in function names.
    
        * Makefile.am: put source files in alphabetical order.
    
    svn path=/trunk/; revision=7435

 gnome-settings-daemon/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e16cbd24dc45e3f5ab78a01a7d02ff97d64570f2
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Apr 2 15:27:35 2007 +0000

    return NULL when there is an error, not exit(), so that we do proper
    
    2007-04-02  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-settings-daemon.c (gnome_settings_daemon_new): return NULL
        when there is an error, not exit(), so that we do proper cleanup.
        Remove code to register GConf callbacks, that is done in utils.c.
        (gnome_settings_daemon_get_conf_client,
        gnome_settings_daemon_register_callback,
         gnome_settings_daemon_spawn_with_input,
         gnome_settings_daemon_get_invisible,
         gnome_settings_daemon_delayed_show_dialog): removed from the
        GnomeSettingsDaemon interface.
    
        * utils.c (gnome_settings_get_config_client,
         gnome_settings_get_invisible,
         gnome_settings_register_config_callback,
         gnome_settings_spawn_with_input,
         gnome_settings_delayed_show_dialog): moved from GnomeSettingsDaemon
        interface.
    
        * factory.c (main): check return value from gnome_settings_daemon().
    
        * *.c: adapted to changes in function names.
    
        * Makefile.am: put source files in alphabetical order.
    
    svn path=/trunk/; revision=7434

 gnome-settings-daemon/ChangeLog                    |  25 ++
 gnome-settings-daemon/Makefile.am                  |  70 ++--
 gnome-settings-daemon/factory.c                    |  61 ++--
 .../gnome-settings-accessibility-keyboard.c        |   8 +-
 gnome-settings-daemon/gnome-settings-background.c  |   2 +-
 gnome-settings-daemon/gnome-settings-daemon.c      | 393 +++++----------------
 gnome-settings-daemon/gnome-settings-daemon.h      |  28 +-
 .../gnome-settings-default-editor.c                |   2 +-
 gnome-settings-daemon/gnome-settings-font.c        |   2 +-
 gnome-settings-daemon/gnome-settings-gtk1theme.c   |   5 +-
 gnome-settings-daemon/gnome-settings-keybindings.c |   4 +-
 .../gnome-settings-keyboard-xkb.c                  |  16 +-
 gnome-settings-daemon/gnome-settings-keyboard.c    |   8 +-
 gnome-settings-daemon/gnome-settings-mouse.c       |   2 +-
 gnome-settings-daemon/gnome-settings-screensaver.c |   4 +-
 gnome-settings-daemon/gnome-settings-sound.c       |   5 +-
 .../gnome-settings-typing-break.c                  |   2 +-
 gnome-settings-daemon/gnome-settings-xmodmap.c     |  12 +-
 gnome-settings-daemon/gnome-settings-xrdb.c        |   2 +-
 gnome-settings-daemon/gnome-settings-xsettings.c   |  12 +-
 20 files changed, 233 insertions(+), 430 deletions(-)

commit 23e6f1e2a7986112fbf7b27997dffef31827c93e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Mar 31 18:17:32 2007 +0000

    s/default/Default/
    
    svn path=/trunk/; revision=7431

 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5895ee2be5eb077ed98bc704ca9b171f21da3993
Author: Priit Laes <amd@store20.com>
Date:   Thu Mar 29 18:47:28 2007 +0000

    Fix launch application in terminal support. (closes bug #362578).
    
    2007-03-29  Priit Laes  <amd@store20.com>
    
        * gnome-settings-multimedia-keys.c: (get_term_command), (execute),
        (do_unknown_action), (do_help_action), (do_mail_action),
        (do_media_action), (do_www_action), (do_exit_action), (do_eject_action),
        (do_action): Fix launch application in terminal support. (closes bug
        #362578).
    
    svn path=/trunk/; revision=7429

 gnome-settings-daemon/ChangeLog                    |   8 ++
 .../gnome-settings-multimedia-keys.c               | 148 +++++++++++++--------
 2 files changed, 100 insertions(+), 56 deletions(-)

commit 1f697bfa83b0fbea7bcb891a7fd2b499c72427c1
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Mar 28 23:28:08 2007 +0000

    Updated and fixed Portuguese translation.
    
    2007-03-29  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated and fixed Portuguese translation.
    
    svn path=/trunk/; revision=7427

 po/ChangeLog |   4 +
 po/pt.po     | 638 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 340 insertions(+), 302 deletions(-)

commit 9d00463e325598b1d622b131680bd9a3dcf8d13c
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Mar 26 23:11:44 2007 +0000

    new version of the layout chooser
    
    svn path=/trunk/; revision=7426

 capplets/keyboard/ChangeLog                        |    7 +
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |    4 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |  435 ++-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |    3 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 3239 ++++++++------------
 5 files changed, 1591 insertions(+), 2097 deletions(-)

commit 77a88ffbfe1e5c32d234388fc72378a24ab18b57
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 26 19:01:50 2007 +0000

    rebuild the media window if the state of composite has changed (fixes bug
    
    2007-03-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-multimedia-keys.c: (dialog_init):
        * gsd-media-keys-window.c: (gsd_media_keys_window_is_valid),
        (initialize_alpha_mode):
        * gsd-media-keys-window.h: rebuild the media window if the state of
        composite has changed (fixes bug #408035)
    
    svn path=/trunk/; revision=7425

 gnome-settings-daemon/ChangeLog                        |  8 ++++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c |  7 +++++++
 gnome-settings-daemon/gsd-media-keys-window.c          | 16 +++++++++++++---
 gnome-settings-daemon/gsd-media-keys-window.h          |  1 +
 4 files changed, 29 insertions(+), 3 deletions(-)

commit 3ffbe248cc0eb1080d9f05ed4bc69fe8b3da5d24
Author: Raivis Dejus <orvils@gmail.com>
Date:   Sun Mar 25 18:36:35 2007 +0000

    Updated Latvian Translation.
    
    2007-03-25  Raivis Dejus <orvils@gmail.com>
    
            * lv.po: Updated Latvian Translation.
    
    svn path=/trunk/; revision=7423

 po/ChangeLog |    4 +
 po/lv.po     | 1514 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 828 insertions(+), 690 deletions(-)

commit 32b1374a8bb7f506beaf73ca8fd656bd6825760e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Mar 24 15:23:40 2007 +0000

    don't set Emacs.mode-line.attributeBackground as it seems to cause
    
    2007-03-24  Jens Granseuer  <jensgr@gmx.net>
    
        * xrdb/Emacs.ad: don't set Emacs.mode-line.attributeBackground as it
        seems to cause problems with emacs 22 (closes bug #416823)
    
    svn path=/trunk/; revision=7422

 gnome-settings-daemon/ChangeLog     | 5 +++++
 gnome-settings-daemon/xrdb/Emacs.ad | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b6e1fdf6e95b382070568d0a34b7f31ada848d88
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Mar 24 00:23:57 2007 +0000

    another bit of cleanup
    
    svn path=/trunk/; revision=7421

 capplets/keyboard/gnome-keyboard-properties-xkb.h      | 13 +------------
 capplets/keyboard/gnome-keyboard-properties-xkbltadd.c |  4 ++--
 2 files changed, 3 insertions(+), 14 deletions(-)

commit d173601ca5243ca2ddc87a291f18db513aa16988
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Mar 23 23:54:05 2007 +0000

    a bit more cleanup
    
    svn path=/trunk/; revision=7420

 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  8 ++--
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 10 +++--
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 46 ++++++++++++++++------
 .../keyboard/gnome-keyboard-properties-xkbpv.c     | 15 ++-----
 4 files changed, 47 insertions(+), 32 deletions(-)

commit a3cac171e0b3a1a91e398a0f0cd6d7b34cf45fdd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Mar 23 19:56:37 2007 +0000

    add 720x576 (PAL) to the list of valid resolutions. Closes bug #325548.
    
    2007-03-23  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (show_resolution): add 720x576 (PAL) to the list of valid
        resolutions. Closes bug #325548.
    
    svn path=/trunk/; revision=7419

 capplets/display/ChangeLog |  5 +++++
 capplets/display/main.c    | 10 +++-------
 2 files changed, 8 insertions(+), 7 deletions(-)

commit 848756167047f332351a316ef8e9b8b878ebde89
Author: Priit Laes <amd@store20.com>
Date:   Fri Mar 23 18:36:35 2007 +0000

    Deprecated GtkOptionMenu to GtkComboBox conversion. Ditto. Closes bug
    
    2007-03-23  Priit Laes  <amd@store20.com>
    
        * gnome-window-properties.c: (double_click_titlebar_changed_callback),
        (reload_settings), (update_wm), (main): Deprecated GtkOptionMenu to
        GtkComboBox conversion.
        * gnome-window-properties.glade: Ditto.
        Closes bug #421210.
    
    
    svn path=/trunk/; revision=7418

 capplets/windows/ChangeLog                     |  8 ++++++
 capplets/windows/gnome-window-properties.c     | 38 +++++++-------------------
 capplets/windows/gnome-window-properties.glade | 18 +++++-------
 3 files changed, 25 insertions(+), 39 deletions(-)

commit 4dd31fc983afe4b5a3eca48a9af1b211c36a8a44
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Mar 23 00:28:44 2007 +0000

    restoring the working version
    
    svn path=/trunk/; revision=7417

 capplets/keyboard/gnome-keyboard-properties.glade | 3239 +++++++++++++--------
 1 file changed, 1944 insertions(+), 1295 deletions(-)

commit f7e40120a81feae55279911ce41bb07310667031
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Mar 23 00:26:44 2007 +0000

    cleaning up some unneeded headers
    
    svn path=/trunk/; revision=7416

 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   11 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |    4 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |   12 +-
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  |    6 -
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |   10 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     |   10 +-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |    8 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 3239 ++++++++------------
 8 files changed, 1311 insertions(+), 1989 deletions(-)

commit 044eb80355296256b398ea0821b487822e7cd0cd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 22 19:07:34 2007 +0000

    don't crash if dbus connection is not available (part of bug #411504)
    
    2007-03-22  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-dbus.c: (gnome_settings_server_init): don't crash if
        dbus connection is not available (part of bug #411504)
    
    svn path=/trunk/; revision=7415

 gnome-settings-daemon/ChangeLog             | 5 +++++
 gnome-settings-daemon/gnome-settings-dbus.c | 3 +++
 2 files changed, 8 insertions(+)

commit 9bb60f7a533aff64c49abdbb51f706a4f74c9d92
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Mar 21 23:55:40 2007 +0000

    split the layout chooser into the separate .c file
    
    svn path=/trunk/; revision=7413

 capplets/keyboard/ChangeLog                        |   6 +
 capplets/keyboard/Makefile.am                      |   1 +
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 253 ------------------
 .../keyboard/gnome-keyboard-properties-xkbltadd.c  | 297 +++++++++++++++++++++
 4 files changed, 304 insertions(+), 253 deletions(-)

commit dddfaa2a2a552750d294aa8fcbeba07096c09bb6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Mar 21 19:01:27 2007 +0000

    Prepend the directory name before loading the files, otherwise, we're
    
    2007-03-21  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybinding-properties.c: (reload_key_entries):
        Prepend the directory name before loading the files, otherwise, we're
        loading them from the current directory, spotted by Fernando Herrera
        <fherrera@onirica.com> (Closes: #420796)
    
    
    svn path=/trunk/; revision=7411

 capplets/keybindings/ChangeLog                     | 7 +++++++
 capplets/keybindings/gnome-keybinding-properties.c | 6 +++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 94238895cbe54d006df292d51fc2b556e1e7c55c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Mar 21 17:26:08 2007 +0000

    uppercase the rotation options. Closes bug #410959.
    
    2007-03-21  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: uppercase the rotation options. Closes bug #410959.
    
    svn path=/trunk/; revision=7410

 capplets/display/ChangeLog | 4 ++++
 capplets/display/main.c    | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 30c120762072a3f251fdc97f3302a408ceb91051
Author: Federico Mena Quintero <federico@novell.com>
Date:   Wed Mar 21 17:05:06 2007 +0000

    Fix the gnome-settings-daemon part of
    
    2007-03-21  Federico Mena Quintero  <federico@novell.com>
    
        Fix the gnome-settings-daemon part of
        https://bugzilla.novell.com/show_bug.cgi?id=217790 and
        http://bugzilla.gnome.org/show_bug.cgi?id=378338:  try to figure
        out the DPI value from the X server or the user's GConf settings.
    
        Should also fix https://bugzilla.novell.com/show_bug.cgi?id=240246.
    
        * gnome-settings-daemon/gnome-settings-xsettings.c (gnome_xft_settings_get): Call
        get_dpi_from_gconf_or_server() to figure out a reasonable DPI
        value; don't unconditionally get it from GConf.
        (get_dpi_from_gconf_or_server): New function.  If the user has
        ever set the /desktop/gnome/font_rendering/dpi value in GConf, we
        use its value.  Otherwise, we ask the X server.  We constrain the
        X server's response to a range of reasonable DPI values, since
        some servers lie about the screen's phisical dimensions --- the
        user would get unusably huge or tiny fonts otherwise.
    
        * capplets/font/main.c (dpi_load): First, see if the DPI value is actually set
        in GConf.  If it is, it means that the user has changed it at
        least once.  In that case, just use the value.  Otherwise, find
        the value from the X server in a similar way to what we do in
        gnome-settings-daemon.
    
    svn path=/trunk/; revision=7409

 ChangeLog                                        | 25 +++++++
 capplets/font/main.c                             | 67 +++++++++++++++++-
 gnome-settings-daemon/gnome-settings-xsettings.c | 89 ++++++++++++++++++++++--
 3 files changed, 175 insertions(+), 6 deletions(-)

commit 202d3b55159328175bd9380c912062fb5cf83190
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Mar 21 11:39:12 2007 +0000

    rename module to cinnamon-control-center.
    
    2007-03-21  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * configure.in: rename module to cinnamon-control-center.
    
    svn path=/trunk/; revision=7408

 ChangeLog    | 4 ++++
 configure.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 8325f4df396f0aaab0021f100043a0e52d17d9f7
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:   Wed Mar 21 09:08:30 2007 +0000

    Disable revert button when using theme engine defaults colors. Close bug
    
    2007-03-21  Frederic Crozat  <fcrozat@mandriva.com>
    
           * gnome-theme-details.c: (update_color_scheme_tab):
           Disable revert button when using theme engine defaults colors.
           Close bug #417423.
    
    
    svn path=/trunk/; revision=7406

 capplets/theme-switcher/ChangeLog             |  6 ++++++
 capplets/theme-switcher/gnome-theme-details.c | 15 ++++++++++++---
 2 files changed, 18 insertions(+), 3 deletions(-)

commit b7386fc2e23721586f29d9158c50e87badff36b2
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Tue Mar 20 19:16:56 2007 +0000

    Add schemas to media keybinding.
    
    2007-03-20  Priit Laes  <plaes@svn.gnome.org>
    
        * capplets/keybindings/00-multimedia-key.xml.in:
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in: Add schemas
        to media keybinding.
    
        Introduces preferred media application support. Bug #362578.
    
    svn path=/trunk/; revision=7405

 ChangeLog                                                 |  8 ++++++++
 capplets/keybindings/00-multimedia-key.xml.in             |  3 +++
 schemas/apps_gnome_settings_daemon_keybindings.schemas.in | 12 +++++++++++-
 3 files changed, 22 insertions(+), 1 deletion(-)

commit a0427192af3c9647675ac6687f081fae67a87add
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Tue Mar 20 19:01:26 2007 +0000

    Added handler for media keybinding. Add defines for media key.
    
    2007-03-20  Priit Laes  <plaes@svn.gnome.org>
    
        * gnome-settings-multimedia-keys.c: (do_media_action), (do_action): Added
        handler for media keybinding.
        * actions/acme.h: Add defines for media key.
    
        Introduces preferred media application support. Bug #362578.
    
    svn path=/trunk/; revision=7404

 gnome-settings-daemon/ChangeLog                        |  8 ++++++++
 gnome-settings-daemon/actions/acme.h                   |  2 ++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 14 ++++++++++++++
 3 files changed, 24 insertions(+)

commit fe4665e55f914ec38fb28dbe99d28993e05b4000
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Tue Mar 20 18:53:59 2007 +0000

    Glue code to tie everything together. Added widgets and defines for
    
    2007-03-20  Priit Laes  <plaes@svn.gnome.org>
    
        * gnome-da-capplet.c: Glue code to tie everything together.
        * gnome-da-capplet.h: Added widgets and defines for default mediaplayer.
        * gnome-da-xml.c: (gnome_da_xml_load_xml), (gnome_da_xml_free): Added
        mediaplayer data parser.
        * gnome-da-item.c: Changed occurrences of MailItem to SimpleItem, so we
        can also use it for mediaplayers.
        * gnome-da-item.h: Ditto.
        * gnome-default-applications-properties.glade: Make Multimedia tab visible
        and change the UI to include our favorite mediaplayer selector.
        * gnome-default-applications.xml.in: Add some media players to the list.
    
        Introduces preferred media application support. Bug #362578.
    
    svn path=/trunk/; revision=7403

 capplets/default-applications/ChangeLog            |  15 +++
 capplets/default-applications/gnome-da-capplet.c   | 147 ++++++++++++++++++++-
 capplets/default-applications/gnome-da-capplet.h   |  10 ++
 capplets/default-applications/gnome-da-item.c      |  10 +-
 capplets/default-applications/gnome-da-item.h      |   8 +-
 capplets/default-applications/gnome-da-xml.c       |  30 ++++-
 .../gnome-default-applications-properties.glade    |  35 ++---
 .../gnome-default-applications.xml.in              |  31 +++++
 8 files changed, 255 insertions(+), 31 deletions(-)

commit 7b7e6ba536e3d6979925c40287b4a9bec47ed73a
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Tue Mar 20 07:51:05 2007 +0000

    Updated Catalan translation.
    
    svn path=/trunk/; revision=7401

 po/ChangeLog |   4 +
 po/ca.po     | 392 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 201 insertions(+), 195 deletions(-)

commit 29478049ddab930613ddf5712252787585371a69
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 19 18:28:38 2007 +0000

    Based on a patch by: Bastien Nocera <hadess@hadess.net>
    
    2007-03-19  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Bastien Nocera <hadess@hadess.net>
    
        * Makefile.am: don't try to build about-me if it's been disabled in
        configure and make is run in the subdir (closes bug #408552)
    
    svn path=/trunk/; revision=7399

 capplets/about-me/ChangeLog   |  7 +++++++
 capplets/about-me/Makefile.am | 28 ++++++++++++++++++----------
 2 files changed, 25 insertions(+), 10 deletions(-)

commit b7e17af41562a577f1ae4210025ce8290fe951a6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 19 15:23:33 2007 +0000

    Fix the path from which we'd load the keybindings
    
    2007-03-19  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * gnome-keybinding-properties.c: (reload_key_entries):
        Fix the path from which we'd load the keybindings
    
    
    svn path=/trunk/; revision=7398

 capplets/keybindings/ChangeLog                     | 12 +++++++++---
 capplets/keybindings/Makefile.am                   |  5 +++--
 capplets/keybindings/gnome-keybinding-properties.c |  3 +--
 3 files changed, 13 insertions(+), 7 deletions(-)

commit fc29de6d6b8905b433ef8f9546e92048e0374621
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 19 15:14:06 2007 +0000

    Make all the keybindings be external to the keybindings capplet itself.
    
    2007-03-19  Bastien Nocera  <hadess@hadess.net>
    
        * capplets/keybindings/00-multimedia-key.xml.in:
        * capplets/keybindings/01-desktop-key.xml.in:
        * capplets/keybindings/50-metacity-desktop-key.xml.in:
        * capplets/keybindings/50-metacity-key.xml.in:
        * capplets/keybindings/Makefile.am:
        * capplets/keybindings/gnome-keybinding-properties.c:
        (create_dialog), (should_show_key), (count_rows_foreach),
        (ensure_scrollbar), (append_keys_to_tree), (parse_start_tag),
        (append_keys_to_tree_from_file), (reload_key_entries),
        (setup_dialog):
        * po/POTFILES.in: Make all the keybindings be external to the keybindings
        capplet itself. This allows applications to add their own keybindings
        without recompilation (Closes: #410758)
    
    
    svn path=/trunk/; revision=7397

 ChangeLog                                          |  16 +
 capplets/keybindings/00-multimedia-key.xml.in      |  32 ++
 capplets/keybindings/01-desktop-key.xml.in         |  29 ++
 .../keybindings/50-metacity-desktop-key.xml.in     |  20 +
 capplets/keybindings/50-metacity-key.xml.in        | 266 +++++++++++
 capplets/keybindings/Makefile.am                   |   6 +
 capplets/keybindings/gnome-keybinding-properties.c | 484 ++++++++++++++-------
 po/POTFILES.in                                     |   4 +
 8 files changed, 711 insertions(+), 146 deletions(-)

commit 0bff352d632c466ef6404c001b974f4bf7f2aeb9
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Mon Mar 19 04:52:32 2007 +0000

    Updated Dzongkha Translation
    
    svn path=/trunk/; revision=7396

 po/ChangeLog |    4 +
 po/dz.po     | 1559 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 789 insertions(+), 774 deletions(-)

commit de16439ab32da8a0d17f5a77c774e1bc06517826
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 18 17:39:22 2007 +0000

    Patch by: Vitaliy Ischenko <betalb@gmail.com>
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Vitaliy Ischenko <betalb@gmail.com>
    
        * capplets/about-me/gnome-about-me.glade:
        * capplets/accessibility/keyboard/gnome-accessibility-keyboard-properties.glade:
        * capplets/default-applications/gnome-default-applications-properties.glade:
        * capplets/keyboard/gnome-keyboard-properties.glade:
        * capplets/network/gnome-network-properties.glade:
        don't hardcode the invisible char property in glade files (closes bug
        #393879)
    
    svn path=/trunk/; revision=7395

 ChangeLog                                          | 12 ++++++++
 capplets/about-me/gnome-about-me.glade             | 34 ----------------------
 .../gnome-accessibility-keyboard-properties.glade  |  2 --
 .../gnome-default-applications-properties.glade    |  9 ------
 capplets/keyboard/gnome-keyboard-properties.glade  |  2 --
 capplets/network/gnome-network-preferences.glade   |  8 -----
 capplets/theme-switcher/theme-properties.glade     |  1 -
 7 files changed, 12 insertions(+), 56 deletions(-)

commit ef78a7168afe57f33531d80adad3173babac6a3a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 18 17:26:23 2007 +0000

    Patch by: Andreas Koehler <andi5.py@gmx.net>
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Andreas Koehler <andi5.py@gmx.net>
    
        * gnome-mouse-properties.glade: use automatic instead of always
        scrollbar policy for the mouse pointer tab (fixes #345884)
    
    svn path=/trunk/; revision=7394

 capplets/mouse/ChangeLog                    | 7 +++++++
 capplets/mouse/gnome-mouse-properties.glade | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 661686c5e885d53b0d967f7e447a12bf60ce98e0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 18 17:25:58 2007 +0000

    Patch by: Andreas Koehler <andi5.py@gmx.net>
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
            Patch by: Andreas Koehler <andi5.py@gmx.net>
    
        * gnome-keyboard-properties.glade: use automatic instead of always
            scrollbar policy for the layout selection dialog (fixes #345884)
    
    svn path=/trunk/; revision=7393

 capplets/keyboard/ChangeLog                       | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 06d1bdc9d224bf807798c64e9f0a963f249a7e72
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 18 17:13:47 2007 +0000

    use a radio button instead of a checkbox to indicate the default layout.
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkblt.c:
        (xkb_layouts_prepare_selected_tree): use a radio button instead of a
        checkbox to indicate the default layout. Fixes #389469.
    
    svn path=/trunk/; revision=7392

 capplets/keyboard/ChangeLog                         | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 2 ++
 2 files changed, 8 insertions(+)

commit c7b803a131ed2cf1b0421ebc295ce2ed8013cb58
Author: Christian Persch <chpe@gnome.org>
Date:   Sun Mar 18 16:15:13 2007 +0000

    Fix button label alignment. Bug #416238.
    
    2007-03-18  Christian Persch  <chpe@gnome.org>
    
        * sound-properties.glade: Fix button label alignment. Bug #416238.
    
    svn path=/trunk/; revision=7390

 capplets/sound/ChangeLog              | 4 ++++
 capplets/sound/sound-properties.glade | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit c4902308324e40dbecbf460f914bb57fdaddc404
Author: Christian Persch <chpe@gnome.org>
Date:   Sun Mar 18 14:27:53 2007 +0000

    Revert unrelated change accidentally committed with the previous commit.
    
    2007-03-18  Christian Persch  <chpe@gnome.org>
    
        * sound-properties-capplet.c: (create_dialog): Revert unrelated change
        accidentally committed with the previous commit.
    
    svn path=/trunk/; revision=7389

 capplets/sound/ChangeLog                  | 7 ++++++-
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 9975a0cc644da92188a67a6264e5016489c96d58
Author: Christian Persch <chpe@gnome.org>
Date:   Sun Mar 18 14:25:53 2007 +0000

    Initialise threads early, and fix option context translation. Bug #416239.
    
    2007-03-18  Christian Persch  <chpe@gnome.org>
    
        * sound-properties-capplet.c: (create_dialog), (main): Initialise
        threads early, and fix option context translation. Bug #416239.
    
    svn path=/trunk/; revision=7388

 capplets/sound/ChangeLog                  |  5 +++++
 capplets/sound/sound-properties-capplet.c | 12 ++++++++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

commit 711d022d0389e98ffde5ac692b2bff20c3aabdd4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 18 13:53:58 2007 +0000

    fix multimedia window appearing in a different position when shown for the
    
    2007-03-18  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-multimedia-keys.c: (dialog_show): fix multimedia
        window appearing in a different position when shown for the first time
        and thus causing a "jump" effect on the second (fixes bug #400915)
    
    svn path=/trunk/; revision=7387

 gnome-settings-daemon/ChangeLog                       |  6 ++++++
 .../gnome-settings-multimedia-keys.c                  | 19 ++++++++++++++-----
 2 files changed, 20 insertions(+), 5 deletions(-)

commit 2aae3239923a3c1d82c73ab8c9c48384671e6973
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Sat Mar 17 22:40:48 2007 +0000

    2007-03-17 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated Macedonian translation.
    
    svn path=/trunk/; revision=7386

 po/ChangeLog |   4 ++
 po/mk.po     | 222 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 115 insertions(+), 111 deletions(-)

commit f3e7dc2fcba760e995e2adc654706b85b8a1b1b7
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Thu Mar 15 21:53:06 2007 +0000

    Updated Italian translation.
    
    svn path=/trunk/; revision=7385

 po/ChangeLog |    5 +
 po/it.po     | 1212 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 744 insertions(+), 473 deletions(-)

commit 253ec84164623aa40f53aa0b1154c3374aa975e2
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Tue Mar 13 07:31:30 2007 +0000

    Update Ukrainian translation.
    
    2007-03-13 Maxim Dziumanenko <dziumanenko@gmail.com>
    
        * Update Ukrainian translation.
    
    
    svn path=/trunk/; revision=7384

 help/ChangeLog |   2 +-
 help/uk/uk.po  | 140 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 141 insertions(+), 1 deletion(-)

commit e0f8a16b4e74ca213723fe6c7bea301212eb1c35
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Mar 12 18:57:24 2007 +0000

    updated for 2.18.0.
    
    2007-03-12  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: updated for 2.18.0.
    
    svn path=/trunk/; revision=7381

 NEWS | 2 --
 1 file changed, 2 deletions(-)

commit 9d4c346786461c87291122fdbf0521d237a40a1a
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Mar 12 17:56:29 2007 +0000

    updated for 2.18.0.
    
    2007-03-12  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: updated for 2.18.0.
    
    svn path=/trunk/; revision=7380

 ChangeLog    |  5 +++++
 NEWS         | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 63 insertions(+), 1 deletion(-)

commit ccae1396e02aa63da9f501a7e0cb218799080e6d
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Mon Mar 12 17:18:27 2007 +0000

    Update Ukrainian translation.
    
    2007-03-12 Maxim Dziumanenko <dziumanenko@gmail.com>
    
        * Update Ukrainian translation.
    
    
    svn path=/trunk/; revision=7379

 help/ChangeLog   |  5 +++++
 help/Makefile.am |  2 +-
 po/uk.po         | 24 ++++++++++++++++--------
 3 files changed, 22 insertions(+), 9 deletions(-)

commit a4c6efd9b1b7d75d1dc35e7693eab27a29221de6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 11 20:05:46 2007 +0000

    remove obsolete list of dependencies, and update references to cvs (closes
    
    2007-03-11  Jens Granseuer  <jensgr@gmx.net>
    
        * README: remove obsolete list of dependencies, and update references
        to cvs (closes bug #344741)
    
    svn path=/trunk/; revision=7378

 ChangeLog |  5 +++++
 README    | 25 ++++++++-----------------
 2 files changed, 13 insertions(+), 17 deletions(-)

commit 3d1208003da52f5688188be3ce9973bc7811d60c
Author: Goran Rakic <grakic@src.gnome.org>
Date:   Sun Mar 11 18:22:16 2007 +0000

    Updated Serbian translation
    
    svn path=/trunk/; revision=7377

 po/ChangeLog  |    4 +
 po/sr.po      | 1885 +++++++++++++++++++++++++++++++++++--------------------
 po/sr@Latn.po | 1928 ++++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 2427 insertions(+), 1390 deletions(-)

commit ef0764e304b4a9d1deb51f0e5f3d0178abb52502
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Mar 10 17:33:32 2007 +0000

    Translation updated.
    
    2007-03-10  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=7376

 po/ChangeLog |  4 +++
 po/hu.po     | 97 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 53 insertions(+), 48 deletions(-)

commit 3fab820470ef8ea95ea1761c2a25dc2964d88d16
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Sat Mar 10 16:23:53 2007 +0000

    fixed Russian translation
    
    svn path=/trunk/; revision=7375

 po/ru.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 55eff2adeddc7efb8b0aef96a09025a94e1b495c
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Sat Mar 10 16:22:14 2007 +0000

    Updated Russian translation
    
    svn path=/trunk/; revision=7374

 po/ChangeLog |   4 +
 po/ru.po     | 252 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 149 insertions(+), 107 deletions(-)

commit 34b87dcc51025bb0fc73252b3397c7de9a249a08
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sat Mar 10 15:06:17 2007 +0000

    Translation updated by Tino Meinen.
    
    2007-03-10  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.
    
    svn path=/trunk/; revision=7373

 po/ChangeLog |   4 +
 po/nl.po     | 943 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 661 insertions(+), 286 deletions(-)

commit f9d5bfe708139db4b047794b56f29f697563873e
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sat Mar 10 00:30:17 2007 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=7372

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit a3e6100bcd5f876c3975bf9b4b39d4f896789c84
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sat Mar 10 00:29:16 2007 +0000

    Updated Greek translation
    
    svn path=/trunk/; revision=7371

 po/el.po | 1289 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 842 insertions(+), 447 deletions(-)

commit b1f63535fae57e178cf3cad19466dd73337b8318
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Fri Mar 9 19:56:24 2007 +0000

    Updated Lithuanian translation.
    
    2007-03-09  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    
    svn path=/trunk/; revision=7370

 po/ChangeLog |   4 +
 po/lt.po     | 425 ++++++++++++++++++-----------------------------------------
 2 files changed, 130 insertions(+), 299 deletions(-)

commit 5e8e1849a15b59f02e145a5b508de74e85830b7a
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Thu Mar 8 13:21:45 2007 +0000

    Updated Czech translation.
    
    2007-03-08  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7369

 po/ChangeLog |   8 ++-
 po/cs.po     | 175 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 91 insertions(+), 92 deletions(-)

commit ba44c95e1b138675ae2677bf765f56b6c8505cc9
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Tue Mar 6 23:38:41 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-03-07  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=7368

 po/ChangeLog |  4 ++++
 po/pl.po     | 54 +++++++++++++++++++++++++++---------------------------
 2 files changed, 31 insertions(+), 27 deletions(-)

commit 4d10ed39483d94e681fa21a6cc58ce813c93e5af
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Tue Mar 6 17:52:08 2007 +0000

    Updated German translation.
    
    2007-03-06  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.
    
    svn path=/trunk/; revision=7367

 po/ChangeLog |   4 +
 po/de.po     | 276 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 152 insertions(+), 128 deletions(-)

commit af4dedd5270475eee8834c4a6ef08384facd7014
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Tue Mar 6 12:34:12 2007 +0000

    Updated German translation, by Christian Kintner
    
    2007-03-06  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation, by
                 Christian Kintner <mail@christian-kintner.de>
    
    svn path=/trunk/; revision=7366

 po/ChangeLog |    5 +
 po/de.po     | 1250 ++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 817 insertions(+), 438 deletions(-)

commit 757d5091a497af146237898fe071496121c18ceb
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Tue Mar 6 10:13:31 2007 +0000

    2007-03-06 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated Macedonian translation.
    
    svn path=/trunk/; revision=7365

 po/ChangeLog |   4 +
 po/mk.po     | 265 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 152 insertions(+), 117 deletions(-)

commit 8b90d02157fab12fbdc4b2a39d8cede07d39dba3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 5 19:26:18 2007 +0000

    fix build with gcc 2, and move setting the sort column somewhere sensible
    
    2007-03-05  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-mouse-properties.c: (populate_tree_model), (setup_dialog): fix
        build with gcc 2, and move setting the sort column somewhere sensible
    
    svn path=/trunk/; revision=7364

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 451b91d284210ca7620578b91980f7aad131f882
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Mar 5 16:57:03 2007 +0000

    Patch by: Loic Minier <lool+gnome@via.ecp.fr>
    
    2007-03-05  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Loic Minier <lool+gnome@via.ecp.fr>
    
        * Makefile.am: add GNOMECC_LIBS to linker args. Closes bug #413468.
    
    svn path=/trunk/; revision=7363

 libwindow-settings/ChangeLog   | 6 ++++++
 libwindow-settings/Makefile.am | 4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 5a8978b069e567c01bb7c6419b56b95d62dbc308
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 4 21:07:52 2007 +0000

    Patch by: Andreas Koehler <andi5.py@gmx.net>
    
    2007-03-04  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Andreas Koehler <andi5.py@gmx.net>
    
        * gnome-about-me.glade: use proper shadow type for the address fields
        (fixes bug #414061)
    
    svn path=/trunk/; revision=7362

 capplets/about-me/ChangeLog            | 7 +++++++
 capplets/about-me/gnome-about-me.glade | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 7227b2dafdb9b7a4fad3ed8ba503d564aab06187
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 4 20:42:33 2007 +0000

    plug leaks. Fixes bug #396069.
    
    2007-03-04  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-capplet.c: (gnome_wp_add_images),
        (gnome_wp_file_open_dialog), (bg_properties_dragged_image),
        (gnome_wp_main_quit), (gnome_wp_scale_type_changed),
        (gnome_wp_shade_type_changed), (gnome_wp_load_stuffs),
        (gnome_wp_options_changed), (gnome_wp_shading_changed),
        (wallpaper_properties_init), (main):
        * gnome-wp-item.c: (gnome_wp_item_new),
        (gnome_wp_item_get_thumbnail):
        * gnome-wp-xml.c: (gnome_wp_load_legacy), (gnome_wp_xml_load_xml),
        (gnome_wp_list_flatten), (gnome_wp_xml_save_list): plug leaks.
        Fixes bug #396069.
    
    svn path=/trunk/; revision=7361

 capplets/background/ChangeLog          | 14 +++++++++++
 capplets/background/gnome-wp-capplet.c | 44 ++++++++++++++++++----------------
 capplets/background/gnome-wp-item.c    |  5 +++-
 capplets/background/gnome-wp-xml.c     | 27 ++++++++++++++-------
 4 files changed, 59 insertions(+), 31 deletions(-)

commit 36c9732484f42405471c718bdf73d45e7cd4519f
Author: Benjamin Berg <benjamin@sipsolutions.net>
Date:   Sun Mar 4 19:59:56 2007 +0000

    Free the engine and color scheme lists. Removed some bogus old code that
    
    2007-03-04  Benjamin Berg  <benjamin@sipsolutions.net>
    
        * gnome-theme-details.c: (update_color_scheme_tab):
        Free the engine and color scheme lists.
        Removed some bogus old code that caused the current theme to be
        checked instead of the new one.
    
    svn path=/trunk/; revision=7360

 capplets/theme-switcher/ChangeLog             |  7 +++++++
 capplets/theme-switcher/gnome-theme-details.c | 11 +++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit bc8e3ee00772c3af7ae3836fde779d3c5dc92c8d
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Mar 4 18:28:57 2007 +0000

    Don't try and open null filenames Reset the gtk_color_scheme after a
    
    2007-03-04  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme): Don't try and open null
        filenames
        * theme-thumbnail.c: (message_from_capplet): Reset the gtk_color_scheme after
        a thumbnail has been generated.
    
    svn path=/trunk/; revision=7359

 capplets/common/ChangeLog          | 7 +++++++
 capplets/common/gnome-theme-info.c | 7 +++++--
 capplets/common/theme-thumbnail.c  | 1 +
 3 files changed, 13 insertions(+), 2 deletions(-)

commit 68b68e08b8a151096b8b28b5b1434edbb553e049
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Mar 4 17:39:36 2007 +0000

    Patch by: Thomas Zajic <zlatko@gmx.at>
    
    2007-03-04  Thomas Wood  <thos@gnome.org>
    
        Patch by: Thomas Zajic <zlatko@gmx.at>
    
        * gnome-mouse-properties.c: (populate_tree_model): Add two popular cursor
        sizes to the filter, and sort "Pointers" list alphabetically.
    
    svn path=/trunk/; revision=7358

 capplets/mouse/ChangeLog                | 7 +++++++
 capplets/mouse/gnome-mouse-properties.c | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit e006e1b875559c85eb10d1f9055a3d5ecd1c5b4d
Author: Erdal Ronahi <eronahi@src.gnome.org>
Date:   Sun Mar 4 17:19:37 2007 +0000

    Updated Kurdish translations again
    
    svn path=/trunk/; revision=7357

 po/ku.po | 2730 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1603 insertions(+), 1127 deletions(-)

commit 3a4bd9578d82c662f85c779f47bc8b6659c6864c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Mar 4 17:17:47 2007 +0000

    Move gtkrc-utils from capplets/theme-switcher to capplets/common.
    
    2007-03-04  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am:
        * gtkrc-utils.c: (gtkrc_get_details):
        * gtkrc-utils.h:
        Move gtkrc-utils from capplets/theme-switcher to capplets/common.
    
        * gnome-theme-info.c: (gnome_theme_read_meta_theme): Search the gtkrc for
        the colour scheme if none was found in the metatheme file. Fixes a problem
        when comparing two metathemes which only differ by the colour scheme setting.
    
    
    svn path=/trunk/; revision=7356

 capplets/common/ChangeLog             |  11 ++
 capplets/common/Makefile.am           |   3 +-
 capplets/common/gnome-theme-info.c    |   8 ++
 capplets/common/gtkrc-utils.c         | 196 ++++++++++++++++++++++++++++++++++
 capplets/common/gtkrc-utils.h         |   5 +
 capplets/theme-switcher/ChangeLog     |   7 ++
 capplets/theme-switcher/Makefile.am   |   4 +-
 capplets/theme-switcher/gtkrc-utils.c | 138 ------------------------
 capplets/theme-switcher/gtkrc-utils.h |   5 -
 9 files changed, 230 insertions(+), 147 deletions(-)

commit 77f371143bbe09f3399b54f6afbe58a4c6fb058c
Author: Erdal Ronahi <eronahi@src.gnome.org>
Date:   Sun Mar 4 17:10:26 2007 +0000

    Updated Kurdish translation
    
    svn path=/trunk/; revision=7355

 po/ChangeLog |    4 +
 po/ku.po     | 1738 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1002 insertions(+), 740 deletions(-)

commit 7bd1a67f61eb2b44db1f6b80b6ed88f6a3dd383c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Mar 4 12:32:42 2007 +0000

    Patch by: Loic Minier <lool+gnome@via.ecp.fr>
    
    2007-03-04  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Loic Minier <lool+gnome@via.ecp.fr>
    
        * configure.in: fix linker flags for fontilus (part of bug #413468)
    
    svn path=/trunk/; revision=7354

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit d518418a6f20a93a239704dfb423fc2ff996d5a5
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Sat Mar 3 20:01:31 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-03-03  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=7353

 po/ChangeLog | 4 ++++
 po/pl.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0f1a9017e5acde4f89de05bb53157d7dc37d1e5f
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Fri Mar 2 13:19:51 2007 +0000

    Updated Translation
    
    svn path=/trunk/; revision=7352

 po/ChangeLog |   4 +
 po/gu.po     | 798 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 567 insertions(+), 235 deletions(-)

commit 79b4f3b6bd717626687c74ea840ea90293297afa
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Mar 1 18:01:02 2007 +0000

    fix double-free reported by Sandino Flores-Moreno. Closes bug #413352.
    
    2007-03-01  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (create_dialog): fix double-free reported by Sandino
        Flores-Moreno. Closes bug #413352.
    
    svn path=/trunk/; revision=7351

 capplets/display/ChangeLog | 5 +++++
 capplets/display/main.c    | 9 ++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 93d31966a78ea8ac321b8c37491ba96988f0206a
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Thu Mar 1 01:09:36 2007 +0000

    Updated Korean translation.
    
    2007-03-01  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.
    
    svn path=/trunk/; revision=7350

 po/ChangeLog |  4 +++
 po/ko.po     | 99 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 55 insertions(+), 48 deletions(-)

commit 95cba1eb444780118099b6e9a968e7986f46a66a
Author: Matic Žgur <maticz@src.gnome.org>
Date:   Wed Feb 28 22:19:57 2007 +0000

    Updated Slovenian translation.
    
    svn path=/trunk/; revision=7349

 po/ChangeLog |   4 +
 po/sl.po     | 642 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 366 insertions(+), 280 deletions(-)

commit 3fb7e4d3c9e99bebfeec7a9f24e09a77ef1de9e9
Author: Artur Flinta <aflinta@svn.gnome.org>
Date:   Wed Feb 28 20:16:29 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-02-28  Artur Flinta  <aflinta@svn.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=7348

 po/ChangeLog |   4 +
 po/pl.po     | 287 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 162 insertions(+), 129 deletions(-)

commit a4f80edf07ef2939a683bd52ca905b46699612a0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 28 17:08:55 2007 +0000

    ref the master track (fixes bug #412467)
    
    2007-02-28  Jens Granseuer  <jensgr@gmx.net>
    
        * actions/acme-volume-gstreamer.c: (acme_volume_gstreamer_open): ref
        the master track (fixes bug #412467)
    
    svn path=/trunk/; revision=7346

 gnome-settings-daemon/ChangeLog                       | 5 +++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a93dd44a8808703eeda42b5a7e79b318d0157572
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Feb 28 09:36:57 2007 +0000

    Replace a deprecated function (color_select), (gnome_theme_details_init):
    
    2007-02-28  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (load_theme_names): Replace a deprecated function
        (color_select), (gnome_theme_details_init): Rename color_select() to gtk_color_scheme_changed()
    
    svn path=/trunk/; revision=7345

 capplets/theme-switcher/ChangeLog             |  5 +++++
 capplets/theme-switcher/gnome-theme-details.c | 18 +++++++++---------
 2 files changed, 14 insertions(+), 9 deletions(-)

commit 4a33f799ef9043007264fbbcf612e907b61465d8
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Feb 28 09:18:24 2007 +0000

    Set the gtk-color-scheme even if it is blank. Set the gtk-color-scheme
    
    2007-02-28  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set): Set the gtk-color-scheme even
        if it is blank.
        * theme-thumbnail.c: (create_image), (handle_bytes),
        (generate_theme_thumbnail), (generate_theme_thumbnail_async),
        (theme_thumbnail_factory_init): Set the gtk-color-scheme when creating the
        thumbnail.
    
    svn path=/trunk/; revision=7344

 capplets/common/ChangeLog           |  9 +++++++++
 capplets/common/gnome-theme-apply.c |  7 +++++--
 capplets/common/theme-thumbnail.c   | 27 +++++++++++++++++++++++++++
 3 files changed, 41 insertions(+), 2 deletions(-)

commit df30efc30f27a36bb60c7d002e86ac92eccfae93
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 27 19:56:12 2007 +0000

    another attempt at fixing bug #411697. The previous commit fell a bit
    
    2007-02-27  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (stop_passwd),
        (free_passwd_resources), (passdlg_process_response): another attempt
        at fixing bug #411697. The previous commit fell a bit short
    
    svn path=/trunk/; revision=7343

 capplets/about-me/ChangeLog                 |  6 ++++
 capplets/about-me/gnome-about-me-password.c | 54 +++++++++++++----------------
 2 files changed, 30 insertions(+), 30 deletions(-)

commit dcd24e05c557feb9a02906a85746ee2edfc5c371
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue Feb 27 17:59:09 2007 +0000

    Updated traditional Chinese translation
    
    svn path=/trunk/; revision=7342

 po/ChangeLog |    5 +
 po/zh_HK.po  | 1255 +++++++++++++++++++++++++++++++++++--------------------
 po/zh_TW.po  | 1312 ++++++++++++++++++++++++++++++++++++++--------------------
 3 files changed, 1683 insertions(+), 889 deletions(-)

commit de1630e7a8011d3641f957f18dbc1e855f7b928b
Author: Gintautas Miliauskas <gintas@akl.lt>
Date:   Tue Feb 27 14:41:39 2007 +0000

    Updated Lithuanian translation.
    
    2007-02-27  Gintautas Miliauskas  <gintas@akl.lt>
    
        * lt.po: Updated Lithuanian translation.
    
    
    svn path=/trunk/; revision=7341

 po/ChangeLog |   4 +
 po/lt.po     | 631 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 363 insertions(+), 272 deletions(-)

commit 3c9cc64cf195cd3d99448eb5a1aefbe6f1582726
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Feb 26 20:37:38 2007 +0000

    Prepare for 2.17.92
    
    svn path=/trunk/; revision=7339

 ChangeLog    |  5 +++++
 NEWS         | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 77 insertions(+), 1 deletion(-)

commit 9ff02af06c034b98e085b4d8aa445984bdf03c84
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Feb 26 17:05:09 2007 +0000

    prevent the child watcher from accessing already released memory after the
    
    2007-02-26  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me-password.c: (stop_passwd), (child_watch_remove),
        (free_passwd_resources): prevent the child watcher from accessing
        already released memory after the dialog has been closed (should fix
        bug #411697)
    
        * gnome-about-me-password.c: (gnome_about_me_password): unref dialog
        when we're done
    
        * gnome-about-me.c: (about_me_setup_dialog): remove redundant warning
    
    svn path=/trunk/; revision=7338

 capplets/about-me/ChangeLog                 | 11 ++++++++++
 capplets/about-me/gnome-about-me-password.c | 32 +++++++++++++++++++++--------
 capplets/about-me/gnome-about-me.c          |  1 -
 3 files changed, 34 insertions(+), 10 deletions(-)

commit 43bb23a860870eb2a903db7d7d0f953b613bea24
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Feb 26 15:23:14 2007 +0000

    Czech translation updated.
    
    2007-02-26  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Czech translation updated.
    
    
    svn path=/trunk/; revision=7337

 po/ChangeLog |   4 +
 po/cs.po     | 280 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 154 insertions(+), 130 deletions(-)

commit d639b80a2385c2b6a5ce526a4f1051988f443bb2
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Sun Feb 25 13:44:39 2007 +0000

    Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    2007-02-25  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    svn path=/trunk/; revision=7336

 po/ChangeLog |   4 ++
 po/et.po     | 135 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 66 insertions(+), 73 deletions(-)

commit f85d110b1fc8348964b7f11b33f31dcc522a3de3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 25 12:20:31 2007 +0000

    Patch by: Diego Escalante Urrelo <diego@aureal.com.pe>
    
    2007-02-25  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Diego Escalante Urrelo <diego@aureal.com.pe>
    
        * e-image-chooser.c: (set_image_from_data): don't use a composite
        pixbuf, avoiding some unnecessary clipping (fixes bug #380315)
    
    svn path=/trunk/; revision=7335

 capplets/about-me/ChangeLog         |  7 +++++++
 capplets/about-me/e-image-chooser.c | 14 +-------------
 2 files changed, 8 insertions(+), 13 deletions(-)

commit 11c36bd11a9006bb1d51049287c52ded391ac4f4
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sun Feb 25 11:38:52 2007 +0000

    updating for Punjabi by alam
    
    svn path=/trunk/; revision=7334

 po/pa.po | 287 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 153 insertions(+), 134 deletions(-)

commit 67d5239993ec988293caa6cedd7b716d43b57ca0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 25 10:07:28 2007 +0000

    change default dir for the image chooser to $datadir/pixmaps/faces (same
    
    2007-02-25  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * gnome-about-me.c: (about_me_image_clicked_cb): change default dir for
        the image chooser to $datadir/pixmaps/faces (same as gdm) and add a
        bookmark for ~/Pictures if available (fixes bug #408305)
    
    svn path=/trunk/; revision=7333

 capplets/about-me/ChangeLog        |  7 +++++++
 capplets/about-me/Makefile.am      |  1 +
 capplets/about-me/gnome-about-me.c | 16 +++++++++++++---
 3 files changed, 21 insertions(+), 3 deletions(-)

commit 2ae3f6669e87bd2402ac9eb4f57a5fb08ccc5d67
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 25 10:00:59 2007 +0000

    fix compiler warning
    
    2007-02-25  Jens Granseuer  <jensgr@gmx.net>
    
        * test-media-window.c: (test_window): fix compiler warning
    
    svn path=/trunk/; revision=7332

 gnome-settings-daemon/ChangeLog           | 4 ++++
 gnome-settings-daemon/test-media-window.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit d7bbc351d1e7a0fdf04eb6e2f186d3ac75ab4f81
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Feb 24 21:36:49 2007 +0000

    Translation updated.
    
    2007-02-24  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=7331

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 5ca820f8585d8108646f136f1b5dced540eb310a
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Feb 24 21:36:23 2007 +0000

    Translation updated.
    
    2007-02-24  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=7330

 po/hu.po | 251 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 138 insertions(+), 113 deletions(-)

commit 8591b9a45fd1615807ee3db6fb7c5d0ca37807b4
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Feb 24 20:08:52 2007 +0000

    Updated Korean translation.
    
    2007-02-25  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.
    
    svn path=/trunk/; revision=7329

 po/ChangeLog |   4 ++
 po/ko.po     | 210 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 126 insertions(+), 88 deletions(-)

commit 2ea899f11e16becd1452fdaaf0339b5d821bf4bd
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 23 22:52:53 2007 +0000

    correctly pass the function address when setting up the event filter
    
    2007-02-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-accessibility-keyboard.c:
        (gnome_settings_accessibility_keyboard_load): correctly pass the
        function address when setting up the event filter
    
    svn path=/trunk/; revision=7328

 gnome-settings-daemon/ChangeLog                               | 6 ++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 536fc3e714916b42fbd21049ded3e36453db6f86
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Feb 23 20:05:51 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-02-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7327

 po/ChangeLog |   4 +++
 po/nb.po     | 113 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 55 insertions(+), 62 deletions(-)

commit e5b4a38592f67273174b51004261594c5e639855
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 23 18:05:03 2007 +0000

    fix harmless copy'n'paste error
    
    2007-02-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-installer.c: (transfer_done_tarbz2_idle_cb): fix
        harmless copy'n'paste error
    
    svn path=/trunk/; revision=7326

 capplets/theme-switcher/ChangeLog               | 5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3950a63d86e15803e5950a5e5232a3ceb483fe14
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 23 17:33:22 2007 +0000

    add another NULL check. Should really fix #398631.
    
    2007-02-23  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keyboard-properties-xkblt.c: (def_group_in_gconf_changed):
        add another NULL check. Should really fix #398631.
    
    svn path=/trunk/; revision=7325

 capplets/keyboard/ChangeLog                         | 5 +++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 3 +++
 2 files changed, 8 insertions(+)

commit 5c743e16ded97eb98df79faaa4a95c8268f294fc
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Fri Feb 23 15:13:47 2007 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=7324

 po/ChangeLog |    4 +
 po/vi.po     | 1441 ++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 946 insertions(+), 499 deletions(-)

commit fbac9c86c09e4cf22d8c116d2946a0d3c5ebad76
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Feb 23 07:49:21 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-02-23  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7323

 po/ChangeLog |  5 +++++
 po/bg.po     | 72 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 40 insertions(+), 37 deletions(-)

commit 361f400d3273f63968a23601c06e6d02ad8c2112
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Thu Feb 22 21:25:00 2007 +0000

    Updated French translation.
    
    2007-02-22  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation.
    
    svn path=/trunk/; revision=7322

 po/ChangeLog |  4 ++++
 po/fr.po     | 42 +++++++++++++++++++-----------------------
 2 files changed, 23 insertions(+), 23 deletions(-)

commit 53c80ad47b743b8c1844f8b65a8d60bffb6bf5ff
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 22 20:35:17 2007 +0000

    color components in GdkColor are guint16 not guint8, so format
    
    2007-02-22  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-details.c: (color_select): color components in
        GdkColor are guint16 not guint8, so format accordingly. Fixes bug
        398331.
    
    svn path=/trunk/; revision=7321

 capplets/theme-switcher/ChangeLog             |  6 ++++++
 capplets/theme-switcher/gnome-theme-details.c | 13 ++++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)

commit bf8ec9cf36fd96c048b083c41587e3f64889f10c
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 22 19:17:18 2007 +0000

    constify arg to fix a compiler warning
    
    2007-02-22  Jens Granseuer  <jensgr@gmx.net>
    
        * gtkrc-utils.c: (gtkrc_find_named):
        * gtkrc-utils.h: constify arg to fix a compiler warning
    
    svn path=/trunk/; revision=7320

 capplets/theme-switcher/ChangeLog     | 5 +++++
 capplets/theme-switcher/gtkrc-utils.c | 2 +-
 capplets/theme-switcher/gtkrc-utils.h | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 204c1c0418cb50dcab7c190f1fc8460c361f8791
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 22 19:11:24 2007 +0000

    update selected_fg_color from the correct slot. Fixes bug 410764.
    
    2007-02-22  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-details.c: (color_select): update selected_fg_color
        from the correct slot. Fixes bug 410764.
    
    svn path=/trunk/; revision=7319

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-details.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b00934aac17c17965ba1159a63baa03f5c5c96fb
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 22 17:38:18 2007 +0000

    remove some long-dead code; don't leak stuff on error, either
    
    2007-02-22  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-window-properties.c: (alt_click_radio_toggled_callback),
        (main), (reload_mouse_modifiers): remove some long-dead code; don't leak
        stuff on error, either
    
    svn path=/trunk/; revision=7318

 capplets/windows/ChangeLog                 |  6 +++
 capplets/windows/gnome-window-properties.c | 65 ++++--------------------------
 2 files changed, 13 insertions(+), 58 deletions(-)

commit cb6a51c18558e93c26120c01bdaa0e56e6d890f0
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Thu Feb 22 13:19:37 2007 +0000

    Update Ukrainian translation.
    
    2007-02-22 Maxim Dziumanenko <dziumanenko@gmail.com>
    
        * Update Ukrainian translation.
    
    
    svn path=/trunk/; revision=7317

 po/ChangeLog |    4 +
 po/uk.po     | 1375 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 708 insertions(+), 671 deletions(-)

commit 187339fb47096592541beea16e0bdbb5f708c87e
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Thu Feb 22 04:08:32 2007 +0000

    Help Funda Wang committing zh_CN translation
    
    svn path=/trunk/; revision=7316

 po/ChangeLog |    5 +
 po/zh_CN.po  | 1078 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 668 insertions(+), 415 deletions(-)

commit 1edcffbe462a16fd3b4be561b306e42b851cabb7
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   Thu Feb 22 03:15:24 2007 +0000

    Updated Brazilian Portuguese by Og Maciel <ogmaciel@ubuntu.com>.
    
    2007-02-22  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
        * pt_BR.po: Updated Brazilian Portuguese by Og Maciel
        <ogmaciel@ubuntu.com>.
    
    svn path=/trunk/; revision=7315

 po/ChangeLog |   5 ++
 po/pt_BR.po  | 222 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 127 insertions(+), 100 deletions(-)

commit 2afb2bfc88c78ba6b452ae5ceeae4b598932d62e
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Wed Feb 21 14:09:57 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7314

 po/ChangeLog |  4 ++++
 po/fi.po     | 74 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 41 insertions(+), 37 deletions(-)

commit e8c9a5a11cfe56e9e3816e56b302a592eaf22965
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 20 20:26:12 2007 +0000

    Dist MAINTAINERS.
    
    2007-02-20  Kjartan Maraas  <kmaraas@gnome.org>
    
        * Makefile.am: Dist MAINTAINERS.
    
    svn path=/trunk/; revision=7312

 ChangeLog   | 4 ++++
 Makefile.am | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 4be9efdfb8af1ad16c9d5ce8f9d6a6bcc5bad4fa
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 20 20:26:01 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-02-20  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7311

 po/ChangeLog |   4 +
 po/nb.po     | 380 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 241 insertions(+), 143 deletions(-)

commit 17b48a862bd4c29d2c713305c1caa0390b17ee5c
Author: Denis Washington <denisw@src.gnome.org>
Date:   Tue Feb 20 18:26:14 2007 +0000

    Reverting the default use of the shell and use the menus for 2.18 instead.
    
    * shell/gnomecc.desktop: Reverting the default use of the shell and
    use the menus for 2.18 instead. The shell still needs some love and
    probably will be default for GNOME 2.20.
    
    svn path=/trunk/; revision=7310

 ChangeLog                   | 6 ++++++
 shell/gnomecc.desktop.in.in | 1 +
 2 files changed, 7 insertions(+)

commit 3041f4bda8fb450ae639973833d567cd1b76ae0b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Feb 19 17:35:34 2007 +0000

    clear GConf client cache before reloading since cached values don't pass
    
    2007-02-19  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (clear_old_model): clear GConf client
        cache before reloading since cached values don't pass the schema name
        along which can make entries vanish from the list (fixes bug 394776)
    
    svn path=/trunk/; revision=7309

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 4 ++++
 2 files changed, 10 insertions(+)

commit 36163305f369d9e34502daccac9cea15702fb644
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Feb 18 20:04:25 2007 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2007-02-18  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>
    
    svn path=/trunk/; revision=7308

 po/ChangeLog |   5 +
 po/bg.po     | 540 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 324 insertions(+), 221 deletions(-)

commit 2a55141ab8a5d72cae84b5e4ee1ee79c14b492fa
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Sun Feb 18 09:42:15 2007 +0000

    Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    2007-02-18  Priit Laes  <plaes@svn.gnome.org>
    
        * et.po: Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    svn path=/trunk/; revision=7307

 po/ChangeLog |   4 +
 po/et.po     | 639 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 351 insertions(+), 292 deletions(-)

commit 1399d7b3c91f7b27a402b12d16fdf68938647c65
Author: David Lodge <dlodge@src.gnome.org>
Date:   Fri Feb 16 23:52:49 2007 +0000

    Updated (British) English translation
    
    svn path=/trunk/; revision=7305

 help/ChangeLog      |   5 +++
 help/Makefile.am    |   2 +-
 help/en_GB/en_GB.po |  94 ++++++++++++++++++++++++++++++++++++++++++
 po/ChangeLog        |   4 ++
 po/en_GB.po         | 116 +++++++++++++++++++++++++++++++---------------------
 5 files changed, 173 insertions(+), 48 deletions(-)

commit ec87da8b1810fd33354847fc37446e87617cfd22
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 16 17:42:27 2007 +0000

    don't install the same filter twice for the default root window (fixes bug
    
    2007-02-16  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-keybindings.c: (gnome_settings_keybindings_init):
        don't install the same filter twice for the default root window (fixes
        bug #408643)
    
    svn path=/trunk/; revision=7304

 gnome-settings-daemon/ChangeLog                    | 6 ++++++
 gnome-settings-daemon/gnome-settings-keybindings.c | 3 ---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 34f1a0486dbc74ed30340d94a4123f04cb504de1
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Fri Feb 16 16:28:56 2007 +0000

    Fixed wrong translation.
    
    2007-02-16  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
        * ja.po: Fixed wrong translation.
    
    svn path=/trunk/; revision=7303

 po/ja.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit c8a8840b9c8fac550ab7eb01ef63b830995c1b65
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Fri Feb 16 16:07:55 2007 +0000

    Fixed translation error.
    
    2007-02-16  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
        * ja.po: Fixed translation error.
    
    svn path=/trunk/; revision=7302

 po/ja.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit c57af31b4a8c637c954099287003e75158fd81ae
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Fri Feb 16 16:04:11 2007 +0000

    Updated Japanese translation.
    
    2007-02-16  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=7301

 po/ChangeLog |   4 +
 po/ja.po     | 330 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 178 insertions(+), 156 deletions(-)

commit 88385822a3d610806769867534ae8d21afc19cf5
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Fri Feb 16 15:24:35 2007 +0000

    Updated Arabic Translation.
    
    svn path=/trunk/; revision=7300

 po/ChangeLog |   4 +
 po/ar.po     | 413 +++++++++++++++++++----------------------------------------
 2 files changed, 139 insertions(+), 278 deletions(-)

commit afb58c2d9e917fb58538500099fcdee401ed3ba6
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Fri Feb 16 04:06:33 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7299

 po/ChangeLog |  4 ++++
 po/th.po     | 73 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 53 insertions(+), 24 deletions(-)

commit aa3c8a247d0bae602f4e08fc570586a4d86f5fe3
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Feb 15 01:54:05 2007 +0000

    Updated Portuguese translation.
    
    2007-02-15  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=7297

 po/ChangeLog |  4 ++++
 po/pt.po     | 59 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 47 insertions(+), 16 deletions(-)

commit 17ec46ecb3fa218043afc64a36eb5d69870578f9
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 14 18:23:34 2007 +0000

    populate the VFS file info fields properly so that nautilus shows e.g.
    
    2007-02-14  Jens Granseuer  <jensgr@gmx.net>
    
        * theme-method.c: (fill_info_struct), (do_read_directory): populate the
        VFS file info fields properly so that nautilus shows e.g. read-only
        emblems in themes:// (fixes bug #145175)
    
    svn path=/trunk/; revision=7296

 vfs-methods/themus/ChangeLog      |  6 ++++
 vfs-methods/themus/theme-method.c | 72 +++++++++++----------------------------
 2 files changed, 26 insertions(+), 52 deletions(-)

commit be5dce4b6437f08b5c39a152f64b9cb2bb0ec687
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 14 17:32:48 2007 +0000

    if X refuses to update the pointer mapping (busy) don't just ignore the
    
    2007-02-14  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-mouse.c: (configure_button_layout),
        (set_left_handed): if X refuses to update the pointer mapping (busy)
        don't just ignore the error but retry after a short delay (fixes bug
        #349538)
    
    svn path=/trunk/; revision=7295

 gnome-settings-daemon/ChangeLog              |  7 +++++++
 gnome-settings-daemon/gnome-settings-mouse.c | 24 ++++++++++++++++--------
 2 files changed, 23 insertions(+), 8 deletions(-)

commit ebb26308513f028bfc49562a9a862e71b38112c4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 14 17:17:59 2007 +0000

    properly round volumess so that volume-up and volume-down act
    
    2007-02-14  Jens Granseuer  <jensgr@gmx.net>
    
        * actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_set_mute),
        (acme_volume_gstreamer_get_volume),
        (acme_volume_gstreamer_set_volume): properly round volumess so that
        volume-up and volume-down act symmetrically, ie. lowering and raising
        volume will end up at the original level (fixes bug #389996)
    
    svn path=/trunk/; revision=7294

 gnome-settings-daemon/ChangeLog                       |  9 +++++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 10 +++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)

commit f379bee957dac7fb2f3a49d4fcc14d6f74df3013
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Wed Feb 14 03:52:20 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7293

 po/ChangeLog |   4 +
 po/fi.po     | 398 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 258 insertions(+), 144 deletions(-)

commit 7f1f7cfc6632384c75471fdf198794d9d657dcd0
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Wed Feb 14 00:45:38 2007 +0000

    Updated Catalan translation.
    
    svn path=/trunk/; revision=7292

 po/ChangeLog |   4 +++
 po/ca.po     | 101 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 55 insertions(+), 50 deletions(-)

commit f469d6a55d1096e0f210da88ea286c542dd20a86
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 13 22:41:50 2007 +0000

    don't try to read into invalid territory when the user set a custom
    
    2007-02-13  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-da-capplet.c: (web_gconf_changed_cb): don't try to read into
        invalid territory when the user set a custom command without spaces.
        Closes bug #407601.
    
    svn path=/trunk/; revision=7291

 capplets/default-applications/ChangeLog          |  6 ++++++
 capplets/default-applications/gnome-da-capplet.c | 20 ++++++++++++--------
 2 files changed, 18 insertions(+), 8 deletions(-)

commit 3bc84f6ace67ed15283f85dd5c25bed90783636b
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Feb 13 22:19:12 2007 +0000

    really fix DATADIR and make directory definitions more consistent with
    
    2007-02-13  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * gnome-da-capplet.c: (show_dialog):
        * gnome-da-xml.c: (gnome_da_xml_load_list): really fix DATADIR and
        make directory definitions more consistent with other capplets.
        Closes bug #407597.
    
    svn path=/trunk/; revision=7290

 capplets/default-applications/ChangeLog          | 8 ++++++++
 capplets/default-applications/Makefile.am        | 8 ++++----
 capplets/default-applications/gnome-da-capplet.c | 4 ++--
 capplets/default-applications/gnome-da-xml.c     | 3 +--
 4 files changed, 15 insertions(+), 8 deletions(-)

commit 6d08f0a4ee3d907a3e3176c478770fb88ef7cca0
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Tue Feb 13 21:33:45 2007 +0000

    Updated French translation.
    
    2007-02-13  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation.
    
    svn path=/trunk/; revision=7289

 po/ChangeLog |  4 ++++
 po/fr.po     | 29 +++++++++++++++++++++++++++--
 2 files changed, 31 insertions(+), 2 deletions(-)

commit 5a0c0a30209418c4757c3b6131b06f1a31857126
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Feb 13 19:27:34 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=7288

 po/ChangeLog   |   5 +
 po/POTFILES.in |   1 +
 po/sv.po       | 741 ++++++++++++++++++++++++++++++++++++++++++---------------
 3 files changed, 554 insertions(+), 193 deletions(-)

commit eb43d33fa0cd77e78335e2a5f913a67c5bd306a3
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Tue Feb 13 00:50:33 2007 +0000

    Updated Portuguese translation.
    
    2007-02-12  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.
    
    svn path=/trunk/; revision=7287

 po/ChangeLog |    4 +
 po/pt.po     | 1225 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 785 insertions(+), 444 deletions(-)

commit 6e6569c9a33adb4f589d89d7c103f9c252ec5e59
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Feb 12 22:17:57 2007 +0000

    svn path=/trunk/; revision=7285
    
    2007-02-12  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
    
    svn path=/trunk/; revision=7285

 ChangeLog       |   5 +++
 NEWS            | 122 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in    |   2 +-
 shell/ChangeLog |   1 +
 4 files changed, 129 insertions(+), 1 deletion(-)

commit 101a6e11ab0e2cbde3fe681a2a8630ccc7a6b9a1
Author: Christian Persch <chpe@src.gnome.org>
Date:   Mon Feb 12 20:11:42 2007 +0000

    Use the right ChangeLog
    
    svn path=/trunk/; revision=7284

 ChangeLog                      | 5 -----
 vfs-methods/fontilus/ChangeLog | 5 +++++
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 285470a00af73d47e5404217f7d9740d236945eb
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Mon Feb 12 20:10:18 2007 +0000

    Use GOption argument parsing here, and fix some leaks in the error paths.
    
    2007-02-12  Christian Persch  <chpe@svn.gnome.org>
    
        * vfs-methods/fontilus/thumbnailer.c: (main): Use GOption argument
        parsing here, and fix some leaks in the error paths. Bug #393994.
    
    svn path=/trunk/; revision=7283

 ChangeLog                          |   5 ++
 vfs-methods/fontilus/thumbnailer.c | 118 +++++++++++++++++++++++--------------
 2 files changed, 78 insertions(+), 45 deletions(-)

commit fe985d82eca352b64e1a206e77d33bc6fb520c81
Author: Scott Reeves <sreeves@src.gnome.org>
Date:   Mon Feb 12 19:23:27 2007 +0000

    use smaller icons, partial fix for 405078
    
    svn path=/trunk/; revision=7282

 shell/ChangeLog        | 4 ++++
 shell/control-center.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 685f7e2b692990cec12f79bd716093ebf6ebdfa0
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Mon Feb 12 15:14:41 2007 +0000

    Updated Russian translation
    
    svn path=/trunk/; revision=7281

 po/ChangeLog |    4 +
 po/ru.po     | 1062 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 643 insertions(+), 423 deletions(-)

commit 9bda9837dca13ce7b32ec2f1dde6f99c5be93d51
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sun Feb 11 12:48:02 2007 +0000

    Updated Arabic Translation.
    
    svn path=/trunk/; revision=7280

 po/ChangeLog |  4 +++
 po/ar.po     | 92 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 57 insertions(+), 39 deletions(-)

commit b78551cf4cb80368dc2e6cbcb5245a4a95f9cdce
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 11 11:15:46 2007 +0000

    fix possible crash
    
    2007-02-11  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_focus_out): fix possible crash
    
    svn path=/trunk/; revision=7279

 capplets/about-me/ChangeLog        | 4 ++++
 capplets/about-me/gnome-about-me.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 11bf9a77943ed4f6dc7a29ba2db8066f40e1223d
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Sun Feb 11 04:39:45 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7278

 po/ChangeLog |  4 ++++
 po/th.po     | 70 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 38 insertions(+), 36 deletions(-)

commit da4b6a8507c86aee2daf914c67e847a3ce7e98d3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 10 16:11:51 2007 +0000

    if the new font path could not be set, revert to the old path (fixes bug
    
    2007-02-10  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-font.c: (load_cursor): if the new font path could not
        be set, revert to the old path (fixes bug #397504)
    
    svn path=/trunk/; revision=7277

 gnome-settings-daemon/ChangeLog             | 5 +++++
 gnome-settings-daemon/gnome-settings-font.c | 7 +++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 6bb442dcc479366ef31abc30cb7751926e542293
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 10 13:08:10 2007 +0000

    Patch by: Patrick Wade <patrick.wade@sun.com>
    
    2007-02-10  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Patrick Wade <patrick.wade@sun.com>
    
        * sound-properties.glade: add a11y label relations for the devices
        tab (fixes bug #369302)
    
    svn path=/trunk/; revision=7276

 capplets/sound/ChangeLog              |  7 +++++++
 capplets/sound/sound-properties.glade | 30 ++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

commit ea7461f2cb83cb4fabb9d184273f12c940fd8242
Author: Leonardo Ferreira Fontenelle <leonardof@src.gnome.org>
Date:   Sat Feb 10 05:30:31 2007 +0000

    Updated pt_BR translation
    
    svn path=/trunk/; revision=7275

 po/ChangeLog |    5 +
 po/pt_BR.po  | 1384 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 700 insertions(+), 689 deletions(-)

commit 0c2a26a43cdbe93188ff9fb20fd211cba77d71f7
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Fri Feb 9 18:05:13 2007 +0000

    Updated French translation by Jonathan Ernst and Stéphane Raimbault.
    
    2007-02-09  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation by Jonathan Ernst and Stéphane
        Raimbault.
    
    svn path=/trunk/; revision=7274

 po/ChangeLog |   5 +++
 po/fr.po     | 138 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 73 insertions(+), 70 deletions(-)

commit de5b25e235f3352b9c63c7b6f1b06c3a8ffe2dd3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 9 17:34:29 2007 +0000

    remove some dead code, and don't crash if the glade file is not available
    
    2007-02-09  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-mouse-properties.c: (create_dialog), (main): remove some dead
        code, and don't crash if the glade file is not available
    
    svn path=/trunk/; revision=7273

 capplets/mouse/ChangeLog                |  5 +++++
 capplets/mouse/gnome-mouse-properties.c | 34 +++++++--------------------------
 2 files changed, 12 insertions(+), 27 deletions(-)

commit 2341ed2113ca611773cfe68126ffadf13ab1771f
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Fri Feb 9 17:25:56 2007 +0000

    Updated Arabic Translation.
    
    svn path=/trunk/; revision=7272

 po/ChangeLog |  4 +++
 po/ar.po     | 91 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 54 insertions(+), 41 deletions(-)

commit c3b40086736c8776fbb35042f637c2bd73b65827
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 9 16:59:35 2007 +0000

    Based on a patch by: Bastien Nocera <hadess@hadess.net>
    
    2007-02-09  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Bastien Nocera <hadess@hadess.net>
    
        * gnome-settings-dbus.c:
        (gnome_settings_server_media_player_key_pressed):
        * gnome-settings-dbus.h:
        * gnome-settings-multimedia-keys.c: (do_multimedia_player_action),
        (do_action), (acme_filter_events): eat media player keys if someone is
        listening on the dbus interface already (fixes bug #394313)
    
    svn path=/trunk/; revision=7271

 gnome-settings-daemon/ChangeLog                    | 11 ++++++++++
 gnome-settings-daemon/gnome-settings-dbus.c        |  7 +++++--
 gnome-settings-daemon/gnome-settings-dbus.h        |  2 +-
 .../gnome-settings-multimedia-keys.c               | 24 +++++++++++++---------
 4 files changed, 31 insertions(+), 13 deletions(-)

commit 5cfc95d400dd03785cf6e75fca69f660d6c174bf
Author: David Lodge <dlodge@src.gnome.org>
Date:   Fri Feb 9 12:10:23 2007 +0000

    Updated (British) English translation
    
    svn path=/trunk/; revision=7270

 po/ChangeLog |   6 +-
 po/en_GB.po  | 272 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 169 insertions(+), 109 deletions(-)

commit 15568b5919b4b21761e45f06f9fdabbd0927c08e
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Fri Feb 9 07:07:21 2007 +0000

    be.po: Updated Belarusian translation.
    
    svn path=/trunk/; revision=7269

 po/ChangeLog |  4 +++
 po/be.po     | 87 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 50 insertions(+), 41 deletions(-)

commit 1709248523e5dc35ee70686e2cde70592bc704d9
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Fri Feb 9 01:26:29 2007 +0000

    Updated Catalan translation.
    
    svn path=/trunk/; revision=7268

 po/ChangeLog |  6 ++++-
 po/ca.po     | 76 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 43 insertions(+), 39 deletions(-)

commit 7b9936e0e59a4c6809883924431c1b8709740206
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Fri Feb 9 00:34:45 2007 +0000

    updating translation for Punjabi
    
    svn path=/trunk/; revision=7267

 po/pa.po | 273 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 171 insertions(+), 102 deletions(-)

commit 00c6c0d602270bb130cb065934c7f6a00b1d4dc7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 8 20:34:42 2007 +0000

    change "Editable menu accelerators" to "Editable menu shortcut keys" as
    
    2007-02-08  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-ui-properties.glade: change "Editable menu accelerators" to
        "Editable menu shortcut keys" as per the style guide (Closes: #337624)
    
    svn path=/trunk/; revision=7266

 capplets/ui-properties/ChangeLog                 | 5 +++++
 capplets/ui-properties/gnome-ui-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 351193ea27c9562eff30e35ed1a315ce21b1c7e9
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Thu Feb 8 19:57:15 2007 +0000

    Updated Arabic Translation.
    
    svn path=/trunk/; revision=7265

 po/ChangeLog |   4 +
 po/ar.po     | 550 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 279 insertions(+), 275 deletions(-)

commit c76a7cc34955fe7721725b2f75c201bf4e8c9a65
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 8 19:45:59 2007 +0000

    fix some reference leaks and don't segfault if the glade file is not
    
    2007-02-08  Jens Granseuer  <jensgr@gmx.net>
    
        * main.c: (create_dialog), (main): fix some reference leaks and don't
        segfault if the glade file is not available
    
    svn path=/trunk/; revision=7264

 capplets/accessibility/at-properties/ChangeLog |  5 +++
 capplets/accessibility/at-properties/main.c    | 51 +++++++++++++++-----------
 2 files changed, 35 insertions(+), 21 deletions(-)

commit a9b2d9ed9f0cf0a31643aa62f7eff1731a6ebc64
Author: Mariano Suárez-Alvarez <mariano@gnome.org>
Date:   Thu Feb 8 17:57:07 2007 +0000

    added gconf:/apps/metacity/global_keybindings/cycle_group
    
    2007-02-08  Mariano Suárez-Alvarez  <mariano@gnome.org>
    
        * gnome-keybinding-properties.c (metacity_key_list): added
        gconf:/apps/metacity/global_keybindings/cycle_group
    
    
    svn path=/trunk/; revision=7263

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit d1b6b9d3facfc1b7703cb528d20e214e023b354c
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Thu Feb 8 12:02:45 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7262

 po/ChangeLog |  4 +++
 po/th.po     | 79 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 46 insertions(+), 37 deletions(-)

commit 1d751d66646bb5233994a101391fa50f7042e9d2
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Feb 8 00:23:12 2007 +0000

    Patch by: Matthias Clasen <mclasen@redhat.com>
    
    2007-02-08  Thomas Wood  <thos@gnome.org>
    
        Patch by: Matthias Clasen <mclasen@redhat.com>
    
        * gnome-theme-details.c: (gtk_theme_update_remove_button),
        (update_color_scheme_tab), (gtk_theme_selection_changed),
        (color_select), (revert_color_scheme_key),
        (gnome_theme_details_init), (update_color_buttons_from_string),
        (gnome_theme_details_update_from_gconf): Listens for changes in the
        gtk-color-scheme property of GtkSettings. Fixes bug 405210.
    
    svn path=/trunk/; revision=7261

 capplets/theme-switcher/ChangeLog             | 11 ++++++
 capplets/theme-switcher/gnome-theme-details.c | 56 ++++++++++++++++++++++-----
 2 files changed, 58 insertions(+), 9 deletions(-)

commit c6267e8a0bfdef22315cd80b94aaf64578aff88f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 7 21:41:41 2007 +0000

    fix various memory leaks
    
    2007-02-07  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-about-me.c: (about_me_destroy),
        (about_me_button_clicked_cb), (about_me_setup_dialog), (main): fix
        various memory leaks
    
    svn path=/trunk/; revision=7258

 capplets/about-me/ChangeLog        |  6 ++++
 capplets/about-me/gnome-about-me.c | 73 +++++++++++++++++++++++---------------
 2 files changed, 51 insertions(+), 28 deletions(-)

commit a8497f4c62587e92435aec4830aa6a53eae4e9b6
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 7 20:46:34 2007 +0000

    fix build in general, with gcc 2 in particular, and also get rid of a few
    
    2007-02-07  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am:
        * gnome-about-me-password.c: (passdlg_set_auth_state),
        (passdlg_validate_passwords):
        * gnome-about-me.c: (about_me_load_string_field),
        (about_me_setup_dialog): fix build in general, with gcc 2 in particular,
        and also get rid of a few warnings
    
    svn path=/trunk/; revision=7257

 capplets/about-me/ChangeLog                 |  9 +++++++++
 capplets/about-me/Makefile.am               | 15 +++++++++++----
 capplets/about-me/gnome-about-me-password.c |  5 ++---
 capplets/about-me/gnome-about-me.c          |  4 ++--
 4 files changed, 24 insertions(+), 9 deletions(-)

commit dd21a600ccbe5b0cb375a44a2a5d750716df8049
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Wed Feb 7 20:18:07 2007 +0000

    Updated Catalan translation.
    
    svn path=/trunk/; revision=7256

 po/ChangeLog |   4 +
 po/ca.po     | 579 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 323 insertions(+), 260 deletions(-)

commit 7dca4de3e2046da0c67ace38662f5942846ea4ee
Author: Mariano Suárez-Alvarez <mariano@gnome.org>
Date:   Wed Feb 7 18:34:49 2007 +0000

    organize the way things a cleared at exit time so as to avoid warnings.
    
    2007-02-07  Mariano Suárez-Alvarez  <mariano@gnome.org>
    
        * gnome-keybinding-properties.c (clear_old_model, reload_key_entries,
        cb_dialog_response, setup_dialog, main): organize the way things a cleared
        at exit time so as to avoid warnings. (fixes bug 405175)
    
    
    
    svn path=/trunk/; revision=7255

 capplets/keybindings/ChangeLog                     |  6 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 26 +++++++++++++---------
 2 files changed, 22 insertions(+), 10 deletions(-)

commit 375ee512c8a8900b559c8227cf299d299b39bcd3
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 7 17:49:09 2007 +0000

    Based on a patch by: Christian Persch <chpe@svn.gnome.org>
    
    2007-02-07  Jens Granseuer  <jensgr@gmx.net>
    
        Based on a patch by: Christian Persch <chpe@svn.gnome.org>
    
        * themus-theme-applier.c: (run_apply_font_dialog), (main): port to
        GOption and unref the glade dialog when done. Fixes #336286.
    
    svn path=/trunk/; revision=7254

 vfs-methods/themus/ChangeLog              |   7 ++
 vfs-methods/themus/themus-theme-applier.c | 111 +++++++++++++++++++-----------
 2 files changed, 78 insertions(+), 40 deletions(-)

commit f2d9688bb4f29c1163ed88a6c34c19612118c21b
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Feb 7 13:27:38 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=7253

 po/ChangeLog |   4 +
 po/sv.po     | 591 +++++++++++++----------------------------------------------
 2 files changed, 136 insertions(+), 459 deletions(-)

commit 009e8ba8035af768eaf753e67f5e8ddcc8533c15
Author: Jordi Mas <jmas@src.gnome.org>
Date:   Wed Feb 7 09:24:11 2007 +0000

    Fixes to Catalan translation
    
    svn path=/trunk/; revision=7252

 po/ChangeLog |  4 ++++
 po/ca.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 25a40b9c02fcddeb5921e0346114a901005bc5fc
Author: Denis Washington <denisw@svn.gnome.org>
Date:   Tue Feb 6 16:11:13 2007 +0000

    New files. Needed to fix bug #402797.
    
    2007-02-06  Denis Washington  <denisw@svn.gnome.org>
    
        * shell/gnomecc.menu:
        * shell/gnomecc.directory.in: New files. Needed to fix bug #402797.
    
        * shell/control-center.c: Use gnomecc.menu instead of settings.menu.
    
        * shell/Makefile.am: Add rules for gnomecc.directory.in.
        * po/POTFILES.in: Add gnomecc.directory.in.
    
    svn path=/trunk/; revision=7251

 ChangeLog                  |  10 ++++
 po/POTFILES.in             |   1 +
 shell/Makefile.am          |  12 ++++-
 shell/control-center.c     |   2 +-
 shell/gnomecc.directory.in |   5 ++
 shell/gnomecc.menu         | 120 +++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 147 insertions(+), 3 deletions(-)

commit fde0fee5e288bdfa0f5c65a96c9a14190caa291f
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Tue Feb 6 14:36:37 2007 +0000

    Updated Korean translation.
    
    2007-02-06  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.
    
    svn path=/trunk/; revision=7250

 po/ChangeLog |   4 +
 po/ko.po     | 252 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 160 insertions(+), 96 deletions(-)

commit 2f7a6dd30168fbc01f3dbef5939eba25e896568d
Author: William Jon McCann <mccann@jhu.edu>
Date:   Mon Feb 5 20:10:16 2007 +0000

    Use #define for the alpha levels.
    
    2007-02-05  William Jon McCann  <mccann@jhu.edu>
    
        * gsd-media-keys-window.c: (render_eject), (draw_eject),
        (draw_waves), (draw_speaker), (render_speaker),
        (draw_volume_boxes), (on_expose_event):
        Use #define for the alpha levels.
    
    
    svn path=/trunk/; revision=7249

 gnome-settings-daemon/ChangeLog               |  7 +++++++
 gnome-settings-daemon/gsd-media-keys-window.c | 29 +++++++++++++++------------
 2 files changed, 23 insertions(+), 13 deletions(-)

commit 7ea27a840aa9cf85bca2db5f5c01be1449302619
Author: Artur Flinta <aflinta@gmail.com>
Date:   Mon Feb 5 15:14:01 2007 +0000

    Updated Polish translation by GNOME PL Team.
    
    2007-02-05  Artur Flinta  <aflinta@gmail.com>
    
        * pl.po: Updated Polish translation by GNOME PL Team.
    
    
    svn path=/trunk/; revision=7247

 po/ChangeLog |    4 +
 po/pl.po     | 1848 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 1182 insertions(+), 670 deletions(-)

commit c54b651b7654eba6b2d1db4f73a03f8b14ee76f4
Author: William Jon McCann <mccann@jhu.edu>
Date:   Mon Feb 5 05:25:27 2007 +0000

    Make the new volume overlay window follow the icon and color themes. Add
    
    2007-02-05  William Jon McCann  <mccann@jhu.edu>
    
        * Makefile.am:
        * gsd-media-keys-window.c: (load_pixbuf), (render_eject),
        (draw_eject), (draw_action_eject), (draw_waves), (draw_speaker),
        (render_speaker), (draw_volume_boxes), (draw_action_volume),
        (on_expose_event):
        * test-media-window.c: (update_state), (test_window), (main):
        Make the new volume overlay window follow the
        icon and color themes.  Add an unstalled test app. Fixes #403320
    
    
    svn path=/trunk/; revision=7246

 gnome-settings-daemon/ChangeLog               |  11 +
 gnome-settings-daemon/Makefile.am             |  12 +
 gnome-settings-daemon/gsd-media-keys-window.c | 394 ++++++++++++++++++++------
 gnome-settings-daemon/test-media-window.c     | 121 ++++++++
 4 files changed, 456 insertions(+), 82 deletions(-)

commit c1c01cdf723c35fcb6db3ba6820ae2143fc60b69
Author: Stéphane Raimbault <stephane.raimbault@gmail.com>
Date:   Sun Feb 4 19:05:06 2007 +0000

    Updated French translation by Marc Lorber, Robert-André Mauchin and
    
    2007-02-02  Stéphane Raimbault  <stephane.raimbault@gmail.com>
    
        * fr.po: Updated French translation by Marc Lorber, Robert-André
        Mauchin and Stéphane Raimbault.
    
    svn path=/trunk/; revision=7245

 po/ChangeLog |    5 +
 po/fr.po     | 1211 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 736 insertions(+), 480 deletions(-)

commit 84ad8192cb1e8603e6f99ffa1f9b0e97f46bb680
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 4 17:21:39 2007 +0000

    up GTK+ requirement to 2.10 (fixes #358106)
    
    2007-02-04  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: up GTK+ requirement to 2.10 (fixes #358106)
    
    svn path=/trunk/; revision=7244

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7aa1cede0d91ca668d2079c892e5641eb904d980
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 4 15:47:49 2007 +0000

    clean up sorting to not use an imaginary column; change accel sort order
    
    2007-02-04  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (keyentry_sort_func),
        (clear_old_model), (setup_dialog): clean up sorting to not use an
        imaginary column; change accel sort order to move disabled actions
        to the back of the list and also speed up sorting a bit
    
    svn path=/trunk/; revision=7243

 capplets/keybindings/ChangeLog                     |  7 +++
 capplets/keybindings/gnome-keybinding-properties.c | 63 +++++++++++-----------
 2 files changed, 39 insertions(+), 31 deletions(-)

commit 765e80f9538ef218ef016e72362683f008ef8b28
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sun Feb 4 13:46:41 2007 +0000

    support localized key names (interim fix for #145346)
    
    2007-02-04  Jens Granseuer  <jensgr@gmx.net>
    
        * eggaccelerators.c: (egg_virtual_accelerator_name),
        (egg_virtual_accelerator_label):
        * eggaccelerators.h:
        * eggcellrendererkeys.c: (convert_keysym_state_to_string):
        * gnome-keybinding-properties.c: (binding_name),
        (accel_edited_callback): support localized key names (interim fix
        for #145346)
    
    svn path=/trunk/; revision=7242

 capplets/keybindings/ChangeLog                     | 10 +++++
 capplets/keybindings/eggaccelerators.c             | 45 ++++++++++++++++++++--
 capplets/keybindings/eggaccelerators.h             |  4 ++
 capplets/keybindings/eggcellrendererkeys.c         |  2 +-
 capplets/keybindings/gnome-keybinding-properties.c |  8 ++--
 5 files changed, 62 insertions(+), 7 deletions(-)

commit b3af3ba4baee9aba6d914e001d9c7b0c24ad109b
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Sun Feb 4 05:43:41 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7241

 po/ChangeLog |  4 +++
 po/th.po     | 86 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 47 insertions(+), 43 deletions(-)

commit 14dc74300d2c77786ca07f27a9769552c8629260
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Feb 3 18:37:03 2007 +0000

    Updated Korean translation by Young-Ho Cha.
    
    2007-02-04  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation by Young-Ho Cha.
    
    svn path=/trunk/; revision=7240

 po/ChangeLog |    4 +
 po/ko.po     | 1111 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 592 insertions(+), 523 deletions(-)

commit c9d0aee628aa31b8bb970a68bfeb87057eb0026e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 3 17:18:29 2007 +0000

    add cappletname variable which is used to define G_LOG_DOMAIN (fixes
    
    2007-02-03  Jens Granseuer  <jensgr@gmx.net>
    
        * capplets/about-me/Makefile.am:
        * capplets/background/Makefile.am:
        * capplets/default-applications/Makefile.am:
        * capplets/display/Makefile.am:
        * capplets/font/Makefile.am:
        * capplets/keybindings/Makefile.am:
        * capplets/keyboard/Makefile.am:
        * capplets/mouse/Makefile.am:
        * capplets/network/Makefile.am:
        * capplets/sound/Makefile.am:
        * capplets/theme-switcher/Makefile.am:
        * capplets/ui-properties/Makefile.am:
        * capplets/windows/Makefile.am: add cappletname variable which is
        used to define G_LOG_DOMAIN (fixes #380991)
    
    svn path=/trunk/; revision=7239

 ChangeLog                                 | 17 +++++++++++++++++
 capplets/about-me/Makefile.am             |  3 +++
 capplets/background/Makefile.am           |  3 +++
 capplets/default-applications/Makefile.am |  3 +++
 capplets/display/Makefile.am              |  3 +++
 capplets/font/Makefile.am                 |  3 +++
 capplets/keybindings/Makefile.am          |  3 +++
 capplets/keyboard/Makefile.am             |  3 +++
 capplets/mouse/Makefile.am                |  3 +++
 capplets/network/Makefile.am              |  3 +++
 capplets/sound/Makefile.am                |  3 +++
 capplets/theme-switcher/Makefile.am       |  3 +++
 capplets/ui-properties/Makefile.am        |  3 +++
 capplets/windows/Makefile.am              |  3 +++
 14 files changed, 56 insertions(+)

commit a02dd61e0b011fc15034a4f4e6c6391bceeca1e7
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 3 14:20:19 2007 +0000

    Patch by: Paolo Borelli <pborelli@katamail.com>
    
    2007-02-03  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Paolo Borelli <pborelli@katamail.com>
    
        * gnome-settings-keybindings.c: (get_screens_list),
        (screen_exec_display_string), (entry_get_string),
        (bindings_get_entry), (gnome_settings_keybindings_load): plug some
        memory leaks (fixes bug #342672)
    
    svn path=/trunk/; revision=7238

 gnome-settings-daemon/ChangeLog                    |  9 +++
 gnome-settings-daemon/gnome-settings-keybindings.c | 78 +++++++++++++---------
 2 files changed, 54 insertions(+), 33 deletions(-)

commit 14e3ec11ae91790041c6765ea46ff9fada014af8
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:   Sat Feb 3 11:45:21 2007 +0000

    Updated Belarusian translation.
    
    svn path=/trunk/; revision=7237

 po/ChangeLog |    4 +
 po/be.po     | 2130 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1208 insertions(+), 926 deletions(-)

commit 04556a5c27f2fd39ad946dd65c0a8ba87c4d69bf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 3 11:23:50 2007 +0000

    fix DATADIR define
    
    2007-02-03  Jens Granseuer  <jensgr@gmx.net>
    
        * Makefile.am: fix DATADIR define
    
    svn path=/trunk/; revision=7236

 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 779fedcd6ba12b70c66c7d69b37f6bf97b824d18
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Sat Feb 3 11:20:20 2007 +0000

    plug memory leaks. Closes bug #395212.
    
    2007-02-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-da-capplet.c: (fill_combo_box), (show_dialog), (main):
        * gnome-da-xml.c: (gnome_da_xml_load_xml),
        (gnome_da_xml_load_list), (gnome_da_xml_free):
        * gnome-da-xml.h: plug memory leaks. Closes bug #395212.
    
    svn path=/trunk/; revision=7235

 capplets/default-applications/ChangeLog          |  7 +++
 capplets/default-applications/gnome-da-capplet.c | 66 ++++++++++++++++--------
 capplets/default-applications/gnome-da-xml.c     | 36 ++++++++++---
 capplets/default-applications/gnome-da-xml.h     |  1 +
 4 files changed, 83 insertions(+), 27 deletions(-)

commit 0441bef79d1e397ccff5e1fb6d8e4d092402e98f
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Feb 3 10:30:21 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=7234

 po/ChangeLog |   4 ++
 po/sv.po     | 127 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 67 insertions(+), 64 deletions(-)

commit f600be796ad5dccbbe30a235c7c82805947de4e3
Author: William Jon McCann <mccann@jhu.edu>
Date:   Sat Feb 3 00:42:23 2007 +0000

    Use compositing to display the typing break window when available. Fixes
    
    2007-02-02  William Jon McCann  <mccann@jhu.edu>
    
        * drw-break-window.c: (drw_break_window_class_init),
        (drw_break_window_init), (drw_break_window_finalize),
        (drw_break_window_dispose), (drw_break_window_new),
        (postpone_sensitize_cb), (clock_timeout_cb), (postpone_cancel_cb),
        (postpone_entry_key_press_event_cb), (postpone_clicked_cb):
        * drw-break-window.h:
        * drw-utils.c: (window_expose_event), (set_pixmap_background),
        (drw_setup_background):
        * drwright.c: (break_window_map_event_cb), (maybe_change_state),
        (create_secondary_break_windows):
        Use compositing to display the typing break window when
        available.  Fixes #363665.
    
    
    svn path=/trunk/; revision=7233

 typing-break/ChangeLog          |  15 +++
 typing-break/drw-break-window.c | 264 +++++++++++++++++++---------------------
 typing-break/drw-break-window.h |  13 +-
 typing-break/drw-utils.c        |  91 ++++++++++++--
 typing-break/drwright.c         |  40 +++---
 5 files changed, 256 insertions(+), 167 deletions(-)

commit 09076c4e2765ca96aa89b47de1cb4cf3e1a65c06
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 2 23:22:15 2007 +0000

    filter out CapsLock modifiers since it's otherwise possible to set the
    
    2007-02-03  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (accel_edited_callback): filter
        out CapsLock modifiers since it's otherwise possible to set the
        same accel for several actions (fixes #350424)
    
    svn path=/trunk/; revision=7232

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 3 +++
 2 files changed, 9 insertions(+)

commit 1f8280c0a7651eef1b1749477cb64c6632437e2f
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 2 22:02:44 2007 +0000

    blacklist numbers, space, and tab as accels (fixes #359092)
    
    2007-02-02  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (accel_edited_callback): blacklist
        numbers, space, and tab as accels (fixes #359092)
    
    svn path=/trunk/; revision=7231

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 ++
 2 files changed, 7 insertions(+)

commit 9046e5b22c527a60cc97334221e57986ac12a779
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 2 20:04:40 2007 +0000

    remove idl/Makefile.am from the list of config files
    
    2007-02-02  Jens Granseuer  <jensgr@gmx.net>
    
        * configure.in: remove idl/Makefile.am from the list of config files
    
    svn path=/trunk/; revision=7230

 ChangeLog    | 4 ++++
 configure.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 3b3ae37bc072ea4571582f17835ca1314374fa7a
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Fri Feb 2 19:53:05 2007 +0000

    Use specific string as app ID in gnome_program_init, not PACKAGE. Bug
    
    2007-02-02  Christian Persch  <chpe@svn.gnome.org>
    
        * main.c: (main): Use specific string as app ID in
        gnome_program_init, not PACKAGE. Bug #403708.
    
    svn path=/trunk/; revision=7229

 typing-break/ChangeLog | 5 +++++
 typing-break/main.c    | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f2570627a26e390c242815a5298753bca5ee308d
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Fri Feb 2 19:52:31 2007 +0000

    Use specific string as app ID in gnome_program_init, not PACKAGE. Bug
    
    2007-02-02  Christian Persch  <chpe@svn.gnome.org>
    
        * gnome-da-capplet.c: (main): Use specific string as app ID in
        gnome_program_init, not PACKAGE. Bug #403708.
    
    svn path=/trunk/; revision=7228

 capplets/default-applications/ChangeLog          | 5 +++++
 capplets/default-applications/gnome-da-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 43d40d7a0ae05c980a87612f7dfaca0f0959a542
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Fri Feb 2 18:12:40 2007 +0000

    Don't define directories in configure. Remove some obsolete defines, and
    
    2007-02-02  Christian Persch  <chpe@svn.gnome.org>
    
        * Makefile.am:
        * capplets/about-me/Makefile.am:
        * capplets/about-me/gnome-about-me-password.c: (passdlg_init):
        * capplets/about-me/gnome-about-me.c: (about_me_setup_dialog):
        * capplets/accessibility/at-properties/Makefile.am:
        * capplets/accessibility/keyboard/Makefile.am:
        * capplets/accessibility/keyboard/accessibility-keyboard.c:
        (setup_accessX_dialog):
        * capplets/background/Makefile.am:
        * capplets/background/gnome-wp-capplet.c: (gnome_wp_create_dialog):
        * capplets/common/Makefile.am:
        * capplets/common/capplet-util.c: (capplet_set_icon):
        * capplets/default-applications/Makefile.am:
        * capplets/display/Makefile.am:
        * capplets/file-types/Makefile.am:
        * capplets/file-types/file-types-capplet.c: (create_dialog):
        * capplets/file-types/mime-category-edit-dialog.c:
        (mime_category_edit_dialog_init):
        * capplets/file-types/mime-edit-dialog.c: (mime_edit_dialog_init):
        * capplets/file-types/service-edit-dialog.c:
        (service_edit_dialog_init):
        * capplets/font/Makefile.am:
        * capplets/keybindings/Makefile.am:
        * capplets/keybindings/gnome-keybinding-properties.c:
        (create_dialog):
        * capplets/keyboard/Makefile.am:
        * capplets/keyboard/gnome-keyboard-properties-xkblt.c:
        (xkb_layout_choose):
        * capplets/keyboard/gnome-keyboard-properties-xkbmc.c:
        (choose_model):
        * capplets/keyboard/gnome-keyboard-properties.c: (create_dialog):
        * capplets/localization/Makefile.am:
        * capplets/localization/gnome-localization-properties.c:
        (create_dialog):
        * capplets/mime-type/Makefile.am:
        * capplets/mouse/Makefile.am:
        * capplets/mouse/gnome-mouse-properties.c: (create_dialog):
        * capplets/network/Makefile.am:
        * capplets/network/gnome-network-preferences.c:
        (cb_http_details_button_clicked), (main):
        * capplets/rollback/Makefile.am:
        * capplets/sound/Makefile.am:
        * capplets/sound/sound-properties-capplet.c: (create_dialog),
        (device_test_button_clicked):
        * capplets/theme-switcher/Makefile.am:
        * capplets/ui-properties/Makefile.am:
        * capplets/ui-properties/gnome-ui-properties.c: (create_dialog):
        * capplets/url-properties/Makefile.am:
        * capplets/windows/Makefile.am:
        * capplets/wm-properties/wm-desktops/Makefile.am:
        * configure.in:
        * gnome-settings-daemon/Makefile.am:
        * gnome-settings-daemon/actions/Makefile.am:
        * gnome-settings-daemon/gnome-settings-xmodmap.c:
        (gnome_settings_modmap_dialog_call):
        * gnome-settings-daemon/gnome-settings-xrdb.c:
        * gnome-settings-daemon/gsd-media-keys-window.c: (action_changed),
        (gsd_media_keys_window_init):
        * gnome-settings-daemon/xrdb/Makefile.am:
        * typing-break/Makefile.am:
        * vfs-methods/themus/Makefile.am: Don't define directories in
        configure. Remove some obsolete defines, and use the standard
        installation paths. Bug #395383.
    
    svn path=/trunk/; revision=7226

 ChangeLog                                          | 66 ++++++++++++++++++++++
 Makefile.am                                        |  2 +-
 capplets/about-me/Makefile.am                      |  4 +-
 capplets/about-me/gnome-about-me-password.c        |  2 +-
 capplets/about-me/gnome-about-me.c                 |  2 +-
 capplets/accessibility/at-properties/Makefile.am   |  5 +-
 capplets/accessibility/keyboard/Makefile.am        | 12 +++-
 .../keyboard/accessibility-keyboard.c              |  3 +-
 capplets/background/Makefile.am                    |  3 +-
 capplets/background/gnome-wp-capplet.c             |  3 +-
 capplets/common/Makefile.am                        |  4 +-
 capplets/common/capplet-util.c                     |  2 +-
 capplets/default-applications/Makefile.am          |  4 +-
 capplets/display/Makefile.am                       |  4 +-
 capplets/file-types/Makefile.am                    |  2 +-
 capplets/file-types/file-types-capplet.c           |  2 +-
 capplets/file-types/mime-category-edit-dialog.c    |  2 +-
 capplets/file-types/mime-edit-dialog.c             |  2 +-
 capplets/file-types/service-edit-dialog.c          |  2 +-
 capplets/font/Makefile.am                          |  7 ++-
 capplets/keybindings/Makefile.am                   |  8 ++-
 capplets/keybindings/gnome-keybinding-properties.c |  2 +-
 capplets/keyboard/Makefile.am                      | 11 +++-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  4 +-
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |  4 +-
 capplets/keyboard/gnome-keyboard-properties.c      |  2 +-
 capplets/localization/Makefile.am                  |  4 +-
 .../localization/gnome-localization-properties.c   |  2 +-
 capplets/mime-type/Makefile.am                     |  6 +-
 capplets/mouse/Makefile.am                         | 10 +++-
 capplets/mouse/gnome-mouse-properties.c            |  2 +-
 capplets/network/Makefile.am                       |  8 ++-
 capplets/network/gnome-network-preferences.c       |  4 +-
 capplets/rollback/Makefile.am                      |  8 +--
 capplets/sound/Makefile.am                         | 12 +++-
 capplets/sound/sound-properties-capplet.c          |  4 +-
 capplets/theme-switcher/Makefile.am                |  7 ++-
 capplets/ui-properties/Makefile.am                 |  8 ++-
 capplets/ui-properties/gnome-ui-properties.c       |  2 +-
 capplets/url-properties/Makefile.am                |  6 +-
 capplets/windows/Makefile.am                       |  2 +-
 capplets/wm-properties/wm-desktops/Makefile.am     |  2 +-
 configure.in                                       | 45 ---------------
 gnome-settings-daemon/Makefile.am                  | 19 +++++--
 gnome-settings-daemon/actions/Makefile.am          |  4 +-
 gnome-settings-daemon/gnome-settings-xmodmap.c     |  2 +-
 gnome-settings-daemon/gnome-settings-xrdb.c        |  4 +-
 gnome-settings-daemon/gsd-media-keys-window.c      |  4 +-
 gnome-settings-daemon/xrdb/Makefile.am             |  2 +-
 typing-break/Makefile.am                           |  4 +-
 vfs-methods/themus/Makefile.am                     |  4 +-
 51 files changed, 202 insertions(+), 137 deletions(-)

commit 76cbf396319c62bd74524cbf2ff15d3bae015428
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Feb 2 16:29:09 2007 +0000

    Patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
    2007-02-02  Jens Granseuer  <jensgr@gmx.net>
    
        Patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
        * sound-properties-capplet.c: (setup_devices): Polypaudio is now
        PulseAudio (fixes bug #394003)
    
    svn path=/trunk/; revision=7225

 capplets/sound/ChangeLog                  | 7 +++++++
 capplets/sound/sound-properties-capplet.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 56e82de4b47fc692efb02a419adcc4f5bfe86641
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Fri Feb 2 13:49:04 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7224

 po/ChangeLog |  4 ++++
 po/th.po     | 69 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 38 insertions(+), 35 deletions(-)

commit 39ed90d6f3ee6beda1bd8c6aa31f5b29fb0da7f0
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Thu Feb 1 22:53:22 2007 +0000

    round volume instead of truncating on unmute so a simple mute/unmute
    
    2007-02-02  Jens Granseuer  <jensgr@gmx.net>
    
        * actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_set_mute): round volume instead of
        truncating on unmute so a simple mute/unmute doesn't lower the
        volume (fixes bug #400966)
    
    svn path=/trunk/; revision=7223

 gnome-settings-daemon/ChangeLog                       | 7 +++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 34654b9ff0a2a71ae029ad9c8523e90cabf8bb2f
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Wed Jan 31 22:54:06 2007 +0000

    2007-01-31 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated Macedonian translation.
    
    svn path=/trunk/; revision=7222

 po/ChangeLog |   4 ++
 po/mk.po     | 158 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 118 insertions(+), 44 deletions(-)

commit 12205181f7c73d712ee59f8ed9ac39f9b1f2a75e
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Wed Jan 31 22:46:48 2007 +0000

    Don't define dbus services
    
    2007-01-31  Christian Persch  <chpe@svn.gnome.org>
    
        * configure.in:
        * gnome-settings-daemon/Makefile.am: Don't define dbus services
    
    svn path=/trunk/; revision=7221

 ChangeLog                         | 6 ++++++
 configure.in                      | 5 -----
 gnome-settings-daemon/Makefile.am | 2 +-
 3 files changed, 7 insertions(+), 6 deletions(-)

commit 7e4de1a53ca529a7a180d4b312c73b4da7b3716e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 22:30:35 2007 +0000

    remove left-over call to gnome_theme_init(). The rest of the code dealing
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (main): remove left-over call to
        gnome_theme_init(). The rest of the code dealing with (key) themes
        has been removed back in 2004... (fixes #157452)
    
    svn path=/trunk/; revision=7220

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 3 ---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit c19d6d800dad57e1c78d54e10dbd06d9a4114d2b
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Wed Jan 31 21:09:43 2007 +0000

    Fix localedir defines. Bug #395383.
    
    2007-01-31  Christian Persch  <chpe@svn.gnome.org>
    
        * capplets/accessibility/at-properties/Makefile.am:
        * capplets/accessibility/keyboard/Makefile.am:
        * capplets/background/Makefile.am:
        * capplets/common/Makefile.am:
        * capplets/default-applications/Makefile.am:
        * capplets/display/Makefile.am:
        * capplets/font/Makefile.am:
        * capplets/keybindings/Makefile.am:
        * capplets/keyboard/Makefile.am:
        * capplets/mouse/Makefile.am:
        * capplets/network/Makefile.am:
        * capplets/theme-switcher/Makefile.am:
        * capplets/ui-properties/Makefile.am:
        * capplets/windows/Makefile.am:
        * configure.in:
        * gnome-settings-daemon/Makefile.am:
        * libbackground/Makefile.am:
        * libwindow-settings/Makefile.am:
        * typing-break/Makefile.am:
        * vfs-methods/fontilus/Makefile.am:
        * vfs-methods/themus/Makefile.am: Fix localedir defines. Bug #395383.
    
    svn path=/trunk/; revision=7219

 ChangeLog                                        | 24 ++++++++++++++++++++++++
 capplets/accessibility/at-properties/Makefile.am |  3 ++-
 capplets/accessibility/keyboard/Makefile.am      |  2 +-
 capplets/background/Makefile.am                  |  1 +
 capplets/common/Makefile.am                      |  2 +-
 capplets/default-applications/Makefile.am        |  1 +
 capplets/display/Makefile.am                     |  1 +
 capplets/font/Makefile.am                        |  1 +
 capplets/keybindings/Makefile.am                 |  2 +-
 capplets/keyboard/Makefile.am                    |  2 +-
 capplets/mouse/Makefile.am                       |  2 +-
 capplets/network/Makefile.am                     |  2 +-
 capplets/theme-switcher/Makefile.am              |  5 ++---
 capplets/ui-properties/Makefile.am               |  2 +-
 capplets/windows/Makefile.am                     |  1 +
 configure.in                                     | 11 +++++------
 gnome-settings-daemon/Makefile.am                |  1 +
 libbackground/Makefile.am                        |  1 +
 libwindow-settings/Makefile.am                   |  4 ++--
 typing-break/Makefile.am                         | 12 ++++++++----
 vfs-methods/fontilus/Makefile.am                 |  3 ++-
 vfs-methods/themus/Makefile.am                   |  3 ++-
 22 files changed, 61 insertions(+), 25 deletions(-)

commit 413ec80cd2d4096a40bb8ff7620e5e11b83050e5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 19:08:51 2007 +0000

    don't leak the GnomeProgram reference
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * factory.c: (main): don't leak the GnomeProgram reference
    
    svn path=/trunk/; revision=7218

 gnome-settings-daemon/ChangeLog |  4 ++++
 gnome-settings-daemon/factory.c | 13 ++++++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

commit 5f9d174f4249155896ec795aa01e652f138616f8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 17:57:19 2007 +0000

    plug memory leaks (fixes bug #395609)
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-network-preferences.c: (cb_remove_url),
        (cb_dialog_response), (cb_use_same_proxy_checkbutton_clicked),
        (main): plug memory leaks (fixes bug #395609)
    
    svn path=/trunk/; revision=7217

 capplets/network/ChangeLog                   |  6 ++++
 capplets/network/gnome-network-preferences.c | 48 +++++++++++++++++-----------
 2 files changed, 36 insertions(+), 18 deletions(-)

commit 6c52e0a535c13e5b4d3bed0ebed66f0829b540ce
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 17:51:13 2007 +0000

    don't leak the references to the glade dialog and GnomeProgram
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-window-properties.c: (main): don't leak the references to the
        glade dialog and GnomeProgram
    
    svn path=/trunk/; revision=7216

 capplets/windows/ChangeLog                 | 5 +++++
 capplets/windows/gnome-window-properties.c | 9 ++++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 03bba8dc569a8067f650744c1357cf991337e0d4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 17:48:40 2007 +0000

    don't leak the references to the glade dialog and GnomeProgram
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-ui-properties.c: (main): don't leak the references to the glade
        dialog and GnomeProgram
    
    svn path=/trunk/; revision=7215

 capplets/ui-properties/ChangeLog             |  5 +++++
 capplets/ui-properties/gnome-ui-properties.c | 11 +++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 28de04be2a786efdef7a65f74c8b5da470f09fd5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 17:31:43 2007 +0000

    make sure we have a key event before treating it as such (fixes bug
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-multimedia-keys.c: (acme_filter_events): make sure
        we have a key event before treating it as such (fixes bug #382503)
    
    svn path=/trunk/; revision=7214

 gnome-settings-daemon/ChangeLog                        | 5 +++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 5 +++++
 2 files changed, 10 insertions(+)

commit 204dd9a088070d0cb68589bb81c474c909af35cf
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 31 17:24:16 2007 +0000

    don't install the same filter twice; we already install it for all
    
    2007-01-31  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-keyboard-xkb.c:
        (gnome_settings_keyboard_xkb_init): don't install the same filter
        twice; we already install it for all windows, so we don't need
        another one for the root window (fixes bug #382504)
    
    svn path=/trunk/; revision=7213

 gnome-settings-daemon/ChangeLog                     | 7 +++++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 4 ----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit d992d02c9f6308bfb732f1cbdb11d2a296476f36
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Wed Jan 31 12:29:57 2007 +0000

    updated hebrew transdlation
    
    svn path=/trunk/; revision=7212

 po/ChangeLog |    4 +
 po/he.po     | 1662 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 955 insertions(+), 711 deletions(-)

commit 4d6498454f720f1bfa15514b3af7b7fcba01c8fc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Jan 30 23:11:45 2007 +0000

    Translation updated.
    
    2007-01-30  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=7211

 po/ChangeLog |   4 +
 po/hu.po     | 380 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 215 insertions(+), 169 deletions(-)

commit 3cd5df3cc85b0bfb15867eca09742122272c91f8
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 30 21:13:02 2007 +0000

    fix typo in usage string (noticed by Christian Persch, fixes bug #398361)
    
    2007-01-30  Jens Granseuer  <jensgr@gmx.net>
    
            * control-center.c: (main): fix typo in usage string (noticed by
            Christian Persch, fixes bug #398361)
    
    svn path=/trunk/; revision=7210

 shell/ChangeLog        | 5 +++++
 shell/control-center.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d6ba28d56d727c793095d4e56b345e86c2f6ccca
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 30 20:54:46 2007 +0000

    property is called "focus-on-map", not "set-focus-on-map"
    
    2007-01-30  Jens Granseuer  <jensgr@gmx.net>
    
            * gsd-media-keys-window.c: (gsd_media_keys_window_new): property
            is called "focus-on-map", not "set-focus-on-map"
    
    svn path=/trunk/; revision=7209

 gnome-settings-daemon/ChangeLog               | 5 +++++
 gnome-settings-daemon/gsd-media-keys-window.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 2006d45e5b9ac12248a7dd44b2757d288718ee6a
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 30 20:52:01 2007 +0000

    dump remnants of gstreamer-0.8 since it's not been supported for a while
    
    2007-01-30  Jens Granseuer  <jensgr@gmx.net>
    
            * configure.in: dump remnants of gstreamer-0.8 since it's not been
            supported for a while
    
    svn path=/trunk/; revision=7208

 ChangeLog    |  5 +++++
 configure.in | 29 ++++++-----------------------
 2 files changed, 11 insertions(+), 23 deletions(-)

commit 5332e54d66dd366933ca031515f73d2c16c7231e
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 30 17:26:39 2007 +0000

    initialize 'vol' variable to prevent crashes/assertion failures trying to
    
    2007-01-30  Jens Granseuer  <jensgr@gmx.net>
    
            * actions/acme-volume-gstreamer.c: (update_state): initialize 'vol'
            variable to prevent crashes/assertion failures trying to set
            ridiculously high/low volume (fixes bug #401376)
    
    svn path=/trunk/; revision=7207

 gnome-settings-daemon/ChangeLog                       | 6 ++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f3f24bbbc51febfb710412eed1bde436d99f3ead
Author: Scott Reeves <sreeves@src.gnome.org>
Date:   Tue Jan 30 17:18:30 2007 +0000

    fix for inconsistent GenericNames
    
    svn path=/trunk/; revision=7206

 shell/ChangeLog        | 6 ++++++
 shell/control-center.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit b5d35fbfa302ce68c479d0b5987bb7f37c905337
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 30 17:01:40 2007 +0000

    issue a sensible error message when trying to use unmodified keybindings
    
    2007-01-30  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c: (accel_edited_callback): issue a
        sensible error message when trying to use unmodified keybindings
        (fixes #328152)
    
    svn path=/trunk/; revision=7205

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 9d895cfc0dfc77c6d99e5cdf762f9d7ac0ddbe80
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Tue Jan 30 14:57:00 2007 +0000

    Updated Czech translation.
    
    2007-01-30  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7204

 po/ChangeLog |   4 ++
 po/cs.po     | 175 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 117 insertions(+), 62 deletions(-)

commit 2377c1d75737fdb94ffc858093e8128a79a58b5a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:23:52 2007 +0000

    ANSIfication of function declaration.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * control-center.c: (get_actions_list): ANSIfication
        of function declaration.
    
    svn path=/trunk/; revision=7201

 shell/ChangeLog        | 5 +++++
 shell/control-center.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 141461d3e5f69cab06e693a69790118ec327bd55
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:22:55 2007 +0000

    Sparse warning fixes: - Mark some stuff static - ANSIfication of function
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-settings-background.c:
        * gnome-settings-background.h:
        * gnome-settings-dbus.c:
        * gnome-settings-font.c:
        * gnome-settings-font.h:
        * gnome-settings-keyboard.c: (numlock_NumLock_modifier_mask),
        (numlock_gconf_state_key), (numlock_get_gconf_state),
        (numlock_install_xkb_callback):
        * gnome-settings-mouse.c:
        * gnome-settings-mouse.h:
        * gnome-settings-xmodmap.c: (gnome_settings_load_modmap_files):
        Sparse warning fixes:
        - Mark some stuff static
        - ANSIfication of function declarations
        - Some other bits.
    
    svn path=/trunk/; revision=7200

 gnome-settings-daemon/ChangeLog                   | 18 ++++++++++++++++++
 gnome-settings-daemon/gnome-settings-background.c |  1 +
 gnome-settings-daemon/gnome-settings-background.h |  2 +-
 gnome-settings-daemon/gnome-settings-dbus.c       |  6 +++---
 gnome-settings-daemon/gnome-settings-font.c       |  1 +
 gnome-settings-daemon/gnome-settings-font.h       |  2 +-
 gnome-settings-daemon/gnome-settings-keyboard.c   |  8 ++++----
 gnome-settings-daemon/gnome-settings-mouse.c      |  1 +
 gnome-settings-daemon/gnome-settings-mouse.h      |  2 +-
 gnome-settings-daemon/gnome-settings-xmodmap.c    |  2 +-
 10 files changed, 32 insertions(+), 11 deletions(-)

commit 26801cccd6a54a699926e0841d59d6293f0725a2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:20:43 2007 +0000

    Sparse warning fix.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-network-preferences.c: (create_listmodel):
        Sparse warning fix.
    
    svn path=/trunk/; revision=7199

 capplets/network/ChangeLog                   | 5 +++++
 capplets/network/gnome-network-preferences.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3daf545d0c7792b4e543bbf12b160c140f1b35fc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:20:09 2007 +0000

    Fix compiler warnings. Correct order of args to a gnome_vfs_xfer function.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-details.c: (update_color_scheme_tab), (remove_theme),
        (gnome_theme_details_init):
        * gnome-theme-installer.c: (extract_files_error_dialog):
        * gnome-theme-manager.c: (get_lockdown_status):
        Fix compiler warnings. Correct order of args to a gnome_vfs_xfer
        function.
    
    svn path=/trunk/; revision=7198

 capplets/theme-switcher/ChangeLog               |  9 +++++++++
 capplets/theme-switcher/gnome-theme-details.c   | 12 ++++++------
 capplets/theme-switcher/gnome-theme-installer.c |  2 +-
 capplets/theme-switcher/gnome-theme-manager.c   |  4 ++--
 4 files changed, 18 insertions(+), 9 deletions(-)

commit d033af5089c6c2c90fd70917530d2673efd3c404
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:18:55 2007 +0000

    ANSIfication of function declarations.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * sound-properties-capplet.c: (setup_hal_devices), (setup_devices):
        ANSIfication of function declarations.
    
    svn path=/trunk/; revision=7197

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit ca6938747163666d4902b7ff456ac7f8d7bbe644
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:18:04 2007 +0000

    Mark a struct static.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * main.c: Mark a struct static.
    
    svn path=/trunk/; revision=7196

 capplets/display/ChangeLog | 4 ++++
 capplets/display/main.c    | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 43f439ccd882ae99248a1ce348660dc783045f4a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:17:37 2007 +0000

    Mark some stuff as static.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * theme-thumbnail.c: Mark some stuff as static.
    
    svn path=/trunk/; revision=7195

 capplets/common/ChangeLog         | 4 ++++
 capplets/common/theme-thumbnail.c | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 5f7a5f7fa2e55ca16962c216da9d8fc7715aa168
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 29 09:17:07 2007 +0000

    ANSIfication of function declaration.
    
    2007-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-wp-capplet.c: (wallpaper_properties_init):
        ANSIfication of function declaration.
    
    svn path=/trunk/; revision=7194

 capplets/background/ChangeLog          | 5 +++++
 capplets/background/gnome-wp-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 59a4c03b806d260bb5442a8b49ca4678ace4bec3
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Sun Jan 28 17:32:06 2007 +0000

    Respect the --disable-schemas-install configure flag. Bug #401004.
    
    2007-01-28  Christian Persch  <chpe@svn.gnome.org>
    
        * shell/Makefile.am: Respect the --disable-schemas-install configure
        flag. Bug #401004.
    
    svn path=/trunk/; revision=7192

 ChangeLog         |  5 +++++
 shell/Makefile.am | 10 ++++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 494610f833144250d301d963e92c13ab983052af
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sun Jan 28 11:17:19 2007 +0000

    Updated Japanese translation.
    
    2007-01-28  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
            * ja.po: Updated Japanese translation.
    
    svn path=/trunk/; revision=7191

 po/ChangeLog |    4 +
 po/ja.po     | 1330 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 740 insertions(+), 594 deletions(-)

commit e6e547c8e2109887289fad4427440257dda8d4f2
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Sun Jan 28 04:09:13 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7190

 po/ChangeLog |   4 ++
 po/th.po     | 131 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 104 insertions(+), 31 deletions(-)

commit 08aff1ae09ebfdfa698cc3a89b066fcea85abb08
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Jan 27 20:16:41 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=7189

 po/ChangeLog   |   5 +
 po/POTFILES.in |   1 +
 po/sv.po       | 665 ++++++++++++++++++++++++++++++++++++++++++++-------------
 3 files changed, 528 insertions(+), 143 deletions(-)

commit bc2b34874839168fea1ca7b253d652aad1c8f66f
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Sat Jan 27 12:18:11 2007 +0000

    Updated Macedonian Translation by Arangel Angov, <arangel@linux.net.mk>
    
    svn path=/trunk/; revision=7188

 po/mk.po | 511 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 317 insertions(+), 194 deletions(-)

commit 0519bad07f4c1f96018bbfbcaaa703a8584b6623
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sat Jan 27 06:23:05 2007 +0000

    updating Punjabi translation
    
    svn path=/trunk/; revision=7187

 po/pa.po | 525 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 267 insertions(+), 258 deletions(-)

commit 89ba6b4b3d94f3856e397ab6ff8324376fd104d9
Author: Scott Reeves <sreeves@src.gnome.org>
Date:   Fri Jan 26 21:25:46 2007 +0000

    respect the exit_on_close flag
    
    svn path=/trunk/; revision=7186

 shell/ChangeLog        | 4 ++++
 shell/control-center.c | 9 +++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 908ab38dfa19b2b8b47853c197279489e4f3ea21
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Jan 26 17:32:20 2007 +0000

    Patch by: Alberto Ruiz <aruiz@synaptia.net>
    
    2007-01-26  Thomas Wood  <thos@gnome.org>
    
        Patch by: Alberto Ruiz <aruiz@synaptia.net>
    
        * gnome-theme-installer.c: (transfer_done_cb),
        (gnome_theme_install_from_uri): Fixes on the suffix checks.
    
    svn path=/trunk/; revision=7185

 capplets/theme-switcher/ChangeLog               |  7 +++++++
 capplets/theme-switcher/gnome-theme-installer.c | 12 +++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)

commit 2f7a57426abec97b2032134a4b7923d2fbc2ad62
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jan 26 13:30:01 2007 +0000

    added 'Change theme' and 'Set preferred applications' to common tasks.
    
    2007-01-26  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * control-center.schemas.in: added 'Change theme' and 'Set preferred
        applications' to common tasks.
    
    svn path=/trunk/; revision=7184

 shell/ChangeLog                 | 5 +++++
 shell/control-center.schemas.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a6e6d88f8cbd6af21ebe7f0b5dd9d2c8c4dc2a95
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jan 26 13:12:54 2007 +0000

    added schemas for the new GConf prefix, and add common tasks.
    
    2007-01-26  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * control-center.schemas.in: added schemas for the new GConf prefix,
        and add common tasks.
    
        * Makefile.am: install schemas.
    
    svn path=/trunk/; revision=7183

 shell/ChangeLog                 |  7 ++++
 shell/Makefile.am               | 15 +++++++--
 shell/control-center.schemas.in | 71 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 91 insertions(+), 2 deletions(-)

commit c9cd656a2f1f216781ca4609c132f4b6e423729b
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jan 26 12:58:53 2007 +0000

    changed GConf prefix to /apps/... (handle_static_action_clicked): prevent
    
    2007-01-26  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * control-center.c: changed GConf prefix to /apps/...
        (handle_static_action_clicked): prevent capplets from being launched
        twice.
    
    svn path=/trunk/; revision=7182

 shell/ChangeLog        | 6 ++++++
 shell/control-center.c | 6 ++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 159e23217e37bdccd252c11230ae8cea768b4e89
Author: Alexander Shopov <ash@contact.bg>
Date:   Thu Jan 25 22:38:30 2007 +0000

    Updated Bulgarian translation by Yavor Doganov <yavor@doganov.org>
    
    2007-01-26  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Yavor Doganov <yavor@doganov.org>
    
    svn path=/trunk/; revision=7180

 po/ChangeLog |   5 +
 po/bg.po     | 610 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 318 insertions(+), 297 deletions(-)

commit 820443efbc22509da889987df699a0fd4f310192
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Thu Jan 25 22:14:53 2007 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=7179

 po/ChangeLog |   4 +
 po/sv.po     | 540 +++++++++++++----------------------------------------------
 2 files changed, 123 insertions(+), 421 deletions(-)

commit 6409df1bc17fb442a3f431fc8b8fc2331f0673ab
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Thu Jan 25 11:14:59 2007 +0000

    updating Punjabi translation
    
    svn path=/trunk/; revision=7178

 help/pa/pa.po | 112 +++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 72 insertions(+), 40 deletions(-)

commit d5235341c564bd2ff95b9b87ac7d2ba9ce6ee767
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Thu Jan 25 11:11:29 2007 +0000

    updating for Punjabi
    
    svn path=/trunk/; revision=7177

 help/ChangeLog   |   5 +++
 help/Makefile.am |   2 +-
 help/pa/pa.po    | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 108 insertions(+), 1 deletion(-)

commit a37b032ead2c3ae38865a4b25001f900349122f4
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jan 25 10:42:36 2007 +0000

    removed old shell.
    
    2007-01-25  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * control-center/*: removed old shell.
    
    svn path=/trunk/; revision=7176

 ChangeLog                                  |    4 +
 control-center/ChangeLog                   |  921 ---------------
 control-center/Makefile.am                 |   41 -
 control-center/control-center-categories.c |  355 ------
 control-center/control-center-categories.h |   75 --
 control-center/control-center.c            |  140 ---
 control-center/cinnamon-control-center.png    |  Bin 3464 -> 0 bytes
 control-center/gnomecc-canvas.c            | 1717 ----------------------------
 control-center/gnomecc-canvas.h            |   62 -
 control-center/gnomecc-event-box.c         |   99 --
 control-center/gnomecc-event-box.h         |   75 --
 control-center/gnomecc-rounded-rect.c      |  103 --
 control-center/gnomecc-rounded-rect.h      |   39 -
 control-center/gnomecc.desktop.in.in       |   16 -
 control-center/text-selection-frame.png    |  Bin 251 -> 0 bytes
 15 files changed, 4 insertions(+), 3643 deletions(-)

commit c8fc56f3284380856ad4e31855925a3c5b2afce7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 24 09:55:46 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-01-24  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7175

 po/ChangeLog |   4 ++
 po/nb.po     | 226 +++++++++++++++++++++++++----------------------------------
 2 files changed, 101 insertions(+), 129 deletions(-)

commit 124ef339ea40842c60a6844a66aaeffd39af877c
Author: David Lodge <dlodge@src.gnome.org>
Date:   Tue Jan 23 19:31:17 2007 +0000

    Updated (British) English translation
    
    svn path=/trunk/; revision=7174

 po/ChangeLog |   4 +
 po/en_GB.po  | 380 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 192 insertions(+), 192 deletions(-)

commit 82f433815247e4d5e2b5282dd9ceb63a1dfdad36
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Tue Jan 23 16:55:42 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7173

 po/ChangeLog |   4 ++
 po/th.po     | 185 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 92 insertions(+), 97 deletions(-)

commit a93ef521a78c97b167e634251effc06938ff9a76
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jan 23 13:59:59 2007 +0000

    Fix a compiler warning
    
    2007-01-23  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-installer.c: (transfer_done_cb): Fix a compiler warning
    
    svn path=/trunk/; revision=7172

 capplets/theme-switcher/ChangeLog               | 4 ++++
 capplets/theme-switcher/gnome-theme-installer.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0c925290a39a3d18d0fcafab485935e132a95dd5
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Jan 23 12:12:55 2007 +0000

    Updated Swedish translation.
    
        * sv.po: Updated Swedish translation.
    
    
    svn path=/trunk/; revision=7171

 po/ChangeLog |   4 +
 po/sv.po     | 763 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 529 insertions(+), 238 deletions(-)

commit ca06bcdaf083d05f61b3615148b01af153f778b9
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Tue Jan 23 12:01:13 2007 +0000

    Updated Czech translation.
    
    2007-01-23  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7169

 po/ChangeLog |  4 ++++
 po/cs.po     | 34 +++++++++++++++-------------------
 2 files changed, 19 insertions(+), 19 deletions(-)

commit f005d21bb3a0c974c926ca9e6c1e3c80d7cd191b
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Mon Jan 22 22:08:40 2007 +0000

    Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    2007-01-23  Priit Laes  <plaes@svn.gnome.org>
        * et.po: Updated Estonian translation by Ivar Smolin <okul@linux.ee>.
    
    svn path=/trunk/; revision=7168

 po/ChangeLog |  4 ++++
 po/et.po     | 33 +++++----------------------------
 2 files changed, 9 insertions(+), 28 deletions(-)

commit fc32bc6b785f745be700cd30306cb5a730932e29
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 22 18:09:42 2007 +0000

    prepare for 2.17.90.
    
    2007-01-22  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: prepare for 2.17.90.
    
    svn path=/trunk/; revision=7166

 ChangeLog    |  5 ++++
 NEWS         | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 80 insertions(+), 1 deletion(-)

commit ee2a5ba7857e554bd3e9a5d58a9b47fcefcb9967
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Jan 22 11:14:59 2007 +0000

    Updated Czech translation.
    
    2007-01-22  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=7165

 po/ChangeLog |   4 +
 po/cs.po     | 372 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 196 insertions(+), 180 deletions(-)

commit 86a899ac9b4de20ad1fc8341e2e2938ca5fae6b3
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 22 10:02:52 2007 +0000

    Fixes #376079
    
    2007-01-22  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Fixes #376079
    
        Patch by Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * gnome-about-me-password.c (passdlg_spawn_passwd): make translatable
        strings more generic.
    
    svn path=/trunk/; revision=7164

 capplets/about-me/ChangeLog                 | 9 +++++++++
 capplets/about-me/gnome-about-me-password.c | 5 +++--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit c18b5f9d1902675166e50ec91d8f96241f1711fd
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jan 21 18:29:32 2007 +0000

    Survive with not installed gconf key, #398631
    
    svn path=/trunk/; revision=7163

 capplets/keyboard/ChangeLog                         |  6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 10 ++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit b6931e22b70f23e09bed3255ef91c62a5172a339
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 21 18:06:40 2007 +0000

    Corrected category entry
    
    2007-01-21  Thomas Wood  <thos@gnome.org>
    
        * keybinding.desktop.in.in: Corrected category entry
    
    svn path=/trunk/; revision=7162

 capplets/keybindings/ChangeLog                | 4 ++++
 capplets/keybindings/keybinding.desktop.in.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f8d9c201f586a70481080b87ef6e5d4e3b38981c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 21 12:32:29 2007 +0000

    Add myself, remove Chris Lahey
    
    2007-01-21  Thomas Wood  <thos@gnome.org>
    
        * MAINTAINERS: Add myself, remove Chris Lahey
    
    svn path=/trunk/; revision=7161

 ChangeLog   | 4 ++++
 MAINTAINERS | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 046596fe74a08552b42e5e60055e2b65569b211b
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Jan 20 21:20:13 2007 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=7160

 po/ChangeLog |   4 +
 po/fi.po     | 766 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 519 insertions(+), 251 deletions(-)

commit 1eedb4d54302d9c040b8f631900d73eb7e47534a
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Sat Jan 20 10:09:25 2007 +0000

    sv/sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7159

 help/ChangeLog |  4 ++++
 help/sv/sv.po  | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 2748e5206cf10f48a82bd09c4545e6f47deda7db
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Jan 19 17:54:55 2007 +0000

    Add a Revert button to the color schemes tab
    
    2007-01-19  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (update_color_scheme_tab),
        (gnome_theme_details_update_from_gconf):
        * gnome-theme-manager.c: (gtk_theme_key_changed):
        * theme-properties.glade:
    
        Add a Revert button to the color schemes tab
    
    svn path=/trunk/; revision=7156

 capplets/theme-switcher/ChangeLog              |  9 +++
 capplets/theme-switcher/gnome-theme-details.c  | 84 ++++++++------------------
 capplets/theme-switcher/gnome-theme-manager.c  |  4 +-
 capplets/theme-switcher/theme-properties.glade | 44 ++++++++------
 4 files changed, 60 insertions(+), 81 deletions(-)

commit 35dff218e82472a904d53f8e5a3be196195e7c76
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Fri Jan 19 13:19:32 2007 +0000

    program name is cinnamon-control-center.
    
    2007-01-19  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * control-center.c (main): program name is cinnamon-control-center.
    
    svn path=/trunk/; revision=7155

 shell/ChangeLog        | 4 ++++
 shell/control-center.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2009646503ed2d24248498cee9a42c9bc6bbe487
Author: Priit Laes <plaes@svn.gnome.org>
Date:   Fri Jan 19 10:09:03 2007 +0000

    Estonian translation update by Ivar Smolin.
    
    2007-01-19  Priit Laes  <plaes@svn.gnome.org>
        * et.po: Estonian translation update by Ivar Smolin.
    
    svn path=/trunk/; revision=7154

 po/ChangeLog |   4 +
 po/et.po     | 723 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 525 insertions(+), 202 deletions(-)

commit ad5bd03133bd05e0e5f4c81aa636f1b5ae59c618
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Fri Jan 19 10:07:19 2007 +0000

    Fixes #397905
    
    2007-01-19  Jens Granseuer <jensgr@gmx.net>
    
        Fixes #397905
    
        * configure.in: check for xf86misc library in addition to header files.
    
    svn path=/trunk/; revision=7153

 ChangeLog    | 6 ++++++
 configure.in | 5 +++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 13c68a2e1e2c366231702fadf7bff5a440a5e091
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Jan 19 01:33:26 2007 +0000

    - Remove seperate color scheme saving UI - Add support for
    
    2007-01-19  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (update_color_scheme_tab), (color_select),
        (toggle_color_scheme_key):
        * gnome-theme-manager.c: (free_all), (load_meta_themes),
        (meta_theme_setup_info), (meta_theme_selection_changed),
        (update_themes_from_disk), (add_custom_row_to_meta_theme),
        (themes_equal), (update_settings_from_gconf_idle),
        (update_settings_from_gconf), (gtk_theme_key_changed),
        (setup_dialog):
        * gnome-theme-save.c: (write_theme_to_disk):
        * theme-properties.glade:
    
        - Remove seperate color scheme saving UI
        - Add support for gtk-color-scheme key in metatheme info
    
    2007-01-19  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-apply.c: (gnome_meta_theme_set):
        * gnome-theme-info.c: (gnome_theme_read_meta_theme),
        (gnome_theme_meta_info_new), (gnome_theme_meta_info_free),
        (gnome_theme_meta_info_print), (gnome_theme_meta_info_compare):
        * gnome-theme-info.h:
    
        Add support for saving and applying the gtk-color-scheme key
    
    svn path=/trunk/; revision=7152

 capplets/common/ChangeLog                      |  10 ++
 capplets/common/gnome-theme-apply.c            |   9 ++
 capplets/common/gnome-theme-info.c             |  16 +++
 capplets/common/gnome-theme-info.h             |   1 +
 capplets/theme-switcher/ChangeLog              |  16 +++
 capplets/theme-switcher/gnome-theme-details.c  | 100 ++----------------
 capplets/theme-switcher/gnome-theme-manager.c  |  46 +++++++-
 capplets/theme-switcher/gnome-theme-save.c     |  13 +++
 capplets/theme-switcher/theme-properties.glade | 141 +++++--------------------
 9 files changed, 140 insertions(+), 212 deletions(-)

commit d142fd51db6039d47e48be8908f1e13a01042261
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jan 18 12:51:38 2007 +0000

    Fixes #394303
    
    2007-01-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Fixes #394303
    
        * control-center.c (main): added new argument to appshelldata_new to
        force the app to quit when the window is closed.
    
    svn path=/trunk/; revision=7151

 shell/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 492d578173bd5d4ec21472d7767539fe4ac2efdf
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Thu Jan 18 12:50:11 2007 +0000

    Fixes #396228
    
    2007-01-18  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Fixes #396228
    
        * control-center.c (main): added new argument to appshelldata_new to
        force the app to quit when the window is closed.
    
    svn path=/trunk/; revision=7150

 shell/ChangeLog        | 7 +++++++
 shell/control-center.c | 7 ++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit e6d9f7b888b8977d5c265735a5e96cae19040f29
Author: Denis Washington <dwashington@gmx.net>
Date:   Wed Jan 17 18:45:50 2007 +0000

    Replace the non-standard-compilant categories PersonalSettings,
    
    2007-01-17  Denis Washington  <dwashington@gmx.net>
    
        * capplets/accessibility/keyboard/accessibility-keyboard.desktop.in.in:
        * capplets/accessibility/at-properties/at-properties.desktop.in.in:
        * capplets/network/gnome-network-preferences.desktop.in.in:
        * capplets/default-applications/default-applications.desktop.in.in:
        * capplets/about-me/gnome-about-me.desktop.in.in:
    
        Replace the non-standard-compilant categories PersonalSettings,
        NetworkSettings and SystemSettings with X-GNOME-*.
    
    svn path=/trunk/; revision=7149

 ChangeLog                                                     | 11 +++++++++++
 capplets/about-me/gnome-about-me.desktop.in.in                |  2 +-
 .../accessibility/at-properties/at-properties.desktop.in.in   |  2 +-
 .../keyboard/accessibility-keyboard.desktop.in.in             |  2 +-
 .../default-applications/default-applications.desktop.in.in   |  2 +-
 capplets/network/gnome-network-preferences.desktop.in.in      |  2 +-
 6 files changed, 16 insertions(+), 5 deletions(-)

commit b23a6e7a5a49a4df8b9f178a8b206d290e099bf2
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Jan 17 17:00:50 2007 +0000

    Remove GNOME part of the Name property, as per discussion in bug 395129.
    
    2007-01-17  Thomas Wood  <thos@gnome.org>
    
        * gnomecc.desktop.in.in: Remove GNOME part of the Name property, as per
        discussion in bug 395129.
    
    svn path=/trunk/; revision=7148

 shell/ChangeLog             | 5 +++++
 shell/gnomecc.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 007e83e1485e829ccb612d8decd12a782e9c02e4
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Jan 17 16:56:55 2007 +0000

    Move Preffered Applications capplet from SystemSettings to
    
    2007-01-17  Thomas Wood  <thos@gnome.org>
    
        * default-applications.desktop.in.in: Move Preffered Applications
        capplet from SystemSettings to PersonalSettings
    
    svn path=/trunk/; revision=7147

 capplets/default-applications/ChangeLog                          | 5 +++++
 capplets/default-applications/default-applications.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0baa1f9e7438e5dd4a8f173d5fbd7d68108bfba9
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Jan 17 16:42:12 2007 +0000

    sv.po: Updated Swedish translation.
    
    svn path=/trunk/; revision=7146

 po/ChangeLog |   4 ++
 po/sv.po     | 151 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 79 insertions(+), 76 deletions(-)

commit c1262a0e4f414e0ce2ff8ccf25b6691146563601
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Jan 17 10:50:17 2007 +0000

    Fixes #395539
    
    2007-01-17  Jens Granseuer <jensgr@gmx.net>
    
        Fixes #395539
    
        * gnome-mouse-properties.c (read_cursor_font, populate_tree_model,
        setup_dialog, dialog_response_cb, main): fixed memory leaks.
    
    svn path=/trunk/; revision=7145

 capplets/mouse/ChangeLog                |   7 ++
 capplets/mouse/gnome-mouse-properties.c | 116 ++++++++++++++++----------------
 2 files changed, 66 insertions(+), 57 deletions(-)

commit 58011dc9136f8130ba7f0e64bdbf2a36acc87b2f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 17 07:56:05 2007 +0000

    Call gnome_desktop_item_new_from_file with the right arguments. Closes bug
    
    2007-01-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-wm-manager.c: (wm_load): Call gnome_desktop_item_new_from_file
        with the right arguments. Closes bug #382039.
    
    svn path=/trunk/; revision=7144

 libwindow-settings/ChangeLog          | 5 +++++
 libwindow-settings/gnome-wm-manager.c | 4 +---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit b136dd74d2f1aaf85cca465fc123c6fcf5fbd97a
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Wed Jan 17 06:51:17 2007 +0000

    Updated Thai translation.
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7143

 po/ChangeLog |   4 ++
 po/th.po     | 183 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 95 insertions(+), 92 deletions(-)

commit e070f811a3951ecefae95d63d408c121b3518483
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Jan 16 12:41:22 2007 +0000

    Translation updated.
    
    2007-01-16  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.
    
    svn path=/trunk/; revision=7142

 po/ChangeLog |    4 +
 po/hu.po     | 1002 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 603 insertions(+), 403 deletions(-)

commit 570038b046b7cc1a9d297912fac72fe9685a5f3e
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Sun Jan 14 23:47:38 2007 +0000

    Updated Catalan translation.
    
    svn path=/trunk/; revision=7141

 po/ChangeLog |    4 +
 po/ca.po     | 1194 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 758 insertions(+), 440 deletions(-)

commit 98ef85c0b2ec34846bc773d48e1913a589bc9bed
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 14 19:59:14 2007 +0000

    Remove g_return_if_fail_warning as this doesn't need to be a critical
    
    2007-01-14  Thomas Wood  <thos@gnome.org>
    
        * theme-thumbnail.c: (generate_theme_thumbnail): Remove
        g_return_if_fail_warning as this doesn't need to be a critical
        warning. Fixes bug 353620.
    
    svn path=/trunk/; revision=7140

 capplets/common/ChangeLog         | 6 ++++++
 capplets/common/theme-thumbnail.c | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit a4af2f5fca38926d72fb7799512e90687ff5d401
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Sun Jan 14 19:55:33 2007 +0000

    Fix label alignments bug (caused by glade-3 bug 396433).
    
    2007-01-14  Christian Persch  <chpe@svn.gnome.org>
    
        * sound-properties.glade: Fix label alignments bug (caused by glade-3
        bug 396433).
    
    svn path=/trunk/; revision=7139

 capplets/sound/ChangeLog              | 5 +++++
 capplets/sound/sound-properties.glade | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 88f98988bb27ce6b06e0b3618d8925d6f31a9141
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Sun Jan 14 19:54:51 2007 +0000

    Show the sound properties view after adding it to the dialogue.
    
    2007-01-14  Christian Persch  <chpe@svn.gnome.org>
    
        * sound-properties-capplet.c: (create_dialog): Show the sound
        properties view after adding it to the dialogue.
    
    svn path=/trunk/; revision=7138

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 9 +++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit ff60ab1575e2059a726e732458f25bfa7549215c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 14 19:34:27 2007 +0000

    Patch by: Jens Granseuer <jensgr@gmx.net>
    
    2007-01-14  Thomas Wood  <thos@gnome.org>
    
        Patch by: Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-settings-accessibility-keyboard.c: Remove has_filter variable
        that was never initialised. Fixes bug 382502.
    
    svn path=/trunk/; revision=7137

 gnome-settings-daemon/ChangeLog                               | 7 +++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 5 -----
 2 files changed, 7 insertions(+), 5 deletions(-)

commit a77fc4f15c61a9c00cb59a674222139a00952b51
Author: Christian Persch <chpe@src.gnome.org>
Date:   Sun Jan 14 19:25:24 2007 +0000

    Fix ChangeLog
    
    svn path=/trunk/; revision=7136

 ChangeLog                | 9 ---------
 capplets/sound/ChangeLog | 9 +++++++++
 2 files changed, 9 insertions(+), 9 deletions(-)

commit 35242765eec3ffe7aa4a3c3b831cf4acb246ebf2
Author: Žygimantas Beručka <zygis@src.gnome.org>
Date:   Sat Jan 13 13:49:42 2007 +0000

    Updated Lithuanian translation.
    
    svn path=/trunk/; revision=7135

 po/ChangeLog |    4 +
 po/lt.po     | 1159 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 752 insertions(+), 411 deletions(-)

commit 01f3bb4ffc3734d5e050f623f02e24e69aef7f62
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sat Jan 13 06:02:29 2007 +0000

    Updated Arabic Translation.
    
    svn path=/trunk/; revision=7134

 po/ChangeLog |    4 +
 po/ar.po     | 1863 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1115 insertions(+), 752 deletions(-)

commit b13efb650d2a61dc2ed637a6807956cb3bef7f0f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Jan 12 16:25:35 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-01-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7133

 po/ChangeLog |   4 +
 po/nb.po     | 444 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 223 insertions(+), 225 deletions(-)

commit 9414debff009b7bd1c069562ff555c1fdc53e4fb
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Jan 12 09:42:22 2007 +0000

    Patch by: Jens Granseuer <jensgr@gmx.net>
    
    2007-01-12  Thomas Wood  <thos@gnome.org>
    
        Patch by:  Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-theme-details.c: (color_scheme_combobox_changed): Fix build with
        gcc 2 (c89 fixes). Fixes bug 394707.
    
    svn path=/trunk/; revision=7132

 capplets/theme-switcher/ChangeLog             | 7 +++++++
 capplets/theme-switcher/gnome-theme-details.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 8a79c51358e4488619712344a2afa4fa995125d0
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Thu Jan 11 13:05:13 2007 +0000

    Fix spacings and just build the whole dialogue from glade, not just the
    
    2007-01-11  Christian Persch  <chpe@svn.gnome.org>
    
        * capplets/sound/Makefile.am:
        * capplets/sound/sound-properties-capplet.c: (create_dialog),
        (dialog_response_cb), (main):
        * capplets/sound/sound-properties.glade:
        Fix spacings and just build the whole dialogue from glade, not just
        the main part. Bug #394068.
    
    svn path=/trunk/; revision=7131

 ChangeLog                                 |    9 +
 capplets/sound/Makefile.am                |    2 +-
 capplets/sound/sound-properties-capplet.c |   67 +-
 capplets/sound/sound-properties.glade     | 1957 +++++++++++++++--------------
 4 files changed, 1061 insertions(+), 974 deletions(-)

commit 33ab758b5e75ea6b16381e5dcc3a782e3ee97f58
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Wed Jan 10 20:14:31 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7130

 po/ChangeLog |  4 ++++
 po/sv.po     | 56 +++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 41 insertions(+), 19 deletions(-)

commit 00b23ef1afa417fda5d7656e178e4d49bd5e0a33
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Wed Jan 10 17:34:03 2007 +0000

    Fixes #394824
    
    2007-01-10  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Fixes #394824
    
        Patch by Jens Granseuer <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c (key_entry_controlling_key_changed,
        setup_dialog, main): fixed leaks.
    
    svn path=/trunk/; revision=7129

 capplets/keybindings/ChangeLog                     |  9 +++++++++
 capplets/keybindings/gnome-keybinding-properties.c | 13 ++++++++++---
 2 files changed, 19 insertions(+), 3 deletions(-)

commit a196720a1571700ae01b6840462b47f9f07dd773
Author: Jan Arne Petersen <jpetersen@jpetersen.org>
Date:   Wed Jan 10 17:33:07 2007 +0000

    Fixes #395083
    
    2007-01-10  Jan Arne Petersen  <jpetersen@jpetersen.org>
    
        Fixes #395083
    
        * actions/acme-volume-gstreamer.c: (acme_volume_gstreamer_open): added
        missing NULL-check.
    
    
    svn path=/trunk/; revision=7128

 gnome-settings-daemon/ChangeLog                       | 7 +++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 7 +++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit 533b2fb9e5111f794eebf6bc8029079ce6ddf298
Author: Paolo Borelli <pborelli@src.gnome.org>
Date:   Wed Jan 10 13:30:40 2007 +0000

    ops, thinko in last patch
    
    
    svn path=/trunk/; revision=7127

 shell/control-center.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 79a8a12b73427a513e80f8f8f98675967b2d6703
Author: Paolo Borelli <pborelli@katamail.com>
Date:   Wed Jan 10 12:52:49 2007 +0000

    do not leak a GList.
    
    2007-01-10  Paolo Borelli  <pborelli@katamail.com>
    
        * control-center.c: do not leak a GList.
    
    
    svn path=/trunk/; revision=7126

 control-center/ChangeLog | 4 ++++
 shell/control-center.c   | 8 +++++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit b801bc6e92bd0d9a23d214057b12877cef3949eb
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Jan 10 08:23:24 2007 +0000

    Updated Thai translation.
    
    2007-01-10  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.
    
    
    svn path=/trunk/; revision=7125

 po/ChangeLog |   4 +
 po/th.po     | 715 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 430 insertions(+), 289 deletions(-)

commit 0bbfe98c035d25c52b802c56fc169dde9390a619
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Jan 9 19:13:39 2007 +0000

    set default window icon and application name install icons use
    
    2007-01-09  Vincent Untz <vuntz@gnome.org>
    
        * main.c: (main): set default window icon and application name
        * Makefile.am: install icons
        * drwright.c: (popup_about_cb): use gtk_about_dialog_show()
        * typing-monitor.png:
        * typing-monitor.svn: new
        Fix bug #348641, icon by Andreas Nilsson <nisses.mail@home.se>, patch
        by Luca Cavalli <luca.cavalli@gmail.com>
    
    svn path=/trunk/; revision=7124

 typing-break/ChangeLog          |  10 ++
 typing-break/Makefile.am        |  19 ++-
 typing-break/drwright.c         |  43 ++---
 typing-break/main.c             |   3 +
 typing-break/typing-monitor.png | Bin 0 -> 3292 bytes
 typing-break/typing-monitor.svg | 336 ++++++++++++++++++++++++++++++++++++++++
 6 files changed, 376 insertions(+), 35 deletions(-)

commit dbf78025be14ba829f5688569490e6faf5086183
Author: Jan Arne Petersen <jpetersen@jpetersen.org>
Date:   Tue Jan 9 18:52:04 2007 +0000

    Fixes #394736
    
    2007-01-09  Jan Arne Petersen  <jpetersen@jpetersen.org>
    
        Fixes #394736
    
        * sound-properties-capplet.c: (update_mixer_tracks_selection),
        (update_mixer_device_combobox): added NULL-check.
    
    
    
    svn path=/trunk/; revision=7123

 capplets/sound/ChangeLog                  |  7 ++++
 capplets/sound/sound-properties-capplet.c | 55 +++++++++++++++++--------------
 po/ChangeLog                              |  4 +++
 po/POTFILES.in                            |  1 +
 4 files changed, 42 insertions(+), 25 deletions(-)

commit 392823b21e3eec6d17df09f53f29930bb475633e
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   Tue Jan 9 16:04:44 2007 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=7122

 po/ChangeLog |   4 +
 po/sv.po     | 474 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 316 insertions(+), 162 deletions(-)

commit 092628858c7c745ca75cb40dc2f4820cc9e70a17
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jan 9 15:55:13 2007 +0000

    Rename "Keyboard" to "Keyboard Accesibility". Fixes bug 330697 (Keyboard
    
    2007-01-09  Thomas Wood  <thos@gnome.org>
    
        * accessibility-keyboard.desktop.in.in: Rename "Keyboard" to "Keyboard
        Accesibility". Fixes bug 330697 (Keyboard Accessibility applet has the
        same menu item as the Keyboard applet).
    
    svn path=/trunk/; revision=7121

 capplets/accessibility/keyboard/ChangeLog                           | 6 ++++++
 .../accessibility/keyboard/accessibility-keyboard.desktop.in.in     | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit d3a57335112fcce3cb77ac4db65e70222154c84b
Author: Matic Žgur <maticz@src.gnome.org>
Date:   Tue Jan 9 07:53:43 2007 +0000

    Updated Slovenian translation.
    
    svn path=/trunk/; revision=7120

 po/ChangeLog |   4 ++
 po/sl.po     | 164 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 99 insertions(+), 69 deletions(-)

commit c477316dec2d9edde1478fd0d4adae74b7cc58a2
Author: David Lodge <dlodge@src.gnome.org>
Date:   Tue Jan 9 07:02:38 2007 +0000

    Updated English (British) translation
    
    svn path=/trunk/; revision=7119

 po/ChangeLog |   4 +
 po/en_GB.po  | 238 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 146 insertions(+), 96 deletions(-)

commit 4ffaae8fb005b8dbcbba6bb07db000c674867028
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Tue Jan 9 04:09:29 2007 +0000

    updating translation for Punjabi by alam
    
    svn path=/trunk/; revision=7118

 po/pa.po | 935 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 547 insertions(+), 388 deletions(-)

commit adfa668f984b67829cf30cbb9b4f06b6ec257d3c
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jan 9 00:19:21 2007 +0000

    Fix for distcheck
    
    2007-01-09  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am: Fix for distcheck
    
    svn path=/trunk/; revision=7116

 ChangeLog   | 4 ++++
 Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit bd7afef6247bbec128939fc43e06f5b154cdbfd5
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 8 23:21:23 2007 +0000

    added missing EXTRA_DIST files.
    
    2007-01-08  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * Makefile.am: added missing EXTRA_DIST files.
    
    svn path=/trunk/; revision=7115

 capplets/theme-switcher/ChangeLog   | 4 ++++
 capplets/theme-switcher/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 091651fa7fdf93782d256f2eb3c2e6ab9a162185
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 8 23:19:01 2007 +0000

    updated for 2.17.5.
    
    2007-01-08  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * NEWS:
        * configure.in: updated for 2.17.5.
    
    svn path=/trunk/; revision=7114

 ChangeLog    | 5 +++++
 NEWS         | 3 +++
 configure.in | 2 +-
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 90b67faf6506e7a5b192c3e07466f5dc268996bb
Author: Jan Arne Petersen <jpetersen@jpetersen.org>
Date:   Mon Jan 8 22:50:39 2007 +0000

    Fixes #173035
    
    2007-01-08  Jan Arne Petersen  <jpetersen@jpetersen.org>
    
        Fixes #173035
    
        * configure.in: updated sound capplet requirements.
    
        * gnome-settings-daemon/actions/Makefile.am:
        * gnome-settings-daemon/actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_finalize), (acme_volume_gstreamer_set_mute),
        (update_state), (acme_volume_gstreamer_get_mute),
        (acme_volume_gstreamer_get_volume),
        (acme_volume_gstreamer_set_volume),
        (acme_volume_gstreamer_close_real), (_acme_set_mixer),
        (acme_volume_gstreamer_open), (acme_volume_gstreamer_init): added
        support for multiple mixer tracks. Added support for gconf device and
        track selection.
    
        * capplets/sound/Makefile.am, mixer-support.c, mixer-support.h: Add new files.
        * capplets/sound/sound-properties-capplet.c: (mixer_device_combobox_changed),
        (add_track_label_to_list), (mixer_tracks_selection_changed),
        (update_mixer_tracks_selection), (default_mixer_tracks_notify),
        (update_mixer_device_combobox), (default_mixer_device_notify),
        (setup_default_mixer), (setup_dialog):
        * capplets/sound/sound-properties.glade: added support for selecting mixer device and
        tracks in the capplet.
    
    
    svn path=/trunk/; revision=7113

 ChangeLog                                          |   6 +
 capplets/sound/ChangeLog                           |  13 +
 capplets/sound/Makefile.am                         |   2 +-
 capplets/sound/mixer-support.c                     | 136 +++++++++
 capplets/sound/mixer-support.h                     |  47 +++
 capplets/sound/sound-properties-capplet.c          | 232 +++++++++++++++
 capplets/sound/sound-properties.glade              | 137 +++++++++
 configure.in                                       |   4 +-
 gnome-settings-daemon/ChangeLog                    |  15 +
 gnome-settings-daemon/actions/Makefile.am          |   3 -
 .../actions/acme-volume-gstreamer.c                | 331 +++++++++++----------
 11 files changed, 757 insertions(+), 169 deletions(-)

commit ab85ab8eeb578a445676cb660a6be6908655c0e2
Author: Denis Washington <dwashington@gmx.net>
Date:   Mon Jan 8 22:40:59 2007 +0000

    Fixes #393617
    
    2007-01-08  Denis Washington <dwashington@gmx.net>
    
        Fixes #393617
    
        * */*.desktop.in.in: use new control center shell categories for
        the capplets.
    
    svn path=/trunk/; revision=7112

 ChangeLog                                          |  7 ++
 NEWS                                               | 90 ++++++++++++++++++++++
 capplets/about-me/gnome-about-me.desktop.in.in     |  2 +-
 .../at-properties/at-properties.desktop.in.in      |  2 +-
 .../keyboard/accessibility-keyboard.desktop.in.in  |  2 +-
 .../default-applications.desktop.in.in             |  2 +-
 capplets/keybindings/keybinding.desktop.in.in      |  2 +-
 .../gnome-network-preferences.desktop.in.in        |  2 +-
 8 files changed, 103 insertions(+), 6 deletions(-)

commit e6ac3bd2d292425451944d8d0811e988ee6f31e6
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jan 8 22:31:06 2007 +0000

    Patch by: Alberto Ruiz <aruiz@synaptia.net>
    
    2007-01-08  Thomas Wood  <thos@gnome.org>
    
        Patch by: Alberto Ruiz <aruiz@synaptia.net>
    
        * gnome-theme-installer.c: (gnome_theme_install_from_uri): Accept .gtp
        as a file extension
    
    svn path=/trunk/; revision=7111

 capplets/theme-switcher/ChangeLog               | 7 +++++++
 capplets/theme-switcher/gnome-theme-installer.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 3207820bf8ebfc8997155ce70d105936c30cc152
Author: Jan Arne Petersen <jap@gnome.org>
Date:   Mon Jan 8 22:28:18 2007 +0000

    updated svn:ignore property.
    
    2007-01-08  Jan Arne Petersen <jap@gnome.org>
    
        * ./: updated svn:ignore property.
    
    
    svn path=/trunk/; revision=7110

 gnome-settings-daemon/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit ffd0842e4b4cf97debbfd5899c1b2097b4f87f51
Author: Jan Arne Petersen <jap@gnome.org>
Date:   Mon Jan 8 22:17:00 2007 +0000

    Updated CLEANFILES Removed from svn (built file). Updated svn:ignore
    
    2007-01-08  Jan Arne Petersen <jap@gnome.org>
    
        * Makefile.am: Updated CLEANFILES
        * gnome-theme-package.xml: Removed from svn (built file).
        * ./: Updated svn:ignore properties.
    
    
    svn path=/trunk/; revision=7109

 capplets/theme-switcher/ChangeLog               | 6 ++++++
 capplets/theme-switcher/Makefile.am             | 2 +-
 capplets/theme-switcher/gnome-theme-package.xml | 8 --------
 3 files changed, 7 insertions(+), 9 deletions(-)

commit 55153b7c8ccc4bcd291a534891b0b4d42386bb7d
Author: David Sedeño <david@alderia.com>
Date:   Mon Jan 8 22:16:49 2007 +0000

    Fix several compile warnings. Fixes #326022
    
    2007-01-08  David Sedeño <david@alderia.com>
    
        * gnome-wp-xml.c: Fix several compile warnings. Fixes #326022
    
    svn path=/trunk/; revision=7108

 capplets/background/ChangeLog      |  4 +++
 capplets/background/gnome-wp-xml.c | 72 +++++++++++++++++++-------------------
 2 files changed, 40 insertions(+), 36 deletions(-)

commit d56caecf8ea6a9f435d112bda1f206fd5db89c5c
Author: Jan Arne Petersen <jap@gnome.org>
Date:   Mon Jan 8 20:30:07 2007 +0000

    added new files from previous patch to svn.
    
    2007-01-08  Jan Arne Petersen <jap@gnome.org>
    
        * gnome-settings-dbus.h, gnome-settings-marshal.list: added new files
        from previous patch to svn.
    
    
    svn path=/trunk/; revision=7107

 gnome-settings-daemon/ChangeLog                   |  5 ++++
 gnome-settings-daemon/gnome-settings-dbus.h       | 34 +++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-marshal.list |  1 +
 3 files changed, 40 insertions(+)

commit 2c6c2daf8acb38fea272a7a97c9ae69f9e7ac310
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jan 8 20:07:38 2007 +0000

    Add Save/Delete dialogs for colour schemes.
    
    2007-01-08  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (color_select),
        (color_scheme_combobox_changed), (gnome_theme_details_init),
        (update_color_buttons_from_string),
        (gnome_theme_details_update_from_gconf):
        * theme-properties.glade:
    
        Add Save/Delete dialogs for colour schemes.
    
    svn path=/trunk/; revision=7106

 capplets/theme-switcher/ChangeLog              | 10 ++++
 capplets/theme-switcher/gnome-theme-details.c  | 80 +++++++++++++++++++++++++-
 capplets/theme-switcher/theme-properties.glade |  8 +--
 3 files changed, 91 insertions(+), 7 deletions(-)

commit 49d96fa08caab911d7dfd96b46db2e99bb7e25fb
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Mon Jan 8 19:48:13 2007 +0000

    Fixes #356076
    
    2007-01-08  Rodrigo Moya <rodrigo@gnome-db.org>
    
        Fixes #356076
    
        Patch by Brian Cameron <brian.cameron@sun.com>
    
        * gnome-about-me.c (about_me_update_photo): fixed compilation on Solaris.
    
    svn path=/trunk/; revision=7105

 capplets/about-me/ChangeLog        | 8 ++++++++
 capplets/about-me/gnome-about-me.c | 6 +++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 1062b38bba536195d64b0acf880af3f2b265e298
Author: Ray Strode <rstrode@redhat.com>
Date:   Mon Jan 8 18:26:31 2007 +0000

    Fixes #351991
    
    2007-01-08  Ray Strode <rstrode@redhat.com>
    
        Fixes #351991
    
        * gnome-wp-info.c (gnome_wp_info_new): don't try to pull from
        ~/.thumbnails directly without checking mtime.
    
        * gnome-wp-item.c (collect_save_options, gnome_wp_item_get_thumbnail):
        only    generate thumbnails when a lookup shows there isn't already
        one. Never load a background just to find out its size.
    
    svn path=/trunk/; revision=7104

 capplets/background/ChangeLog       | 11 ++++++++++
 capplets/background/gnome-wp-info.c | 26 -----------------------
 capplets/background/gnome-wp-item.c | 42 +++++++++++++++++++++++++------------
 3 files changed, 40 insertions(+), 39 deletions(-)

commit 9a2002775539094e6ce87ff95b059ddd1cd89970
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 8 18:14:43 2007 +0000

    moved gtk_scrolled_window_ call back to its correct place.
    
    2007-01-08  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-keybinding-properties.c (create_dialog, clear_old_model):
        moved gtk_scrolled_window_ call back to its correct place.
    
    svn path=/trunk/; revision=7103

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 3caa94c980ebb265db54364f9296b6006a13f1a8
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 8 17:27:20 2007 +0000

    Fixes #128158
    
    2007-01-08  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #128158
    
        Patch by Jens Granseuer <jensgr@gmx.net>
    
        * gnome-keybinding-properties.c (create_dialog): set scrolled window
        policy to _NEVER.
        (clear_old_model): euse the existing model instead of discarding and
        rebuilding it.
        (main): don't leak the GnomeProgram.
    
    svn path=/trunk/; revision=7102

 capplets/keybindings/ChangeLog                     | 12 +++
 capplets/keybindings/gnome-keybinding-properties.c | 97 ++++++++++++----------
 2 files changed, 66 insertions(+), 43 deletions(-)

commit a614c5d5b2d31d916b1a209cd2547b70dacaf46f
Author: Matic Žgur <maticz@src.gnome.org>
Date:   Mon Jan 8 17:17:00 2007 +0000

    Updated Slovenian translation.
    
    svn path=/trunk/; revision=7101

 po/ChangeLog |   4 +
 po/sl.po     | 599 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 426 insertions(+), 177 deletions(-)

commit be72b736f840626238db9fdd701a4c2b66ba388a
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jan 8 17:05:24 2007 +0000

    Patch by: Alberto Ruiz <aruiz@synaptia.net>
    
    2007-01-08  Thomas Wood  <thos@gnome.org>
    
        Patch by: Alberto Ruiz <aruiz@synaptia.net>
    
        * configure.in:
        * capplets/theme-switcher/gnome-theme-installer.desktop.in.in:
        * capplets/theme-switcher/gnome-theme-package.xml:
        * capplets/theme-switcher/gnome-theme-package.xml.in:
        * capplets/theme-switcher/Makefile.am:
        * po/POTFILES.in:
    
        Add support for opening .gtp (application/x-gnome-theme-package) files.
        Fixes bug 393697 (Theme packages should have their own mime type.)
    
    svn path=/trunk/; revision=7100

 ChangeLog                                          |  9 +++++++++
 capplets/theme-switcher/ChangeLog                  | 12 +++++++++++
 capplets/theme-switcher/Makefile.am                | 23 +++++++++++++++++++++-
 .../gnome-theme-installer.desktop.in.in            | 16 +++++++++++++++
 capplets/theme-switcher/gnome-theme-package.xml    |  8 ++++++++
 capplets/theme-switcher/gnome-theme-package.xml.in |  9 +++++++++
 configure.in                                       | 14 +++++++++++++
 po/ChangeLog                                       |  9 +++++++++
 po/POTFILES.in                                     |  2 ++
 9 files changed, 101 insertions(+), 1 deletion(-)

commit 9844ac1c3da2cce0fbacdda809b6cb4ccf0078c4
Author: Rodney Dawes <dobey@src.gnome.org>
Date:   Mon Jan 8 16:57:59 2007 +0000

    Fix attribution of a patch
    
    
    svn path=/trunk/; revision=7099

 capplets/background/ChangeLog | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit e8bf6d0b90a86ca046fb65161c8104d9568255fb
Author: Rodney Dawes <dobey@src.gnome.org>
Date:   Mon Jan 8 16:57:16 2007 +0000

    Fix changelog text
    
    svn path=/trunk/; revision=7098

 capplets/background/ChangeLog | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 989857cd9fa67aadb652da4233cf01f22ee34df9
Author: Jan Arne Petersen <jap@gnome.org>
Date:   Mon Jan 8 16:48:19 2007 +0000

    Fixes #133815
    
    2007-01-08  Jan Arne Petersen <jap@gnome.org>
    
        Fixes #133815
    
        * gnome-settings-multimedia-keys.c: added support for storing the DBus
        server.
        (unhookup_keysim, hookup_keysim): removed.
        (update_kbd_cb, init_kbd, acme_filter_events): iterate over all handled
        keys, not just until the PLAY_KEY.
        (do_multimedia_player_action): emit the "media_player_key_pressed" event.
        (do_action): call do_multimedia_player_action for all media player events.
        (gnome_settings_multimedia_keys_load): start a DBus server.
    
        * gnome-settings-dbus.c: added "media_player_key_pressed" signal.
        (find_by_application, find_by_time): new functions to search in the list
        of media players.
        (settings_daemon_grab_media_player_keys,
        settings_daemon_release_media_player_keys): new functions to grab/release
        the media players.
        (gnome_settings_server_get): new function to create GnomeSettingsServer
        objects.
        (gnome_settings_server_media_player_key_pressed,
        gnome_settings_server_constructor): new functions.
        (gnome_settings_server_class_init): add new signal and constructor.
    
        * gnome-settings-dbus.h: new file.
    
        * gsd-infos.xml: added GrabMediaPlayerKeys and ReleaseMediaPlayerKeys
        methods to the DBus interface.
    
        * gnome-settings-marshal.list, Makefile.am: generate marshalling
        functions.
    
    svn path=/trunk/; revision=7097

 gnome-settings-daemon/ChangeLog                    |  33 ++++
 gnome-settings-daemon/Makefile.am                  |  17 ++-
 gnome-settings-daemon/gnome-settings-dbus.c        | 148 +++++++++++++++++-
 .../gnome-settings-multimedia-keys.c               | 169 +++++----------------
 gnome-settings-daemon/gsd-infos.xml                |   8 +
 5 files changed, 234 insertions(+), 141 deletions(-)

commit 410f1ee2b83a2319c2567da5648f3260060a634f
Author: Rodney Dawes <dobey@novell.com>
Date:   Mon Jan 8 16:26:48 2007 +0000

    Set prefs->enabled not prefs->wallpaper_enabled Patch from Jean-Christophe
    
    2007-01-08  Rodney Dawes  <dobey@novell.com>
    
        * preferences.c (bg_preferences_merge_entry):
        Set prefs->enabled not prefs->wallpaper_enabled
        Patch from Jean-Christophe Jaskula
    
        Fixes #339404
    
    
    svn path=/trunk/; revision=7096

 libbackground/ChangeLog     | 8 ++++++++
 libbackground/preferences.c | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 90ff49c0f7ae065661c594ad592b06262383f8c1
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Jan 8 13:24:06 2007 +0000

    Updated Czech translation
    
    2007-01-08  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation
    
    
    svn path=/trunk/; revision=7095

 po/ChangeLog |   4 +
 po/cs.po     | 851 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 509 insertions(+), 346 deletions(-)

commit e5d3aa030a37b99f1e8e1ec8643d1197c7c76d95
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jan 8 11:23:37 2007 +0000

    Correct function decleration
    
    2007-01-08  Thomas Wood  <thos@gnome.org>
    
        * gtkrc-utils.h: Correct function decleration
        * gnome-theme-details.c: (update_color_scheme_tab), (color_select),
        (toggle_color_scheme_key):
        * theme-properties.glade:
    
        Add custom colour scheme saving UI
    
    svn path=/trunk/; revision=7094

 capplets/theme-switcher/ChangeLog              |  9 +++
 capplets/theme-switcher/gnome-theme-details.c  | 29 +++++++--
 capplets/theme-switcher/gtkrc-utils.h          |  2 +-
 capplets/theme-switcher/theme-properties.glade | 88 +++++++++++++++++++++++++-
 4 files changed, 122 insertions(+), 6 deletions(-)

commit 15acc88cbcb5bbceea8dabe50a7ba6fa89d65643
Author: David Lodge <dlodge@src.gnome.org>
Date:   Mon Jan 8 07:20:47 2007 +0000

    Updated English (British) translation
    
    svn path=/trunk/; revision=7093

 po/ChangeLog |   6 +-
 po/en_GB.po  | 500 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 280 insertions(+), 226 deletions(-)

commit f4ddd4914af17104df21498150e40ba862cca01a
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 22:08:02 2007 +0000

    Enable a message when the current theme does not support colour schemes
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am:
        * gnome-theme-details.c: (gtk_theme_update_remove_button),
        (remove_theme), (color_select), (toggle_color_scheme_key),
        (gnome_theme_details_init):
        * gnome-theme-manager.c: (main):
        * gtkrc-utils.c:
        * gtkrc-utils.h:
        * theme-properties.glade:
    
        Enable a message when the current theme does not support colour schemes
    
    svn path=/trunk/; revision=7092

 capplets/theme-switcher/ChangeLog              |  13 +++
 capplets/theme-switcher/Makefile.am            |   4 +-
 capplets/theme-switcher/gnome-theme-details.c  |  53 +++++++++-
 capplets/theme-switcher/gnome-theme-manager.c  |   3 +
 capplets/theme-switcher/gtkrc-utils.c          | 138 +++++++++++++++++++++++++
 capplets/theme-switcher/gtkrc-utils.h          |   5 +
 capplets/theme-switcher/theme-properties.glade |  57 +++++++++-
 7 files changed, 267 insertions(+), 6 deletions(-)

commit 869a405a9cf15fd2069c9ef51d21675dd67864eb
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 21:52:18 2007 +0000

    Use GtkAlignment for padding, rather than a GtkHbox and GtkFrame. Fixes
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        * sound-properties.glade: Use GtkAlignment for padding, rather than a
        GtkHbox and GtkFrame. Fixes bug 143215.
    
    svn path=/trunk/; revision=7091

 capplets/sound/ChangeLog              |  5 ++++
 capplets/sound/sound-properties.glade | 50 +++++++----------------------------
 2 files changed, 14 insertions(+), 41 deletions(-)

commit 7fd36e74fdbfc630c2c8202418f1cfca6a20a38d
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 18:53:31 2007 +0000

    Based on patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        Based on patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
        * main.c: (application_font_to_gconf): Fixes bug 335963 ("Font may be
        too large" dialog unclear).
    
    svn path=/trunk/; revision=7089

 capplets/font/ChangeLog |  7 +++++++
 capplets/font/main.c    | 18 +++++++++++++++---
 2 files changed, 22 insertions(+), 3 deletions(-)

commit 7ca731718aa683ec366ba64fb6a7ff3a29781893
Author: Rob Staudinger <robert.staudinger@gmail.com>
Date:   Sun Jan 7 18:22:00 2007 +0000

    Fixes #333557
    
    2007-01-07  Rob Staudinger <robert.staudinger@gmail.com>
    
        Fixes #333557
    
        * thumbnailer.c: added support for specifying string and font-size to
        use in the thumbnailer.
    
    svn path=/trunk/; revision=7088

 vfs-methods/fontilus/ChangeLog     |  7 ++++
 vfs-methods/fontilus/thumbnailer.c | 77 ++++++++++++++++++++++++++++++--------
 2 files changed, 69 insertions(+), 15 deletions(-)

commit 9edc3de280d13d3c6f479491b796b33bafe7131f
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 17:00:21 2007 +0000

    Patch by: Elijah Newren <newren@gmail.com>
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        Patch by:  Elijah Newren <newren@gmail.com>
    
        * gnome-window-properties.c: (try_spawn_config_tool): Avoid markup in
        translatable messages. Fixes bug 360449.
    
    svn path=/trunk/; revision=7087

 capplets/windows/ChangeLog                 | 7 +++++++
 capplets/windows/gnome-window-properties.c | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 8727dd84b29ede427d66e138164b9fdc2430b4b6
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 16:41:03 2007 +0000

    Free the program variable correctly
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        * themus-theme-applier.c: (main): Free the program variable correctly
    
    svn path=/trunk/; revision=7086

 vfs-methods/themus/ChangeLog              | 4 ++++
 vfs-methods/themus/themus-theme-applier.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9f505d83cc9e8113095d5e017fee75f23161b6fd
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 16:38:16 2007 +0000

    Patch by: Jens Granseuer <jensgr@gmx.net>
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        Patch by: Jens Granseuer  <jensgr@gmx.net>
    
        * gnome-wp-capplet.c: (gnome_wp_update_preview): Fixes bug 388616
        (Control center crashes when changing the image name)
    
    svn path=/trunk/; revision=7085

 capplets/background/ChangeLog          | 10 ++++++++++
 capplets/background/gnome-wp-capplet.c |  6 ++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit 239be66ce1c7f408315f899334fab028569f1ebd
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 16:31:17 2007 +0000

    Based on patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        Based on patch by: Gabor Kelemen <kelemeng@gnome.hu>
    
        * gnome-theme-installer.c: (transfer_done_cb): Fixes bug 360449 (Avoid
        markup in translatable messages)
    
    svn path=/trunk/; revision=7084

 capplets/theme-switcher/ChangeLog               | 7 +++++++
 capplets/theme-switcher/gnome-theme-installer.c | 9 ++++++++-
 capplets/theme-switcher/theme-properties.glade  | 1 -
 3 files changed, 15 insertions(+), 2 deletions(-)

commit 1e8514a2581ee8a0f30e728b51c2da2011910d6c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 15:47:51 2007 +0000

    Applied modified patch from bug 167063 (themus-theme-applier crashes while
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        * themus-theme-applier.c: (main): Applied modified patch from bug 167063
        (themus-theme-applier crashes while running from command promt)
    
    svn path=/trunk/; revision=7083

 vfs-methods/themus/ChangeLog              |  5 +++++
 vfs-methods/themus/themus-theme-applier.c | 22 ++++++++++++++++------
 2 files changed, 21 insertions(+), 6 deletions(-)

commit 833869ab8db4df3f8f43079633d7bbd30a134bde
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 7 15:28:45 2007 +0000

    Updated Norwegian bokmål translation.
    
    2007-01-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=7082

 po/ChangeLog |   4 +
 po/nb.po     | 437 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 252 insertions(+), 189 deletions(-)

commit c01ad4ff503ab1536cdb8d7408923bcabd6102e3
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 7 15:27:40 2007 +0000

    Spell Enlightened Sound Daemon correctly.
    
    2007-01-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * sound-properties-capplet.c: (setup_devices):
        Spell Enlightened Sound Daemon correctly.
    
    svn path=/trunk/; revision=7081

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 61b7c96fee8f45bba5e7b1157525e42a7febfbce
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 7 15:27:08 2007 +0000

    Fix a typo.
    
    2007-01-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties.c: (main): Fix a typo.
    
    svn path=/trunk/; revision=7080

 capplets/keyboard/ChangeLog                   | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 46ce80e7b4b6ab0bb5d594e93f526907c9c50163
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Sun Jan 7 15:20:54 2007 +0000

    removed double gnome_vfs_file_info_unref/g_free calls.
    
    2007-01-07  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-theme-details.c (gtk_theme_update_remove_button): removed
        double gnome_vfs_file_info_unref/g_free calls.
    
    svn path=/trunk/; revision=7079

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-details.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 4292506da69faaf1c5eab7fa70222881f56a2c9c
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 13:36:19 2007 +0000

    Applied patch from bug 326337 (leaks in the theme manager)
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (gtk_theme_update_remove_button): Applied patch
        from bug 326337 (leaks in the theme manager)
    
    svn path=/trunk/; revision=7078

 capplets/theme-switcher/ChangeLog             |  5 +++++
 capplets/theme-switcher/gnome-theme-details.c | 20 +++++++++++++-------
 2 files changed, 18 insertions(+), 7 deletions(-)

commit 4c4c2644b8dcc9b0a170e5c78fadb824c9b995ca
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 7 13:25:23 2007 +0000

    Apply patch from bug 335220 (mem leaks in gnome-wp-item)
    
    2007-01-07  Thomas Wood  <thos@gnome.org>
    
        * gnome-wp-item.c: (gnome_wp_item_get_thumbnail):
        * gnome-wp-xml.c: (gnome_wp_xml_load_list):
    
        Apply patch from bug 335220 (mem leaks in gnome-wp-item)
    
    svn path=/trunk/; revision=7077

 capplets/background/ChangeLog       | 7 +++++++
 capplets/background/gnome-wp-item.c | 1 +
 capplets/background/gnome-wp-xml.c  | 4 ++--
 3 files changed, 10 insertions(+), 2 deletions(-)

commit 809b57b71b16b9a58e98f485e1b59ecff17d1967
Author: Thomas Wood <thos@src.gnome.org>
Date:   Sun Jan 7 01:20:05 2007 +0000

    Reverting earlier changes as it prevents the directory from building
    
    svn path=/trunk/; revision=7074

 vfs-methods/themus/ChangeLog              |  6 ------
 vfs-methods/themus/themus-theme-applier.c | 21 ++++-----------------
 2 files changed, 4 insertions(+), 23 deletions(-)

commit 811900c2a1dbc7e247ecbdb8bf03e0513a28b8f3
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jan 7 00:01:25 2007 +0000

    Fixes #350572
    
    2007-01-07  Gabor Kelemen  <kelemeng@gnome.hu>
    
        Fixes #350572
    
        * sound-properties.glade: Add accelerators to the device tab.
    
    svn path=/trunk/; revision=7072

 capplets/sound/ChangeLog              |  6 ++++++
 capplets/sound/sound-properties.glade | 20 ++++++++++++--------
 2 files changed, 18 insertions(+), 8 deletions(-)

commit a90379247be14949b982e98c35b1101f46d16331
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jan 6 23:34:20 2007 +0000

    Applied patch from Priit Laes <amd@store20.com>. Fixes bug 349471 (Crash
    
    2007-01-11  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-info.c: (update_common_theme_dir_index): Applied patch
        from Priit Laes <amd@store20.com>. Fixes bug 349471 (Crash on manually
        changing the icon theme name).
    
    svn path=/trunk/; revision=7071

 capplets/common/ChangeLog          |  6 ++++++
 capplets/common/gnome-theme-info.c | 21 +++++++++------------
 2 files changed, 15 insertions(+), 12 deletions(-)

commit 20b8dd4a614301cb4fbd4a0265c97b22b7a814ab
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jan 6 23:04:53 2007 +0000

    Applied the shell part of the patch from bug 382730 (fix build with C89
    
    2007-01-11  Thomas Wood  <thos@gnome.org>
    
        * control-center.c: (get_actions_list), (main): Applied the shell part
        of the patch from bug 382730 (fix build with C89 compilers)
    
    svn path=/trunk/; revision=7070

 shell/ChangeLog        | 5 +++++
 shell/control-center.c | 9 ++++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit d88f83a12c2f9a15c709ef0225e893adc25d5da6
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jan 6 22:40:47 2007 +0000

    Applied theme manager part of the patch from bug 382730 (fix build with
    
    2007-01-11  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (gnome_theme_details_init): Applied theme
        manager part of the patch from bug 382730 (fix build with c89 compilers)
    
    svn path=/trunk/; revision=7069

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-details.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 7455e6042d7f5a158c1be71e5baac95c6e32cf7b
Author: Hiroyuki Ikezoe <poincare@ikezoe.net>
Date:   Sat Jan 6 21:28:35 2007 +0000

    Fixes #343584 (patch from Evolution)
    
    2007-01-06  Hiroyuki Ikezoe <poincare@ikezoe.net>
    
        Fixes #343584 (patch from Evolution)
    
        * e-image-chooser.c (set_image_from_data): ref the pixbuf we get to
        not lose it when we close the loader.
    
        * gnome-about-me.c (about_me_update_photo): ditto.
    
    svn path=/trunk/; revision=7067

 capplets/about-me/ChangeLog         | 9 +++++++++
 capplets/about-me/e-image-chooser.c | 4 ++--
 capplets/about-me/gnome-about-me.c  | 5 ++---
 3 files changed, 13 insertions(+), 5 deletions(-)

commit 15c0f6ec87f63a4a541ed746ab2eff6c4a7e9c26
Author: Marc-Andre Lureau <marcandre.lureau@gmail.com>
Date:   Sat Jan 6 21:21:59 2007 +0000

    Fixes #392276
    
    2007-01-06  Marc-Andre Lureau  <marcandre.lureau@gmail.com>
    
        Fixes #392276
    
        * configure.in: added support for disabling esound.
    
    svn path=/trunk/; revision=7066

 ChangeLog    |  6 ++++++
 configure.in | 38 ++++++++++++++++++++++++++++----------
 2 files changed, 34 insertions(+), 10 deletions(-)

commit 5beb200f1c8ef61cb86b2fd0a454f6eea0b34a72
Author: Marc-Andre Lureau <marcandre.lureau@gmail.com>
Date:   Sat Jan 6 21:20:16 2007 +0000

    Fixes #392276
    
    2007-01-06  Marc-Andre Lureau  <marcandre.lureau@gmail.com>
    
        Fixes #392276
    
        * gnome-settings-sound.c: #ifdef esd-related code.
    
    svn path=/trunk/; revision=7065

 gnome-settings-daemon/ChangeLog              |  6 +++
 gnome-settings-daemon/Makefile.am            |  1 -
 gnome-settings-daemon/gnome-settings-sound.c | 62 ++++++++++++++++++----------
 3 files changed, 46 insertions(+), 23 deletions(-)

commit f0e60de69fb93bdf1fc45613cdd3d8988825f8d4
Author: Marc-Andre Lureau <marcandre.lureau@gmail.com>
Date:   Sat Jan 6 21:17:39 2007 +0000

    Fixes #392276
    
    2007-01-06  Marc-Andre Lureau  <marcandre.lureau@gmail.com>
    
        Fixes #392276
    
        * sound-properties-capplet.c (setup_dialog): #ifdef esd-related code.
    
    svn path=/trunk/; revision=7064

 capplets/sound/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 113c4c4fb124a7826889d927aaa5208e6b4ece52
Author: Marc-Andre Lureau <marcandre.lureau@gmail.com>
Date:   Sat Jan 6 21:17:29 2007 +0000

    Fixes #392276
    
    2007-01-03  Marc-Andre Lureau  <marcandre.lureau@gmail.com>
    
        Fixes #392276
    
        * sound-properties-capplet.c (setup_dialog): #ifdef esd-related code.
    
    svn path=/trunk/; revision=7063

 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 91b5f3ecef1ed50d342f1bcd9ef580659cd43b60
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Jan 6 20:34:51 2007 +0000

    Set minimum size request on the treeview rather than the entire window
    
    2007-01-11  Thomas Wood  <thos@gnome.org>
    
           * theme-properties.glade: Set minimum size request on the treeview
           rather than the entire window (fixes bug 393236).
    
    svn path=/trunk/; revision=7062

 capplets/theme-switcher/ChangeLog              | 5 +++++
 capplets/theme-switcher/theme-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 15638499aea31d2392db155d025ade8d71b7551f
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Jan 6 20:20:35 2007 +0000

    removed bunch of desktop.in files.
    
    2007-01-06  Gabor Kelemen <kelemeng@gnome.hu>
    
        * POTFILES.skip: removed bunch of desktop.in files.
    
    svn path=/trunk/; revision=7060

 po/ChangeLog     |  4 ++++
 po/POTFILES.skip | 19 -------------------
 2 files changed, 4 insertions(+), 19 deletions(-)

commit fc0592db277cf8b9412861767612f499ba1f4c25
Author: Lucas Rocha <lucasr.at.mundo@gmail.com>
Date:   Sat Jan 6 18:58:06 2007 +0000

    Fixes #336286
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * themus-theme-applier.c (main): switched from popt to GOptionContext.
    
    svn path=/trunk/; revision=7059

 vfs-methods/themus/ChangeLog              |  6 ++++++
 vfs-methods/themus/themus-theme-applier.c | 21 +++++++++++++++++----
 2 files changed, 23 insertions(+), 4 deletions(-)

commit d0ea4adb94976dc8371586d8d966410ff20b05d1
Author: Lucas Rocha <lucasr.at.mundo@gmail.com>
Date:   Sat Jan 6 18:56:09 2007 +0000

    Fixes #336286
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * sound-properties-capplet.c (main): switched from popt to GOptionContext.
    
    svn path=/trunk/; revision=7058

 capplets/sound/ChangeLog                  |  6 ++++++
 capplets/sound/sound-properties-capplet.c | 18 +++++++++++-------
 2 files changed, 17 insertions(+), 7 deletions(-)

commit 83c0670baab7f9bc5159b9cb9be31086c0581bd0
Author: Lucas Rocha <lucasr.at.mundo@gmail.com>
Date:   Sat Jan 6 18:55:07 2007 +0000

    Fixes #336286
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * gnome-mouse-properties.c (main): switched from popt to GOptionContext.
    
    svn path=/trunk/; revision=7057

 capplets/mouse/ChangeLog                |  6 ++++++
 capplets/mouse/gnome-mouse-properties.c | 12 ++++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit 976734560871941f95338f68cefe49fd572902fe
Author: Lucas Rocha <lucasr.at.mundo@gmail.com>
Date:   Sat Jan 6 18:53:08 2007 +0000

    Fixes #336286
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * gnome-keyboard-properties.c (main): switched from popt to GOptionContext.
    
    svn path=/trunk/; revision=7056

 capplets/keyboard/ChangeLog                   |  6 ++++++
 capplets/keyboard/gnome-keyboard-properties.c | 18 +++++++++++-------
 2 files changed, 17 insertions(+), 7 deletions(-)

commit 64a73e528866c533bffe844bf45274347dfc0df5
Author: Lucas Rocha <lucasr.at.mundo@gmail.com>
Date:   Sat Jan 6 18:51:42 2007 +0000

    Fixes #336286
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * capplet-util.c (capplet_init): switched from popt to GOptionContext.
    
    svn path=/trunk/; revision=7055

 capplets/common/ChangeLog      |  6 ++++++
 capplets/common/capplet-util.c | 16 ++++++++++------
 2 files changed, 16 insertions(+), 6 deletions(-)

commit f4b7a666b96c499a58331f49811352d0b710e7f3
Author: Lucas Rocha <lucasr.at.mundo@gmail.com>
Date:   Sat Jan 6 18:48:36 2007 +0000

    Fixes #336286
    
    2007-01-06  Lucas Rocha <lucasr.at.mundo@gmail.com>
    
        Fixes #336286
    
        * gnome-wp-capplet.c: switched from popt to GOptionContext.
        (wallpaper_properties_init): just iterate over "command_line_files".
        (main): call gnome_program_init with the correct arguments.
    
    svn path=/trunk/; revision=7054

 capplets/background/ChangeLog          |  8 +++++++
 capplets/background/gnome-wp-capplet.c | 38 +++++++++++++++++++---------------
 2 files changed, 29 insertions(+), 17 deletions(-)

commit d2e2e99b8ebf5a801314dc352af8e8e9be6e43f5
Author: Jan Arne Petersen <jap@gnome.org>
Date:   Sat Jan 6 18:41:13 2007 +0000

    do proper dbus/libhal error handling. (Closes #363005)
    
    2007-01-07  Jan Arne Petersen  <jap@gnome.org>
    
        * sound-properties-capplet.c: (setup_hal_devices): do proper
        dbus/libhal error handling. (Closes #363005)
    
    
    svn path=/trunk/; revision=7053

 capplets/sound/ChangeLog                  |  5 +++++
 capplets/sound/sound-properties-capplet.c | 36 ++++++++++++++++++++++++-------
 2 files changed, 33 insertions(+), 8 deletions(-)

commit 984d6f99bc4e750c8a2c6f7a01c68971d9a2a582
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Jan 6 18:40:29 2007 +0000

    Mark message showing background image size and type for translation
    
    2007-01-06  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * gnome-wp-item.c: Mark message showing background image size and type for translation
    
        Fixes #341899
    
    svn path=/trunk/; revision=7052

 capplets/background/ChangeLog       |  6 ++++++
 capplets/background/gnome-wp-item.c | 13 ++++++++++++-
 2 files changed, 18 insertions(+), 1 deletion(-)

commit 198a954b809225b49ce9a8f3043685da09367a91
Author: Luca Cavalli <lcavalli@cvs.gnome.org>
Date:   Sat Jan 6 18:04:20 2007 +0000

    make sure the name list array is NULL terminated. Fixes #356435.
    
    2006-12-10  Luca Cavalli  <lcavalli@cvs.gnome.org>
    
        * font-method.c: (ensure_font_list): make sure the name list array
        is NULL terminated. Fixes #356435.
    
    svn path=/trunk/; revision=7051

 vfs-methods/fontilus/ChangeLog     | 5 +++++
 vfs-methods/fontilus/font-method.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit e2dbb55aabf80bc6d9c839301fec6e164742f420
Author: Rodrigo Moya <rodrigo@gnome-db.org>
Date:   Sat Jan 6 17:54:48 2007 +0000

    added missing mnemonic.
    
    2007-01-06  Rodrigo Moya <rodrigo@gnome-db.org>
    
        * gnome-network-preferences.glade: added missing mnemonic.
    
    svn path=/trunk/; revision=7050

 capplets/network/ChangeLog                       | 4 ++++
 capplets/network/gnome-network-preferences.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit fe82582adef1706f2005422e7ce55ff43e15aa31
Author: Diego Escalante <diego@aureal.com.pe>
Date:   Sat Jan 6 17:52:58 2007 +0000

    Fixes #317097
    
    2007-01-06  Diego Escalante <diego@aureal.com.pe>
    
        Fixes #317097
    
        * gnome-network-preferences.c:
        * gnome-network-preferences.glade: added 'Use same proxy for all
        protocols' option.
    
    svn path=/trunk/; revision=7049

 capplets/network/ChangeLog                       |   8 ++
 capplets/network/gnome-network-preferences.c     | 102 +++++++++++++++++++++++
 capplets/network/gnome-network-preferences.glade |  20 +++++
 3 files changed, 130 insertions(+)

commit 721d95b138a9f9a00f5ee2995de9b742995e03d0
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Jan 6 17:26:00 2007 +0000

    Fixes #393472
    
    2007-01-06  Gabor Kelemen  <kelemeng@gnome.hu>
    
        Fixes #393472
    
        * sound-properties-capplet.c: marked sound system names translatable.
    
    svn path=/trunk/; revision=7047

 capplets/sound/ChangeLog                  |  6 ++++++
 capplets/sound/sound-properties-capplet.c | 24 ++++++++++++------------
 2 files changed, 18 insertions(+), 12 deletions(-)

commit deb7674dd51f0551f4ab6b4acb321ea6f5bedece
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Jan 6 17:16:58 2007 +0000

    removed libgswitchit files.
    
    2007-01-06  Gabor Kelemen <kelemeng@gnome.hu>
    
        * POTFILES.in: removed libgswitchit files.
    
    svn path=/trunk/; revision=7046

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 6 ------
 2 files changed, 4 insertions(+), 6 deletions(-)

commit 69dda8e14e11e5f71deb5a5f2e0374dd7c1f50d9
Author: Alexander Shopov <ash@contact.bg>
Date:   Sat Jan 6 15:24:41 2007 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2007-01-06  Alexander Shopov  <ash@contact.bg>
    
            * bg.po: Updated Bulgarian translation by
            Vladimir Petkov <vpetkov@i-space.org>
    
    
    svn path=/trunk/; revision=7045

 po/ChangeLog |   5 +
 po/bg.po     | 722 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 443 insertions(+), 284 deletions(-)

commit e44d9096e858219a3002269d2e8e399c0de54155
Author: Christian Persch <chpe@gnome.org>
Date:   Fri Jan 5 13:12:09 2007 +0000

    Fixes #393117
    
    2007-01-05  Christian Persch <chpe@gnome.org>
    
        Fixes #393117
    
        * gnome-theme-manager.c (main): get a reference to the GnomeProgram
        and free it when appropriate. Fixes leak.
    
        * gnome-theme-details.c (gtk_theme_update_remove_button): fixed leaks.
    
    svn path=/trunk/; revision=7044

 capplets/theme-switcher/ChangeLog             |  9 +++++++++
 capplets/theme-switcher/gnome-theme-details.c |  3 +++
 capplets/theme-switcher/gnome-theme-manager.c | 16 ++++++++++------
 3 files changed, 22 insertions(+), 6 deletions(-)

commit d9df99ccc64bc489666d3823b74774738c7068c4
Author: Christian Persch <chpe@gnome.org>
Date:   Fri Jan 5 13:11:46 2007 +0000

    Fixes #393117
    
    2007-01-05  Christian Persch <chpe@gnome.org>
    
        Fixes #393117
    
        * gnome-theme-info.c (read_icon_theme): fixed leak.
    
    svn path=/trunk/; revision=7043

 capplets/common/ChangeLog          | 6 ++++++
 capplets/common/gnome-theme-info.c | 1 +
 2 files changed, 7 insertions(+)

commit 3a8a2fc9755ae82a6a92498914cb351fb8ba1701
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Jan 3 23:48:51 2007 +0000

    Fix some HIG issues with strings
    
    2007-01-03  Thomas Wood  <thos@gnome.org>
    
        * theme-properties.glade: Fix some HIG issues with strings
    
    svn path=/trunk/; revision=7042

 capplets/theme-switcher/ChangeLog              | 4 ++++
 capplets/theme-switcher/theme-properties.glade | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit bfb07596267d627ad5ba6bc266afa5aa64fe831e
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Wed Jan 3 21:58:58 2007 +0000

    Updated Arabic Translation.
    
    svn path=/trunk/; revision=7041

 po/ChangeLog |   4 +
 po/ar.po     | 410 ++++++++++++++++-------------------------------------------
 2 files changed, 113 insertions(+), 301 deletions(-)

commit 64df6d63156bf8a2afdd28f0c064426ea8fb3a9d
Author: Christian Persch <chpe@src.gnome.org>
Date:   Wed Jan 3 13:38:23 2007 +0000

    Update svn:ignore and remove .cvsignore files
    
    svn path=/trunk/; revision=7040

 .cvsignore                                      | 39 -------------------------
 archiver/.cvsignore                             | 18 ------------
 capplets/.cvsignore                             |  2 --
 capplets/about-me/.cvsignore                    |  8 -----
 capplets/accessibility/.cvsignore               |  2 --
 capplets/accessibility/at-properties/.cvsignore |  5 ----
 capplets/accessibility/keyboard/.cvsignore      | 12 --------
 capplets/background/.cvsignore                  | 14 ---------
 capplets/common/.cvsignore                      |  5 ----
 capplets/default-applications/.cvsignore        |  7 -----
 capplets/display/.cvsignore                     |  7 -----
 capplets/file-types/.cvsignore                  |  6 ----
 capplets/file-types/libuuid/.cvsignore          |  3 --
 capplets/font/.cvsignore                        |  7 -----
 capplets/keybindings/.cvsignore                 |  5 ----
 capplets/keyboard/.cvsignore                    | 11 -------
 capplets/localization/.cvsignore                |  3 --
 capplets/mouse/.cvsignore                       | 10 -------
 capplets/network/.cvsignore                     | 10 -------
 capplets/rollback/.cvsignore                    |  9 ------
 capplets/sound/.cvsignore                       | 11 -------
 capplets/theme-switcher/.cvsignore              |  7 -----
 capplets/ui-properties/.cvsignore               | 11 -------
 capplets/windows/.cvsignore                     | 12 --------
 control-center/.cvsignore                       | 13 ---------
 gnome-settings-daemon/.cvsignore                | 12 --------
 gnome-settings-daemon/actions/.cvsignore        |  2 --
 gnome-settings-daemon/xrdb/.cvsignore           |  2 --
 help/.cvsignore                                 |  3 --
 help/C/.cvsignore                               |  3 --
 idl/.cvsignore                                  |  2 --
 libbackground/.cvsignore                        |  2 --
 libwindow-settings/.cvsignore                   |  8 -----
 m4/.cvsignore                                   |  1 -
 po/.cvsignore                                   | 14 ---------
 root-manager/.cvsignore                         |  6 ----
 schemas/.cvsignore                              |  3 --
 shell/.cvsignore                                |  7 -----
 typing-break/.cvsignore                         |  3 --
 vfs-methods/.cvsignore                          |  2 --
 vfs-methods/fontilus/.cvsignore                 | 14 ---------
 vfs-methods/themus/.cvsignore                   |  8 -----
 42 files changed, 329 deletions(-)

commit 5e9e499350813b7733991a2ef9a9b43e9b2ed823
Author: Christian Persch <chpe@svn.gnome.org>
Date:   Wed Jan 3 13:28:55 2007 +0000

    A po/LINGUAS: Apply GnomeGoal. Patch by Steve Frécinaux and Luca Cavalli,
    
    2007-01-03  Christian Persch  <chpe@svn.gnome.org>
    
        * configure.in:
        A po/LINGUAS:
        Apply GnomeGoal. Patch by Steve Frécinaux and Luca Cavalli, bug
        #337909.
    
    svn path=/trunk/; revision=7039

 ChangeLog    |  7 ++++++
 configure.in |  4 ++--
 po/LINGUAS   | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 87 insertions(+), 2 deletions(-)

commit 66db70f444066afab356a4bae9ca3e164f4e07bb
Author: Christian Persch <chpe@src.gnome.org>
Date:   Wed Jan 3 13:28:37 2007 +0000

    Fix UTF-8-ness
    
    svn path=/trunk/; revision=7038

 ChangeLog | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 97ed1d6bafa098c8ae4112305105029c7cffdae3
Author: David Lodge <dave@cirt.net>
Date:   Fri Dec 29 18:19:58 2006 +0000

    Updated English (British) translation
    
    2006-12-29  David Lodge <dave@cirt.net>
    
        * en_GB.po: Updated English (British) translation

 po/ChangeLog |    4 +
 po/en_GB.po  | 2805 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1560 insertions(+), 1249 deletions(-)

commit 66cd5bda0e2b7d3a48920b921a5d45d8adb46918
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Dec 29 07:59:38 2006 +0000

    Updated Thai translation.
    
    2006-12-29  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 125 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 107 insertions(+), 22 deletions(-)

commit 5d4ed0c0dc85fc6e6ae72ede06bdc4b5fe78fd0c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 28 22:04:11 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-12-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
    
    2006-12-28  Kjartan Maraas  <kmaraas@gnome.org>

 po/ChangeLog | 4 ++++
 po/nb.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b1ab691ceae3497f21b38c65b4a4b79a3c3447ce
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 28 10:59:48 2006 +0000

    Add missing files Add missing files Updated Norwegian bokmål translation.
    
    2006-12-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Add missing files
        * POTFILES.skip: Add missing files
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog     |   6 ++
 po/POTFILES.in   |   7 ++
 po/POTFILES.skip |  25 ++++-
 po/nb.po         | 285 ++++++++++++++++++++++++++++---------------------------
 4 files changed, 182 insertions(+), 141 deletions(-)

commit 68a09921fcac9f639e7d5b378014a7d8ec2a7ac4
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Mon Dec 25 22:25:24 2006 +0000

    2006-12-25 Jovan Naumovski <jovanna@cvs.gnome.org> *mk.po: Updated Macedonian translation

 po/ChangeLog |   4 +
 po/mk.po     | 284 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 209 insertions(+), 79 deletions(-)

commit 30af2133c323bb123d31882f36d93bee07409d35
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Dec 25 13:06:57 2006 +0000

    Updated Swedish translation.
    
    2006-12-25  Daniel Nylander <po@danielnylander.se>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 301 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 224 insertions(+), 81 deletions(-)

commit 330aa6782690ff075ea987ca31e610adf4576cb3
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sun Dec 24 21:50:54 2006 +0000

    Updated Arabic Translation.

 po/ChangeLog |   4 +
 po/ar.po     | 410 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 305 insertions(+), 109 deletions(-)

commit e79adb3a1db6e642e5531b7153b0cdcff2988bed
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Dec 20 15:21:08 2006 +0000

    Updated Thai translation.
    
    2006-12-20  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 356 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 252 insertions(+), 108 deletions(-)

commit ae01263da78dc3754307ae861272220ea341eca7
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Tue Dec 19 16:36:42 2006 +0000

    Don't list libgswitchit files, they are not shipped with the tarball,
    
    2006-12-19  Sebastien Bacher <seb128@ubuntu.com>
    
        * POTFILES.in: Don't list libgswitchit files, they are not shipped
          with the tarball, fixes build from the tarball

 po/ChangeLog   | 5 +++++
 po/POTFILES.in | 6 ------
 2 files changed, 5 insertions(+), 6 deletions(-)

commit f87221e21044dad53098dd264de3698a795871e5
Author: Raivis Dejus <orvils@gmail.com>
Date:   Tue Dec 19 16:08:43 2006 +0000

    Updated Latvian Translation.
    
    2006-12-19  Raivis Dejus <orvils@gmail.com>
    
            * lv.po: Updated Latvian Translation.

 po/ChangeLog |   4 +
 po/lv.po     | 442 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 334 insertions(+), 112 deletions(-)

commit 78f57d257845112e5d320a085d504ede1852e639
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Tue Dec 19 14:11:41 2006 +0000

    updated for 2.17.4
    
    2006-12-19  Sebastien Bacher <seb128@ubuntu.com>
    
        * NEWS:
        * configure.in: updated for 2.17.4

 ChangeLog    |  5 +++++
 NEWS         | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 56 insertions(+), 1 deletion(-)

commit 1679464dfacd382c58df41e056190e55153d0bec
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Tue Dec 19 09:33:08 2006 +0000

    Updated Spanish translation.
    
    2006-12-19  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 198 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 147 insertions(+), 55 deletions(-)

commit b67414e40e72dae9b3649aff7612210810b0668b
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Dec 18 14:26:39 2006 +0000

    - HIG fixes to the color scheme tab, from suggestions in Bug 382517 -
    
    2006-12-18  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c:
        * theme-properties.glade:
    
        - HIG fixes to the color scheme tab, from suggestions in Bug 382517
        - Rename "Theme Details" button to "Customize"

 capplets/theme-switcher/ChangeLog              |   8 +
 capplets/theme-switcher/gnome-theme-details.c  |  20 +-
 capplets/theme-switcher/theme-properties.glade | 495 ++++++++++++-------------
 3 files changed, 260 insertions(+), 263 deletions(-)

commit 2ef6d605e8ae0215d8695101c66b8d550ecbfff8
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Mon Dec 18 10:35:02 2006 +0000

    Updated Spanish translation.
    
    2006-12-18  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 417 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 205 insertions(+), 216 deletions(-)

commit 3585199e8d93300ebaff188b6dfac7390eaf7e61
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Dec 18 08:52:10 2006 +0000

    Add files from libgswitchit and libslab Remove non-existing file. Updated
    
    2006-12-18  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Add files from libgswitchit and libslab
        * POTFILES.skip: Remove non-existing file.
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog     |   6 +
 po/POTFILES.in   |  12 ++
 po/POTFILES.skip |   1 -
 po/nb.po         | 415 +++++++++++++++++++++++++++++++++++--------------------
 4 files changed, 282 insertions(+), 152 deletions(-)

commit a8bb8bb2fa237a811a4aa6f3f5bfc48cc08a2d7a
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Dec 18 07:10:06 2006 +0000

    Updated Translation

 po/ChangeLog |  4 +++
 po/gu.po     | 94 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 59 insertions(+), 39 deletions(-)

commit 2226077016d8d030447050ddc1fd2fd226d6a9c1
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   Sun Dec 17 20:22:04 2006 +0000

    Updated Arabic Translation.

 po/ChangeLog |    4 +
 po/ar.po     | 2602 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 1290 insertions(+), 1316 deletions(-)

commit 5d8a5f6fe2b8ab4e6e7664e8b08b400b7d8633df
Author: Colin Leroy <colin@colino.net>
Date:   Sun Dec 17 15:55:35 2006 +0000

    add support for Claws Mail (aka Sylpheed-Claws). Closes bug #386771.
    
    2006-12-17  Colin Leroy  <colin@colino.net>
    
        * gnome-default-applications.xml.in: add support for Claws Mail (aka
        Sylpheed-Claws). Closes bug #386771.

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 7 +++++++
 2 files changed, 12 insertions(+)

commit 7698e7c0d263d543c8ba37d4d0807aa06e4bbfdd
Author: Luca Cavalli <lcavalli@cvs.gnome.org>
Date:   Sun Dec 17 15:47:29 2006 +0000

    Fix Thunderbird command line parameter (this time should *really* work).
    
    2006-12-17  Luca Cavalli  <lcavalli@cvs.gnome.org>
    
        * gnome-default-applications.xml.in: Fix Thunderbird command line
        parameter (this time should *really* work). Closes bug #326808.

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 7c3a26aac5fb64bf0ea2981286f3a29811d550f8
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Sun Dec 17 15:39:36 2006 +0000

    Updated Spanish translation.
    
    2006-12-17  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 99 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 57 insertions(+), 46 deletions(-)

commit 01ab0536c6b1ee2bf2cf24b0ac334326cb4df038
Author: Loc Minier <lool+gnome@via.ecp.fr>
Date:   Sun Dec 17 15:37:15 2006 +0000

    add support for Iceweasel and Icedove. Closes bug #379085.
    
    2006-12-17  Loc Minier  <lool+gnome@via.ecp.fr>
    
        * gnome-default-applications.xml.in: add support for Iceweasel and
        Icedove. Closes bug #379085.

 capplets/default-applications/ChangeLog                 |  5 +++++
 .../gnome-default-applications.xml.in                   | 17 +++++++++++++++++
 2 files changed, 22 insertions(+)

commit 55f0ad80c5e6ddba69adbd9f595e9d79175fd874
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sat Dec 16 16:39:42 2006 +0000

    adding translation

 help/pa.po | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 102 insertions(+)

commit eb04160834321a0640e0d391fd6bf541f9827d12
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sat Dec 16 06:01:34 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-12-16  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 399 +++++++++++++++++++++++------------------------------------
 2 files changed, 159 insertions(+), 244 deletions(-)

commit 9c32aaac6ca687a0bd53ddcd911e1ae0ab5f29ab
Author: Matic Zgur <mr.zgur@gmail.com>
Date:   Sat Dec 16 01:19:31 2006 +0000

    Updated Slovenian translation.
    
    2006-12-16  Matic Zgur  <mr.zgur@gmail.com>
    
        * sl.po: Updated Slovenian translation.

 po/ChangeLog |   4 +
 po/sl.po     | 394 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 165 insertions(+), 233 deletions(-)

commit 2b47a26410e0ecde7241a0675c5230f591da114e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 14 13:55:55 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-12-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |   4 +
 po/nb.po     | 287 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 165 insertions(+), 126 deletions(-)

commit e6c606d699048a5a869a940557234e582f8f1015
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Dec 12 08:04:58 2006 +0000

    Updated Swedish translation.
    
    2006-12-12  Daniel Nylander <po@danielnylander.se>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 526 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 270 insertions(+), 260 deletions(-)

commit 384e06c2db1a27a04cfece0804934e758812560f
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Dec 11 19:27:00 2006 +0000

    Translation updated by Tino Meinen.
    
    2006-12-05  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.

 po/ChangeLog |   4 +
 po/nl.po     | 547 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 285 insertions(+), 266 deletions(-)

commit b677f3f66bb8b99808c67c97e5d0825bd986292b
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Mon Dec 11 14:00:36 2006 +0000

    2006-12-11 Jovan Naumovski <jovanna@cvs.gnome.org> *mk.po: Updated Macedonian translation

 po/ChangeLog |   4 +
 po/mk.po     | 404 +++++++++++++++++++++++------------------------------------
 2 files changed, 160 insertions(+), 248 deletions(-)

commit edf8e34597fbbd042c65498746f0b688e9a0d41f
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Dec 11 06:55:44 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +
 po/gu.po     | 478 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 201 insertions(+), 281 deletions(-)

commit 9187df720ad9217f58be969e95fabafab797d185
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Dec 9 03:36:05 2006 +0000

    Updated Finnish Translation

 po/ChangeLog |   4 +
 po/fi.po     | 496 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 254 insertions(+), 246 deletions(-)

commit 838f592678b6ce8756a5770b38dddda56590bc29
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 17:49:43 2006 +0000

    Plug a leak. Bug #376949
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-wp-xml.c: (gnome_wp_xml_load_list): Plug a leak.
        Bug #376949

 capplets/background/ChangeLog      | 5 +++++
 capplets/background/gnome-wp-xml.c | 1 +
 2 files changed, 6 insertions(+)

commit 6a31b183438aa8b4e9e4f85617c99158b039a1d7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 17:17:29 2006 +0000

    Plug a few leaks. Bug #376949.
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-manager.c: (meta_theme_selection_changed):
        Plug a few leaks. Bug #376949.

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit c06b48b3ee48a4cfc0b3a3aa7f30f5507c8395e0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 16:36:36 2006 +0000

    Pass NULL to gtk_label_new() to do a bit less work. Bug #376949.
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * file-transfer-dialog.c: (file_transfer_dialog_init):
        Pass NULL to gtk_label_new() to do a bit less work.
        Bug #376949.

 capplets/common/ChangeLog              | 6 ++++++
 capplets/common/file-transfer-dialog.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit ff19eed1510283c7669f9fda48d1c828e8ea0d62
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 16:34:38 2006 +0000

    Fix a bunch of leaks from gconf_client_get_string() Bug #376949.
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-da-capplet.c: (web_combo_changed_cb),
        (mail_combo_changed_cb), (terminal_combo_changed_cb):
        Fix a bunch of leaks from gconf_client_get_string()
        Bug #376949.

 capplets/default-applications/ChangeLog          |  7 ++++++
 capplets/default-applications/gnome-da-capplet.c | 28 ++++++++++++++----------
 2 files changed, 24 insertions(+), 11 deletions(-)

commit a4cbbfc6551b72fd98e46e6fca7affed721ab164
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 16:32:37 2006 +0000

    Plug some leaks. Bug #376949.
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-localization-properties.c: (languages_changed_cb),
        (languages_sorted_cb), (fill_region_option_menu), (setup_dialog):
        Plug some leaks. Bug #376949.

 capplets/localization/ChangeLog                       | 5 +++++
 capplets/localization/gnome-localization-properties.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 2252b81ff4681bf92a1915972247cdd9bf011e8b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 16:28:51 2006 +0000

    Don't leak the resolution. Pass NULL to gtk_label_new to do less work. Bug
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * main.c: (wrap_in_label), (create_dialog):
        Don't leak the resolution. Pass NULL to gtk_label_new
        to do less work. Bug #376949.

 capplets/display/ChangeLog | 6 ++++++
 capplets/display/main.c    | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit af4e0b168adb6b719cbae0fbb5a458455c696f56
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 8 16:04:08 2006 +0000

    Fix a warning about unused result from g_slist_append().
    
    2006-12-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-network-preferences.c: (cb_add_url):
        Fix a warning about unused result from g_slist_append().

 capplets/network/ChangeLog                   | 5 +++++
 capplets/network/gnome-network-preferences.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit e7ba3dd2164fc21e9dd12b9290ca83bf448ff7d3
Author: William Jon McCann <mccann@jhu.edu>
Date:   Thu Dec 7 17:54:56 2006 +0000

    Add a new media keys window that takes advantage of compositing when
    
    2006-12-07  William Jon McCann  <mccann@jhu.edu>
    
        * gnome-settings-daemon/Makefile.am:
        * gnome-settings-daemon/actions/Makefile.am:
        * gnome-settings-daemon/actions/acme.glade:
        * gnome-settings-daemon/actions/gnome-speakernotes-muted.png:
        * gnome-settings-daemon/actions/gnome-speakernotes.png:
        * gnome-settings-daemon/gnome-settings-multimedia-keys.c:
        (execute), (dialog_init), (unhookup_keysym), (update_kbd_cb),
        (init_kbd), (dialog_show), (do_eject_action), (do_sound_action),
        (gnome_settings_multimedia_keys_load):
        * gnome-settings-daemon/gsd-media-keys-window.c: (hide_timeout),
        (remove_hide_timeout), (add_hide_timeout), (update_window),
        (volume_controls_set_visible), (window_set_icon_name),
        (window_set_icon_file), (action_changed), (volume_level_changed),
        (volume_muted_changed), (gsd_media_keys_window_set_action),
        (gsd_media_keys_window_set_volume_muted),
        (gsd_media_keys_window_set_volume_level), (curved_rectangle),
        (draw_action_eject), (draw_waves), (draw_speaker),
        (draw_volume_boxes), (draw_action_volume), (draw_action),
        (on_expose_event), (gsd_media_keys_window_real_show),
        (gsd_media_keys_window_real_hide),
        (gsd_media_keys_window_class_init), (initialize_alpha_mode),
        (gsd_media_keys_window_init), (gsd_media_keys_window_finalize),
        (gsd_media_keys_window_new):
        * gnome-settings-daemon/gsd-media-keys-window.h:
        Add a new media keys window that takes advantage of
        compositing when available.  Fixes #383066

 ChangeLog                                          |  29 +
 gnome-settings-daemon/Makefile.am                  |   2 +
 gnome-settings-daemon/actions/Makefile.am          |   2 +-
 gnome-settings-daemon/actions/acme.glade           |  77 ++-
 .../actions/gnome-speakernotes-muted.png           | Bin 4445 -> 0 bytes
 .../actions/gnome-speakernotes.png                 | Bin 4655 -> 0 bytes
 .../gnome-settings-multimedia-keys.c               | 150 ++---
 gnome-settings-daemon/gsd-media-keys-window.c      | 656 +++++++++++++++++++++
 gnome-settings-daemon/gsd-media-keys-window.h      |  67 +++
 9 files changed, 834 insertions(+), 149 deletions(-)

commit 514196c62de99ef650ff276df4c17f530d2ae82e
Author: Raivis Dejus <orvils@gmail.com>
Date:   Thu Dec 7 17:37:40 2006 +0000

    Updated Latvian Translation.
    
    2006-12-07  Raivis Dejus  <orvils@gmail.com>
    
            * lv.po: Updated Latvian Translation.

 po/ChangeLog |   4 +
 po/lv.po     | 399 +++++++++++++++++++++++------------------------------------
 2 files changed, 161 insertions(+), 242 deletions(-)

commit 783a46a7fb221f191326f25d8c240ced92a19d56
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Thu Dec 7 08:42:22 2006 +0000

    Updated Spanish translation.
    
    2006-12-07  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 124 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 67 insertions(+), 61 deletions(-)

commit 4fc84d43b0603602f856551a92ee71d2ef8b44cd
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Dec 6 14:46:25 2006 +0000

    Updated Thai translation.
    
    2006-12-06  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 470 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 246 insertions(+), 228 deletions(-)

commit 4c28ac2e4f2a56ef25c53319a76e81b96bf7f9ad
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Dec 4 21:28:40 2006 +0000

    updated for 2.17.3.
    
    2006-12-04  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.17.3.
    
        * autogen.sh: replaced check to look for really existing files.

 ChangeLog         |  7 +++++++
 NEWS              | 32 ++++++++++++++++++++++++++++++++
 autogen.sh        |  2 +-
 configure.in      |  4 ++--
 po/ChangeLog      |  4 ++++
 po/POTFILES.in    |  3 ---
 shell/Makefile.am |  4 +++-
 7 files changed, 49 insertions(+), 7 deletions(-)

commit 6205745414c964418104625cc0e6793c7989fb86
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Dec 3 14:57:45 2006 +0000

    - Cleanup some of the install code - Implement bug 325300 - Theme manager
    
    2006-12-03  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-installer.c: (theme_properties_free),
        (file_theme_type), (missing_utility_message_dialog),
        (extract_files_error_dialog), (transfer_done_targz_idle_cb),
        (transfer_done_tarbz2_idle_cb), (transfer_done_cb),
        (gnome_theme_install_from_uri), (gnome_theme_installer_run):
    
        - Cleanup some of the install code
        - Implement bug 325300 - Theme manager should be able to handle archives
          with icon, gtk+ and metacity themes
        - Implement bug 326103 - Allow installing a theme from a directory

 capplets/theme-switcher/ChangeLog               |  13 +
 capplets/theme-switcher/gnome-theme-installer.c | 571 ++++++++++++------------
 2 files changed, 296 insertions(+), 288 deletions(-)

commit 14b930cf5d08fad7b5ebc729813ca3a26e41a50e
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Nov 27 09:44:06 2006 +0000

    Applied patch from bug 378680 (leak in file_theme_type() in
    
    2006-11-27  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-installer.c: (file_theme_type): Applied patch from
        bug 378680 (leak in file_theme_type() in theme-switcher)

 capplets/theme-switcher/ChangeLog               | 5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit d1ba082bd6052f1c2c045ba3dd0f9aeaa69440eb
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Nov 20 09:40:44 2006 +0000

    NEWS from 2.16.2

 NEWS | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 02a75f3b04238afc2c4eb9ff2fe1b513e1756148
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Nov 19 16:12:13 2006 +0000

    Updated Swedish translation.
    
    2006-11-19  Daniel Nylander <po@danielnylander.se>
    
        * sv/sv.po: Updated Swedish translation.

 help/ChangeLog |  4 ++++
 help/sv/sv.po  | 44 ++++++++++++++++++++++----------------------
 2 files changed, 26 insertions(+), 22 deletions(-)

commit 127d82e08350952bda2bbc62db6cbcdc9655f497
Author: Christophe Bliard <christophe.bliard@trux.info>
Date:   Sun Nov 19 12:02:22 2006 +0000

    Updated French translation.
    
    2006-11-19  Christophe Bliard  <christophe.bliard@trux.info>
    
            * fr/fr.po: Updated French translation.

 help/ChangeLog |  6 +++++-
 help/fr/fr.po  | 34 +++++++++++++++++++++++-----------
 2 files changed, 28 insertions(+), 12 deletions(-)

commit 051e5baa8223b47261c9dc4543f5377e2fd7a23b
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sun Nov 19 09:54:51 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-11-19  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 95169f684cd121dd60a100be1ac811e9acf5a68f
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Nov 16 20:21:36 2006 +0000

    Updated Swedish translation.
    
    2006-11-16  Daniel Nylander <po@danielnylander.se>
    
        * help/sv/sv.po: Updated Swedish translation.

 help/ChangeLog |  4 ++++
 help/sv/sv.po  | 34 +++++++++++++++++++++++-----------
 2 files changed, 27 insertions(+), 11 deletions(-)

commit e72ebd4d37a07fccd4286ec6108c22ed8dd11d11
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Thu Nov 16 19:57:51 2006 +0000

    Removed schemas/desktop_gnome_peripherals_keyboard_xkb.schemas. Updated
    
    2006-11-16  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * POTFILES.in: Removed
        schemas/desktop_gnome_peripherals_keyboard_xkb.schemas.
        * es.po: Updated Spanish translation.

 po/ChangeLog   |   6 +
 po/POTFILES.in |   1 -
 po/es.po       | 469 ++++++++++++++++++++++++++++++---------------------------
 3 files changed, 255 insertions(+), 221 deletions(-)

commit 422223acaff270787f95b467d29785bc8dcc24dc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Nov 15 17:21:53 2006 +0000

    Don't redefine GNOMELOCALEDIR. Don't use a const char * to allocate and
    
    2006-11-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * Makefile.am: Don't redefine GNOMELOCALEDIR.
        * drw-break-window.c: (postpone_entry_activate_cb):
        Don't use a const char * to allocate and free strings.

 typing-break/ChangeLog          | 6 ++++++
 typing-break/Makefile.am        | 1 -
 typing-break/drw-break-window.c | 4 +++-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit c0fb2269f7930a3b2748d0433054c1545bea3560
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Nov 15 17:19:46 2006 +0000

    Fix build.
    
    2006-11-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * C/control-center.xml: Fix build.

 help/C/control-center.xml | 7 +++++++
 help/ChangeLog            | 4 ++++
 2 files changed, 11 insertions(+)

commit 993bc68d13a5a75aa848c63deea99d1e02ac0827
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Wed Nov 15 12:38:54 2006 +0000

    Forgot to add the role

 help/C/control-center.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 70dc3d6d8619adcaed49ffac24094f7bf839e994
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Nov 15 12:37:58 2006 +0000

    Add publisher info.
    
    2006-11-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * C/control-center.xml: Add publisher info.

 help/C/control-center.xml | 4 ++++
 help/ChangeLog            | 4 ++++
 2 files changed, 8 insertions(+)

commit 52975eb709f55b994125d8e7f218c2bb2a05e678
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 13 17:29:56 2006 +0000

    added shell/gnomecc.desktop.in to $OUTPUT.
    
    2006-11-13  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in: added shell/gnomecc.desktop.in to $OUTPUT.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 72930c10f69348893e3aa36fdff2d731f90d6adc
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 13 17:28:58 2006 +0000

    added missing file.
    
    2006-11-13  Rodrigo Moya <rodrigo@novell.com>
    
        * gnomecc.desktop.in.in: added missing file.
    
        * Makefile.am: install .desktop file.

 shell/ChangeLog             |  5 +++++
 shell/Makefile.am           |  7 +++++++
 shell/gnomecc.desktop.in.in | 16 ++++++++++++++++
 3 files changed, 28 insertions(+)

commit ce90ac9adc9705ce6d4b134427b8b4ea138e9aec
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Nov 13 16:01:42 2006 +0000

    (gnome_theme_installer_run): Open transfer dialog with transient parent
    
    2006-11-13  Thomas Wood  <thos@gnome.org>
    
        (gnome_theme_installer_run): Open transfer dialog with transient
        parent set
    
        * gnome-theme-details.c: (remove_theme), (color_select),
        (toggle_color_scheme_key), (gnome_theme_details_init),
        (update_color_buttons_from_string),
        (gnome_theme_details_update_from_gconf):
        * gnome-theme-installer.c: (gnome_theme_install_from_uri),
        * gnome-theme-installer.h:
        * gnome-theme-manager.c: (free_all),
        (gnome_theme_manager_drag_data_received_cb), (main):
        * gnome-theme-manager.h:
        * gnome-theme-save.c: (save_dialog_response):
        * theme-properties.glade:
    
        - Add a colours tab to change gtk-color-scheme setting

 capplets/theme-switcher/ChangeLog               |  19 ++
 capplets/theme-switcher/gnome-theme-details.c   | 196 +++++++++++++-
 capplets/theme-switcher/gnome-theme-installer.c |   6 +-
 capplets/theme-switcher/gnome-theme-installer.h |   2 +-
 capplets/theme-switcher/gnome-theme-manager.c   |  20 +-
 capplets/theme-switcher/gnome-theme-manager.h   |   3 +-
 capplets/theme-switcher/gnome-theme-save.c      |   2 +-
 capplets/theme-switcher/theme-properties.glade  | 329 ++++++++++++++++++++++++
 8 files changed, 563 insertions(+), 14 deletions(-)

commit 7d51fdd2f7545c0e66509ae87f80d894cf5f6ee2
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 13 11:37:49 2006 +0000

    added libslab.pc to $OUTPUT.
    
    2006-11-13  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in: added libslab.pc to $OUTPUT.

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit adb4a3a024d28e8dbbf0ba07b3ba04f57e1cae62
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 13 08:33:07 2006 +0000

    new control center shell.
    
    2006-11-13  Rodrigo Moya <rodrigo@novell.com>
    
        * shell/*: new control center shell.
    
        * Makefile.am:
        * configure.in: added new directory to build.

 ChangeLog              |   7 +++
 Makefile.am            |   2 +-
 configure.in           |   6 +-
 shell/.cvsignore       |   7 +++
 shell/Makefile.am      |  15 +++++
 shell/control-center.c | 158 +++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 192 insertions(+), 3 deletions(-)

commit 8745b61e1bc48d715069b6b32a4b1a320ad28a24
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sat Nov 11 17:49:28 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-11-11  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 29 ++++++++++++++++++++++++++---
 2 files changed, 30 insertions(+), 3 deletions(-)

commit 0b1a8a8a23b87ee183ebbcfbde9614bf4d30e808
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Nov 8 23:44:14 2006 +0000

    Updated Swedish translation.
    
    2006-11-09  Daniel Nylander <po@danielnylander.se>
    
        * sv/sv.po: Updated Swedish translation.

 help/ChangeLog | 4 ++++
 help/sv/sv.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit ee7b3b2a68818312508e7a744223167a97120737
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Nov 1 14:25:02 2006 +0000

    Clean up file transfer dialog. Closes bug 319926 (Wrong path displayed on
    
    2006-11-01  Thomas Wood  <thos@gnome.org>
    
        * file-transfer-dialog.c: (file_transfer_dialog_update_num_files),
        (file_transfer_dialog_set_prop), (file_transfer_dialog_class_init),
        (file_transfer_dialog_init),
        (file_transfer_dialog_new_with_parent),
        (file_transfer_dialog_update_cb):
        * file-transfer-dialog.h:
    
        Clean up file transfer dialog. Closes bug 319926 (Wrong path displayed
        on icon theme installation).

 capplets/common/ChangeLog              |  12 +++
 capplets/common/file-transfer-dialog.c | 139 ++++++++++-----------------------
 capplets/common/file-transfer-dialog.h |   1 +
 3 files changed, 54 insertions(+), 98 deletions(-)

commit 89a3d4dfaa26b4810c606d21a68a2406c5af1e73
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Oct 31 14:20:44 2006 +0000

    fix a broken filename Update.
    
    2006-10-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: fix a broken filename
        * nb.po: Update.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   2 +-
 po/nb.po       | 357 ++++++++++++++++++++++++++++-----------------------------
 3 files changed, 180 insertions(+), 184 deletions(-)

commit 7df6660f8703f5b53dbc5a77e527aa99d7064c78
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   Sun Oct 29 23:03:00 2006 +0000

    Fixed wrong plural form entries.
    
    2006-10-30  Satoru SATOH <ss@gnome.gr.jp>
    
        * ja.po: Fixed wrong plural form entries.

 po/ChangeLog | 4 ++++
 po/ja.po     | 5 +----
 2 files changed, 5 insertions(+), 4 deletions(-)

commit bb20ceea9dda5ca505df32ad4c72d8f3af2ef88c
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sun Oct 29 15:16:36 2006 +0000

    Translation updated.
    
    2006-10-29  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated.

 po/ChangeLog |  4 +++
 po/et.po     | 98 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 53 insertions(+), 49 deletions(-)

commit ba49c1df5f37f4793a7f1b93b62964b0fd955773
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Oct 27 12:52:22 2006 +0000

    Hopefully fix bug 352490
    
    2006-10-27  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-installer.c: (transfer_done_cb): Hopefully fix bug
        352490

 capplets/theme-switcher/ChangeLog               | 5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit ada87a95f23d27ecaa466a15759a10fffd26aa77
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Oct 18 22:37:40 2006 +0000

    Changing library dependency from virtual libgswitchit/libkbdraw to normal libgnomekbd

 ChangeLog                                          |  15 +
 Makefile.am                                        |   2 +-
 capplets/keyboard/Makefile.am                      |   6 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 236 ++---
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  27 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 979 +++++++++++----------
 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 220 ++---
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 482 +++++-----
 .../keyboard/gnome-keyboard-properties-xkbpv.c     | 134 +--
 configure.in                                       |  24 +-
 gnome-settings-daemon/Makefile.am                  |   6 +-
 .../gnome-settings-keyboard-xkb.c                  |  68 +-
 .../gnome-settings-keyboard-xkb.h                  |  10 +-
 schemas/Makefile.am                                |   1 -
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 193 ----
 15 files changed, 1172 insertions(+), 1231 deletions(-)

commit 0caebda160b773e09b744e665e4d6c242315a5c9
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Oct 16 21:00:52 2006 +0000

    Bumped version

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 18e1885e87a54531c795cb6248b3502fd15cdabb
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Oct 16 20:54:18 2006 +0000

    updated for 2.17.1.
    
    2006-10-16  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.17.1.

 ChangeLog    |  5 +++++
 NEWS         | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 60 insertions(+), 1 deletion(-)

commit ae67b5a1cced9331bf91856797e9464cbe249dcb
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Mon Oct 16 15:43:02 2006 +0000

    Updated Italian translation.
    
    2006-10-16  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.

 po/ChangeLog |    4 +
 po/it.po     | 1008 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 562 insertions(+), 450 deletions(-)

commit e697f84e93319a8f903dda614c341a223064645b
Author: Dan Winship <danw@src.gnome.org>
Date:   Mon Oct 16 15:01:00 2006 +0000

    new method to delay showing a dialog until after the window manager is
    
            * delayed-dialog.c (gnome_settings_delayed_show_dialog): new
            method to delay showing a dialog until after the window manager is
            running.
    
            * gnome-settings-font.c (load_cursor):
            * gnome-settings-keyboard-xkb.c (activation_error): Use it.

 gnome-settings-daemon/ChangeLog                    |   9 ++
 gnome-settings-daemon/Makefile.am                  |   3 +-
 gnome-settings-daemon/delayed-dialog.c             | 122 +++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-daemon.h      |   1 +
 gnome-settings-daemon/gnome-settings-font.c        |  10 +-
 .../gnome-settings-keyboard-xkb.c                  |   2 +-
 6 files changed, 141 insertions(+), 6 deletions(-)

commit 4c36d3211b01217635e96c9097bfa20419bc5366
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Oct 16 11:58:33 2006 +0000

    Fixes #163690
    
    2006-10-16  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #163690
    
        * gnome-mouse-properties.glade: reordered the widgets for A11Y. Patch
        from Sven Herzberg  <herzi@gnome-de.org>.

 capplets/mouse/ChangeLog | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5cbd49e04854fc26f9c1dc7c6f0c76646fd4d064
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Oct 16 11:58:05 2006 +0000

    Fixes #163690
    
    2006-10-16  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #163690
    
        * gnome-mouse-properties.glade: reordered the widgets for A11Y.

 capplets/mouse/ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 1240d4061ccf04cfa0dbb9a94051c99d1271633e
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Mon Oct 16 11:56:01 2006 +0000

    also display the default theme (though without a preview for technical
    
    2006-08-16  Sven Herzberg  <herzi@gnome-de.org>
    
        * gnome-mouse-properties.c: also display the default theme (though
        without a preview for technical reasons); fixes bug #322514

 capplets/mouse/gnome-mouse-properties.glade | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

commit 0ef5d2aaf168118ff13b40e0fbdb8ef391313cab
Author: Luca Cavalli <lcavalli@cvs.gnome.org>
Date:   Mon Oct 16 11:39:26 2006 +0000

    Added support for legacy gconf key. Based on a patch from Sven Herzberg
    
    2006-10-09  Luca Cavalli  <lcavalli@cvs.gnome.org>
    
        * gnome-da-capplet.c: (web_gconf_changed_cb):
        * gnome-da-capplet.h:
    
        Added support for legacy gconf key. Based on a patch from Sven
        Herzberg <herzi@gnome-de.org>. Closes bug #359986.

 capplets/default-applications/ChangeLog          |  8 ++++++++
 capplets/default-applications/gnome-da-capplet.c | 18 ++++++++++++++++++
 capplets/default-applications/gnome-da-capplet.h |  5 +++++
 3 files changed, 31 insertions(+)

commit 28114cb502b5fcdf58029ef3f96e24a7d2504d28
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Oct 16 10:50:50 2006 +0000

    removed unused file.
    
    2006-10-10  Rodrigo Moya <rodrigo@novell.com>
    
        * GNOME_Control_Center.server.in: removed unused file.

 control-center/ChangeLog                     |  4 +++
 control-center/GNOME_ControlCenter.server.in | 48 ----------------------------
 2 files changed, 4 insertions(+), 48 deletions(-)

commit 082668c9c59d4e0374172cbbe6ddd980188cc740
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Oct 15 15:01:18 2006 +0000

    Updated Finnish translation

 po/ChangeLog |   4 +++
 po/fi.po     | 105 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 61 insertions(+), 48 deletions(-)

commit ccf1865307bc9e50d8d0ff41af0288cf77294bc1
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sun Oct 15 07:37:05 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-10-15  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 21 ++++++++++++++-------
 2 files changed, 18 insertions(+), 7 deletions(-)

commit b80c4d2ad3a40c61d5d99bb087ac769856d1c6ff
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Oct 5 18:12:37 2006 +0000

    indenting capplet sources

 capplets/keyboard/.indent.pro | 2 ++
 1 file changed, 2 insertions(+)

commit e8ea43ff70253cba18490243e5d7e2adc8f0e286
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Wed Oct 4 14:46:04 2006 +0000

    Czech translation updated.
    
    2006-10-04  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Czech translation updated.

 po/ChangeLog |   4 ++
 po/cs.po     | 161 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 93 insertions(+), 72 deletions(-)

commit 8ec1c4b758f225b6e963f917532339d61443b04c
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Oct 2 22:12:30 2006 +0000

    Add an install-theme command line option. Fixes bug 354581 - Theme manager
    
    2006-10-02  Thomas Wood  <thos@gnome.org>
    
            * gnome-theme-manager.c: (load_meta_themes), (main): Add an
            install-theme command line option. Fixes bug 354581 - Theme manager
            has no CLI tool to install themes.

 capplets/theme-switcher/ChangeLog             |  6 ++++++
 capplets/theme-switcher/gnome-theme-manager.c | 23 ++++++++++++++++++++++-
 2 files changed, 28 insertions(+), 1 deletion(-)

commit 778257699ab2da6a93dc35a489b4cc7a794d0dae
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Mon Oct 2 19:12:32 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-10-02  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog | 4 ++++
 po/et.po     | 9 ++++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 717180a49edceaac836888fb6197f6c86947fc7d
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Sep 30 16:17:46 2006 +0000

    Allows the text in the details dialog lists to ellipsise, and sets a
    
    2006-09-30  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (setup_tree_view):
        * theme-properties.glade:
    
        Allows the text in the details dialog lists to ellipsise, and sets a minimum width
        for the dialog. Fixes bug 355269 (Theme manager dialog width)

 capplets/theme-switcher/ChangeLog              | 8 ++++++++
 capplets/theme-switcher/gnome-theme-details.c  | 1 +
 capplets/theme-switcher/theme-properties.glade | 1 +
 3 files changed, 10 insertions(+)

commit 0f0600a44506566aa8ed2fceca17482885f5781e
Author: Thomas Wood <thos@gnome.org>
Date:   Sat Sep 30 15:48:35 2006 +0000

    Set the gtk icon theme setting. Fixes bug 355268 - "Open" icon on button
    
    2006-09-30  Thomas Wood  <thos@gnome.org>
    
        * theme-thumbnail.c: (create_image): Set the gtk icon theme setting.
        Fixes bug 355268 - "Open" icon on button preview not working

 capplets/common/ChangeLog         | 6 +++++-
 capplets/common/theme-thumbnail.c | 1 +
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 7e84b559674b5710088e29734b274843fb37e9d6
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Sep 28 05:34:00 2006 +0000

    Translation updated.
    
    2006-09-28  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated.

 po/ChangeLog |  4 ++++
 po/et.po     | 26 ++++++++++++++++----------
 2 files changed, 20 insertions(+), 10 deletions(-)

commit fe3c648440a82ec6c357ae3987ec14403338e4ab
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Mon Sep 25 20:52:52 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-09-25  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog | 4 ++++
 po/et.po     | 9 +++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 089ecb871b79e987c8def1b1a7ee49d2a4b05bff
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Sep 21 16:33:48 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-09-21  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 17 +++++++++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

commit 5d9f86092e346c552e26af931656a4c531b345e8
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Sun Sep 17 21:50:35 2006 +0000

    Updated Norwegian Nynorsk translation.
    
    2006-09-17  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |    4 +
 po/nn.po     | 1124 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 611 insertions(+), 517 deletions(-)

commit 83c92004ca54705f8235f990f28e5d59b56ffac4
Author: Matt Keenan <matt.keenan@sun.com>
Date:   Fri Sep 15 11:14:30 2006 +0000

    Fixes #349079
    
    2006-09-15  Matt Keenan <matt.keenan@sun.com>
    
        Fixes #349079
    
        * gnome-about-me-password.c (spawn_passwd): don't use stdin, stdout
        and stderr as variable names. Fixes compilation issue on Sun Studio
        compiler.

 capplets/about-me/ChangeLog                 |  8 ++++++++
 capplets/about-me/gnome-about-me-password.c | 14 +++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

commit f21f40313f1a22f6d424b4a43b287449e8206e44
Author: Brian Cameron <brian.cameron@sun.com>
Date:   Fri Sep 15 11:08:41 2006 +0000

    Fixes #356075
    
    2006-09-15  Brian Cameron <brian.cameron@sun.com>
    
        Fixes #356075
    
        * main.c (apply_config, revert_config): make sure we never pass
        negative values for the rates.

 capplets/display/ChangeLog | 7 +++++++
 capplets/display/main.c    | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 6534f723c67f7242f8e64f230c1d5515a8663ab5
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri Sep 15 11:04:17 2006 +0000

    Fixes #356074
    
    2006-09-15  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #356074
    
        * gnome-keyboard-properties-xkb.c (set_model_text): make sure 'model'
        is never NULL. Original patch from Brian Cameron <brian.cameron@sun.com>.

 capplets/keyboard/ChangeLog                       | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c | 6 +++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 3ec36c725fecce88ab47e309e48b3e13487c9550
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Wed Sep 13 07:13:10 2006 +0000

    Added Entry for Bengali India Translation Updation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 3d9668c07d068678d5baf52fff6a2233b527d5bb
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Wed Sep 13 07:11:19 2006 +0000

    Updated Bengali India Translation

 po/bn_IN.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b328bd85abef3a411a7d3321ea518a52bc9929b6
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Fri Sep 8 14:11:33 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-09-08  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 40552663b47128b83675e5c92b5764b67266927f
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Sep 5 21:37:05 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-09-06  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog | 5 +++++
 po/bg.po     | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit a279f1d331c00b369ecd931763410fbfa329b724
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Tue Sep 5 09:11:54 2006 +0000

    2.17.0

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c58d2febacfa7d8a62a43e4a7eb2663d7a2153b1
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Sep 4 09:56:55 2006 +0000

    updated for 2.16.0.
    
    2006-09-04  Rodrigo Moya <rodrigo@novell.com>
    
        * NEWS: updated for 2.16.0.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 9170917ab7d0f74db1f18ebfd21fac0954ff9575
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Sep 4 09:13:10 2006 +0000

    Updated NEWS

 NEWS | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

commit 12f0b35b8b3f83644c487f24ad1cd11aa07d24e5
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Sep 4 08:03:45 2006 +0000

    Added Entry for Bengali India Translation Updation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit c6282e418f1e510900fc8fbaab080d02bc619fc0
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Sep 4 08:02:52 2006 +0000

    Updated Bengali India Translation

 po/bn_IN.po | 1145 +++++++++++++++++++++++------------------------------------
 1 file changed, 436 insertions(+), 709 deletions(-)

commit a469fce32e699cd94c43f2f835d3324927a7a8d1
Author: Lucas Rocha <lucasr@gnome.org>
Date:   Mon Sep 4 03:30:33 2006 +0000

    Updated Brazilian Portuguese translation by Leonardo Ferreira Fontenelle
    
    2006-09-03  Lucas Rocha  <lucasr@gnome.org>
    
        * pt_BR.po: Updated Brazilian Portuguese translation
        by Leonardo Ferreira Fontenelle <leo.fontenelle@gmail.com>

 po/ChangeLog |    5 +
 po/pt_BR.po  | 1148 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 678 insertions(+), 475 deletions(-)

commit 103b7a70005d9f0d58c2445ac5fb44f11c2085ab
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Sep 3 21:09:24 2006 +0000

    Updated Swedish translation.
    
    2006-09-03  Daniel Nylander <po@danielnylander.se>
    
        * sv/sv.po: Updated Swedish translation.

 help/ChangeLog | 4 ++++
 help/sv/sv.po  | 7 ++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 92fd43a49f3e0d459a2cfddfc81f7adadd1289a1
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Sep 3 20:40:02 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-09-03  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |  5 +++++
 po/bg.po     | 55 ++++++++++++++++++++++++++++---------------------------
 2 files changed, 33 insertions(+), 27 deletions(-)

commit e563a69682049921b2367d74a9a701c891bb83ff
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sun Sep 3 20:28:15 2006 +0000

    Updated Chinese (Hong Kong) translation. Updated Chinese (Taiwan)
    
        * zh_HK.po: Updated Chinese (Hong Kong) translation.
        * zh_TW.po: Updated Chinese (Taiwan) translation.

 po/ChangeLog |   5 +
 po/zh_HK.po  | 275 ++++---------------------------------------
 po/zh_TW.po  | 378 ++++++++++-------------------------------------------------
 3 files changed, 94 insertions(+), 564 deletions(-)

commit 5c28ed05196bb651d99fd5cfe5d42089f062ff36
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sun Sep 3 14:29:11 2006 +0000

    Updated Chinese (Hong Kong) translation from Woodman Tuen
    
        * zh_HK.po: Updated Chinese (Hong Kong) translation from
          Woodman Tuen <wmtuen@gmail.com>.
        * zh_TW.po: Updated Chinese (Taiwan) translation from
          Woodman Tuen <wmtuen@gmail.com>.

 po/ChangeLog |   7 +++
 po/zh_HK.po  | 175 ++++++++++++++++++++++++-----------------------------------
 po/zh_TW.po  |  44 +++++++--------
 3 files changed, 100 insertions(+), 126 deletions(-)

commit 3e63e35f18b3331c254d0865a25ad36b63975012
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Sun Sep 3 14:05:34 2006 +0000

    Updated Malayalam translation

 po/ChangeLog |   4 +
 po/ml.po     | 425 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 244 insertions(+), 185 deletions(-)

commit dbec9fcb47d486e0aa31040cebe8061f3098d681
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sun Sep 3 05:19:44 2006 +0000

    update translation for Punjabi (Gurmukhi) by apbrar gmail com

 po/pa.po | 1101 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 591 insertions(+), 510 deletions(-)

commit 24d685bbde128156dccc3a8ab1312498fafe1477
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sat Sep 2 13:13:08 2006 +0000

    Updated Swedish translation.
    
    2006-09-02  Daniel Nylander <po@danielnylander.se>
    
        * sv/sv.po: Updated Swedish translation.

 help/ChangeLog |  4 ++++
 help/sv/sv.po  | 13 ++++---------
 2 files changed, 8 insertions(+), 9 deletions(-)

commit 675a2c67706a91470feaed60b51339bd4bf9546b
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sat Sep 2 08:17:29 2006 +0000

    Updated Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 289 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 134 insertions(+), 159 deletions(-)

commit 5c94eb918dd1f3f20d89d8afc93f47028c304bca
Author: Felix I <ifelix@src.gnome.org>
Date:   Fri Sep 1 12:27:31 2006 +0000

    Tamil Translation updated

 po/ChangeLog |   4 +
 po/ta.po     | 421 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 202 insertions(+), 223 deletions(-)

commit d21d57f9418ad14f04d967cc3b47b565ac920b15
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Fri Sep 1 00:14:58 2006 +0000

    2006-09-01 Jovan Naumovski <jovanna@cvs.gnome.org> * mk.po: Updated Macedonian translation

 po/ChangeLog |  4 +++
 po/mk.po     | 92 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 50 insertions(+), 46 deletions(-)

commit 76d59ac4d56bead55288dc2b864695d904f81337
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Thu Aug 31 13:01:39 2006 +0000

    Updated Traditional Chinese translation(Hong Kong). Updated Traditional
    
    2006-08-31  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
            * zh_HK.po: Updated Traditional Chinese translation(Hong Kong).
            * zh_TW.po: Updated Traditional Chinese translation(Taiwan).

 po/ChangeLog |   5 +++
 po/zh_HK.po  | 122 +++++++++++++++++++++++++++++------------------------------
 po/zh_TW.po  | 122 +++++++++++++++++++++++++++++------------------------------
 3 files changed, 127 insertions(+), 122 deletions(-)

commit e3f4178983532e4ee832c6466ab9ac58bd2921c9
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Thu Aug 31 11:40:31 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +++
 po/hi.po     | 100 +++++++++++++++++++++++------------------------------------
 2 files changed, 43 insertions(+), 61 deletions(-)

commit ce0129d1e5a78510cb6364b5c73fb5df79530732
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Thu Aug 31 11:17:35 2006 +0000

    Updated Malayalam translation

 po/ml.po | 50 +++++++++++++++++++++++++-------------------------
 1 file changed, 25 insertions(+), 25 deletions(-)

commit 81e45bd2f2a60075dbf0a9689917e7f1edf813bf
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Thu Aug 31 10:57:18 2006 +0000

    Updated Oriya Translation

 po/or.po | 128 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 64 insertions(+), 64 deletions(-)

commit 38d44989298159049568701ce2c3b2e7c474308a
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Thu Aug 31 10:56:46 2006 +0000

    Added Strings for Updated Oriya Translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 1e496f0ef251255f5f7905971e4104d954e5ec24
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Thu Aug 31 08:16:58 2006 +0000

    Updated Malayalam translation

 po/ChangeLog |   4 +
 po/ml.po     | 459 +++++++++++++++++++++--------------------------------------
 2 files changed, 163 insertions(+), 300 deletions(-)

commit 3dcb651b0d92c6a8870b20931b248f103d4f915d
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Aug 30 20:53:01 2006 +0000

    Updated Portuguese translation.
    
    2006-08-30  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 1072 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 624 insertions(+), 452 deletions(-)

commit 83af1faa08ac15a0aaee0f386c3783372e85a7eb
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Wed Aug 30 16:26:21 2006 +0000

    Updated Oriya Translation

 po/or.po | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit 866a3a8058df96dcaa3e068c055aa5eed3a73e3c
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Wed Aug 30 16:25:32 2006 +0000

    Added Strings for Updated Oriya Translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 67337f682eaace2b652649ef6764118f3ad370ed
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Wed Aug 30 13:30:37 2006 +0000

    Updated Malayalam translation

 po/ChangeLog |   4 ++
 po/ml.po     | 200 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 111 insertions(+), 93 deletions(-)

commit af054efc811ae7d06c9db3283be6c314d1c05faa
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Wed Aug 30 11:54:28 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +
 po/hi.po     | 254 +++++++++++++++++++++--------------------------------------
 2 files changed, 92 insertions(+), 166 deletions(-)

commit b8ebe6d94e7e5e4cecf4e0385679be15bb0dfeaa
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Wed Aug 30 11:46:58 2006 +0000

    Updated Oriya Translation

 po/or.po | 234 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 117 insertions(+), 117 deletions(-)

commit 61652301d11621e690769d1f9424ad411d770d07
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Wed Aug 30 11:43:35 2006 +0000

    Added Strings for Updated Oriya Translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 432bcff309a744ec3f206fb29fbd79843a2d4dd4
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Aug 30 07:33:13 2006 +0000

    Translation updated.
    
    2006-08-30  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated.

 po/ChangeLog |   4 +
 po/hu.po     | 432 +++++++++++++++++++----------------------------------------
 2 files changed, 145 insertions(+), 291 deletions(-)

commit 57d692e274adf484f3d89a67eb21211b30884c5f
Author: Gintautas Miliauskas <gintas@src.gnome.org>
Date:   Tue Aug 29 19:53:49 2006 +0000

    Updated Lithuanian translation

 po/ChangeLog |   4 +
 po/lt.po     | 298 +++++++++++++++++------------------------------------------
 2 files changed, 91 insertions(+), 211 deletions(-)

commit 178de47eac44cee04ab055fd4b02ce5860ea4d83
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Tue Aug 29 18:47:01 2006 +0000

    Updated Georgian translation

 po/ChangeLog |    4 +
 po/ka.po     | 1550 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 687 insertions(+), 867 deletions(-)

commit d71329c98ad9dbb827a54718e2ceb4ab01424a81
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Tue Aug 29 13:40:56 2006 +0000

    Fixed Russian translation

 po/ru.po | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 9f770d7dcf40d52c878dc42720b3c33511869184
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Tue Aug 29 11:21:44 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +
 po/hi.po     | 358 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 171 insertions(+), 191 deletions(-)

commit 99185b38d94f2b70ed4637da5f252119afd96ec6
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Aug 28 20:48:25 2006 +0000

    Fixes bug 331835 (Missing maximize button) by making the main window
    
    2006-08-28  Thomas Wood  <thos@gnome.org>
    
            * theme-properties.glade: Fixes bug 331835 (Missing maximize button)
            by making the main window Normal rather than Dialog.
            * ChangeLog: Converted to utf-8!

 capplets/theme-switcher/ChangeLog              | 18 ++++++++++++------
 capplets/theme-switcher/theme-properties.glade |  6 +++---
 2 files changed, 15 insertions(+), 9 deletions(-)

commit d6c54853797f3980adbd3ebbfa39b63581d79868
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Mon Aug 28 14:27:04 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-08-28  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit ef65f28efe7f161d048a52f7959eb42e215a8624
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sun Aug 27 10:32:18 2006 +0000

    Fixes #352776
    
    2006-08-27  Matthias Clasen <mclasen@redhat.com>
    
        Fixes #352776
    
        * libkbdraw/keyboard-drawing.c (key_event): return TRUE when we
        handle the key event, to avoid GTK+ to handle it also.

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit de95afb8251f4091c2ccb4ef40c4a46ca4741c41
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Aug 27 07:20:10 2006 +0000

    Updated Thai translation.
    
    2006-08-27  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 +++
 po/th.po     | 99 +++++++++++++++++++++++++++---------------------------------
 2 files changed, 48 insertions(+), 55 deletions(-)

commit 9fe98448a6f8e070ec2fc13b6d86accbfaa1061b
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Fri Aug 25 15:11:09 2006 +0000

    Updated French translation.

 po/ChangeLog |   5 ++
 po/fr.po     | 288 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 152 insertions(+), 141 deletions(-)

commit 5218455eb9c356ca691260c430304655c495de7b
Author: Raivis Dejus <orvils@gmail.com>
Date:   Thu Aug 24 15:23:19 2006 +0000

    Updated Latvian translation.
    
    2006-08-24  Raivis Dejus  <orvils@gmail.com>
    
            * lv.po: Updated Latvian translation.

 po/ChangeLog |   4 +
 po/lv.po     | 394 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 183 insertions(+), 215 deletions(-)

commit 6ea13022e9a6ca5f1d28671a06fc4e452d2bc73e
Author: Andre Klapper <a9016009@gmx.de>
Date:   Thu Aug 24 14:44:43 2006 +0000

    Fixes #170318
    
    2006-08-24  Andre Klapper <a9016009@gmx.de>
    
        Fixes #170318
    
        * gnome-settings-multimedia-keys.c (init_kbd): avoid grabbing all
        the keyboard when the key code cannot be retrieved.

 gnome-settings-daemon/ChangeLog                        | 7 +++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 9 +++++++++
 2 files changed, 16 insertions(+)

commit 5d184d6893368166848573fd93c72b67b8606030
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Wed Aug 23 13:57:53 2006 +0000

    Updated Translations

 po/ChangeLog |   4 +
 po/mr.po     | 280 +++++++++++++++++++++++++----------------------------------
 2 files changed, 121 insertions(+), 163 deletions(-)

commit 7173f6e3d8a89e5897cfeabfe890a1c3422e4065
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 23 05:34:45 2006 +0000

    Make read_orientation_from_string() and read_wptype_from_string() behave
    
    2006-08-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * preferences.c: (bg_preferences_load),
        (bg_preferences_merge_entry), (read_wptype_from_string),
        (read_orientation_from_string): Make read_orientation_from_string()
        and read_wptype_from_string() behave like read_color_from_string()
        and adjust all callers. Avoids some excess strduping too I guess.
        Closes bug #352252.

 libbackground/ChangeLog     |  9 +++++++++
 libbackground/preferences.c | 23 +++++++++++++----------
 2 files changed, 22 insertions(+), 10 deletions(-)

commit 1358fd4ef568807715c7a6b0962f19285a8da64b
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Aug 22 17:15:55 2006 +0000

    updated to 2.16.0
    
    2006-08-22  Sebastien Bacher <seb128@debian.org>
    
        * configure.in: updated to 2.16.0

 ChangeLog    | 6 +++++-
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 89fcdff8fd6fbc871491ce39964cbddca6f51790
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Tue Aug 22 16:24:19 2006 +0000

    2.15.92 update

 ChangeLog |  4 ++++
 NEWS      | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 64 insertions(+), 1 deletion(-)

commit 597ead8ac489296aabdb383756fcffc160449947
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Tue Aug 22 13:41:47 2006 +0000

    Updated Russian translation

 po/ChangeLog |   4 +
 po/ru.po     | 411 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 188 insertions(+), 227 deletions(-)

commit b2fd2c7d4e713ac5698802a28064801b1b0417de
Author: Matic Žgur <mr.zgur@gmail.com>
Date:   Tue Aug 22 11:22:50 2006 +0000

    Updated Slovenian translation.
    
    2006-08-22  Matic Žgur  <mr.zgur@gmail.com>
    
        * sl.po: Updated Slovenian translation.

 po/ChangeLog |   4 +
 po/sl.po     | 749 +++++++++++++++++++++++++----------------------------------
 2 files changed, 319 insertions(+), 434 deletions(-)

commit 55a7bb8a47d777440b07e1c323bb501e07132571
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Aug 21 22:13:51 2006 +0000

    Applied first two patches from bug 351521
    
    2006-08-21  Thomas Wood  <thos@gnome.org>
    
            * gnome-theme-manager.c: (queue_pixbuf_generation),
            (pixbuf_idle_func), (load_meta_themes): Applied first two patches from bug 351521

 capplets/theme-switcher/ChangeLog             |   5 ++
 capplets/theme-switcher/gnome-theme-manager.c | 123 +++++++++++++++-----------
 2 files changed, 74 insertions(+), 54 deletions(-)

commit 0630f59b94298028c8e0610f5752e9e275f3222c
Author: Rodney Dawes <dobey@novell.com>
Date:   Mon Aug 21 18:11:53 2006 +0000

    Revert previous leak fix from Kjartan Maraas as it seems to cause crashes
    
    2006-08-21  Rodney Dawes  <dobey@novell.com>
    
        * preferences.c (bg_preferences_load): Revert previous leak fix from
        Kjartan Maraas as it seems to cause crashes in nautilus
    
        see bug #352279

 libbackground/ChangeLog     |  7 +++++++
 libbackground/preferences.c | 11 ++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit d737308522f4017462aed5fa06e09135ddfa3513
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Aug 21 12:58:40 2006 +0000

    Don't leak gconf strings.
    
    2006-08-21  Kjartan Maraas  <kmaraas@gnome.org>
    
        * preferences.c: (bg_preferences_load): Don't leak gconf strings.

 libbackground/ChangeLog     |  4 ++++
 libbackground/preferences.c | 11 +++++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit d55831d57bc62c0bfb39f6cb2371f4726782a690
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Mon Aug 21 03:19:56 2006 +0000

    Updated Oriya Translation

 po/or.po | 3428 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3428 insertions(+)

commit f9696823a4853db60678ca6b5adbcb68552e59b9
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Mon Aug 21 03:19:34 2006 +0000

    Added Strings for Updated Oriya Translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 2779a6c321a3682dc18bfc38cba2c57a78ec6ba3
Author: Subhransu Behera <sbehera@src.gnome.org>
Date:   Mon Aug 21 03:05:14 2006 +0000

    Added Oriya to ALL_LINGUAS

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 66468c46a6bb651a7331ef6f3804da696b59c377
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Sun Aug 20 19:48:19 2006 +0000

    Updated translations

 po/ChangeLog |   4 +
 po/mr.po     | 600 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 244 insertions(+), 360 deletions(-)

commit 98454ec523ac893e44d1c6982f6fa4e46c95ce46
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Aug 20 06:50:51 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-08-20  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |   5 ++
 po/bg.po     | 148 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 77 insertions(+), 76 deletions(-)

commit 5d443a7390c97f0567fca23332a28ca6cf382f21
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Sat Aug 19 21:45:09 2006 +0000

    Updated Translations

 po/ChangeLog |   4 ++
 po/mr.po     | 143 +++++++++--------------------------------------------------
 2 files changed, 24 insertions(+), 123 deletions(-)

commit a853fff02c1cc7eb3053ee7ac7f90634c01dca89
Author: Rodney Dawes <dobey@novell.com>
Date:   Fri Aug 18 15:14:49 2006 +0000

    Use preferences-desktop-wallpaper as the icon name per the Icon Naming
    
    2006-08-18  Rodney Dawes  <dobey@novell.com>
    
        * background.desktop.in.in: Use preferences-desktop-wallpaper as the
        icon name per the Icon Naming Specification
        * gnome-background-properties.glade: Set the icon name for the window
        to be preferences-desktop-wallpaper as per the naming spec
        * gnome-wp-capplet.[ch]: Remove GtkIconTheme instance from structure
        (gnome_wp_icon_theme_changed): Don't need this method any longer
        (wallpaper_properties_init): Remove unused variables
        Don't need to get the icon_info to load a pixbuf and set an icon, from
        the theme any longer, as we can just specify the icon with one call
        Don't need the extra _ensure_style call here

 capplets/background/ChangeLog                      | 13 ++++++++
 capplets/background/background.desktop.in.in       |  2 +-
 .../background/gnome-background-properties.glade   |  1 +
 capplets/background/gnome-wp-capplet.c             | 36 +---------------------
 capplets/background/gnome-wp-capplet.h             |  1 -
 5 files changed, 16 insertions(+), 37 deletions(-)

commit 794206923644b94e6cd9a842669f9a0c6528b681
Author: Rodney Dawes <dobey@novell.com>
Date:   Fri Aug 18 14:53:38 2006 +0000

    Set the content area border to 0 in the parsed rc string Remove the
    
    2006-08-18  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Set the content area
        border to 0 in the parsed rc string
        Remove the set_border_width calls for the dialog's vbox and action area
    
        Fixes #332830

 capplets/background/ChangeLog          | 8 ++++++++
 capplets/background/gnome-wp-capplet.c | 3 +--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 925d55eb2d1f7a9fa7929a9d821977ae6c25c3f9
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri Aug 18 11:35:32 2006 +0000

    free 'resolution' string after using it, not before. Found by Kjartan
    
    2006-08-18  Rodrigo Moya <rodrigo@novell.com>
    
        * main.c (create_dialog): free 'resolution' string after using it,
        not before. Found by Kjartan Maraas  <kmaraas@gnome.org>.

 capplets/display/ChangeLog | 5 +++++
 capplets/display/main.c    | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 94d5b9fb1de2dedc9cbfb4941ea1f3e8bc3873a6
Author: Wouter Bolsterlee <uws+gnome@xs4all.nl>
Date:   Fri Aug 18 09:37:11 2006 +0000

    Translation updated by Wouter Bolsterlee.
    
    2006-08-18  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
    
        * nl.po: Translation updated by Wouter Bolsterlee.

 po/ChangeLog | 136 ++++++++++++++++++++++++++++++-----------------------------
 po/nl.po     |  51 +++++++++++-----------
 2 files changed, 96 insertions(+), 91 deletions(-)

commit 217dfda275fcdfd39f98bf177cef737f7a465eb2
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Aug 17 17:37:44 2006 +0000

    Modified patch from bug 351378. Fixes bug 351378 and bug 171634.
    
    2006-08-17  Thomas Wood  <thos@gnome.org>
    
        * capplets/common/theme-thumbnail.c: (fake_expose_widget),
        (hbox_foreach), (create_image): Modified patch from bug 351378.
        Fixes bug 351378 and bug 171634.

 capplets/common/ChangeLog         |  7 ++++
 capplets/common/theme-thumbnail.c | 81 ++++++++++++++++++++++++---------------
 2 files changed, 57 insertions(+), 31 deletions(-)

commit cd0a2d266ad7b2fda29ce42c5883e4caa2ab94f4
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   Thu Aug 17 14:26:52 2006 +0000

    Updated Japanese Translation.
    
    2006-08-17  Satoru SATOH <ss@gnome.gr.jp>
    
        * Updated Japanese Translation.

 po/ChangeLog |   4 +
 po/ja.po     | 241 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 129 insertions(+), 116 deletions(-)

commit f6691b026651f9faf220b64e338bede347036a1e
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Wed Aug 16 17:16:13 2006 +0000

    also display the default theme (though without a preview for technical
    
    2006-08-16  Sven Herzberg  <herzi@gnome-de.org>
    
            * gnome-mouse-properties.c: also display the default theme (though
        without a preview for technical reasons); fixes bug #322514

 capplets/mouse/ChangeLog                |  5 +++
 capplets/mouse/gnome-mouse-properties.c | 75 ++++++++++++++++++---------------
 2 files changed, 47 insertions(+), 33 deletions(-)

commit ce30ca4583ca5bc8121b2945e1cac06d8d7cf0e9
Author: Matic Žgur <mr.zgur@gmail.com>
Date:   Wed Aug 16 12:38:18 2006 +0000

    Updated Slovenian translation.
    
    2006-08-16  Matic Žgur  <mr.zgur@gmail.com>
    
        * sl.po: Updated Slovenian translation.

 po/ChangeLog |    4 +
 po/sl.po     | 2551 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 1293 insertions(+), 1262 deletions(-)

commit 18ed53207a24993ec5160fe103262195c7f7cd51
Author: Daniel Nylander <po@danielnylander.se>
Date:   Wed Aug 16 05:41:59 2006 +0000

    Updated Swedish translation.
    
    2006-08-16  Daniel Nylander <po@danielnylander.se>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 171 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 88 insertions(+), 87 deletions(-)

commit 020a10f2aa9ec4dabd97d22c8c51c3b80dfe3b8c
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Aug 16 01:55:47 2006 +0000

    Translation updated by Mate ORY.
    
    2006-08-16  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Translation updated by Mate ORY.

 po/ChangeLog |    4 +
 po/hu.po     | 1071 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 652 insertions(+), 423 deletions(-)

commit c95e551e0615f1db746f9c462dfea9019677af50
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Tue Aug 15 22:49:25 2006 +0000

    Updated Mongolian translation.

 po/ChangeLog |    4 +
 po/mn.po     | 2639 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1354 insertions(+), 1289 deletions(-)

commit 7603289787f988bf08ba2bdda7abdb4a035c8f49
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Tue Aug 15 04:23:38 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-08-15  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 318 +++++++++++++++++++----------------------------------------
 2 files changed, 103 insertions(+), 219 deletions(-)

commit 9489ae8f895913d7b42fecc4f18fabd185572f04
Author: Christophe Bliard <christophe.bliard@trux.info>
Date:   Mon Aug 14 22:50:37 2006 +0000

    Initial French translation.
    
    2006-08-15  Christophe Bliard  <christophe.bliard@trux.info>
    
            * fr/fr.po: Initial French translation.

 help/ChangeLog   |   4 ++
 help/Makefile.am |   2 +-
 help/fr/fr.po    | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 142 insertions(+), 1 deletion(-)

commit 29d2cae5a11e5b5769c77d0026fa8326920f7049
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Mon Aug 14 08:51:19 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 +
 po/vi.po     | 664 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 315 insertions(+), 353 deletions(-)

commit c39fbd367b8c5ed43f6d3cb6ccf638727ba3b3e2
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Aug 14 07:13:44 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 50 ++++++++++++++++++++++++--------------------------
 2 files changed, 28 insertions(+), 26 deletions(-)

commit 545804a3b47d26559bfe7b16c3ce5b3fd07529fd
Author: Maxim Dziumanenko <dziumanenko@gmail.com>
Date:   Mon Aug 14 06:51:55 2006 +0000

    Update Ukrainian translation.
    
    2006-08-14  Maxim Dziumanenko <dziumanenko@gmail.com>
    
        * Update Ukrainian translation.

 po/ChangeLog |    4 +
 po/uk.po     | 1040 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 607 insertions(+), 437 deletions(-)

commit d5bee426d52760d7f08365795948add670349d73
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Sun Aug 13 14:47:42 2006 +0000

    Updated translation

 po/ChangeLog |    4 +
 po/mr.po     | 3884 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3888 insertions(+)

commit 0627509bf1d2df1e490250b4c11cfb9dccdacf95
Author: Rahul Bhalerao <rahulb@src.gnome.org>
Date:   Sun Aug 13 14:43:27 2006 +0000

    Added entry fro mr.po

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7f34ceb8264e761cd50532a7543ef8ece25548ce
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Aug 12 11:32:57 2006 +0000

    Updated cinnamon-control-center zh_CN translation.

 po/ChangeLog |   4 +
 po/zh_CN.po  | 455 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 212 insertions(+), 247 deletions(-)

commit 1e80298c211dd7b89e95dcbec35cc4be33ff9ee0
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Aug 12 10:57:19 2006 +0000

    Updated Korean translation.
    
    2006-08-12  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 198 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 99 insertions(+), 103 deletions(-)

commit a20155d9dc8f708db774583630a0888e51b7b0f5
Author: Ani Peter <anipeter@src.gnome.org>
Date:   Fri Aug 11 12:11:38 2006 +0000

    Updated Malayalam translation

 po/ChangeLog |    4 +
 po/ml.po     | 1978 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1047 insertions(+), 935 deletions(-)

commit 6ec09c26a04e8ae4b815c011cf80143756ac59bb
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Fri Aug 11 09:51:12 2006 +0000

    Updated German translation.
    
    2006-08-11  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 166 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 87 insertions(+), 83 deletions(-)

commit 42691c98b19276cea20c144ac30b008fad3a55f8
Author: Christian Persch <chpe@gnome.org>
Date:   Thu Aug 10 11:51:46 2006 +0000

    Fixes #350556
    
    2006-08-10  Christian Persch  <chpe@gnome.org>
    
        Fixes #350556
    
        * sound-properties-capplet.c (add_selected_device): fixed mem leak.

 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 1 +
 2 files changed, 7 insertions(+)

commit 05e9428490cd8bd144eb5ef2bb450ab7127e65db
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Wed Aug 9 22:53:49 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |   8 ++-
 po/ca.po     | 199 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 106 insertions(+), 101 deletions(-)

commit a388e30461773bbbf23d1052fdb103248259f5e2
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Wed Aug 9 19:59:58 2006 +0000

    Updated Dzongkha translation

 po/ChangeLog |   5 ++
 po/dz.po     | 180 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 95 insertions(+), 90 deletions(-)

commit 2c10fd1ab64311c7954a4fe3c908fa9a10ea975a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 9 13:36:01 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-08-09  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |  4 ++++
 po/nb.po     | 54 ++++++++++++++++++++++--------------------------------
 2 files changed, 26 insertions(+), 32 deletions(-)

commit 85f81a43ed84d613a00d9e50fbe15e2176e13e95
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Aug 9 07:04:46 2006 +0000

    Updated Thai translation.
    
    2006-08-09  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 77 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 42 insertions(+), 39 deletions(-)

commit 8b23cc017717c8625b86b11383a10a669e72c03e
Author: Wouter Bolsterlee <uws+gnome@xs4all.nl>
Date:   Tue Aug 8 20:57:24 2006 +0000

    Translation updated by Wouter Bolsterlee.
    
    2006-08-08  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
    
        * nl.po: Translation updated by Wouter Bolsterlee.

 po/ChangeLog |  4 +++
 po/nl.po     | 81 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 49 insertions(+), 36 deletions(-)

commit 346f8feb2425ea50b101a7637fe3301a104f22cf
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Tue Aug 8 05:02:50 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 54 +++++++++++++++++++++++-------------------------------
 2 files changed, 27 insertions(+), 31 deletions(-)

commit dd92cbbc17574ea8543391d7aad3fc07f28fcd1a
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Tue Aug 8 00:34:34 2006 +0000

    2006-08-08 Jovan Naumovski <jovanna@cvs.gnome.org> * mk.po: Updated Macedonian Translation

 po/ChangeLog |  4 ++++
 po/mk.po     | 52 ++++++++++++++++++++++++----------------------------
 2 files changed, 28 insertions(+), 28 deletions(-)

commit 3b8de50fc2f2765ed560edb71580ee5b2c918f4c
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Aug 7 22:44:21 2006 +0000

    updated to 2.15.92
    
    2006-08-08  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: updated to 2.15.92

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ca25792b441e7f8bd0eeda24c73eadfed69bd15c
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Mon Aug 7 16:34:14 2006 +0000

    Updated Spanish translation.
    
    2006-08-07  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 58 +++++++++++++++++++++++++---------------------------------
 2 files changed, 29 insertions(+), 33 deletions(-)

commit 797dbc6d7084a6800605f747bb65927a663bb4e8
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   Mon Aug 7 13:48:20 2006 +0000

    Updated Basque translation.
    
    2006-08-07  Inaki Larranaga  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.

 po/ChangeLog |   4 +
 po/eu.po     | 967 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 545 insertions(+), 426 deletions(-)

commit a23d28882765f59674367286b93706d734d6b413
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Aug 7 09:55:14 2006 +0000

    More NEWS

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit 8895b8543128a7aa310bc490fd4aab259b39ac6e
Author: Willie Walker <william.walker@sun.com>
Date:   Mon Aug 7 09:52:38 2006 +0000

    Fixes #348630
    
    2006-08-07  Willie Walker <william.walker@sun.com>
    
        Fixes #348630
    
        * at-startup-session.c (at_startup_state_init, at_startup_state_update):
        look for orca binary in path.
    
        * at-startup-session.h: added new fields to enabled union.
    
        * main.c (init_startup_state): added information about orca.

 capplets/accessibility/at-properties/ChangeLog     | 11 ++++++
 .../at-properties/at-startup-session.c             | 42 +++++++++++++++++-----
 .../at-properties/at-startup-session.h             |  2 ++
 capplets/accessibility/at-properties/main.c        |  4 +--
 4 files changed, 48 insertions(+), 11 deletions(-)

commit ca9283cd63645f677d41d0b557730f7f6952a13b
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Aug 7 09:28:44 2006 +0000

    More NEWS

 NEWS | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 061f800c687acb3d856be4f34a975cf7576d40c9
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Aug 7 09:28:03 2006 +0000

    Fixes #348847
    
    2006-08-07  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #348847
    
        * keyboard.desktop.in.in: fixed GNOME Bugzilla strings.

 capplets/keyboard/ChangeLog              | 6 ++++++
 capplets/keyboard/keyboard.desktop.in.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 331dfdbc69507a156932dc2b74a4db8770494d3e
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Aug 7 09:25:38 2006 +0000

    Fixed date

 capplets/accessibility/at-properties/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5585cec68227ffe50632c04f9cd3941155cc7bcb
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Aug 7 09:24:35 2006 +0000

    Fixes #348844
    
    2006-08-07  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #348844
    
        * gnome-ui-properties.desktop.in.in: fixed GNOME Bugzilla strings.

 capplets/ui-properties/ChangeLog                         | 6 ++++++
 capplets/ui-properties/gnome-ui-properties.desktop.in.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit af682d5234a5fa2f96b7fce9a8f4f38770ab3552
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Aug 7 09:20:27 2006 +0000

    Fixes #348838
    
    2006-08-07  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #348838
    
        * display-properties.desktop.in.in: Fixed GNOME Bugzilla fields.

 capplets/display/ChangeLog                        | 6 ++++++
 capplets/display/display-properties.desktop.in.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit a2bd3d20f06485a014f99ae86dae8ac10d8bcb74
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Aug 7 09:15:00 2006 +0000

    Fixes #348832
    
    2006-07-08  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #348832
    
        * at-properties,desktop.in.in: Use correct Bugzilla component.

 capplets/accessibility/at-properties/ChangeLog                   | 6 ++++++
 capplets/accessibility/at-properties/at-properties.desktop.in.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 55849b98fc07ee7c1b7fb203526d913ffbc33887
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Aug 7 09:05:52 2006 +0000

    Updated translations

 NEWS | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 4aa52441c50e034fa6204b35e1a0fa8e572c4a06
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Aug 7 08:50:45 2006 +0000

    Updated Czech translation.
    
    2006-08-07  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 180 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 84 insertions(+), 100 deletions(-)

commit f3f59ec61bd9b3307f552f5b85991004b3d01c32
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Aug 6 22:48:16 2006 +0000

    updated for 2.15.91
    
    2006-08-07  Sebastien Bacher  <seb128@debian.org>
    
        * NEWS: updated for 2.15.91

 ChangeLog |  4 ++++
 NEWS      | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

commit 4b54253c4af591e6a9c60155d9a54a3bcb04f55c
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Aug 6 22:45:09 2006 +0000

    fix build with the new libebook API (Closes: #348821)

 ChangeLog                          |  4 ++++
 capplets/about-me/ChangeLog        |  5 +++++
 capplets/about-me/gnome-about-me.c | 11 ++++++-----
 configure.in                       |  4 ++--
 4 files changed, 17 insertions(+), 7 deletions(-)

commit 598b33148955abf561046b719fbe063cc4409b8d
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Aug 6 22:36:00 2006 +0000

    fix build with gcc-2.95, patch by Jens Granseuer <jensgr@gmx.net> (Closes:
    
    2006-08-07  Sebastien Bacher  <seb128@debian.org>
    
        * main.c: (create_rotate_menu): fix build with gcc-2.95,
          patch by Jens Granseuer <jensgr@gmx.net> (Closes: #347611)

 capplets/display/ChangeLog | 5 +++++
 capplets/display/main.c    | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 301ba5106213581a536cec39cc75a42c25b03a27
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Aug 6 22:25:51 2006 +0000

    set "label for" and "labelled by" properties for the capplet, patch by
    
    2006-08-07  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-network-preferences.glade:
        set "label for" and "labelled by" properties for the capplet,
        patch by Willie Walker <william.walker@sun.com> (Closes: #342121)

 capplets/network/ChangeLog                       |  6 ++++++
 capplets/network/gnome-network-preferences.glade | 26 ++++++++++++++++++++++++
 2 files changed, 32 insertions(+)

commit 79f761abe5164c7310695a9d2e5696632a0dae2e
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Sun Aug 6 16:51:17 2006 +0000

    Fixed two defects

 po/vi.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7d1ad7fe3766fab2d26744d81a0cdd9e2a6e71fa
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Sat Aug 5 14:08:08 2006 +0000

    Fixed "deactivate"

 po/vi.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0188783e1d0898f4e7e28470574ab2d4a5e61e60
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Aug 5 11:12:32 2006 +0000

    Updated Traditional Chinese translation(Hong Kong). Updated Traditional
    
    2006-08-05  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
            * zh_HK.po: Updated Traditional Chinese translation(Hong Kong).
            * zh_TW.po: Updated Traditional Chinese translation(Taiwan).

 po/ChangeLog |   5 +
 po/zh_HK.po  | 781 ++++++++++++++++++++++++++++++++---------------------------
 po/zh_TW.po  | 781 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 863 insertions(+), 704 deletions(-)

commit a96eacec5de5f56c01cdbd3e82dddee84ea02ff1
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Aug 4 05:06:17 2006 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2006-08-04  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 +
 po/bg.po     | 807 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 422 insertions(+), 390 deletions(-)

commit 468fd100899103fcfacb279694a17bdb2b7cbcf2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Aug 3 12:53:54 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-08-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |   4 +
 po/nb.po     | 289 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 138 insertions(+), 155 deletions(-)

commit 5cfeb27ac8e75a54019f0869f34a883b72270bdf
Author: Klaus Pedersen <klaus.kruse.pedersen@mail.tele.dk>
Date:   Wed Aug 2 11:10:16 2006 +0000

    Fixes #349254
    
    2006-08-02  Klaus Pedersen <klaus.kruse.pedersen@mail.tele.dk>
    
        Fixes #349254
    
        * sound-properties-capplet.c: removed unneeded header file.

 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a28ae164141f708edabce1e33a89296576fc5fea
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Tue Aug 1 15:15:01 2006 +0000

    2006-08-01 Jovan Naumovski <jovanna@cvs.gnome.org> * mk.po: Updated/Fixed Macedonian Translation

 po/ChangeLog |   4 ++
 po/mk.po     | 167 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 83 insertions(+), 88 deletions(-)

commit 13f071db6b121fe0e66cc5dd8772727eaa004566
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Jul 31 16:40:37 2006 +0000

    Translation updated by Tino Meinen.
    
    2006-07-31  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.

 po/ChangeLog |    4 +
 po/nl.po     | 1041 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 620 insertions(+), 425 deletions(-)

commit 4b8547fa560066accf95414adaa05b8fb8a9cd0a
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Jul 30 19:23:30 2006 +0000

    Updated French translation.

 po/ChangeLog |   4 ++
 po/fr.po     | 194 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 97 insertions(+), 101 deletions(-)

commit c6fa4673cc89ef733bc7f536038c74485708b74b
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Sun Jul 30 11:04:08 2006 +0000

    Updated Lithuanian translation.
    
    2006-07-30  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 998 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 596 insertions(+), 406 deletions(-)

commit d3bdf747028764c3d46c0dff5a247f0bea2a5505
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Jul 29 05:46:16 2006 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 141 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 75 insertions(+), 70 deletions(-)

commit 70b8d8721caa6b5134af8d0f4c9f6ea1fdb7e8a2
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Jul 28 10:16:20 2006 +0000

    Updated Thai translation.
    
    2006-07-28  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 133 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 71 insertions(+), 66 deletions(-)

commit 7740547ef1d09492baaefb20e054cb19dfca162a
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Fri Jul 28 04:26:57 2006 +0000

    Updated Translation

 po/ChangeLog |  4 +++
 po/gu.po     | 87 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 46 insertions(+), 45 deletions(-)

commit 9aec1a098646fa13d22d720bce8cdb1c8b98ba05
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Thu Jul 27 17:50:40 2006 +0000

    Updated Spanish translation.
    
    2006-07-27  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 162 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 99 insertions(+), 67 deletions(-)

commit 3e77c9e0634ec4867936bf73914144b6d1881477
Author: Rob Bradford <robster@debian.org>
Date:   Thu Jul 27 13:21:27 2006 +0000

    Fixes #346041
    
    2006-07-27  Rob Bradford <robster@debian.org>
    
        Fixes #346041
    
        * gnome-theme-manager.[ch]:
        * theme-properties.glade: added support for locking down theme.

 capplets/theme-switcher/ChangeLog              |  7 +++
 capplets/theme-switcher/gnome-theme-manager.c  | 27 +++++++++++-
 capplets/theme-switcher/gnome-theme-manager.h  |  5 ++-
 capplets/theme-switcher/theme-properties.glade | 61 +++++++++++++++++++++++++-
 4 files changed, 95 insertions(+), 5 deletions(-)

commit 66a2288fc4c601083f824e667aa952c93f22fc17
Author: Gary Coady <gary@lyranthe.org>
Date:   Thu Jul 27 11:42:11 2006 +0000

    Fixes #333576
    
    2006-07-27  Gary Coady <gary@lyranthe.org>
    
        Fixes #333576
    
        * gnome-keybinding-properties.c (accel_edited_callback): don't assume
        defines are contiguous.

 capplets/keybindings/ChangeLog                     |  7 +++++++
 capplets/keybindings/gnome-keybinding-properties.c | 12 +++++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)

commit e6454b017a31e39a1b2fcfd267eed26ba49c716e
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Wed Jul 26 13:42:36 2006 +0000

    Updated Spanish translation.
    
    2006-07-26  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog   |   5 ++
 po/POTFILES.in |   1 -
 po/es.po       | 254 ++++++++++++++++++---------------------------------------
 3 files changed, 85 insertions(+), 175 deletions(-)

commit 77dcdf87601ef2b103c036cd6460d87805cd100c
Author: Ali Akcaagac <aliakc@web.de>
Date:   Wed Jul 26 13:25:04 2006 +0000

    Fixes #348755
    
    2006-07-26  Ali Akcaagac <aliakc@web.de>
    
        Fixes #348755
    
        * sound-properties-capplet.c: only include libhal if HAL is enabled.

 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 2 ++
 2 files changed, 8 insertions(+)

commit 9ab95c00c5d6276c579768001aa566526c5c16a3
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Jul 26 08:29:17 2006 +0000

    kill
    
    2006-07-25  Vincent Untz <vuntz@gnome.org>
    
        * eggtrayicon.[ch]: kill

 typing-break/ChangeLog     |   4 +
 typing-break/eggtrayicon.c | 513 ---------------------------------------------
 typing-break/eggtrayicon.h |  80 -------
 3 files changed, 4 insertions(+), 593 deletions(-)

commit 9213c2f9e415618e080d90701679d2233b901931
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Jul 26 05:07:49 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 45 +++++++++++++++++++++------------------------
 2 files changed, 25 insertions(+), 24 deletions(-)

commit 9db2c1f93361cd0688f006130e6ab82d03f17433
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Jul 25 19:38:11 2006 +0000

    Fixes #348640
    
    2006-07-25  Vincent Untz <vuntz@gnome.org>
    
        Fixes #348640
    
        * drwrigth.c (popup_about_cb): use GtkAboutDialog, not GtkDialog.

 typing-break/ChangeLog  |  6 +++++
 typing-break/drwright.c | 71 ++++++++++++++++---------------------------------
 2 files changed, 29 insertions(+), 48 deletions(-)

commit 1c194b74dcf91a0a0c3e4688fd3f8c9082227c64
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Jul 25 19:33:48 2006 +0000

    Fixes #348639
    
    2006-07-25  Vincent Untz <vuntz@gnome.org>
    
        Fixes #348639
    
        * Makefile.am:
        * drwrigth.c: use GtkStatusIcon instead of libegg.
    
        * eggtrayicon.c: removed.

 typing-break/ChangeLog   |   9 +++
 typing-break/Makefile.am |   4 +-
 typing-break/drwright.c  | 168 +++++++----------------------------------------
 3 files changed, 33 insertions(+), 148 deletions(-)

commit 189a2f4f7ef4fb014ce49f840707ea505856bb0e
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jul 25 09:39:35 2006 +0000

    Don't attempt to load window manager theme name from an unknown window
    
    2006-07-25  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (window_theme_selection_changed),
        (gnome_theme_details_update_from_gconf): Don't attempt to load window
        manager theme name from an unknown window manager (fixes bug 333276 -
        gnome-theme-manager crashes with xgl/compiz)

 capplets/theme-switcher/ChangeLog             | 7 +++++++
 capplets/theme-switcher/gnome-theme-details.c | 8 ++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 4a2619c833d18e124f35b8c03c48da0ff14fcf2c
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Jul 25 07:51:30 2006 +0000

    Updated Thai translation.
    
    2006-07-25  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 82c6996c1f65fbf6b231ba083edb66f0718d6d87
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Tue Jul 25 05:24:22 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 15 ++++++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)

commit f73ca8ffa088f06d724f7afaa66feb1d44b14d54
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Tue Jul 25 04:21:29 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-07-25  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 985 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 544 insertions(+), 445 deletions(-)

commit 64b9137d9f99c9519fd60414dffedc808fec4e54
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jul 24 22:38:22 2006 +0000

    updated to 2.15.91
    
    2006-07-25  Sebastien Bacher  <seb128@debian.org>
    
        * NEWS:
        * configure.in: updated to 2.15.91

 ChangeLog    | 5 +++++
 NEWS         | 3 +++
 configure.in | 2 +-
 3 files changed, 9 insertions(+), 1 deletion(-)

commit a07167977b68d17e82ba7eaaa88db7ac87c5b4c6
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Jul 24 21:59:49 2006 +0000

    translations update

 NEWS | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 0ec40484ba86457606cccae9283cab1388f5df30
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jul 24 21:33:52 2006 +0000

    update for GNOME 2.15.90
    
    2006-07-24  Sebastien Bacher  <seb128@debian.org>
    
        * NEWS:
        * configure.in: update for GNOME 2.15.90

 ChangeLog    | 5 +++++
 NEWS         | 8 ++++++++
 configure.in | 2 +-
 3 files changed, 14 insertions(+), 1 deletion(-)

commit c0f986e535bc04fcc0148157d0b8a63907b00f8e
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Mon Jul 24 17:47:41 2006 +0000

    Updated Spanish translation.
    
    2006-07-24  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit bffc18a579804d44c6eb627a6657326da06f970f
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Jul 24 13:27:22 2006 +0000

    Updated Czech translation.
    
    2006-07-24  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 56 ++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 38 insertions(+), 22 deletions(-)

commit c264700e9be6b8e6afe2521bc07b5e75dd7336a8
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Mon Jul 24 12:45:56 2006 +0000

    Updated German translation.
    
    2006-07-24  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit df1378de7be1adb75c7cbd00a5ebed71d5e1308f
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Mon Jul 24 12:38:02 2006 +0000

    use ngettext() correctly
    
    2006-07-24  Sven Herzberg  <herzi@gnome-de.org>
    
            * gnome-mouse-properties.c: use ngettext() correctly

 capplets/mouse/ChangeLog                |  4 ++++
 capplets/mouse/gnome-mouse-properties.c | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit c5b89b3fe1733b7c29a481f6fd1a145e1b2e5c32
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Mon Jul 24 11:52:35 2006 +0000

    fix the non-xcursor case for solaris; closes: #319125 (based upon patch
    
    2006-07-24  Sven Herzberg  <herzi@gnome-de.org>
    
            * gnome-mouse-properties.c: fix the non-xcursor case for solaris;
        closes: #319125 (based upon patch from Glynn Foster)

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit c7a822c879925f17f96e86993e554da15cb1aef8
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Jul 23 14:49:38 2006 +0000

    patch by Kevin Bauder <kevin.bauder@gmail.com>, "Replaced deprecated
    
    2006-07-23  Sebastien Bacher  <seb128@debian.org>
    
        * gconf-property-editor.c: (peditor_color_value_changed),
        (peditor_color_widget_changed), (gconf_peditor_new_color):
        patch by Kevin Bauder <kevin.bauder@gmail.com>,
        "Replaced deprecated GnomeColorPicker with GtkColorButton."
        (Closes: #171680)

 NEWS                                    |  2 ++
 capplets/common/ChangeLog               |  8 ++++++++
 capplets/common/gconf-property-editor.c | 24 ++++++++++++------------
 3 files changed, 22 insertions(+), 12 deletions(-)

commit 5463ac90eb2c853de0d2de0739b6b7ae23cf0958
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Jul 23 11:27:43 2006 +0000

    Updated French translation.

 po/ChangeLog |   5 +
 po/fr.po     | 425 ++++++++++++++++++++++-------------------------------------
 2 files changed, 162 insertions(+), 268 deletions(-)

commit 0e5c98c23fa35c790ee6edaa4a0ad5389ec1eac8
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jul 23 11:09:27 2006 +0000

    list some of the changes for 2.15.90

 NEWS | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 88e52ddfad60a60657d33dfe874d663b42de1cc6
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jul 23 10:52:01 2006 +0000

    don't use the Application category for the .desktops, use the HardwareSettings
    one for some, patch by Vincent Fretin <vincent.fretin@gmail.com>
    (Closes: #344321)

 capplets/about-me/ChangeLog                                         | 5 +++++
 capplets/about-me/gnome-about-me.desktop.in.in                      | 2 +-
 capplets/accessibility/keyboard/ChangeLog                           | 6 ++++++
 .../accessibility/keyboard/accessibility-keyboard.desktop.in.in     | 2 +-
 capplets/default-applications/ChangeLog                             | 6 ++++++
 capplets/default-applications/default-applications.desktop.in.in    | 2 +-
 capplets/keybindings/ChangeLog                                      | 5 +++++
 capplets/keybindings/keybinding.desktop.in.in                       | 2 +-
 capplets/keyboard/ChangeLog                                         | 6 ++++++
 capplets/keyboard/keyboard.desktop.in.in                            | 2 +-
 capplets/mouse/ChangeLog                                            | 6 ++++++
 capplets/mouse/gnome-settings-mouse.desktop.in.in                   | 2 +-
 capplets/network/ChangeLog                                          | 6 ++++++
 capplets/network/gnome-network-preferences.desktop.in.in            | 2 +-
 capplets/sound/ChangeLog                                            | 6 ++++++
 capplets/sound/gnome-settings-sound.desktop.in.in                   | 2 +-
 capplets/theme-switcher/ChangeLog                                   | 6 ++++++
 capplets/theme-switcher/gtk-theme-selector.desktop.in.in            | 2 +-
 capplets/ui-properties/ChangeLog                                    | 6 ++++++
 capplets/ui-properties/gnome-ui-properties.desktop.in.in            | 2 +-
 capplets/windows/ChangeLog                                          | 5 +++++
 capplets/windows/window-properties.desktop.in.in                    | 2 +-
 control-center/ChangeLog                                            | 5 +++++
 control-center/gnomecc.desktop.in.in                                | 2 +-
 24 files changed, 80 insertions(+), 12 deletions(-)

commit 27888fc1da061ca4133b8423787a742ee1769bde
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Sun Jul 23 10:34:32 2006 +0000

    Updated German translation.
    
    2006-07-23  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 949 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 570 insertions(+), 383 deletions(-)

commit f2fbb6173b9c4e3e77eeb6f0adc129cc5d5ce5ce
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jul 23 09:39:51 2006 +0000

    add encoding key, patch by Vincent Fretin <vincent.fretin@gmail.com>
    
    add encoding key,
        patch by Vincent Fretin <vincent.fretin@gmail.com> (Closes: #338593)

 vfs-methods/fontilus/ChangeLog                | 5 +++++
 vfs-methods/fontilus/font-method.directory.in | 3 ++-
 vfs-methods/themus/ChangeLog                  | 5 +++++
 vfs-methods/themus/theme-method.directory.in  | 3 ++-
 4 files changed, 14 insertions(+), 2 deletions(-)

commit b03dc70159e23d0dbad9c6d22a613c4cfeebd4e1
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Sun Jul 23 01:01:29 2006 +0000

    Updated Macedonian Translation <arangela@cvs.gnome.org>

 po/mk.po | 174 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 78 insertions(+), 96 deletions(-)

commit b19d47b38b4747881af1f34ccc91a0f1b66ba583
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Jul 22 14:44:12 2006 +0000

    Updated Korean translation.
    
    2006-07-22  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |    4 +
 po/ko.po     | 1025 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 622 insertions(+), 407 deletions(-)

commit 84c9b43111883d1c2401fdf83d7cf52b3ff881c5
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   Sat Jul 22 09:22:45 2006 +0000

    Updated Japanese translation.
    
    2006-07-22  Satoru SATOH <ss@gnome.gr.jp>
    
        * Updated Japanese translation.

 po/ChangeLog |   4 +
 po/ja.po     | 951 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 568 insertions(+), 387 deletions(-)

commit cda77d37bb816bd86990a575d2643e4fa3f0706d
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Fri Jul 21 13:45:32 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |  10 +-
 po/ca.po     | 991 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 591 insertions(+), 410 deletions(-)

commit 2a32c1541f4e11b6cde82a1264408cf5a93c4cb4
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Thu Jul 20 11:43:45 2006 +0000

    Updated Thai translation.
    
    2006-07-20  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 26 ++++++++++++++------------
 2 files changed, 18 insertions(+), 12 deletions(-)

commit b2257c850e60d0744c1f8250f4c8e7b7a2e195ee
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Thu Jul 20 11:03:26 2006 +0000

    Updated Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 974 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 549 insertions(+), 429 deletions(-)

commit bdcbdd96a7c6a27cfcb8a81fa770945e6b714773
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Tue Jul 18 14:56:57 2006 +0000

    Updated Dzongkha translation

 po/ChangeLog |   5 +
 po/dz.po     | 851 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 571 insertions(+), 285 deletions(-)

commit efa9a6aca375c6220029b423dc62b8b27d91417d
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Tue Jul 18 10:55:39 2006 +0000

    Updated Czech translation.
    
    2006-07-18  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.

 po/ChangeLog |  10 ++--
 po/cs.po     | 161 +++++++++++++++++++++++++----------------------------------
 2 files changed, 75 insertions(+), 96 deletions(-)

commit 330ff79e4683c0f9478447b16f4e817e0689dadc
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Jul 18 08:19:15 2006 +0000

    Fixed "Hãy _thư giãn"

 po/vi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cd9bdb231a210244e4b87a8f04611fb90f5b877e
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Jul 17 06:11:56 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 25 +++++++++++++------------
 2 files changed, 17 insertions(+), 12 deletions(-)

commit ce84631346acf68a6d537a7a959e2dec577d2955
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Jul 17 04:44:53 2006 +0000

    Updated Translation

 po/ChangeLog |   4 ++
 po/gu.po     | 155 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 71 insertions(+), 88 deletions(-)

commit b87c05cb01539ee6b1a94203a607cba9f35d366c
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Sun Jul 16 18:25:24 2006 +0000

    Added Spanish translation.
    
    2006-07-16  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Added Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 26 ++++++++++++++------------
 2 files changed, 18 insertions(+), 12 deletions(-)

commit 9f57a0e71e6462b453f18cbb4bf9153e42b641ac
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Jul 16 15:17:46 2006 +0000

    Updated Swedish translation.
    
    2006-07-16  Daniel Nylander  <po@danielnylander.se>
    
            * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 183 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 94 insertions(+), 93 deletions(-)

commit dfc458487c7c6483b2840773c0c389168a8c0881
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Jul 14 16:10:41 2006 +0000

    Made the installation message dialog more HIG compliant, as per comments
    
    2006-07-14  Thomas Wood  <thos@gnome.org>
    
            * gnome-theme-installer.c:
            (transfer_done_cb): Made the installation message dialog more HIG
            compliant, as per comments from bug 167045. Also reinstated the fix
            for bug 316800.
            (gnome_theme_installer_run): Remove invalid, and also duplicate, check
            for the tar utility.

 capplets/theme-switcher/ChangeLog               |  9 +++++++++
 capplets/theme-switcher/gnome-theme-installer.c | 21 ++++-----------------
 2 files changed, 13 insertions(+), 17 deletions(-)

commit 5d837272ab8c93849f806966e480b260b48f1678
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Fri Jul 14 10:36:12 2006 +0000

    Added Spanish translation.
    
    2006-07-14  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Added Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 165 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 92 insertions(+), 77 deletions(-)

commit df530793ad671875c850e55ef5098b58cf11db74
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Jul 14 04:59:43 2006 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 178 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 95 insertions(+), 87 deletions(-)

commit 1e0fc21741d5f1720ab2092540b9268740c16dda
Author: Ahmad Riza H Nst <rizahnst@eriagempita.co.id>
Date:   Thu Jul 13 10:04:40 2006 +0000

    Updated.
    
    2006-07-13  Ahmad Riza H Nst  <rizahnst@eriagempita.co.id>
    
            * id.po: Updated.

 po/ChangeLog |    4 +
 po/id.po     | 1937 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 1171 insertions(+), 770 deletions(-)

commit b44ca42e6c486ec5a9fed4b8f778256c54bac5ac
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Thu Jul 13 02:39:33 2006 +0000

    Fixed "Work fax" and "About me"

 po/vi.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 623f540f74472edfea77d37858a6173a048905be
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Jul 12 10:44:45 2006 +0000

    Updated Thai translation.
    
    2006-07-12  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 174 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 92 insertions(+), 86 deletions(-)

commit 0baf196a6a694643699e00df6afcbf20c5c820f4
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jul 11 16:24:17 2006 +0000

    fix distclean build target
    
    2006-07-11  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: fix distclean build target

 gnome-settings-daemon/ChangeLog   | 4 ++++
 gnome-settings-daemon/Makefile.am | 2 +-
 vfs-methods/themus/ChangeLog      | 4 ++++
 vfs-methods/themus/Makefile.am    | 2 +-
 4 files changed, 10 insertions(+), 2 deletions(-)

commit 806edbd6861d87d9dfdf9e689e323cfcc6c07336
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jul 11 16:12:38 2006 +0000

    clean variables not used
    
    2006-07-11  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: clean variables not used

 gnome-settings-daemon/ChangeLog   |  4 ++++
 gnome-settings-daemon/Makefile.am | 11 +++--------
 2 files changed, 7 insertions(+), 8 deletions(-)

commit 1b37d202008463fd04f97a658b141d942b391d23
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jul 11 15:50:59 2006 +0000

    don't list libgswitchit/gswitchit_config.c
    
    2006-07-11  Sebastien Bacher  <seb128@debian.org>
    
        * POTFILES.in: don't list libgswitchit/gswitchit_config.c

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 8aa76c162a3bcfcda45a449330d37c23f3cb9361
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Tue Jul 11 14:34:26 2006 +0000

    Updated NEWS

 NEWS         | 45 +++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 2 files changed, 46 insertions(+), 1 deletion(-)

commit 53c1815d535536bcdbc249512c4a04aa538c269f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jul 8 22:41:15 2006 +0000

    changing the model choser button, closing #335833

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 41a9e5c5e6148d15471fdc8f064f1864aa4ce7d1
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jul 8 20:35:16 2006 +0000

    minor change in libgswitchit api

 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 82f0f0f34132738ffbbe1de01594700d4a2d003d
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Fri Jul 7 15:10:25 2006 +0000

    added rotation support; Closes: #324125
    
    2006-07-07  Sven Herzberg  <herzi@gnome-de.org>
    
            * capplets/display/main.c: added rotation support;
        Closes: #324125

 ChangeLog               |   5 +++
 capplets/display/main.c | 108 ++++++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 106 insertions(+), 7 deletions(-)

commit 4a5454c50143dca4c56442165bdc65d4b0a1a4b6
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Jul 6 20:09:47 2006 +0000

    typo

 capplets/keyboard/gnome-keyboard-properties-xkb.h   | 2 +-
 capplets/keyboard/gnome-keyboard-properties-xkbmc.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit da40a9f294aea21c025a29b9fb1dae01fee475a1
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Jul 6 19:45:13 2006 +0000

    Fixing the build process

 capplets/keyboard/ChangeLog                        |   4 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   2 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |   2 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     |   2 +-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |   2 +-
 gnome-settings-daemon/ChangeLog                    |   4 +
 gnome-settings-daemon/gnome-settings-daemon.c      |   3 +
 gnome-settings-daemon/gnome-settings-daemon.h      |   5 +
 gnome-settings-daemon/gnome-settings-dbus.c        | 139 ++++-----------------
 .../gnome-settings-keyboard-xkb.c                  |   3 +-
 gnome-settings-daemon/gsd-infos.xml                |  10 --
 11 files changed, 44 insertions(+), 132 deletions(-)

commit 61e73528ac0dc922e8d7c34e7d1f87d431638522
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Thu Jul 6 14:23:41 2006 +0000

    replaced GtkOptionMenu by GtkComboBox; Closes: #338468
    
    2006-07-06  Sven Herzberg  <herzi@gnome-de.org>
    
            * capplets/display/main.c: replaced GtkOptionMenu by GtkComboBox;
            Closes: #338468

 ChangeLog               |   5 ++
 capplets/display/main.c | 137 ++++++++++++++++++++++++++----------------------
 2 files changed, 79 insertions(+), 63 deletions(-)

commit c9859c3334599a148e9258328609516c507dc1cb
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 5 20:53:42 2006 +0000

    Added missing DBUS libs

 capplets/common/ChangeLog   | 4 ++++
 capplets/common/Makefile.am | 1 +
 2 files changed, 5 insertions(+)

commit c4bd93198a070c7534c3af926dabd02117555b1c
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Jul 3 14:39:18 2006 +0000

    Added entry for addition of  bengali India (bn_IN) translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 8f9cc1fd9a2387505b3b4e15259121d74c4349ac
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Jul 3 14:38:58 2006 +0000

    Added Entry for Bengali India (bn_IN) addition to ALL_LINGUAS in configure.in

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 394da34a5f308cf5ba5ba527b6f5312d06ea8e4a
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Jul 3 14:38:45 2006 +0000

    Added Bengali India (bn_IN) to ALL_LINGUAS

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 764c0968bb5d31e716543577378897b977aea94d
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Jul 3 14:38:06 2006 +0000

    Added Bengali India Translation

 po/bn_IN.po | 3881 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3881 insertions(+)

commit 994f4b57d0cec06569ebcf6a76659817e2b16fc1
Author: Benoît Dejean <bdejean@src.gnome.org>
Date:   Sun Jul 2 21:42:20 2006 +0000

    Updated French translation.
    
    * fr.po: Updated French translation.

 po/ChangeLog |    4 +
 po/fr.po     | 1723 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1002 insertions(+), 725 deletions(-)

commit d7ce3edd2931b610735c78f625feb02b91386b64
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Jul 1 09:37:49 2006 +0000

    Updated Finnish translation

 po/ChangeLog |   4 +
 po/fi.po     | 873 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 528 insertions(+), 349 deletions(-)

commit f2b429112db33b2903028226b8d643b00c790f39
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Thu Jun 29 20:35:59 2006 +0000

    Updated Russian translation.
    
    2006-06-30  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
        * ru.po: Updated Russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 860 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 497 insertions(+), 367 deletions(-)

commit 6cdf83f657e2b123fa453568770182f7bdc02bab
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Thu Jun 29 07:06:41 2006 +0000

    Updated Translation

 po/ChangeLog |    4 +
 po/hi.po     | 1784 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1053 insertions(+), 735 deletions(-)

commit 88c450a7806c9ca42148bbdbb31736160f3ae753
Author: Felix I <ifelix@src.gnome.org>
Date:   Wed Jun 28 11:17:38 2006 +0000

    Tamil translation updated

 po/ChangeLog |    4 +
 po/ta.po     | 1988 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1054 insertions(+), 938 deletions(-)

commit 0be9cdea1159052ccb0e652635d2dcf47a091534
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jun 27 21:05:53 2006 +0000

    removed redundant GNOMELOCALEDIR, fixed #345178

 libbackground/ChangeLog   | 5 +++++
 libbackground/Makefile.am | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit dc9cb0bf15d6434c7c273c2f020d39966c4efe4e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jun 27 20:50:44 2006 +0000

    appending BUILT_SOURCES

 gnome-settings-daemon/Makefile.am | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit b9e46c7428c198e77fc64806642ad7f63c9a5678
Author: Yair Hershkovitz <yairhr@src.gnome.org>
Date:   Tue Jun 27 14:16:40 2006 +0000

    updated hebrew translation

 po/ChangeLog |    4 +
 po/he.po     | 1867 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 1129 insertions(+), 742 deletions(-)

commit 24dc356efdbbad9f7937880ebacbbb63b0243189
Author: Jovan Naumovski <jovanna@src.gnome.org>
Date:   Tue Jun 27 13:54:55 2006 +0000

    2006-06-27 Jovan Naumovski <jovanna@cvs.gnome.org> * mk.po: Updated Macedonian Translation

 po/ChangeLog |   4 +
 po/mk.po     | 803 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 462 insertions(+), 345 deletions(-)

commit 9885c9081da66b00168b1fa9f1cfa819a95784fd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jun 26 20:07:43 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-06-26  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |   4 ++
 po/nb.po     | 123 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 60 insertions(+), 67 deletions(-)

commit 6ba6892f3c551ac6634c7f0d5f0e513370a91787
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   Sun Jun 25 13:37:10 2006 +0000

    Initial Russian translation.
    
    2006-06-25  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
        * ru/ru.po: Initial Russian translation.

 help/ChangeLog   |   4 ++
 help/Makefile.am |   2 +-
 help/ru/ru.po    | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 137 insertions(+), 1 deletion(-)

commit ebfb8c66b0d19401af2c3a2d3f1ac425f81b5965
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jun 25 02:23:08 2006 +0000

    Big libgswitchit API change (to GNOME naming conventions)

 capplets/keyboard/ChangeLog                        |   5 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  56 +--
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  16 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 402 ++++++++++-----------
 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 104 +++---
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 124 +++----
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |  22 +-
 7 files changed, 368 insertions(+), 361 deletions(-)

commit 73b8ac314b1d135d1f7a245d0ebb3e4674c380fb
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jun 25 02:20:15 2006 +0000

    DBUS-based g-s-d activation

 capplets/common/ChangeLog                  |  5 +++
 capplets/common/Makefile.am                |  2 ++
 capplets/common/activate-settings-daemon.c | 58 ++++++++++++++++--------------
 3 files changed, 39 insertions(+), 26 deletions(-)

commit 4172c1448414f1f20a5417cb2585c6aeb4de68bd
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jun 25 02:18:18 2006 +0000

    New dependency: DBUS

 ChangeLog    |  4 ++++
 configure.in | 11 +++++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

commit 941229189394533b45e9b0b015ac0b6ae165b75f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jun 25 02:16:06 2006 +0000

    Enabling DBUS, getting rid of bonobo, libgswitchit API update

 gnome-settings-daemon/.cvsignore                   |   4 +
 gnome-settings-daemon/ChangeLog                    |  11 ++
 gnome-settings-daemon/Makefile.am                  |  48 ++---
 gnome-settings-daemon/factory.c                    |  37 +---
 gnome-settings-daemon/gnome-settings-daemon.c      |  20 +--
 gnome-settings-daemon/gnome-settings-daemon.h      |   7 +-
 gnome-settings-daemon/gnome-settings-daemon.pc.in  |  11 ++
 gnome-settings-daemon/gnome-settings-dbus.c        | 182 +++++++++++++++++++
 .../gnome-settings-keyboard-xkb.c                  | 199 +++++++++++----------
 .../gnome-settings-keyboard-xkb.h                  |   6 +
 gnome-settings-daemon/gsd-infos.xml                |  18 ++
 .../org.gnome.SettingsDaemon.service.in            |   3 +
 12 files changed, 374 insertions(+), 172 deletions(-)

commit 98a2fc742a989e54aa37060cee8e369377110bfe
Author: Raivis Dejus <orvils@gmail.com>
Date:   Thu Jun 22 11:25:17 2006 +0000

    Updated Latvian translation.
    
    2006-06-20  Raivis Dejus  <orvils@gmail.com>
    
        * lv.po: Updated Latvian translation.

 po/ChangeLog |    4 +
 po/lv.po     | 2676 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1387 insertions(+), 1293 deletions(-)

commit 50b196b5fc48ff785e26f4bbafaef847fa0695d4
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Mon Jun 19 12:06:07 2006 +0000

    Updated Czech translation.
    
    2006-06-19  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.

 po/ChangeLog |   6 ++-
 po/cs.po     | 171 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 85 insertions(+), 92 deletions(-)

commit 67914f0feecbc51123b77d8455af4bd5c762ecaa
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Jun 16 14:09:32 2006 +0000

    Updated Thai translation.
    
    2006-06-16  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 188 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 102 insertions(+), 90 deletions(-)

commit c22e9baa0df7bd8df538f74b6842dd206076717d
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Thu Jun 15 15:48:10 2006 +0000

    Updated German translation.
    
    2006-06-15  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog | 4 ++++
 po/de.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 494e2153017361c04592ca5b9cbb035d68735004
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Thu Jun 15 14:57:52 2006 +0000

    Updated German translation.
    
    2006-06-15  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 27 +++++++++++++++------------
 2 files changed, 19 insertions(+), 12 deletions(-)

commit 4d5bf0994c0e4f8ce2a0b725bd47beae0ec59e14
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Jun 15 14:23:57 2006 +0000

    Updated Swedish translation.
    
    2006-06-15  Daniel Nylander  <po@danielnylander.se>
    
            * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 831 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 496 insertions(+), 339 deletions(-)

commit 4610768be555b7c65b0e9598ce9e1df0e53c07ee
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Wed Jun 14 13:34:20 2006 +0000

    Updated Spanish translation.
    
    2006-06-14  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 246 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 144 insertions(+), 106 deletions(-)

commit 1f6f4e08d605cf5c85d72628492cfb956f333f57
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Jun 14 08:53:13 2006 +0000

    Updated Translation

 po/ChangeLog |   4 ++
 po/gu.po     | 160 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 80 insertions(+), 84 deletions(-)

commit b8af9cdaa646bb28feaf866cc3e6c00628c9f8be
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Jun 13 20:51:44 2006 +0000

    Fix Bug 167045 - Strange wording in cinnamon-control-center theme manager
    
    2006-06-13  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-installer.c: (transfer_done_cb): Fix Bug 167045 -
        Strange wording in cinnamon-control-center theme manager messages

 capplets/theme-switcher/ChangeLog               |  5 +++
 capplets/theme-switcher/gnome-theme-installer.c | 48 ++++++++++++++++++++-----
 2 files changed, 45 insertions(+), 8 deletions(-)

commit 1f5602061f0987d20f0a339a384d5393381502f1
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jun 12 21:39:33 2006 +0000

    updated for 2.15.3.
    
    2006-06-12  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.15.3.

 ChangeLog    |  5 ++++
 NEWS         | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 91 insertions(+), 1 deletion(-)

commit 366c7de97ad1565c9eb0864b8216f19f76acceed
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jun 12 10:00:37 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-06-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |   4 ++
 po/nb.po     | 126 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 67 insertions(+), 63 deletions(-)

commit a75e3697472c59b5e8de53efa14958938bbcb7d8
Author: Darren Kenny <darren.kenny@sun.com>
Date:   Sun Jun 11 10:50:42 2006 +0000

    Fixes #340003
    
    2006-06-11  Darren Kenny <darren.kenny@sun.com>
    
        Fixes #340003
    
        * gnome-mouse-properties.c (cursor_font_changed): if no cursor font
        set in GConf, just unselect and return.

 capplets/mouse/ChangeLog                | 7 +++++++
 capplets/mouse/gnome-mouse-properties.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 0b841841812cd0838fb791ad9768551e7fa44947
Author: Darren Kenny <darren.kenny@sun.com>
Date:   Sun Jun 11 10:50:31 2006 +0000

    Fixes #340003
    
    2006-06-11  Darren Kenny <darren.kenny@sun.com>
    
        Fixes #340003
    
        * gnome-mouse-properties.c (cursor_font_changed): if no cursor font
        set in GConf, just unselect and return.

 capplets/mouse/gnome-mouse-properties.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit b4ec279384e4a383710752fc81859c7ec640ae78
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sun Jun 11 09:02:30 2006 +0000

    Fixes #344468
    
    2006-06-11  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #344468
    
        * gnome-about-me-password.c: removed redundant headers.

 capplets/about-me/ChangeLog                 | 6 ++++++
 capplets/about-me/gnome-about-me-password.c | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 746940d51152dd247b4602c541f1c29b98725e78
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Jun 6 23:19:37 2006 +0000

    Initial Swedish translation.
    
    2006-06-06  Daniel Nylander <po@danielnylander.se>
    
            * sv/sv.po: Initial Swedish translation.

 help/ChangeLog   |  4 +++
 help/Makefile.am |  2 +-
 help/sv/sv.po    | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 86 insertions(+), 1 deletion(-)

commit e85905ad7d11f73c65af49110d07084e8b7d909b
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Tue Jun 6 11:57:30 2006 +0000

    Updated Czech translation.
    
    2006-06-06  Jakub Friedl  <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.

 po/ChangeLog |   8 +-
 po/cs.po     | 777 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 457 insertions(+), 328 deletions(-)

commit 6320e38ef3f4b464338ad4864cca65012832b631
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jun 6 00:23:21 2006 +0000

    added pipeline-tests.h to SOURCES

 capplets/sound/ChangeLog   | 4 ++++
 capplets/sound/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c2402361c0eb4198b59b7949f8c274777d823d01
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jun 6 00:12:06 2006 +0000

    fixed CL record

 capplets/font/ChangeLog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ce6de901299b91838000dd7af7daf7dab88e4670
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jun 6 00:03:46 2006 +0000

    added GNOMECC_CAPPLETS_LIBS

 capplets/accessibility/at-properties/ChangeLog   | 4 ++++
 capplets/accessibility/at-properties/Makefile.am | 2 +-
 capplets/font/ChangeLog                          | 4 ++++
 capplets/font/Makefile.am                        | 4 +++-
 4 files changed, 12 insertions(+), 2 deletions(-)

commit 5883f703b3c21e585b00ceb48f629c5292ecba93
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Jun 4 05:46:08 2006 +0000

    Updated cinnamon-control-center zh_CN translation.

 po/ChangeLog |   4 +
 po/zh_CN.po  | 363 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 241 insertions(+), 126 deletions(-)

commit 0f4edc72246295332e1a41ad95dbae9fcc2244c1
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Tue May 30 12:15:00 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/dz.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit f49cdb382adfee97cd737a9d38c93c985bd6cf92
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Mon May 29 19:51:23 2006 +0000

    Added Malagasy translation by Thierry Randrianiriana, updated ALL_LINGUAS

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/mg.po     | 3641 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3650 insertions(+), 1 deletion(-)

commit a6c80dac1ab962918c0880d788ada038d8a5dfbe
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   Mon May 29 09:38:25 2006 +0000

    Updated Spanish translation.
    
    2006-05-29  Francisco Javier F. Serrador  <serrador@openshine.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 90 +++++++++++++++++++++++-------------------------------------
 2 files changed, 38 insertions(+), 56 deletions(-)

commit a7a76fbb1beb2929b85ed3411dcef00c96587e83
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon May 29 06:26:55 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 33 +++++++++++++++++++--------------
 2 files changed, 23 insertions(+), 14 deletions(-)

commit ac3d4d8359930fbaf28677776797740b13b04bf5
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Mon May 29 04:07:25 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/dz.po     | 744 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 450 insertions(+), 298 deletions(-)

commit 7f34fd1a857d4041d2cdd9b7b132a4f08a283872
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon May 29 00:35:45 2006 +0000

    Updated Norwegian bokmål translation.
    
    2006-05-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |   4 +
 po/nb.po     | 711 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 420 insertions(+), 295 deletions(-)

commit 2a395d2ca1b061efd4632d429fbdf6a150df79ba
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun May 28 08:42:44 2006 +0000

    Updated Thai translation.
    
    2006-05-28  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 770 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 475 insertions(+), 299 deletions(-)

commit 5cd3dbe403cab99a43154bc4fd9b40566c4b3dd8
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat May 27 21:30:34 2006 +0000

    version the libxklavier requirement to avoid headaches
    
    2006-05-27  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: version the libxklavier requirement to avoid
        headaches

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3e43e8e4779d18e16ce1a6ea4a2325bea27282ec
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri May 26 20:00:08 2006 +0000

    fix label alignment (Closes: #343056)
    
    2006-05-26  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-about-me.glade: fix label alignment (Closes: #343056)

 capplets/about-me/ChangeLog            | 4 ++++
 capplets/about-me/gnome-about-me.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit db8a8d4b8cc29e33d4622974443781f5384094d3
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri May 26 11:30:08 2006 +0000

    Fixes #324971
    
    2006-05-26  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #324971
    
        * gnome-about-me-password.c (passdlg_spawn_passwd): fixed typo.

 capplets/about-me/ChangeLog                 | 6 ++++++
 capplets/about-me/gnome-about-me-password.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 75d548e5ae091c759635039b5f71366e55c22481
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri May 26 11:28:46 2006 +0000

    Fixes #324971
    
    2006-05-26  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #324971
    
        * sound-properties.glade: s/Ok/OK.

 capplets/sound/ChangeLog              | 6 ++++++
 capplets/sound/sound-properties.glade | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit ce6b85d0c35699da12a9445523bbc456693de4aa
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Fri May 26 01:55:09 2006 +0000

    Typo fix

 po/vi.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5f52e931e62a55694f7caeec8e6357043c878aed
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu May 25 12:51:40 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |    4 +
 po/vi.po     | 2055 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1090 insertions(+), 969 deletions(-)

commit 1b225937209728de412ff0d5c4c8375dcead86b4
Author: Paolo Borelli <pborelli@katamail.com>
Date:   Wed May 24 13:46:23 2006 +0000

    Fixes #342570
    
    2006-05-24  Paolo Borelli <pborelli@katamail.com>
    
        Fixes #342570
    
        * gnome-settings-multimedia-keys.c (update_kbd_cb, do_eject_action):
        fixed leaked strings returned from gconf_client_get_string.

 gnome-settings-daemon/ChangeLog                        |  7 +++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 18 ++++++++++++++++--
 2 files changed, 23 insertions(+), 2 deletions(-)

commit 15bf0dc355230198856c2e7e500bc212e0625b36
Author: Paolo Borelli <pborelli@katamail.com>
Date:   Wed May 24 13:41:12 2006 +0000

    Fixes #342568
    
    2006-05-23  Paolo Borelli <pborelli@katamail.com>
    
        Fixes #342568
    
        * gnome-settings-sound.c (reload_foreach_cb): fixed leak.

 gnome-settings-daemon/ChangeLog              |  6 ++++++
 gnome-settings-daemon/gnome-settings-sound.c | 29 +++++++++++++---------------
 2 files changed, 19 insertions(+), 16 deletions(-)

commit de05ef0e03e78b4605b1bc890041436716df2621
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon May 22 21:06:43 2006 +0000

    update on kbd preview

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 13a2c7123b12dc1b7f8b83572d950c9ba6d42724
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun May 21 05:13:09 2006 +0000

    Added g-c-c doc translation.

 help/Makefile.am    |  2 +-
 help/zh_CN/zh_CN.po | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+), 1 deletion(-)

commit 89ccec4d1fff83b2bb2f68a5b49bbb73957b0528
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sat May 20 09:54:39 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 241 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 157 insertions(+), 88 deletions(-)

commit c3ff597dc962419ff3f5f2314ca6575cdc87f937
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri May 19 16:53:46 2006 +0000

    Updated Spanish translation.
    
    2006-05-19  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 357 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 227 insertions(+), 134 deletions(-)

commit 5fb8f1e0a73cb1e8d97766a303f172c20b3eb7d6
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Thu May 18 05:25:40 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +
 po/gu.po     | 275 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 172 insertions(+), 107 deletions(-)

commit 70c6f6a6649f922f997b85c6bab4f1b5b46bf159
Author: Diego González <dggonz@src.gnome.org>
Date:   Wed May 17 11:15:53 2006 +0000

    New "change password" dialog developed by Johannes H. Jensen

 capplets/about-me/Makefile.am                  |    4 +-
 capplets/about-me/gnome-about-me-lock-open.png |  Bin 0 -> 2913 bytes
 capplets/about-me/gnome-about-me-lock.png      |  Bin 0 -> 2978 bytes
 capplets/about-me/gnome-about-me-password.c    | 1524 ++++++++++++++----------
 capplets/about-me/gnome-about-me.glade         |  565 +++++----
 5 files changed, 1268 insertions(+), 825 deletions(-)

commit 20274f71e8b0dd1a1951b777ac02f9fefbdd504d
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Wed May 17 09:07:55 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 463 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 262 insertions(+), 205 deletions(-)

commit 791acc7675d525e5df0a242c5f5647824a4b4915
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat May 13 22:12:24 2006 +0000

    Updated Traditional Chinese translation(Hong Kong). Updated Traditional
    
    2006-05-14  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
        * zh_HK.po: Updated Traditional Chinese translation(Hong Kong).
        * zh_TW.po: Updated Traditional Chinese translation(Taiwan).

 po/ChangeLog |    5 +
 po/zh_HK.po  | 1315 +++++++++++++++++++++++++++++++++++-----------------------
 po/zh_TW.po  | 1315 +++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 1603 insertions(+), 1032 deletions(-)

commit b0177ca8d8d6ff87725ea12006416da207faecb5
Author: Daniel Holbach <dholbach@ubuntu.com>
Date:   Tue May 9 20:44:41 2006 +0000

    update help section name. Closes bug #340032.
    
    2006-05-09  Daniel Holbach  <dholbach@ubuntu.com>
    
        * gnome-da-capplet.c: (close_cb): update help section name. Closes
        bug #340032.

 capplets/default-applications/ChangeLog          |  5 +++++
 capplets/default-applications/gnome-da-capplet.c | 19 ++-----------------
 2 files changed, 7 insertions(+), 17 deletions(-)

commit 40bbe47d9f33c3e8113cab7716880e1260d182cb
Author: Luca Cavalli <lcavalli@cvs.gnome.org>
Date:   Tue May 9 20:32:37 2006 +0000

    remove unnecessary gnome-terminal command line parameter. Closes bug
    
    2006-05-09  Luca Cavalli  <lcavalli@cvs.gnome.org>
    
        * gnome-default-applications.xml.in: remove unnecessary
        gnome-terminal command line parameter. Closes bug #336700.

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b19e408f88cba28509171d7de9c9b39d14461981
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon May 8 05:59:55 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +
 po/gu.po     | 318 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 166 insertions(+), 156 deletions(-)

commit 3461e7b2489ad03040ad0b9adc2d00df70b0d7bf
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat May 6 01:47:40 2006 +0000

    Updated Spanish translation.
    
    2006-05-06  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 449 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 259 insertions(+), 194 deletions(-)

commit cd175929ed3d08a935cbbf10d664411e1227db99
Author: Jürg Billeter <j@bitron.ch>
Date:   Fri May 5 13:24:27 2006 +0000

    Add sound device selection using HAL and GStreamer (Closes: #329112).
    
    2006-05-05  Jürg Billeter  <j@bitron.ch>
    
        * Makefile.am:
        * pipeline-tests.c: (user_test_pipeline_response),
        (user_test_pipeline_timeout), (build_test_pipeline),
        (pipeline_error_dlg), (user_test_pipeline):
        * pipeline-tests.h:
        * sound-properties-capplet.c: (element_available), (add_device),
        (remove_device), (device_added_callback),
        (device_removed_callback), (setup_hal_devices),
        (device_test_button_clicked), (get_gconf_key_for_profile),
        (device_changed), (get_gconf_description_for_profile),
        (gconf_key_changed), (setup_device_chooser), (add_selected_device),
        (setup_devices), (setup_dialog), (main):
        * sound-properties.glade:
    
        Add sound device selection using HAL and GStreamer (Closes: #329112).

 capplets/sound/ChangeLog                  |  18 +
 capplets/sound/Makefile.am                |   7 +-
 capplets/sound/pipeline-tests.c           | 187 +++++++
 capplets/sound/pipeline-tests.h           |  36 ++
 capplets/sound/sound-properties-capplet.c | 531 +++++++++++++++++-
 capplets/sound/sound-properties.glade     | 902 +++++++++++++++++++++++++++++-
 6 files changed, 1671 insertions(+), 10 deletions(-)

commit 24334bcbaff3aadf9fb293d31860b8ea49647c5e
Author: Jürg Billeter <j@bitron.ch>
Date:   Fri May 5 13:23:30 2006 +0000

    Add gstreamer-0.10 and optionally HAL to sound capplet dependencies.
    
    2006-05-05  Jürg Billeter  <j@bitron.ch>
    
        * configure.in: Add gstreamer-0.10 and optionally HAL to sound
          capplet dependencies.

 ChangeLog    |  5 +++++
 configure.in | 13 ++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

commit 059723e70cc13f73649e5ff9eb864c0d13ff51be
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri May 5 09:43:36 2006 +0000

    Updated Simplified Chinese translation of g-c-c.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   2 -
 po/zh_CN.po    | 385 +++++++++++++++++++++++++++++----------------------------
 3 files changed, 203 insertions(+), 189 deletions(-)

commit 1ec18011151cd58aa8aa7467a5947b240d54702f
Author: Alexander Shopov <ash@contact.bg>
Date:   Sat Apr 29 14:58:56 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-04-29  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |   5 +
 po/bg.po     | 469 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 270 insertions(+), 204 deletions(-)

commit 7bbf1f995318dfc2a270e56db473042064964b81
Author: Thomas Wood <thos@gnome.org>
Date:   Fri Apr 28 19:03:07 2006 +0000

    - Added option to save current background when saving a custom theme.
    
    2006-04-28  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-save.c: (write_theme_to_disk), (save_theme_to_disk),
        (save_dialog_response):
        * theme-properties.glade:
    
        - Added option to save current background when saving a custom theme.
        Fixes bug 330302 - Saved themes should remember wallpaper.
        - Also implements some of the UI changes for the save dialog, suggested
        in bug 100622

 capplets/theme-switcher/ChangeLog              |  11 +
 capplets/theme-switcher/gnome-theme-save.c     |  25 ++-
 capplets/theme-switcher/theme-properties.glade | 288 +++++++++++--------------
 3 files changed, 154 insertions(+), 170 deletions(-)

commit 71339b526e1f76a3ecab24d787c9cf5c27b2e598
Author: Joe Marcus Clarke <marcusi@freebsd.org>
Date:   Fri Apr 28 10:34:16 2006 +0000

    Fixes #338849
    
    2006-04-28  Joe Marcus Clarke <marcusi@freebsd.org>
    
        Fixes #338849
    
        * actions/acme-volume-gstreamer.c: added missing header to avoid
        64bit crash on missing prototype.

 gnome-settings-daemon/ChangeLog                       | 7 +++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 1 +
 2 files changed, 8 insertions(+)

commit 270a4b834501838abf83530caaeab623fd32365b
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Apr 27 21:59:26 2006 +0000

    Fix bug 317375 - theme-manager (saving) sometimes needlessly asks whether
    
    2006-04-27  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-save.c: (str_remove_slash),
        (setup_directory_structure):
    
        Fix bug 317375 - theme-manager (saving) sometimes needlessly asks
        whether to overwrite

 capplets/theme-switcher/ChangeLog          |  8 ++++++++
 capplets/theme-switcher/gnome-theme-save.c | 21 +++++++++++++++------
 2 files changed, 23 insertions(+), 6 deletions(-)

commit 8bf679ab31bc2d7cd00c0589b80bcddbffcb471e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Apr 27 09:50:43 2006 +0000

    remove checks for fb-level support Remove the brightness keybindings
    
    2006-04-27  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: remove checks for fb-level support
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in:
        Remove the brightness keybindings (Closes: #339857)
    
    2006-04-27  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybinding-properties.c: remove brightness keybindings, as
        they duplicate with gnome-power-manager's (greater) functionality
        (Closes: #339857)
    
    2006-04-27  Bastien Nocera  <hadess@hadess.net>
    
        * actions/Makefile.am:
        * actions/acme-brightness.png:
        * actions/acme-fb-level.c:
        * actions/acme-fb-level.h:
        * actions/acme.h:
        * gnome-settings-multimedia-keys.c: (do_action),
        (acme_filter_events), (gnome_settings_multimedia_keys_load):
        Remove references to the brightness controls, we have moved the
        functionality (and enhanced it!) to gnome-power-manager
        (Closes: #339857)

 ChangeLog                                          |   6 +
 capplets/keybindings/ChangeLog                     |   6 +
 capplets/keybindings/gnome-keybinding-properties.c |  10 -
 configure.in                                       |  16 --
 gnome-settings-daemon/ChangeLog                    |  13 ++
 gnome-settings-daemon/actions/Makefile.am          |   8 +-
 gnome-settings-daemon/actions/acme-brightness.png  | Bin 4377 -> 0 bytes
 gnome-settings-daemon/actions/acme-fb-level.c      | 201 ---------------------
 gnome-settings-daemon/actions/acme-fb-level.h      |  65 -------
 gnome-settings-daemon/actions/acme.h               |   8 -
 .../gnome-settings-multimedia-keys.c               |  73 --------
 ...ps_gnome_settings_daemon_keybindings.schemas.in |  24 ---
 12 files changed, 26 insertions(+), 404 deletions(-)

commit a2609c1513fcb51e29a52931c9a5616be96d45ae
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Apr 26 20:21:46 2006 +0000

    Fix bug 139692 - Some characters cannot be given as the theme name
    
    2006-04-26  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-save.c: (str_remove_slash),
        (setup_directory_structure), (write_theme_to_disk),
        (gnome_theme_save_show_dialog):
    
        Fix bug 139692 - Some characters cannot be given as the theme name

 capplets/theme-switcher/ChangeLog          |  8 ++++
 capplets/theme-switcher/gnome-theme-save.c | 77 +++++++++++++++++-------------
 2 files changed, 51 insertions(+), 34 deletions(-)

commit ea5a6315657e4bdb9144eb19815bf9eddce1e7ff
Author: Thomas Wood <thos@gnome.org>
Date:   Tue Apr 25 21:30:45 2006 +0000

    - Remove redundant theme-install dialog - Fix bug 138795 (file dialog
    
    2006-04-25  Thomas Wood  <thos@gnome.org>
    
        * Makefile.am:
        * gnome-theme-installer.c: (gnome_theme_install_from_uri),
        (gnome_theme_installer_run_cb), (gnome_theme_installer_run):
        * gnome-theme-installer.h:
        * gnome-theme-manager.c:
        (gnome_theme_manager_drag_data_received_cb):
        * theme-install.glade:
    
        - Remove redundant theme-install dialog
        - Fix bug 138795 (file dialog forgets last browsed to or installed from
          location)

 capplets/theme-switcher/ChangeLog               |  14 ++
 capplets/theme-switcher/Makefile.am             |   2 +-
 capplets/theme-switcher/gnome-theme-installer.c |  67 +++---
 capplets/theme-switcher/gnome-theme-installer.h |   6 +-
 capplets/theme-switcher/gnome-theme-manager.c   |   2 +-
 capplets/theme-switcher/theme-install.glade     | 261 ------------------------
 6 files changed, 50 insertions(+), 302 deletions(-)

commit 4e10d6d3ddfb6acccde2bba09b9ce0b372568703
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Apr 24 05:21:04 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 39 ++++++++++++++++++++++++++++-----------
 2 files changed, 32 insertions(+), 11 deletions(-)

commit 10233e079f3397461658269a03710ffd13b54df7
Author: Lukas Novotny <lukasnov@src.gnome.org>
Date:   Sun Apr 23 20:44:01 2006 +0000

    2006-04-23  Lukas Novotny  <lukasnov@cvs.gnome.org> * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 47 ++++++++++++++++++++---------------------------
 2 files changed, 24 insertions(+), 27 deletions(-)

commit c916b9c52151f12621ac971e1bb87c4b1cb59086
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Apr 22 02:23:26 2006 +0000

    fixing small memory allocation error

 capplets/keyboard/gnome-keyboard-properties-xkbpv.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit c5b51f49b23e109384c8fdbb10b6cc9bdde5ed5f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Apr 22 00:50:17 2006 +0000

    Layout Preview window position is saved/restored

 capplets/keyboard/ChangeLog                        |  5 +++
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 19 +++++++++
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 48 ++++++++++++++++++++++
 3 files changed, 72 insertions(+)

commit d48a56d59f02d5cecebeccd19c2f40970ae74480
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Fri Apr 21 05:21:12 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 63 +++++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 54 insertions(+), 13 deletions(-)

commit 83936013d4fd4b5bd5fc66826669effb21e6927a
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Apr 20 22:21:10 2006 +0000

    small fixes, bug #333091

 gnome-settings-daemon/ChangeLog                    |  6 ++++
 .../gnome-settings-keyboard-xkb.c                  | 34 ++++++++++++----------
 2 files changed, 24 insertions(+), 16 deletions(-)

commit c78e0b83426e91b26aa00b144732b9c1a6b5ad2c
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Thu Apr 20 07:33:11 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 65 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 37 insertions(+), 32 deletions(-)

commit ee5dccce9655f2222cb52d662e209fc47e5e7d62
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Apr 19 23:30:05 2006 +0000

    update for new libxklavier API

 ChangeLog                                          |   8 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  28 +--
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   6 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  23 ++-
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |   9 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     |  24 ++-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |  48 ++---
 configure.in                                       |   2 +-
 .../gnome-settings-keyboard-xkb.c                  | 222 ++++++++++++---------
 9 files changed, 215 insertions(+), 155 deletions(-)

commit 31a5fd7828c2d060fab7f2f87ef9e30359b1149e
Author: Thomas Wood <thos@gnome.org>
Date:   Wed Apr 19 10:48:04 2006 +0000

    Remove drag and drop information text, and add Install buttons to each tab
    
    2006-04-19  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-details.c: (gnome_theme_details_init),
        (gnome_theme_details_reread_themes_from_disk):
        * gnome-theme-installer.c: (gnome_theme_installer_run_cb):
        * gnome-theme-installer.h:
        * gnome-theme-manager.c: (setup_dialog):
        * theme-properties.glade:
    
        Remove drag and drop information text, and add Install buttons to each
        tab in the details window. Closes bug 99535 - [ui-review] Theme manager UI issues

 capplets/theme-switcher/ChangeLog               |  12 +
 capplets/theme-switcher/gnome-theme-details.c   |  18 +-
 capplets/theme-switcher/gnome-theme-installer.c |   8 +
 capplets/theme-switcher/gnome-theme-installer.h |   1 +
 capplets/theme-switcher/gnome-theme-manager.c   |  10 +-
 capplets/theme-switcher/theme-properties.glade  | 914 ++++++++++++------------
 6 files changed, 500 insertions(+), 463 deletions(-)

commit 97241db229fb44e46554010c072ecfa036774cd9
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Wed Apr 19 10:38:54 2006 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2006-04-19  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 819 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 420 insertions(+), 403 deletions(-)

commit 6a1e74948acd1cecf91fba775f253037141f152f
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Tue Apr 18 05:33:27 2006 +0000

    Updated Translation

 po/ChangeLog |  4 +++
 po/gu.po     | 81 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 47 insertions(+), 38 deletions(-)

commit 8aa8b24d82244c29e99aab802a721ec14bcaaa31
Author: Ray Strode <rstrode@redhat.com>
Date:   Mon Apr 17 15:07:20 2006 +0000

    fix potential (tiny, hard to trigger) overrun (bug 338254)
    
    2006-04-17  Ray Strode <rstrode@redhat.com>
    
        * gnome-settings-mouse.c (configure_button_layout): fix
        potential (tiny, hard to trigger) overrun (bug 338254)

 gnome-settings-daemon/ChangeLog              | 5 +++++
 gnome-settings-daemon/gnome-settings-mouse.c | 8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 01b8b21d0592b9911aad6b5fd6887777df144b6b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Apr 17 13:26:24 2006 +0000

    Remove obsolete entry for no_NO. And the translation.
    
    2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * configure.in: Remove obsolete entry for no_NO.
        * po/no.po: And the translation.

 ChangeLog    |    5 +
 configure.in |    2 +-
 po/no.po     | 3525 ----------------------------------------------------------
 3 files changed, 6 insertions(+), 3526 deletions(-)

commit 77d1b61826d5ef10e9d922cbf401b5c6cd23c816
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Mon Apr 17 04:41:07 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |    4 +
 po/vi.po     | 1972 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 959 insertions(+), 1017 deletions(-)

commit 7c1b3e32495579bafa754f82405e5d0d56a4e067
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Apr 16 21:43:24 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 ++
 po/gl.po     | 167 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 78 insertions(+), 93 deletions(-)

commit 82a34b34573d814ada949c989db491ba9b2d819d
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Apr 14 19:44:59 2006 +0000

    Updated Czech translation by Petr Tomeš.
    
    2006-04-14  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation by Petr Tomeš.

 po/ChangeLog |  4 ++++
 po/cs.po     | 60 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 36 insertions(+), 28 deletions(-)

commit 647577cb78d0293a5aa68acdd0071f3782e88f4c
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Apr 14 13:15:26 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 +++
 po/fi.po     | 80 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 46 insertions(+), 38 deletions(-)

commit ca38521ffc9341ee4875976e5c12ed9ccf3bada2
Author: Daniel Nylander <po@danielnylander.se>
Date:   Fri Apr 14 07:58:55 2006 +0000

    Updated Swedish translation.
    
    2006-04-14  Daniel Nylander  <po@danielnylander.se>
    
            * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 318 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 146 insertions(+), 176 deletions(-)

commit afc870aa7e9d8a1577d25a300370f756958d53d2
Author: Luca Cavalli <loopback@slackit.org>
Date:   Thu Apr 13 21:36:17 2006 +0000

    add support for Sylpheed. Based on a patch from Fryderyk Dziarmagowski
    
    2006-04-13  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-default-applications.xml.in: add support for Sylpheed. Based
        on a patch from Fryderyk Dziarmagowski <freetz@pld-linux.org>.
        Closes bug #332659.

 capplets/default-applications/ChangeLog                         | 6 ++++++
 capplets/default-applications/gnome-default-applications.xml.in | 7 +++++++
 2 files changed, 13 insertions(+)

commit 1edab2749dc49272b4b2438ffb8eecb6ea601ab8
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   Thu Apr 13 11:26:20 2006 +0000

    *** empty log message ***

 po/ChangeLog |    4 +
 po/dz.po     | 1122 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 658 insertions(+), 468 deletions(-)

commit 9c24be1b1e6abad252161accd13e8435428cffd6
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Apr 10 17:56:59 2006 +0000

    Applied patch from bug 170058 - bzip2 location hardcoded
    
    2006-04-10  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-installer.c: (transfer_done_targz_idle_cb),
        (transfer_done_tarbz2_idle_cb), (transfer_done_cb): Applied patch from
        bug 170058 - bzip2 location hardcoded

 capplets/theme-switcher/ChangeLog               |  6 ++
 capplets/theme-switcher/gnome-theme-installer.c | 97 ++++++++++++++++++++-----
 2 files changed, 84 insertions(+), 19 deletions(-)

commit 04a03e95d968c0afad393433a11ebe66212af469
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Apr 10 17:30:32 2006 +0000

    updated for 2.14.1.
    
    2006-04-10  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.14.1.

 ChangeLog                 |  5 +++++
 NEWS                      | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 capplets/common/ChangeLog |  2 +-
 configure.in              |  2 +-
 4 files changed, 53 insertions(+), 2 deletions(-)

commit 25d98381004d7c56259cfda0f7719f4107c04a79
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Mon Apr 10 15:23:00 2006 +0000

    Updated Spanish translation
    
    2006-04-10  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/ChangeLog |   4 +
 po/es.po     | 250 +++++++++++------------------------------------------------
 2 files changed, 48 insertions(+), 206 deletions(-)

commit 5f2d2e2b759b1735e589234eb516c8331e4d8612
Author: Marien Zwart <marienz@gentoo.org>
Date:   Mon Apr 10 12:45:08 2006 +0000

    Fixes #323724
    
    2006-04-10  Marien Zwart <marienz@gentoo.org>
    
        Fixes #323724
    
        * gnome-settings-mouse.c (configure_button_layout): fixed button
        mapping with evdev/left handed.

 gnome-settings-daemon/ChangeLog              |  7 ++++
 gnome-settings-daemon/gnome-settings-mouse.c | 49 +++++++++++++++++++++++-----
 2 files changed, 48 insertions(+), 8 deletions(-)

commit b062d0c3018cbcb1c80db4348714e7ba21cbb423
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Apr 9 16:23:13 2006 +0000

    Patch from Sergey Al. Safonov <spoof@spoofa.info> to fix bug 314658 -
    
    2006-04-09  Thomas Wood  <thos@gnome.org>
    
        * gnome-theme-manager.c: (setup_meta_tree_view): Patch from Sergey Al.
        Safonov <spoof@spoofa.info> to fix bug 314658 - Theme chooser main
        window too wide for 800x600

 capplets/theme-switcher/ChangeLog             | 6 ++++++
 capplets/theme-switcher/gnome-theme-manager.c | 3 +++
 2 files changed, 9 insertions(+)

commit 163f55f7437b3ac34d11c990c46aeac461b1fcae
Author: Wouter Bolsterlee <uws+gnome@xs4all.nl>
Date:   Thu Apr 6 08:46:04 2006 +0000

    Translation updated by Wouter Bolsterlee.
    
    2006-04-06  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
    
        * nl.po: Translation updated by Wouter Bolsterlee.

 po/ChangeLog |  4 ++++
 po/nl.po     | 13 ++++++-------
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 6c0c9e1a6c18b40a94e344ab8e9f6c6c67eef293
Author: Glynn Foster <glynn.foster@sun.com>
Date:   Wed Apr 5 05:48:28 2006 +0000

    Move the .directory files to $datadir/desktop-directories. Fixes #334405.
    
    2006-04-05  Glynn Foster <glynn.foster@sun.com>
    
        * Makefile.am: Move the .directory files to
        $datadir/desktop-directories. Fixes #334405.

 vfs-methods/fontilus/ChangeLog   | 5 +++++
 vfs-methods/fontilus/Makefile.am | 8 ++++----
 vfs-methods/themus/ChangeLog     | 5 +++++
 vfs-methods/themus/Makefile.am   | 6 +++---
 4 files changed, 17 insertions(+), 7 deletions(-)

commit a1f3d207b00d763eba9dd582330ea871b2508358
Author: Wouter Bolsterlee <wbolster@src.gnome.org>
Date:   Mon Apr 3 09:09:41 2006 +0000

    Don't allow tab characters in custom theme descriptions (#336151, Wouter
    
    * capplets/theme-switcher/theme-properties.glade: Don't allow tab
    characters in custom theme descriptions (#336151, Wouter Bolsterlee)

 ChangeLog                                      | 5 +++++
 capplets/theme-switcher/theme-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 38419b6a0a376dbb4c00854b98d6fa93893ae39a
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Apr 3 07:35:45 2006 +0000

    Updated Thai translation.
    
    2006-04-03  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 48 ++++++++++++++++++++++++------------------------
 2 files changed, 28 insertions(+), 24 deletions(-)

commit 69a2971101376b6bb512626598763679aee284b3
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Apr 2 01:11:42 2006 +0000

    fixed the buggon sensitivity, b.g.o#336396

 capplets/keyboard/ChangeLog                         |  7 +++++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 21 ++++++++++++++++++++-
 2 files changed, 27 insertions(+), 1 deletion(-)

commit 0d10f6ba20f4fcbf6e943aebb7c4034856c1e1a1
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Thu Mar 30 19:12:11 2006 +0000

    Added Lithuanian pangram.
    
    2006-03-30  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Added Lithuanian pangram.

 po/ChangeLog |  4 ++++
 po/lt.po     | 29 +++++++++++++++--------------
 2 files changed, 19 insertions(+), 14 deletions(-)

commit 8ac6a35a19dd83310d234c300fda5f89ac100415
Author: Arjan Timmerman <arjani@soulfly.nl>
Date:   Wed Mar 29 16:18:42 2006 +0000

    Fixes #334153
    
    2006-03-29  Arjan Timmerman <arjani@soulfly.nl>
    
            Fixes #334153
    
        * factory.c (register_server): no trim needed. Now really fixed.

 gnome-settings-daemon/ChangeLog | 6 ++++++
 gnome-settings-daemon/factory.c | 8 +-------
 2 files changed, 7 insertions(+), 7 deletions(-)

commit efeb4b9632944df6b44369bae3316597c5b610fb
Author: Arjan Timmerman <arjani@soulfly.nl>
Date:   Wed Mar 29 16:12:52 2006 +0000

    Fixes #334153
    
    2006-03-29  Arjan Timmerman <arjani@soulfly.nl>
    
        Fixes #334153
    
        * activate-settings-daemon.c (activate_settings_daemon): fixed leaked
        CORBA_environment and removed extra if statement.

 capplets/common/ChangeLog                  |  7 +++++++
 capplets/common/activate-settings-daemon.c | 10 +++-------
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 7d9fce0311af823dfd4fbc1f1b42261d28214f31
Author: Jaap A. Haitsma <jaap@haitsma.org>
Date:   Wed Mar 29 16:01:50 2006 +0000

    Fixes #171833
    
    2006-03-29  Jaap A. Haitsma <jaap@haitsma.org>
    
        Fixes #171833
    
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in: set
        Ctrl-Atl-l as default keybinding for screen locking.

 ChangeLog                                                 | 7 +++++++
 schemas/apps_gnome_settings_daemon_keybindings.schemas.in | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 0a4ce1ea8425806736051c6f7c3570b818e906e0
Author: Luca Cavalli <loopback@slackit.org>
Date:   Tue Mar 28 19:52:57 2006 +0000

    Fix Thunderbird command line parameter (this time should work). Closes
    
    2006-03-23  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-default-applications.xml.in: Fix Thunderbird command line
        parameter (this time should work). Closes (again) bug #326808.

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit c32a78364e45de33c2432682f05f57c678cd0095
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Mar 26 19:50:06 2006 +0000

    Updated Czech translation by Petr Tomeš.
    
    2006-03-26  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation by Petr Tomeš.

 po/ChangeLog |  4 ++++
 po/cs.po     | 42 ++++++++++++++++++------------------------
 2 files changed, 22 insertions(+), 24 deletions(-)

commit 039de1e0b105630160aa561f2a941bd48aca5e13
Author: Priit Laes <amd@store20.com>
Date:   Sat Mar 25 17:13:10 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-03-25  Priit Laes  <amd@store20.com>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 54 ++++++++++++++++++++++++++++++++----------------------
 2 files changed, 36 insertions(+), 22 deletions(-)

commit df5a8124b2221bd5733daed0683f898855caf051
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Mar 24 09:45:30 2006 +0000

    Hungarian translation updated by Mate ORY.
    
    2006-03-24  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated by Mate ORY.

 po/ChangeLog |  4 ++++
 po/hu.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit ca8a72d1bfe4981f2e47636668879472c3e75b50
Author: Ales Nyakhaychyk <alesnk@src.gnome.org>
Date:   Thu Mar 23 20:25:55 2006 +0000

    Updated Belarusian tanslation.

 po/ChangeLog |    4 +
 po/be.po     | 2238 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1102 insertions(+), 1140 deletions(-)

commit bc788085589b4060c4b61dcb44707e03df980a85
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Thu Mar 23 15:19:43 2006 +0000

    use gtk_dialog_run, we want the dialog to show up for more than less than
    
    2006-93-23  Rodrigo Moya <rodrigo@novell.com>
    
        * activate-settings-daemon.c (popup_error_message): use gtk_dialog_run,
        we want the dialog to show up for more than less than a second.

 capplets/common/ChangeLog                  | 5 +++++
 capplets/common/activate-settings-daemon.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d65761b2502feaffbffa050cef03e862c89a6116
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Thu Mar 23 14:59:44 2006 +0000

    set DISPLAY environment variable as it is, no trimming needed.
    
    2006-03-23  Rodrigo Moya <rodrigo@novell.com>
    
        * factory.c (register_server): set DISPLAY environment variable as
        it is, no trimming needed.

 gnome-settings-daemon/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 5538322b026ea73fefae97bbfe7f8a604b740491
Author: Jeremy Le Floc'h <jeremylf@src.gnome.org>
Date:   Thu Mar 23 13:53:11 2006 +0000

    *** empty log message ***

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/br.po     | 3356 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3365 insertions(+), 1 deletion(-)

commit d58d2d4fda49ad1af572a40411427205af5f76ff
Author: Tommi Vainikainen <thv@iki.fi>
Date:   Wed Mar 22 11:03:11 2006 +0000

    Added Dzongkha (dz). 2006-03-22 Tommi Vainikainen <thv@iki.fi> Added
    
    2006-03-22  Tommi Vainikainen  <thv@iki.fi>
        * configure.in (ALL_LINGUAS): Added Dzongkha (dz).
    2006-03-22  Tommi Vainikainen  <thv@iki.fi>
        * dz.po: Added Dzongkha translation from Pema Geyleg.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/dz.po     | 3266 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3275 insertions(+), 1 deletion(-)

commit abe88359fe23bbf96d0ff65e5defa064394a771f
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Mar 20 21:47:39 2006 +0000

    Translation updated by Wouter Bolsterlee.
    
    2006-03-20  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Wouter Bolsterlee.

 po/ChangeLog |  4 ++++
 po/nl.po     | 27 ++++++++++++++-------------
 2 files changed, 18 insertions(+), 13 deletions(-)

commit 6366609a2aff99ac394e94cc57eab88495ac482e
Author: Luca Cavalli <loopback@slackit.org>
Date:   Sun Mar 19 22:17:20 2006 +0000

    remove double gconf value setting. Closes bug #334331.
    
    2006-03-12  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-da-capplet.c: (terminal_checkbutton_toggled_cb): remove
        double gconf value setting. Closes bug #334331.

 capplets/default-applications/ChangeLog          |  5 +++++
 capplets/default-applications/gnome-da-capplet.c | 11 +----------
 2 files changed, 6 insertions(+), 10 deletions(-)

commit 35c0a819005f2ae6d0fbef797bcf607dd7eb500a
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Mar 18 19:35:40 2006 +0000

    Only pass G_FILE_TEST_IS_DIR to the g_file_test calls
    
    2006-03-18  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-xml.c (gnome_wp_xml_load_list): Only pass G_FILE_TEST_IS_DIR
        to the g_file_test calls
    
        Fixes #331486

 capplets/background/ChangeLog      | 7 +++++++
 capplets/background/gnome-wp-xml.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 9077cd4c5eab149532f8f75fd6ee05083f73d97e
Author: Vladimer Sichinava <vsichi@src.gnome.org>
Date:   Sat Mar 18 01:24:20 2006 +0000

    Updated Georgian translation

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6613582b26f535d9c080b53722d6c48a271064ec
Author: Priit Laes <amd@store20.com>
Date:   Fri Mar 17 08:16:58 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-03-17  Priit Laes  <amd@store20.com>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog | 4 ++++
 po/et.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit d1aa51f23a64960b30b029e5d018145f288523ba
Author: Dan Damian <dand@src.gnome.org>
Date:   Tue Mar 14 12:52:02 2006 +0000

    Updated Romanian translation.

 po/ChangeLog |    4 +
 po/ro.po     | 1248 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 742 insertions(+), 510 deletions(-)

commit 6980df2701440299d1edf21c954cec6ed9a5de86
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Tue Mar 14 07:02:24 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |    4 +
 po/vi.po     | 1970 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1022 insertions(+), 952 deletions(-)

commit 1655c350b5b2dc67b1d8680135090af54a6cc7ca
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Mar 14 02:59:06 2006 +0000

    *** empty log message ***

 po/vi.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d21743230e2a0e7d8cc93238102c9617fb14e3e7
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Mar 14 02:37:07 2006 +0000

    *** empty log message ***

 po/vi.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit fb846c3123c7b8eb945cca57d06ea7518641f959
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Mar 14 02:23:09 2006 +0000

    *** empty log message ***

 po/vi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bfda9020764a3e699666daa026ef96a02f0d967c
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Mar 13 15:02:28 2006 +0000

    updated for 2.14.0.
    
    2006-03-13  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.14.0.

 ChangeLog    |  5 +++++
 NEWS         | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 65 insertions(+), 1 deletion(-)

commit 07c3758e8a6751fdb9a6cd60de630f11016be32f
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Mar 13 05:50:57 2006 +0000

    Added Entry for Bengali (bn) Translation Updation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 56090b828c0c9a5af12d1ebe6e037af8bf3dd0ad
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Mon Mar 13 05:50:37 2006 +0000

    Updated Bengali Translation

 po/bn.po | 1257 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 751 insertions(+), 506 deletions(-)

commit 4abf12c07339604072ff9e1a44ced1998d171000
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sun Mar 12 14:08:18 2006 +0000

    update translation for Punjabi (Gurmukhi) by apbrar gmail com

 po/pa.po | 597 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 376 insertions(+), 221 deletions(-)

commit b8462141fbb60186b03cc0d0fe296310a67b8df2
Author: Lucas Rocha <lucasr@gnome.org>
Date:   Sun Mar 12 04:18:35 2006 +0000

    Updated Brazilian Portuguese translation.
    
    2006-03-12  Lucas Rocha  <lucasr@gnome.org>
    
        * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 76 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 58 insertions(+), 22 deletions(-)

commit 95271660683fdbe1f658f75c7fc53333e60b8b1d
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Mar 12 02:35:37 2006 +0000

    Updated Czech translation by Petr Tomeš.
    
    2006-03-12  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation by Petr Tomeš.

 po/ChangeLog |   4 ++
 po/cs.po     | 224 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 135 insertions(+), 93 deletions(-)

commit e4a5b28a24e476c5693fb14ea34b659ce6ac67ef
Author: Roozbeh Pournader <roozbeh@farsiweb.info>
Date:   Sat Mar 11 23:04:08 2006 +0000

    Updated Persian translation by Elnaz Sarbar and Farzaneh Sarafraz.
    
    2006-03-12  Roozbeh Pournader  <roozbeh@farsiweb.info>
    
        * fa.po: Updated Persian translation by Elnaz Sarbar and Farzaneh
          Sarafraz.

 po/ChangeLog |    5 +
 po/fa.po     | 1200 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 702 insertions(+), 503 deletions(-)

commit c1201d54c3d7315255518089eb041195a8cd3b9e
Author: Priit Laes <amd@store20.com>
Date:   Sat Mar 11 20:44:27 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-03-11  Priit Laes  <amd@store20.com>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 387a2fbb1817062dbf5788669ce3338bc9fef044
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Sat Mar 11 16:11:57 2006 +0000

    Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 77 ++++++++++++++++++++++++++++++++++++++++++-----------------
 po/sr@Latn.po | 77 ++++++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 114 insertions(+), 44 deletions(-)

commit 5eef25e40dae947d1e38f635b00c0016069612ae
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Mar 11 00:29:42 2006 +0000

    Updated Portuguese translation.
    
    2006-03-11  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 +++
 po/pt.po     | 91 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 68 insertions(+), 27 deletions(-)

commit 8710df5e3bb64d29dbf40def85bb529511febee9
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Mar 10 11:16:24 2006 +0000

    Updated Thai translation.
    
    2006-03-10  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog | 4 ++++
 po/th.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 83b661a6fa5ac77f80cdd98e99fab776b444377b
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Mar 10 10:32:48 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 76 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 58 insertions(+), 22 deletions(-)

commit d76e50d1c90fb9a6267aeeb84a49146eeb1bbcf1
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Thu Mar 9 18:06:59 2006 +0000

    Updated German translation.
    
    2006-03-09  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 19 ++++++++++++-------
 2 files changed, 16 insertions(+), 7 deletions(-)

commit 22370e6bb9f33c711f02ff20345337d2534fca69
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Mar 9 10:36:15 2006 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2006-03-09  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by  Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 275 ++++++++++++++++++-----------------------------------------
 2 files changed, 88 insertions(+), 191 deletions(-)

commit 2c78a8685fb29a3261d9b6709e3b1fe18f50ec34
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Wed Mar 8 22:35:56 2006 +0000

    Updated Macedonian Translation <arangela@cvs.gnome.org>

 po/mk.po | 57 +++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 45 insertions(+), 12 deletions(-)

commit f8142a8a6b88d7368d12394199cda7176baf4eb9
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Mar 8 22:24:32 2006 +0000

    Updated Danish translation.
    
    2006-03-08  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 +++
 po/da.po     | 88 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 67 insertions(+), 25 deletions(-)

commit 6101213eb3357710fe988e45d4e878ed1b2658c2
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Mar 8 17:30:20 2006 +0000

    Updated Spanish help translation.
    
    2006-03-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish help translation.

 help/Makefile.am                          |    2 +-
 help/es/config-accessibility-keyboard.xml |    3 -
 help/es/config-background.xml             |  132 ---
 help/es/config-default-apps.xml           |  119 ---
 help/es/config-hints.xml                  |   64 --
 help/es/config-kbd.xml                    |  173 ----
 help/es/config-keybindings.xml            |   37 -
 help/es/config-mouse.xml                  |  117 ---
 help/es/config-themes.xml                 |   46 -
 help/es/control-center.xml                |  414 ---------
 help/es/es.po                             | 1305 ++---------------------------
 11 files changed, 52 insertions(+), 2360 deletions(-)

commit f27e7e6ff9122239fd196cdc7755211ccc3d3649
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Wed Mar 8 16:00:38 2006 +0000

    Updated Italian translation.
    
    2006-03-08  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Updated Italian translation.

 po/ChangeLog | 4 ++++
 po/it.po     | 7 ++++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 0429830aa118eae8bfbf2626b393dbab28b0fb03
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 8 13:50:03 2006 +0000

    Updated Norwegian nynorsk translation.
    
    2006-03-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nn.po: Updated Norwegian nynorsk translation.

 po/ChangeLog |    4 +
 po/nn.po     | 1201 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 636 insertions(+), 569 deletions(-)

commit ec160afe5197394124094c87efa98b356827ffc4
Author: Rhys Jones <rhys@sucs.org>
Date:   Wed Mar 8 13:46:29 2006 +0000

    Updated Welsh translation.
    
    2006-03-08  Rhys Jones  <rhys@sucs.org>
    
        * cy.po: Updated Welsh translation.

 po/ChangeLog |   4 ++
 po/cy.po     | 118 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 79 insertions(+), 43 deletions(-)

commit 2d47eaf91aafecf7106bf56e9378ae69cfdbec8d
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Mar 8 00:22:53 2006 +0000

    Hungarian translation updated by Mate ORY.
    
    2006-03-08  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated by Mate ORY.

 po/ChangeLog |  4 +++
 po/hu.po     | 83 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 63 insertions(+), 24 deletions(-)

commit 532d17c18aacf0650367f09268b65d17675b3593
Author: Hendrik Brandt <heb@gnome-de.org>
Date:   Tue Mar 7 23:27:40 2006 +0000

    Updated German translation.
    
    2006-03-08  Hendrik Brandt  <heb@gnome-de.org>
    
            * de.po: Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 204 +++++++++++++++--------------------------------------------
 2 files changed, 54 insertions(+), 154 deletions(-)

commit bca96e420a87549a0e9d1048858f2cc661731c3f
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Mar 7 19:38:53 2006 +0000

    Swedish translation updated.
    
    2006-03-07  Daniel Nylander  <po@danielnylander.se>
    
            * sv.po: Swedish translation updated.

 po/ChangeLog |    4 +
 po/sv.po     | 5568 ++++++++--------------------------------------------------
 2 files changed, 783 insertions(+), 4789 deletions(-)

commit 5b83dcb7cad34777663a0039f11c09dd3a0422c7
Author: Priit Laes <amd@store20.com>
Date:   Tue Mar 7 13:04:03 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-03-07  Priit Laes  <amd@store20.com>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 +++
 po/et.po     | 84 +++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 62 insertions(+), 26 deletions(-)

commit a8f5cc54346927a4106f66e51037bbefda94973b
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Mar 7 11:33:26 2006 +0000

    Translation updated by Wouter Bolsterlee.
    
    2006-03-07  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Wouter Bolsterlee.

 po/ChangeLog |  4 ++++
 po/nl.po     | 35 ++++++++++++++++++-----------------
 2 files changed, 22 insertions(+), 17 deletions(-)

commit c2577bdfd01d85a6c9e9d490acc8332012132f03
Author: Funda Wang <fwang@src.gnome.org>
Date:   Tue Mar 7 04:58:38 2006 +0000

    Updated cinnamon-control-center zh_CN translation.

 po/ChangeLog |  4 +++
 po/zh_CN.po  | 83 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 63 insertions(+), 24 deletions(-)

commit 1196b0822fcd761e6c0aa670a83d9f740f9d4646
Author: Michael Witrant <mike@lepton.fr>
Date:   Mon Mar 6 22:40:54 2006 +0000

    Fixes #94049
    
    2006-03-06  Michael Witrant <mike@lepton.fr>
    
        Fixes #94049
    
        * factory.c (register_server): new function, does the registration
        per DISPLAY.
        (main): call register_server.

 gnome-settings-daemon/ChangeLog |  8 ++++++++
 gnome-settings-daemon/factory.c | 38 +++++++++++++++++++++++++++++++-------
 2 files changed, 39 insertions(+), 7 deletions(-)

commit 80f18a83a297355d637d088cc628eb3dc6151230
Author: Luca Cavalli <loopback@slackit.org>
Date:   Mon Mar 6 21:04:36 2006 +0000

    replace gtk_entry_set_editable, which is deprecated in newly-written code,
    
    2006-03-06  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-da-capplet.c: (web_combo_changed_cb),
        (mail_combo_changed_cb), (terminal_combo_changed_cb),
        (web_browser_update_combo_box), (mail_reader_update_combo_box),
        (terminal_update_combo_box): replace gtk_entry_set_editable,
        which is deprecated in newly-written code, with
        gtk_editable_set_editable. Closes bug #329193.

 capplets/default-applications/ChangeLog          |  9 +++++++++
 capplets/default-applications/gnome-da-capplet.c | 16 ++++++++--------
 2 files changed, 17 insertions(+), 8 deletions(-)

commit d97e245c84dc834b2715475e2c726082c53c2006
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Mar 6 19:35:53 2006 +0000

    Translation updated by Tino Meinen.
    
    2006-03-06  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 75 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 58 insertions(+), 21 deletions(-)

commit 3079ee6f50bf93ba1f446ec43534b17d99bea641
Author: Maxim Dziumanenko <mvd@mylinux.ua>
Date:   Mon Mar 6 10:37:03 2006 +0000

    Updated Ukrainian translation.
    
    2006-03-06  Maxim Dziumanenko <mvd@mylinux.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog |  4 ++++
 po/uk.po     | 44 ++++++++++++++++++++++++++++++++++++++------
 2 files changed, 42 insertions(+), 6 deletions(-)

commit 123858ad146a2ca029da70a097e9a19ab89f4f13
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Mar 6 07:52:09 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 78 ++++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 61 insertions(+), 21 deletions(-)

commit 79e2f288cb981338dbade21fe3efaa3053242ebc
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Sun Mar 5 22:11:16 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |  4 +++
 po/ca.po     | 79 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 60 insertions(+), 23 deletions(-)

commit cfec52bc16c124cd76922a8919b3e4a0cb9470ad
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Mar 5 21:56:46 2006 +0000

    Fixed a typo
    
    2006-03-05  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: Fixed a typo

 po/ChangeLog | 4 ++++
 po/it.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit b7d5e270bfb50c81b30590347b04df4e9480de8c
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Sun Mar 5 18:54:56 2006 +0000

    Updated Russian translation

 po/ChangeLog |  4 ++++
 po/ru.po     | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 49 insertions(+), 13 deletions(-)

commit 36eeef70b460a111efad2c1fb45050047dcb2e5a
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Sun Mar 5 18:40:05 2006 +0000

    Updated Polish translation by GNOME PL Team.
    
    2006-03-05  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |    4 +
 po/pl.po     | 1093 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 601 insertions(+), 496 deletions(-)

commit 4c115a8b150be8138b95bff021f1b5ad1667979d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 5 14:06:58 2006 +0000

    Updated Norwegian bokmål translation. Same.
    
    2006-03-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same.

 po/ChangeLog |  5 ++++
 po/nb.po     | 74 +++++++++++++++++++++++++++++++++++++++++++-----------------
 po/no.po     | 74 +++++++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 111 insertions(+), 42 deletions(-)

commit a0b4acb0b9f85c7170d5c17d4b89198dde322b7f
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Mar 5 12:23:11 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-03-05  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog | 5 +++++
 po/bg.po     | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 545ea8c17348a00210d5e859d4915da4499a394c
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Mar 5 09:34:31 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/gl.po     | 25 +++++++++++++++----------
 2 files changed, 19 insertions(+), 10 deletions(-)

commit 7f56c963eceecc327ef5ebdaf1f69f57529405ea
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   Sun Mar 5 01:30:31 2006 +0000

    Updated Japanese Translation.
    
    2006-03-05  Satoru SATOH <ss@gnome.gr.jp>
    
        * ja.po: Updated Japanese Translation.

 po/ChangeLog |  4 +++
 po/ja.po     | 94 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 67 insertions(+), 31 deletions(-)

commit afe86141a5bf408b7525b3eac38920f8581dcf3d
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Mar 5 00:19:09 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 ++
 po/gl.po     | 166 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 112 insertions(+), 58 deletions(-)

commit 0b04facd2339e0e10e8083f16989521bd8ebd280
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Mar 4 14:38:26 2006 +0000

    Updated Spanish translation.
    
    2006-03-04  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 74 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 57 insertions(+), 21 deletions(-)

commit 324dcd738cbcb85051f70b3441105321ddbc7956
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Mar 4 11:11:14 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 74 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 57 insertions(+), 21 deletions(-)

commit 986ef15fdd5b027c9a771246c7c2dd6b67dae10f
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Mar 4 08:04:28 2006 +0000

    Updated Thai translation.
    
    2006-03-04  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 74 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 57 insertions(+), 21 deletions(-)

commit d0291aed3e2460b246bb4486efa5c12b78d3c7a2
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sat Mar 4 08:02:14 2006 +0000

    Updated Italian translation.
    
    2006-03-04  Luca Ferretti  <elle.uca@libero.it>
    
            * it.po: Updated Italian translation.

 po/ChangeLog |   4 +
 po/it.po     | 798 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 369 insertions(+), 433 deletions(-)

commit d95d3d2ed436e7f5b6d7ae228755273634fab8a3
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Fri Mar 3 22:25:20 2006 +0000

    Updated Greek translation

 po/ChangeLog |  4 +++
 po/el.po     | 80 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 60 insertions(+), 24 deletions(-)

commit e6cbd3f79d533656d181bf064488ea22a5d6665e
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Fri Mar 3 16:54:18 2006 +0000

    Updated Lithuanian translation.
    
    2006-03-03  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 ++++
 po/lt.po     | 75 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 58 insertions(+), 21 deletions(-)

commit 11bdac1852237ce719e90f04f740692be7212ad5
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Mar 3 16:46:17 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-03-03  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |  5 ++++
 po/bg.po     | 74 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 58 insertions(+), 21 deletions(-)

commit f49fcc7ffdfe31acf2549f32ac6c9f85f58438bf
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Fri Mar 3 13:20:21 2006 +0000

    Fixed Russian translation

 po/ru.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5471ae78d051a077b7496a99fe6d296f10cac1ff
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Fri Mar 3 13:16:57 2006 +0000

    Fixed Russian translation

 po/ru.po | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit f1c448544cc8cf9c64fad662294989a024477cf3
Author: Maxim Dziumanenko <mvd@mylinux.ua>
Date:   Fri Mar 3 10:58:38 2006 +0000

    Updated Ukrainian translation.
    
    2006-03-03  Maxim Dziumanenko <mvd@mylinux.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog |    4 +
 po/uk.po     | 1188 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 698 insertions(+), 494 deletions(-)

commit 75ee31dbc56623c3ef3d3f613ea449b9a6ce2746
Author: Mathis Hasselmann <mathias.hasselmann@gmx.de>
Date:   Fri Mar 3 10:18:21 2006 +0000

    Fixes #333119
    
    2006-03-03  Mathis Hasselmann <mathias.hasselmann@gmx.de>
    
        Fixes #333119
    
        * configure.in: Set GST_LIBS when using 0.8 also.
    
        * gnome-settings-daemon/Makefile.am: link against $(GST_LIBS).

 ChangeLog                         | 8 ++++++++
 configure.in                      | 4 ++++
 gnome-settings-daemon/Makefile.am | 2 +-
 3 files changed, 13 insertions(+), 1 deletion(-)

commit 02219366c60b833fbc32136f29be6eee0b1699fc
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri Mar 3 10:07:11 2006 +0000

    don't spawn esd, already done by libesound.
    
    2006-03-02  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-settings-sound.c (start_esd): don't spawn esd, already done
        by libesound.

 gnome-settings-daemon/ChangeLog              |  5 +++++
 gnome-settings-daemon/gnome-settings-sound.c | 26 +-------------------------
 2 files changed, 6 insertions(+), 25 deletions(-)

commit b91c72111fad064e5caf3ffb763e4192f95cfeab
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Thu Mar 2 13:42:58 2006 +0000

    Updated Macedonian Translation <arangela@cvs.gnome.org>

 po/mk.po | 982 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 524 insertions(+), 458 deletions(-)

commit 7c0544df2cdb2e0f3af0f1f8efdc3b4c0fac71ff
Author: Luca Cavalli <loopback@slackit.org>
Date:   Wed Mar 1 20:37:48 2006 +0000

    remove two unused variables. Closes bug #332973.
    
    2006-03-01  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-da-capplet.c: (screen_changed_cb), (show_dialog): remove two
        unused variables. Closes bug #332973.

 capplets/default-applications/ChangeLog          | 5 +++++
 capplets/default-applications/gnome-da-capplet.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 58aadd3a14870722ccf9b71650cd49e5451f9920
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   Wed Mar 1 17:43:19 2006 +0000

    Updated German translation.
    
    2006-03-01  Hendrik Richter  <hendrikr@gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 46 ++++++++++++++++++++++++++--------------------
 2 files changed, 30 insertions(+), 20 deletions(-)

commit 37509733a48bde1049446dbf3a28d1e1e35bbeb9
Author: Joachim Noreiko <joachimn@src.gnome.org>
Date:   Wed Mar 1 17:03:35 2006 +0000

    changes to C/control-center.xml

 help/ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit bf31a2a50a467bf133f4f41d9a62bf6ca5ee48c1
Author: Joachim Noreiko <joachimn@src.gnome.org>
Date:   Wed Mar 1 16:57:58 2006 +0000

    radically pruned this back. Removed all entities to old documents, and rewritten this to cover the control center app as it currently stands. Added a link to the User Guide for help with pref tools.

 help/C/control-center.xml | 362 +---------------------------------------------
 1 file changed, 7 insertions(+), 355 deletions(-)

commit e08936ebfb9c4fddd6bdc3a9774e24e95b382869
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Wed Mar 1 16:05:32 2006 +0000

    Updated Russian translation

 po/ChangeLog |  4 ++++
 po/ru.po     | 77 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 47 insertions(+), 34 deletions(-)

commit 82a6deb3de0b976746a916bdf5e84a34d3d0c3ca
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Wed Mar 1 08:36:06 2006 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2006-03-01  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 991 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 579 insertions(+), 416 deletions(-)

commit 68e2fda416613e7906f569780b15a242b5be1e7c
Author: Luca Cavalli <loopback@slackit.org>
Date:   Tue Feb 28 21:02:55 2006 +0000

    look at the correct icon theme after screen changes and update also combo
    
    2006-02-28  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-da-capplet.c: (refresh_combo_box_icons),
        (theme_changed_cb), (screen_changed_cb), (fill_combo_box),
        (show_dialog):
        * gnome-da-capplet.h:
        * gnome-da-item.c: (gnome_da_web_item_free),
        (gnome_da_mail_item_free), (gnome_da_term_item_free):
        * gnome-da-item.h: look at the correct icon theme after screen changes
        and update also combo boxes icons when icon theme changes. Closes
        bug #330154.

 capplets/default-applications/ChangeLog          |  12 +++
 capplets/default-applications/gnome-da-capplet.c | 100 +++++++++++++++++------
 capplets/default-applications/gnome-da-capplet.h |   2 +
 capplets/default-applications/gnome-da-item.c    |   3 +
 capplets/default-applications/gnome-da-item.h    |   1 +
 5 files changed, 94 insertions(+), 24 deletions(-)

commit 4bfaca31bd90e2e69f1339e231048cda9d89fa3d
Author: Takeshi Aihana <aihana@jcom.home.ne.jp>
Date:   Tue Feb 28 20:18:08 2006 +0000

    use correct text domain name. Closes bug #332833.
    
    2006-02-28  Takeshi Aihana  <aihana@jcom.home.ne.jp>
    
        * gnome-da-capplet.c: (show_dialog), (main): use correct text domain
        name. Closes bug #332833.

 capplets/default-applications/ChangeLog          |  5 +++++
 capplets/default-applications/gnome-da-capplet.c | 16 +++++++++-------
 2 files changed, 14 insertions(+), 7 deletions(-)

commit 4fc6f44a1763eaf1cc904f3558e3414974379463
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Feb 27 18:32:20 2006 +0000

    updated for 2.13.92.
    
    2006-02-27  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.13.92.

 ChangeLog    |  5 +++++
 NEWS         | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 53 insertions(+), 1 deletion(-)

commit f17ec37866a3fb20f438ea5824dfa39558c608dc
Author: Glynn Foster <glynn.foster@sun.com>
Date:   Mon Feb 27 00:15:28 2006 +0000

    Fix typos.
    
    2006-02-27  Glynn Foster <glynn.foster@sun.com>
    
        * gnome-default-applications.xml.in: Fix typos.

 capplets/default-applications/ChangeLog                         | 4 ++++
 capplets/default-applications/gnome-default-applications.xml.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit cc48e51a92726c3ea2de41fb37b74cad42185543
Author: Fryderyk Dziarmagowski <freetz@pld-linux.org>
Date:   Sun Feb 26 23:25:02 2006 +0000

    fix Sylpheed Claws executable name. Closes part of bug #332659.
    
    2006-02-27  Fryderyk Dziarmagowski  <freetz@pld-linux.org>
    
        * gnome-default-applications.xml.in: fix Sylpheed Claws executable
        name. Closes part of bug #332659.

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 71c2a66c84b579ae81d6bac05c16aec9123a8cd5
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sun Feb 26 21:18:41 2006 +0000

    Translation updated by Tino Meinen.
    
    2006-02-26  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 60 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 40 insertions(+), 24 deletions(-)

commit 372ad9658e5c1778055b268f6d86de4bd1625b25
Author: Priit Laes <amd@store20.com>
Date:   Sun Feb 26 11:23:41 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-02-26  Priit Laes  <amd@store20.com>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 390 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 222 insertions(+), 172 deletions(-)

commit 54c6533412fb50730a121348c141635b1fbe8877
Author: Kang Jeong-Hee <kz@src.gnome.org>
Date:   Sun Feb 26 05:42:04 2006 +0000

    ko.po updated/added

 po/ko.po | 59 ++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 34 insertions(+), 25 deletions(-)

commit 5051b9d8f55c451d9e4d1dee51fc5bb5123b7101
Author: Rhys Jones <rhys@sucs.org>
Date:   Sat Feb 25 12:35:13 2006 +0000

    Updated Welsh translation.
    
    2006-02-25  Rhys Jones  <rhys@sucs.org>
    
        * cy.po: Updated Welsh translation.

 po/ChangeLog |    4 +
 po/cy.po     | 1206 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 677 insertions(+), 533 deletions(-)

commit 93dd9c6e96481d8e7852a8c4adb3b52264f2228d
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Sat Feb 25 09:08:13 2006 +0000

    Updated Lithuanian translation.
    
    2006-02-25  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 ++++
 po/lt.po     | 17 ++++++++++++-----
 2 files changed, 16 insertions(+), 5 deletions(-)

commit 99c46c6c92bda1d64d7836f1df3265969936f803
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Feb 24 11:36:10 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  5 ++++-
 po/vi.po     | 22 ++++++++++++----------
 2 files changed, 16 insertions(+), 11 deletions(-)

commit 3592dd6470dc3d3d59d22187300a36da620f5cef
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Fri Feb 24 03:51:30 2006 +0000

    Updated Brazilian Portuguese translation

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 202 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 114 insertions(+), 92 deletions(-)

commit 618789508013f61ac136485f9908bf5dfa448df8
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Thu Feb 23 12:52:18 2006 +0000

    minor update.
    
    2006-02-23  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: minor update.

 po/ChangeLog |  6 +++++-
 po/cs.po     | 61 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 43 insertions(+), 24 deletions(-)

commit be5d91300d640873a179b0f21669846088c0f388
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Feb 23 04:49:17 2006 +0000

    ka.po: Added Georgian translation.CVS: ----------------------------------------------------------------------

 po/ChangeLog |    4 +
 po/ka.po     | 3765 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3769 insertions(+)

commit 7a027d43ab53c92d480f19eaa95cc2c2db5bb894
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   Wed Feb 22 14:57:07 2006 +0000

    Updated Basque translation.
    
    2006-02-22  Inaki Larranaga  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.

 po/ChangeLog |    4 +
 po/eu.po     | 1072 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 549 insertions(+), 527 deletions(-)

commit 176c57fd36f93749631381a9069901131329174f
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Tue Feb 21 16:30:10 2006 +0000

    Updated Greek translation

 po/ChangeLog |  4 ++++
 po/el.po     | 37 ++++++++++++++++++++-----------------
 2 files changed, 24 insertions(+), 17 deletions(-)

commit e29ba7f4787d0941927b3d3a0e303744309c1877
Author: Slobodan D. Sredojevic <slobo@akrep.be>
Date:   Tue Feb 21 00:21:09 2006 +0000

    Updated Serbian translation
    
    2006-02-21  Slobodan D. Sredojevic  <slobo@akrep.be>
    
            * sr.po, sr@Latn.po: Updated Serbian translation

 po/ChangeLog  |  9 +++++++--
 po/sr.po      | 59 ++++++++++++++++++++++++++++++++++++-----------------------
 po/sr@Latn.po | 59 ++++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 79 insertions(+), 48 deletions(-)

commit f5982b5ad7e2d8a0fe3a1577c1f96e71df3bbaeb
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Feb 20 11:02:42 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 54 +++++++++++++++++++++++++++++++-----------------------
 2 files changed, 35 insertions(+), 23 deletions(-)

commit 91a91254164084a787b1b51f09fc01257d5afeb3
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Mon Feb 20 00:49:19 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/gl.po     | 23 +++++++++++++----------
 2 files changed, 17 insertions(+), 10 deletions(-)

commit 9020436f0e408e7dc7fd85beeeff0b16cfc19055
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 19 21:54:49 2006 +0000

    Updated Norwegian bokmål translation. Same.
    
    2006-02-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same.

 po/ChangeLog |  5 +++++
 po/nb.po     | 28 +++++++++++++++++-----------
 po/no.po     | 28 +++++++++++++++++-----------
 3 files changed, 39 insertions(+), 22 deletions(-)

commit 3856dbc23dfc80e61dc736e43e6c5e2d13411e3b
Author: Takeshi AIHANA <takeshi.aihana@gmail.com>
Date:   Sun Feb 19 07:00:05 2006 +0000

    Updated Japanese translation for v2.13.92.
    
    2006-02-19  Takeshi AIHANA <takeshi.aihana@gmail.com>
    
        * ja.po: Updated Japanese translation for v2.13.92.

 po/ChangeLog |   4 +
 po/ja.po     | 327 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 188 insertions(+), 143 deletions(-)

commit a2abb99684219311d430b3b64c8ca1d3448efbec
Author: Alexander Shopov <ash@contact.bg>
Date:   Sat Feb 18 17:49:47 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-02-18  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |  5 +++++
 po/bg.po     | 55 +++++++++++++++++++++++++++++++------------------------
 2 files changed, 36 insertions(+), 24 deletions(-)

commit ecb48fa6e5718c6f3c8fa4e89efad9b367f1ac47
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Feb 18 16:44:26 2006 +0000

    Updated Thai translation.
    
    2006-02-18  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 30 ++++++++++++++++++------------
 2 files changed, 22 insertions(+), 12 deletions(-)

commit 0cebf420d117186fe488f9da4f13afc0a127fe36
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Feb 18 13:30:47 2006 +0000

    Updated Spanish translation.
    
    2006-02-18  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 172 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 100 insertions(+), 76 deletions(-)

commit 448124b5cd701c3c2c488ad5ee6579a8b17dbff1
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Sat Feb 18 12:57:47 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |  4 ++++
 po/ca.po     | 52 +++++++++++++++++++++++++++++-----------------------
 2 files changed, 33 insertions(+), 23 deletions(-)

commit 755aae7bd50c23d9fb2f8606a4648391d2b7eeae
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Feb 18 08:35:26 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 16 +++++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit 79aecb5a95f102204491d2290ff1ec1657dbc2d8
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Fri Feb 17 12:14:13 2006 +0000

    Hungarian translation updated by Mate ORY.
    
    2006-02-17  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated by Mate ORY.

 po/ChangeLog |   4 +
 po/hu.po     | 302 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 193 insertions(+), 113 deletions(-)

commit 91bb73fc56b2be660fadc098127aeead8f87f13a
Author: Anilkumar Bacheli <anilkumar.bacheli@wipro.com>
Date:   Fri Feb 17 11:22:34 2006 +0000

    Fixes #330588
    
    2006-02-14  Anilkumar Bacheli <anilkumar.bacheli@wipro.com>
    
        Fixes #330588
    
        * gnome-mouse-properties.glade: Modified the Slider value label to
        "milliseconds" instead of "microseconds".
    
        * gnome-mouse-properties.c: Use ngettext() to get the correct plural
        form of the message. Also changed so that the slider label is in
        "milliseconds"

 capplets/mouse/ChangeLog                    | 11 +++++++++++
 capplets/mouse/gnome-mouse-properties.c     |  4 ++--
 capplets/mouse/gnome-mouse-properties.glade |  2 +-
 3 files changed, 14 insertions(+), 3 deletions(-)

commit 4e42ae32921a2a570d9b6478a062f645f3a7269e
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri Feb 17 10:49:04 2006 +0000

    Fixes #327021
    
    2006-02-17  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #327021
    
        * main.c (setup_dialog): don't unref the GladeXML structure, it's
        needed in the callbacks.

 capplets/font/ChangeLog | 7 +++++++
 capplets/font/main.c    | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 0c0c5a01a1588bb98bbb61e9942f03bc4f43afae
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Fri Feb 17 10:19:23 2006 +0000

    Updated Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 351 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 208 insertions(+), 147 deletions(-)

commit e8fc86ab371933f580369b34a0ed536265618da8
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   Fri Feb 17 05:46:59 2006 +0000

    Updated Japanese translation.
    
    2006-02-17  Satoru SATOH <ss@gnome.gr.jp>
    
            * ja.po: Updated Japanese translation.

 po/ChangeLog |   4 +
 po/ja.po     | 514 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 287 insertions(+), 231 deletions(-)

commit 9a60e727c720b41d0d2c344cc75276f030ba9e36
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Feb 16 22:51:31 2006 +0000

    Updated Spanish translation.
    
    2006-02-16  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog | 4 ++++
 po/es.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 446cb657428017741bd77517729cd28a35b09978
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Feb 16 22:23:49 2006 +0000

    Updated Portuguese translation.
    
    2006-02-16  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 1189 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 697 insertions(+), 496 deletions(-)

commit 73f3b146da1e8ef5a1d1ab2d17df85bf868809a5
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Wed Feb 15 14:49:26 2006 +0000

    Updated Lithuanian translation.
    
    2006-02-15  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 ++++
 po/lt.po     | 46 +++++++++++++++++++++++++---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit 6a122e312a941cd6f765d6a82b95d8642a74efd4
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Wed Feb 15 14:20:38 2006 +0000

    Fixes #331168
    
    2006-02-15  Jens Granseuer <jensgr@gmx.net>
    
        Fixes #331168
    
        * acme-volume-gstreamer.c (acme_volume_gstreamer_open): C89 compilation
        fixes.

 gnome-settings-daemon/ChangeLog                       | 7 +++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 8 +++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit 3a90c800b5048a509e03eaba63427c9b9b0fe362
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   Wed Feb 15 10:02:12 2006 +0000

    Minor fix in Czech translation.
    
    2006-02-15  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: Minor fix in Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 184 +++++++----------------------------------------------------
 2 files changed, 25 insertions(+), 163 deletions(-)

commit b50a35898b3a602011a87ac28a5dffa64af3dc33
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Wed Feb 15 03:06:11 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 42 +++++++++++++++++++++++-------------------
 2 files changed, 27 insertions(+), 19 deletions(-)

commit 1b5e1797efea9584307534b88534c864b6216911
Author: Luca Cavalli <loopback@slackit.org>
Date:   Tue Feb 14 21:11:01 2006 +0000

    disable "toggle" signal emission during UI update, thus preventing calling
    
    2006-02-14  Luca Cavalli <loopback@slackit.org>
    
        * gnome-da-capplet.c: (web_browser_update_combo_box),
        (web_browser_update_radio_buttons), (web_gconf_changed_cb),
        (show_dialog): disable "toggle" signal emission during UI update,
        thus preventing calling twice the same code. Closes bug #328094.

 capplets/default-applications/ChangeLog          |  7 +++
 capplets/default-applications/gnome-da-capplet.c | 58 ++++++++++++++++++------
 2 files changed, 52 insertions(+), 13 deletions(-)

commit 581421db72b0f560bf9079d1ba8365ea41aee002
Author: Hendrik Richter <hendi@gnome-de.org>
Date:   Tue Feb 14 17:06:23 2006 +0000

    Updated German translation.
    
    2006-02-14  Hendrik Richter  <hendi@gnome-de.org>
    
        * de.po: Updated German translation.

 po/ChangeLog | 4 ++++
 po/de.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 8b820359b156e19dd2923ccf09780e379a45027e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 14 14:11:11 2006 +0000

    Updated Norwegian bokmål translation. Same.
    
    2006-02-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same.

 po/ChangeLog |  5 +++++
 po/nb.po     | 49 +++++++++++++++++++++++++------------------------
 po/no.po     | 49 +++++++++++++++++++++++++------------------------
 3 files changed, 55 insertions(+), 48 deletions(-)

commit 1d707f4cb7f37464a44eb0c7361a4ef63ace74c6
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Tue Feb 14 11:40:41 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 46 +++++++++++++++++++++++++---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit 8acdf69f4486e0fc36e790f4450f6d7bfb238734
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Tue Feb 14 05:06:30 2006 +0000

    Updated Czech translation.
    
    2006-02-14  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 902 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 530 insertions(+), 376 deletions(-)

commit e14bdd4bb2468a8f62d49de58d2172c49baafefe
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Feb 13 22:44:25 2006 +0000

    updated for 2.13.92.
    
    2006-02-13  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.13.92.

 ChangeLog    |  5 +++++
 NEWS         | 31 +++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 37 insertions(+), 1 deletion(-)

commit 198dbb866a453a7d6566fd2ec138d917039c3a74
Author: Funda Wang <fwang@src.gnome.org>
Date:   Mon Feb 13 18:29:35 2006 +0000

    Updated cinnamon-control-center zh_CN translation.

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 46 +++++++++++++++++++++++++---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit 791cca6e4310736b6134a2b03c892c3e8ad4c1e8
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sun Feb 12 22:21:47 2006 +0000

    Fixed a couple of bugs in Danish translation.
    
    2006-02-12  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Fixed a couple of bugs in Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 12 +++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 452657488198b73130b20c8a8c1ed670796b7f00
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Sun Feb 12 14:14:07 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 ++
 po/ca.po     | 166 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 94 insertions(+), 76 deletions(-)

commit 90fb1df02698468582a62dcddadff49f5fa20e4d
Author: Hendrik Richter <hendi@gnome-de.org>
Date:   Sun Feb 12 14:07:30 2006 +0000

    Updated German translation.
    
    2006-02-12  Hendrik Richter  <hendi@gnome-de.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1171 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 687 insertions(+), 488 deletions(-)

commit 322086ac71b1f37df317156b61579c579d7bffd1
Author: Ole Laursen <olau@src.gnome.org>
Date:   Sun Feb 12 12:02:15 2006 +0000

    Forgot to update last translator field

 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 843fc46aea77e853cca0d8f820cbb2d7cca86188
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sun Feb 12 12:01:02 2006 +0000

    Updated Danish translation.
    
    2006-02-12  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 304 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 198 insertions(+), 110 deletions(-)

commit 05b2afb7665bd258b05950def02a3c6e1b0064f2
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Feb 12 09:43:43 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/gl.po     | 46 +++++++++++++++++++++++++---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit 4d193cc247552392766ab0858852c687526e6eb9
Author: Kang Jeong-Hee <kz@src.gnome.org>
Date:   Sat Feb 11 12:38:41 2006 +0000

    ko.po updated

 po/ko.po | 1094 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 579 insertions(+), 515 deletions(-)

commit 844e3285c432a519a13afb97f5b9b061606385e3
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Feb 11 07:26:27 2006 +0000

    Updated Thai translation.
    
    2006-02-11  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 162 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 92 insertions(+), 74 deletions(-)

commit 664429e256a27befc71ad43d71b01a1a4cff3cba
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Feb 11 07:18:39 2006 +0000

    Add the missing translatable flag in the Finish button.
    
    2006-02-11  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * gnome-background-properties.glade: Add the missing translatable flag
        in the Finish button.

 capplets/background/ChangeLog                         | 5 +++++
 capplets/background/gnome-background-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b8b5b4d915134f974fe3f18761b0a08e94161faa
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Feb 11 06:28:53 2006 +0000

    Add the missing GTK_RESPONSE_DELETE_EVENT back in so that we exit properly
    
    2006-02-10  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_clicked): Add the missing
        GTK_RESPONSE_DELETE_EVENT back in so that we exit properly with it

 capplets/background/ChangeLog          | 5 +++++
 capplets/background/gnome-wp-capplet.c | 1 +
 2 files changed, 6 insertions(+)

commit b69cb9f6878ca80b59da33fb88ed3d8c2bfeff86
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Feb 11 06:09:04 2006 +0000

    Require gtk+ 2.8.12 for cairo speed workaround for applying the desktop
    
    2006-02-09  Rodney Dawes  <dobey@novell.com>
    
        * configure.in: Require gtk+ 2.8.12 for cairo speed workaround for
        applying the desktop background image

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 4622d5ed516ace5bec8485668d00d703abb434e4
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Feb 11 06:08:03 2006 +0000

    Replace the Apply/Cancel/OK buttons with a Finish button, using the stock
    
    2006-02-09  Rodney Dawes  <dobey@novell.com>
    
        * gnome-background-properties.glade: Replace the Apply/Cancel/OK
        buttons with a Finish button, using the stock apply icon
    
        * gnome-wp-capplet.c (gnome_wp_props_wp_set): Don't need to check if
        we are the same image as we were before now
        (gnome_wp_props_revert): Remove this as it is no longer needed
        (gnome_wp_props_wp_selected): Call the set function here
        (gnome_wp_main_quit): Remove the freeing of capplet->old_item
        (wallpaper_properties_clicked): Only handle GTK_RESPONSE_OK as an
        action to close the dialog now, as we are instant apply again
        (gnome_wp_scale_type_changed, gnome_wp_shade_type_changed):
        (gnome_wp_color_changed): Set the appropriate gconf keys here
        (gnome_wp_load_stuffs): Remove references to capplet->old_item
    
        * gnome-wp-capplet.h (struct _GnomeWPCapplet): Remove old_item object
    
        Fixes #327335, #330587 and #329818
        Partially fixes #330168

 capplets/background/ChangeLog                      |  21 ++++
 .../background/gnome-background-properties.glade   |  92 ++++++++++-----
 capplets/background/gnome-wp-capplet.c             | 131 ++++++---------------
 capplets/background/gnome-wp-capplet.h             |   6 -
 4 files changed, 119 insertions(+), 131 deletions(-)

commit 2f430f6b99c1bfd15b5a7c7b9a0e4ab35c0a26d7
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Feb 10 07:47:09 2006 +0000

    Updated Finnish translation.

 po/ChangeLog | 5 +++++
 po/fi.po     | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 8deffb58458a71dc07cdbb83cdc565e847dfb58f
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Thu Feb 9 01:10:24 2006 +0000

    Translation updated by Tino Meinen.
    
    2006-02-09  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.

 po/ChangeLog |   4 +
 po/nl.po     | 412 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 239 insertions(+), 177 deletions(-)

commit 54f951afb8cd3ca49736082fa4d17f979d49500e
Author: Luca Cavalli <loopback@slackit.org>
Date:   Wed Feb 8 16:47:49 2006 +0000

    fix some compilation warnings. Close bug #330384.
    
    2006-02-08  Luca Cavalli <loopback@slackit.org>
    
        * gnome-da-capplet.c: (web_radiobutton_toggled_cb),
        (web_item_comp), (mail_gconf_changed_cb), (term_gconf_changed_cb),
        (show_dialog):
        * gnome-da-xml.c: (gnome_da_xml_load_xml): fix some compilation
        warnings. Close bug #330384.

 capplets/default-applications/ChangeLog          |  8 ++++++++
 capplets/default-applications/gnome-da-capplet.c | 16 +++++-----------
 capplets/default-applications/gnome-da-xml.c     |  5 ++---
 3 files changed, 15 insertions(+), 14 deletions(-)

commit 05042a5cb1fc5c10cd1686135b60667aa1c54e3d
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Wed Feb 8 11:57:40 2006 +0000

    Fixes #330335
    
    2006-02-08  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #330335
    
        * configure.in: check for glib >= 2.8.0.

 ChangeLog    | 6 ++++++
 configure.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 0dbac23fe754f017ce471233ae0ac5a8e89056b2
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Tue Feb 7 14:44:22 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit b4622dda5db6e25aa7979657e530188fc18c5ec6
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Feb 6 18:02:02 2006 +0000

    only start esd if not running.
    
    2006-02-06  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-settings-sound.c (start_esd): only start esd if not running.

 gnome-settings-daemon/ChangeLog              |  4 ++++
 gnome-settings-daemon/gnome-settings-sound.c | 27 ++++++++++++++++-----------
 2 files changed, 20 insertions(+), 11 deletions(-)

commit 98d6c3d686d5a98df172bde3a0e00f0b2ca4d2d1
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Feb 5 04:09:59 2006 +0000

    Updated cinnamon-control-center zh_CN translation.

 po/ChangeLog |  4 +++
 po/zh_CN.po  | 91 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 69 insertions(+), 26 deletions(-)

commit 1dfa540e2ce89e0270a80c92c0d7d191cbdc13df
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Sat Feb 4 20:10:19 2006 +0000

    Updated Lithuanian translation.
    
    2006-02-04  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 332 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 212 insertions(+), 124 deletions(-)

commit a333fdba5cb28abdef36b068de5ceb1423e9ce65
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Feb 3 17:39:17 2006 +0000

    Updated Norwegian bokmål translation. Same.
    
    2006-02-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same.

 po/ChangeLog |   5 +
 po/nb.po     | 359 ++++++++++++++++++++++++++++++++++++-----------------------
 po/no.po     | 359 ++++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 441 insertions(+), 282 deletions(-)

commit 8277ac936ff959efee1661f5566b167a05a775b1
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Fri Feb 3 16:32:31 2006 +0000

    removed HAL detection, was added by mistake.
    
    2006-02-03  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in: removed HAL detection, was added by mistake.

 ChangeLog    |  4 ++++
 configure.in | 11 -----------
 2 files changed, 4 insertions(+), 11 deletions(-)

commit c1605730b4dc78cee250466f69f0da5cdfb15cfe
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 1 18:58:09 2006 +0000

    Update Release 2.13.91. Remove reference to the spanish translation. It's
    
    2006-02-01  Kjartan Maraas  <kmaraas@gnome.org>
    
        * NEWS: Update
        * configure.in: Release 2.13.91.
        * help/Makefile.am: Remove reference to the spanish translation.
        It's broken and incomplete anyway.
        * help/es/Makefile.am: Remove this file as it seems to be old cruft.

 ChangeLog           |  8 ++++++++
 NEWS                |  5 +++++
 configure.in        |  2 +-
 help/Makefile.am    |  2 +-
 help/es/Makefile.am | 25 -------------------------
 5 files changed, 15 insertions(+), 27 deletions(-)

commit 546e967b42916eaf14e7ecb58069df2e3ad4cebd
Author: Adam Weinberger <adamw@gnome.org>
Date:   Wed Feb 1 01:44:14 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-31  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 317 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 198 insertions(+), 123 deletions(-)

commit c7aa7aba6815a2843bde13f95162e0c091816525
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Tue Jan 31 21:10:48 2006 +0000

    Updated Finnish translation

 po/ChangeLog |   4 +
 po/fi.po     | 384 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 224 insertions(+), 164 deletions(-)

commit a079b2d1851edf98f2360d9efb73f5a6e97b71e2
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Tue Jan 31 17:15:31 2006 +0000

    Translation updated by Ivar Smolin.
    
    2006-01-31  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 840 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 475 insertions(+), 369 deletions(-)

commit 9e9f0def1f047b8ad699f062c57fe494916e4dbe
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Tue Jan 31 12:36:38 2006 +0000

    Updated Russian translation

 po/ChangeLog |   4 ++
 po/ru.po     | 192 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 113 insertions(+), 83 deletions(-)

commit b201d2d1a23d9be6b733dddaa70c04aee0aee6e9
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Tue Jan 31 10:32:59 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 +++
 po/gl.po     | 90 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 69 insertions(+), 25 deletions(-)

commit 01988aaf67cf7be9b9211ae885eb956cab2bfdaf
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Jan 31 08:00:24 2006 +0000

    Updated Bulgarian translation by Rostislav Raykov <zbrox@i-space.org>
    
    2006-01-31  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Rostislav Raykov <zbrox@i-space.org>

 po/ChangeLog |   5 +
 po/bg.po     | 332 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 208 insertions(+), 129 deletions(-)

commit 44df5eb146fbd79bba11d1febde899162b940309
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Tue Jan 31 04:46:21 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 +++
 po/vi.po     | 90 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 69 insertions(+), 25 deletions(-)

commit 1fb9f4641e37117980fdfacc64d3381e53539c2b
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Tue Jan 31 04:22:27 2006 +0000

    Updated Translation

 po/ChangeLog |  4 +++
 po/gu.po     | 93 ++++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 72 insertions(+), 25 deletions(-)

commit 76517fef93e14904c03635e48d79a82159bbe839
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 30 18:34:27 2006 +0000

    updated for 2.13.90.
    
    2006-01-30  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: updated for 2.13.90.

 ChangeLog    |  5 ++++
 NEWS         | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in | 13 +++++++++-
 3 files changed, 99 insertions(+), 1 deletion(-)

commit c137cdf8ab293094a2bea6c50623a2e4259c7218
Author: Slobodan D. Sredojevic <slobo@akrep.be>
Date:   Mon Jan 30 16:02:16 2006 +0000

    Updated Serbian translation
    
    2006-01-30  Slobodan D. Sredojevic  <slobo@akrep.be>
    
            * sr.po, sr@Latn.po: Updated Serbian translation

 po/ChangeLog  |   4 +
 po/sr.po      | 422 +++++++++++++++++++++++++++++++++-------------------------
 po/sr@Latn.po | 422 +++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 492 insertions(+), 356 deletions(-)

commit eca87aa4bbf623fcc32b6450336d59e9a7b7d485
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 30 15:03:35 2006 +0000

    reverted commit from 2006-01-11.
    
    2006-01-30  Rodrigo Moya <rodrigo@novell.com>
    
        * schemas/apps_gnome_settings_daemon_keybindings.schemas.in:
        reverted commit from 2006-01-11.

 ChangeLog                                          |  5 ++
 ...ps_gnome_settings_daemon_keybindings.schemas.in | 59 ++++++++++++++++++++++
 2 files changed, 64 insertions(+)

commit 37927636ab11a391c4dccbd4e385465f5cd76fb2
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 30 15:02:50 2006 +0000

    reverted commit from 2006-01-11.
    
    2006-01-30  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-settings-multimedia-keys.c: reverted commit from 2006-01-11.

 gnome-settings-daemon/ChangeLog                    |   4 +
 gnome-settings-daemon/actions/acme.h               |  10 ++
 .../gnome-settings-multimedia-keys.c               | 139 ++++++++++++++++++++-
 3 files changed, 147 insertions(+), 6 deletions(-)

commit 0d78465e2d6e24d4b49537de15dd71ce8ca1d1a8
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 30 15:02:24 2006 +0000

    reverted commit from 2006-01-11.
    
    2006-01-30  Rodrigo Moya <rodrigo@novell.com>
    
        * actions/acme.h:
        * gnome-keybinding-properties.c: reverted commit from 2006-01-11.

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 6 ++++++
 2 files changed, 11 insertions(+)

commit a3703281333dd622c7a3e65a48dfc20f58cc0ab5
Author: Ed Catmur <ed@catmur.co.uk>
Date:   Mon Jan 30 12:27:04 2006 +0000

    Fixes #329043
    
    2006-01-30  Ed Catmur <ed@catmur.co.uk>
    
        Fixes #329043
    
        * ftstream-vfs.c: use correct function signature for FT callback.

 vfs-methods/fontilus/ChangeLog      | 6 ++++++
 vfs-methods/fontilus/ftstream-vfs.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 4db352256d8bb4b46d107bdbf35215eb03d1e904
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Jan 30 10:29:06 2006 +0000

    Updated Translation

 po/ChangeLog |   4 ++
 po/gu.po     | 232 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 136 insertions(+), 100 deletions(-)

commit fa6d168a957f06fb70b7e8dcbb4ca82e20932abf
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Jan 29 22:58:43 2006 +0000

    Updated g-c-c translation.

 po/ChangeLog |   4 +
 po/zh_CN.po  | 259 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 152 insertions(+), 111 deletions(-)

commit 126799d93fbb9c40fe4029d2cec52b7a285dd843
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Jan 29 22:15:05 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 261 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 152 insertions(+), 113 deletions(-)

commit 514602dc05246fe1f69b62f4dc6f996bc28e9a98
Author: Nickolay V. Shmyrev <nshmyrev@src.gnome.org>
Date:   Sun Jan 29 19:13:53 2006 +0000

    Updated Russian translation by Maxim Popov <ravemax@hotbox.ru>.
    
    
        * ru.po: Updated Russian translation by
        Maxim Popov <ravemax@hotbox.ru>.

 po/ChangeLog |    5 +
 po/ru.po     | 1139 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 588 insertions(+), 556 deletions(-)

commit 3de8bdd8888fbae78b2488b6d4158edf5ba98a87
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Jan 29 18:22:21 2006 +0000

    Hungarian translation updated.
    
    2006-01-29  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated.

 po/ChangeLog |   4 +
 po/hu.po     | 678 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 321 insertions(+), 361 deletions(-)

commit 4ca536ac9850e2df83cb0774c005c65d05760687
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Jan 29 13:08:40 2006 +0000

    Updated Spanish translation.
    
    2006-01-29  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 192 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 120 insertions(+), 76 deletions(-)

commit 1f652b02b099113b7111dc4821eedc5ff7a35f77
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Sun Jan 29 09:04:22 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 279 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 167 insertions(+), 116 deletions(-)

commit 09d56fdef9d1e62300bae3658ba66cca5e362eaa
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Sun Jan 29 08:51:34 2006 +0000

    Updated Brazilian Portuguese translation.
    
    2006-01-29  Evandro Fernandes Giovanini <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 184 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 116 insertions(+), 72 deletions(-)

commit 043d31bfe6e15281cea382f2edba3077540d0f96
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Jan 29 05:35:49 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 ++
 po/vi.po     | 165 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 101 insertions(+), 68 deletions(-)

commit c4593757ceda9ff40f749d4d87f00d16d4fd3c80
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Jan 29 05:20:54 2006 +0000

    Updated Thai translation.
    
    2006-01-29  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 747 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 445 insertions(+), 306 deletions(-)

commit ae7e848c047382ab9285fce3f7fad0263771306b
Author: Anilkumar Bacheli <anilkumar.bacheli@wipro.com>
Date:   Sat Jan 28 19:28:51 2006 +0000

    Fixes #154769
    
    2006-01-28  Anilkumar Bacheli <anilkumar.bacheli@wipro.com>
    
        Fixes #154769
    
        * gnome-mouse-properties.glade: Modified the glade file so that
        context information for the slider is available to screen reader.
        Also, modified the Slider value label to "microseconds" instead of
        seconds.
    
        * gnome-mouse-properties.c: Changed the slider label to be in sync with
        speech.

 capplets/mouse/ChangeLog                    | 12 ++++
 capplets/mouse/gnome-mouse-properties.c     |  4 +-
 capplets/mouse/gnome-mouse-properties.glade | 89 ++++++++++++++---------------
 3 files changed, 57 insertions(+), 48 deletions(-)

commit 4342a92bed0de135e57a5bdcce2b26e0591c5e67
Author: chpe <chpe@gnome.org>
Date:   Sat Jan 28 19:19:02 2006 +0000

    Fixes #325686
    
    2006-01-28  chpe <chpe@gnome.org>
    
        Fixes #325686
    
        * gnome-settings-accessibility-keyboard.c (warning_dialog_post):
        added "accept_action" and "reject_action" arguments to show that in
        the buttons, rather than OK/CANCEL.
        (ax_slowkeys_warning_keys, ax_stickykeys_warning_dialog_post): use
        verbs in the buttons.

 gnome-settings-daemon/ChangeLog                    | 10 ++++++
 .../gnome-settings-accessibility-keyboard.c        | 39 +++++++++++++++-------
 2 files changed, 37 insertions(+), 12 deletions(-)

commit 8836ecad5abc26769bf624c8ddb4f5741738781d
Author: chpe <chpe@gnome.org>
Date:   Sat Jan 28 18:51:05 2006 +0000

    Fixes #327220
    
    2006-01-28  chpe <chpe@gnome.org>
    
        Fixes #327220
    
        * gnome-default-applications.xml.in: use "Epiphany Web Browser",
        like in the .desktop file and use long options for Epiphany.

 capplets/default-applications/ChangeLog                         | 7 +++++++
 capplets/default-applications/gnome-default-applications.xml.in | 6 +++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 8ca32d80d93ccfedd5f66098180a6bbf6911f436
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sat Jan 28 18:46:47 2006 +0000

    Fixes part of #327749
    
    2006-01-28  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes part of #327749
    
        * gnome-default-applications-properties.glade:
        * gnome-da-capplet.c (web_combo_changed_cb, mail_combo_changed_cb,
        terminal_combo_changed_cb, web_browser_update_combo_box,
        mail_reader_update_combo_box, terminal_update_combo_box): don't set
        entries' sensitivity, just disable input on them.

 capplets/default-applications/ChangeLog            | 10 ++++++++
 capplets/default-applications/gnome-da-capplet.c   | 16 ++++++-------
 .../gnome-default-applications-properties.glade    | 27 ++++++++--------------
 3 files changed, 27 insertions(+), 26 deletions(-)

commit 677fe1e967752b95a8bd7505477c69e71d8e1637
Author: Scott Bronson <bronson@rinspin.com>
Date:   Sat Jan 28 15:44:56 2006 +0000

    Fixes #318056
    
    2006-01-28  Scott Bronson <bronson@rinspin.com>
    
        Fixes #318056
    
        * gnome-mouse-properties.c (cursor_font_changed):
        * gnome-mouse-properties.glade: use "mouse pointer" instead of "cursor"
        in user-visible strings.

 capplets/mouse/ChangeLog                    |  8 ++++++++
 capplets/mouse/gnome-mouse-properties.c     | 29 +++++++++++++++--------------
 capplets/mouse/gnome-mouse-properties.glade |  4 ++--
 3 files changed, 25 insertions(+), 16 deletions(-)

commit c6b3b5880e5e126b97534ea5a7a44f106ea72489
Author: Scott Bronson <bronson@rinspin.com>
Date:   Sat Jan 28 15:42:06 2006 +0000

    Fixes #318056
    
    2006-01-28  Scott Bronson <bronson@rinspin.com>
    
        Fixes #318056
    
        * gnome-settings-font.c (load_cursor): use "mouse pointer" instead of
        "cursor" in user-visible strings.

 gnome-settings-daemon/ChangeLog             | 7 +++++++
 gnome-settings-daemon/gnome-settings-font.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 53505b573ea6c40dcd77b46fb180cd9e979f505f
Author: Luca Cavalli <loopback@slackit.org>
Date:   Sat Jan 28 15:28:38 2006 +0000

    update custom command entries also when predefined application is
    
    2006-01-28  Luca Cavalli <loopback@slackit.org>
    
        * gnome-da-capplet.c: (web_combo_changed_cb),
        (mail_combo_changed_cb), (terminal_combo_changed_cb),
        (web_browser_update_combo_box), (mail_reader_update_combo_box),
        (terminal_update_combo_box), (web_gconf_changed_cb),
        (mail_gconf_changed_cb), (term_gconf_changed_cb), (show_dialog):
        update custom command entries also when predefined application is
        selected. Closes bug #327749.

 capplets/default-applications/ChangeLog          | 10 +++
 capplets/default-applications/gnome-da-capplet.c | 86 +++++++++---------------
 2 files changed, 43 insertions(+), 53 deletions(-)

commit 5b4e94b77f5f1230a91e8f92770377c4df366070
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sat Jan 28 03:32:47 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 76b04364ad08237b84b8b86cb14c852352468e04
Author: Crispin Flowerday <gnome@flowerday.cx>
Date:   Fri Jan 27 21:09:40 2006 +0000

    Use 'r' as a mnemoic rather than 'i' (bug #328884)
    
    2006-01-27  Crispin Flowerday  <gnome@flowerday.cx>
    
        * gnome-network-preferences.glade: Use 'r' as a mnemoic rather
        than 'i' (bug #328884)

 capplets/network/ChangeLog                       | 5 +++++
 capplets/network/gnome-network-preferences.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit cee0eeb8738d9bd0486ba1a9413c9f47881f6eb9
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Jan 27 18:24:01 2006 +0000

    Updated Spanish translation.
    
    2006-01-27  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 91 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 53 insertions(+), 42 deletions(-)

commit 87c6b7db477a20c43b41988cff033be06778204e
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Fri Jan 27 10:14:36 2006 +0000

    Updated Lithuanian translation.
    
    2006-01-27  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 840 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 389 insertions(+), 455 deletions(-)

commit a7eebebb147e0f1bfdd2244d12dde5e0db8a4d6c
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Fri Jan 27 09:19:11 2006 +0000

    Updated Greek translation

 po/ChangeLog |    4 +
 po/el.po     | 1074 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 537 insertions(+), 541 deletions(-)

commit 851f9e962e34b4f545a022ceda885d8de1cd967a
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Jan 27 08:19:30 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 +++
 po/vi.po     | 81 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 46 insertions(+), 39 deletions(-)

commit 0444e131e30f017a4623ac58cf1e7b6ccabae706
Author: Lasse Bang Mikkelsen <lbm@src.gnome.org>
Date:   Fri Jan 27 07:52:11 2006 +0000

    Updated Danish translation

 po/ChangeLog |  4 ++++
 po/da.po     | 63 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 37 insertions(+), 30 deletions(-)

commit 47c8e3880ba215ed27916093baa2b0db33d34cc0
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Fri Jan 27 05:32:07 2006 +0000

    Updated Brazilian Portuguese translation.
    
    2006-01-27  Evandro Fernandes Giovanini <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |  4 +++
 po/pt_BR.po  | 88 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 51 insertions(+), 41 deletions(-)

commit 149d12c7e60680db2990792330ec19662916a5f2
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Fri Jan 27 04:28:56 2006 +0000

    Updated Translation

 po/ChangeLog |  4 +++
 po/gu.po     | 80 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 46 insertions(+), 38 deletions(-)

commit 0a696e12e87c6775cb2a218422ba65641f91065d
Author: Rodney Dawes <dobey@novell.com>
Date:   Fri Jan 27 03:15:06 2006 +0000

    If we are passed in a NULL just return rather than using g_return_if_fail
    
    2006-01-26  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (gnome_wp_capplet_scroll_to_item): If we are
        passed in a NULL just return rather than using g_return_if_fail to
        do it, so that we can avoid the glib CRITICAL warning (#327327)
        (gnome_wp_load_stuffs): If the settings are mangled some how, and
        a valid item was not duplicated, duplicated the "No Wallpaper" item
    
        Fixes #327327

 capplets/background/ChangeLog          | 10 ++++++++++
 capplets/background/gnome-wp-capplet.c |  7 ++++++-
 2 files changed, 16 insertions(+), 1 deletion(-)

commit f69be2bd96f7615e298dea845075e8c88df52d73
Author: Rodney Dawes <dobey@novell.com>
Date:   Fri Jan 27 03:01:58 2006 +0000

    Add an Apply button
    
    2006-01-26  Rodney Dawes  <dobey@novell.com>
    
        * gnome-background-properties.glade: Add an Apply button
    
        * gnome-wp-capplet.[ch]: Replace old_filename with an old_item struct
        (gnome_wp_props_wp_set): Set the filename key to empty string when
        setting the background to "No Wallpaper"
        (gnome_wp_props_revert): New method to revert changes in the dialog
        when the Cancel button is clicked
        (gnome_wp_main_quit): Free the old_item structure
        (wallpaper_properties_clicked): Handle the Apply button
        Handle closing the dialog for OK separately from Cancel/delete_event
        Revert the settings when Cancel or wm "x" or ESC are clicked
        (gnome_wp_load_stuffs): Set the old_item to the currently selected
        background setting, whether it be an image or "No Wallpaper"
    
        * gnome-wp-info.c (gnome_wp_info_dup): If info is NULL, just return
        NULL rather than trying to access members of an empty struct
    
        * gnome-wp-item.[ch] (gnome_wp_item_dup): New method to create a
        duplicate and newly allocated GnomeWPItem structure
    
        Fixes #327335

 capplets/background/ChangeLog                      | 24 +++++++++
 .../background/gnome-background-properties.glade   | 15 +++++-
 capplets/background/gnome-wp-capplet.c             | 63 ++++++++++++++++++++--
 capplets/background/gnome-wp-capplet.h             |  7 ++-
 capplets/background/gnome-wp-info.c                |  4 ++
 capplets/background/gnome-wp-item.c                | 38 +++++++++++++
 capplets/background/gnome-wp-item.h                |  1 +
 7 files changed, 144 insertions(+), 8 deletions(-)

commit cbc6eb679e91cb3a85d33253bcd3c21135de7078
Author: Christian Persch <chpe@cvs.gnome.org>
Date:   Thu Jan 26 22:17:02 2006 +0000

    Change "Monospace" to "Fixed width". Bug #160454.
    
    2006-01-26  Christian Persch  <chpe@cvs.gnome.org>
    
            * capplets/font/font-properties.glade:
        Change "Monospace" to "Fixed width". Bug #160454.

 ChangeLog                           | 5 +++++
 capplets/font/font-properties.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit a50c3cb78969deaa0e07698bbab6908233d00ef5
Author: Rodrigo Moya <rodrigownovell.com>
Date:   Thu Jan 26 18:27:49 2006 +0000

    Fixes #328748
    
    2006-01-26  Rodrigo Moya <rodrigownovell.com>
    
        Fixes #328748
    
        * gnome-keyboard-properties.c (blink_to_widget): remove space
        before punctuation.

 capplets/keyboard/ChangeLog                   | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit a29d713ce8ccb12deb08bce02eb168617271b360
Author: Adam Weinberger <adamw@gnome.org>
Date:   Thu Jan 26 17:59:05 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-26  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 120 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 71 insertions(+), 53 deletions(-)

commit 464a2b369f779113d3405a644d75862d408b3ea7
Author: Lasse Bang Mikkelsen <lbm@src.gnome.org>
Date:   Thu Jan 26 14:07:01 2006 +0000

    Updated Danish translation

 po/ChangeLog |   4 ++
 po/da.po     | 119 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 72 insertions(+), 51 deletions(-)

commit d73b4ee2d626808062ddeda9af6c948f2b604c77
Author: Christian Persch <chpe@cvs.gnome.org>
Date:   Thu Jan 26 13:23:05 2006 +0000

    Add a font button for the document font gconf key, and change the label of
    
    2006-01-26  Christian Persch  <chpe@cvs.gnome.org>
    
        * capplets/font/font-properties.glade:
        * capplets/font/main.c: (setup_dialog):
        Add a font button for the document font gconf key, and change
        the label of the 'terminal font' button. Bug #160454,
        patch by Shaun McCance.

 ChangeLog                           |   8 ++
 capplets/font/font-properties.glade | 184 +++++++++++++++++++++++++-----------
 capplets/font/main.c                |   5 +
 3 files changed, 143 insertions(+), 54 deletions(-)

commit 072218356d5e5535526f25ce40a2ade5a817e257
Author: Funda Wang <fwang@src.gnome.org>
Date:   Thu Jan 26 08:52:08 2006 +0000

    Updated g-c-c translation.

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 57 +++++++++++++++++++++++++++++++--------------------------
 2 files changed, 35 insertions(+), 26 deletions(-)

commit 72bd11d3821236e56780d9361c697aefb44b45d9
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Thu Jan 26 08:20:20 2006 +0000

    Updated Brazilian Portuguese translation.
    
    2006-01-26  Evandro Fernandes Giovanini <evandrofg@ig.com.br>
    
        * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |   4 +
 po/pt_BR.po  | 877 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 490 insertions(+), 391 deletions(-)

commit 3baa399ba9bc4903a253144e01cafd086c170b83
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Wed Jan 25 23:46:22 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |  4 ++++
 po/ca.po     | 57 ++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 36 insertions(+), 25 deletions(-)

commit 8e33fa8c4e2639c346ea09ca0e138e5319e4c592
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Tue Jan 24 20:35:49 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/gl.po     | 39 +++++++++++++++++++++++++--------------
 2 files changed, 29 insertions(+), 14 deletions(-)

commit cfdabbfd032831372777ad47c57d2473e2442b56
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Tue Jan 24 05:57:34 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 53 +++++++++++++++++++++++++++++++----------------------
 2 files changed, 35 insertions(+), 22 deletions(-)

commit e8db31bce779b8d71f2c9d31ec1d795d74202914
Author: Thomas Wood <thos@gnome.org>
Date:   Mon Jan 23 19:50:34 2006 +0000

    Prevent a Gtk-CRITICAL error
    
    2006-01-23  Thomas Wood  <thos@gnome.org>
    
        * file-transfer-dialog.c: (create_titled_label): Prevent a
        Gtk-CRITICAL error

 capplets/common/ChangeLog              | 5 +++++
 capplets/common/file-transfer-dialog.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c8ee47bb8a819316b7b752222797fe491bb1ba32
Author: Luca Cavalli <loopback@slackit.org>
Date:   Mon Jan 23 10:55:11 2006 +0000

    fixed Thunderbird command line parameter. Closes bug #326808.
    
    2006-01-17  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-default-applications.xml.in: fixed Thunderbird command
        line parameter. Closes bug #326808.

 capplets/default-applications/ChangeLog                         | 5 +++++
 capplets/default-applications/gnome-default-applications.xml.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 166df0a0a8283149c3fb80d147f10eb2a84058ac
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 23 10:09:18 2006 +0000

    Updated Norwegian bokmål translation. Same
    
    2006-01-22  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same

 po/ChangeLog |   5 +
 po/nb.po     | 621 +++++++++++++++++++++++++++--------------------------------
 po/no.po     | 621 +++++++++++++++++++++++++++--------------------------------
 3 files changed, 569 insertions(+), 678 deletions(-)

commit 2c6aac3c05300ccb0a2abf0583c0d2b0d327a9bd
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Jan 23 09:54:20 2006 +0000

    Translation updated by Reinout van Schouwen.
    
    2006-01-23  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 623 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 350 insertions(+), 277 deletions(-)

commit 27e4dd39ad145fbe36529524ab148ff5797e975c
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Jan 23 09:42:03 2006 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 55 +++++++++++++++++++++++++++++++++----------------------
 2 files changed, 37 insertions(+), 22 deletions(-)

commit 0e323332ea90af44240c6e724b3f0281143cace2
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Mon Jan 23 05:16:29 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 17 ++++++++---------
 2 files changed, 12 insertions(+), 9 deletions(-)

commit 6e28b72dd472531edade017d927156f767b1ef4f
Author: Behdad Esfahbod <behdad@src.gnome.org>
Date:   Sun Jan 22 22:07:54 2006 +0000

    Format.

 ChangeLog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6d443a113df53fc5dca6f530845626d641b30aaa
Author: Luca Cavalli <loopback@slackit.org>
Date:   Sun Jan 22 22:07:18 2006 +0000

    Add GTK category to the #328028)
    
    2006-01-22  Luca Cavalli  <loopback@slackit.org>
    
            * capplets/about-me/gnome-about-me.desktop.in.in:
            * capplets/accessibility/at-properties/at-properties.desktop.in.in:
            * capplets/accessibility/keyboard/accessibility-keyboard.desktop.in.in:
            * capplets/background/background.desktop.in.in:
            * capplets/default-applications/default-applications.desktop.in.in:
            * capplets/display/display-properties.desktop.in.in:
            * capplets/file-types/file-types.desktop.in.in:
            * capplets/font/font-properties.desktop.in.in:
            * capplets/keybindings/keybinding.desktop.in.in:
            * capplets/keyboard/keyboard.desktop.in.in:
            * capplets/localization/localization.desktop.in.in:
            * capplets/mouse/gnome-settings-mouse.desktop.in.in:
            * capplets/network/gnome-network-preferences.desktop.in.in:
            * capplets/sound/gnome-settings-sound.desktop.in.in:
            * capplets/theme-switcher/gtk-theme-selector.desktop.in.in:
            * capplets/ui-properties/gnome-ui-properties.desktop.in.in:
            * capplets/windows/window-properties.desktop.in.in:
            * control-center/gnomecc.desktop.in.in: Add GTK category to the
            * .desktop        files and remove unused ones. (Closes: #328028)

 ChangeLog                                          | 22 ++++++++++++++++++++++
 capplets/about-me/gnome-about-me.desktop.in.in     |  2 +-
 .../at-properties/at-properties.desktop.in.in      |  2 +-
 .../keyboard/accessibility-keyboard.desktop.in.in  |  2 +-
 capplets/background/background.desktop.in.in       |  2 +-
 .../default-applications.desktop.in.in             |  2 +-
 capplets/display/display-properties.desktop.in.in  |  2 +-
 capplets/file-types/file-types.desktop.in.in       |  2 +-
 capplets/font/font-properties.desktop.in.in        |  2 +-
 capplets/keybindings/keybinding.desktop.in.in      |  2 +-
 capplets/keyboard/keyboard.desktop.in.in           |  2 +-
 capplets/localization/localization.desktop.in.in   |  2 +-
 capplets/mouse/gnome-settings-mouse.desktop.in.in  |  2 +-
 .../gnome-network-preferences.desktop.in.in        |  2 +-
 capplets/sound/gnome-settings-sound.desktop.in.in  |  2 +-
 .../gtk-theme-selector.desktop.in.in               |  2 +-
 .../gnome-ui-properties.desktop.in.in              |  2 +-
 capplets/windows/window-properties.desktop.in.in   |  2 +-
 control-center/gnomecc.desktop.in.in               |  2 +-
 19 files changed, 40 insertions(+), 18 deletions(-)

commit 6d37a946dfbd545c83227eb4ff6d3aae2748052a
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Jan 22 21:49:08 2006 +0000

    Updated Spanish translation.
    
    2006-01-22  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +++
 po/es.po     | 105 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 73 insertions(+), 36 deletions(-)

commit 3782fabbb28892379feaeae1802ea905ad2bb785
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Jan 22 17:36:14 2006 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2006-01-22  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 +
 po/bg.po     | 617 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 286 insertions(+), 336 deletions(-)

commit af467b99b6115816c2ef15c86fdc4ff8fd7361b8
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sun Jan 22 15:37:49 2006 +0000

    Fixes #168790
    
    2006-01-22  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #168790
    
        * gnome-keyboard-properties.c (accessibility_button_clicked): dont
        use "capplet" in user-visible strings.

 capplets/keyboard/ChangeLog                   | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 981dab8ef55389a33e7d3af4a5ac5d522b7e6bbd
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sun Jan 22 15:35:49 2006 +0000

    Fixes #168790
    
    2006-01-22  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #168790
    
        * capplet-stock-icons.c (capplet_register_stock_icons): don't use
        "capplet" in user-visible strings.

 capplets/common/ChangeLog             | 7 +++++++
 capplets/common/capplet-stock-icons.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 3fdf2b58e6c7d8201682e9e9b58561e2fc647988
Author: Luca Ferretti <elle.uca@libero.it>
Date:   Sun Jan 22 15:23:50 2006 +0000

    "Backported" Italian translation from stable.
    
    2006-01-22  Luca Ferretti  <elle.uca@libero.it>
    
        * it.po: "Backported" Italian translation from stable.

 po/ChangeLog |    4 +
 po/it.po     | 1545 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 856 insertions(+), 693 deletions(-)

commit 6275d4b266619e860eb9069865bcc1bcf0a8f96c
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Jan 22 15:16:32 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 39 +++++++++++++++++++++++++--------------
 2 files changed, 29 insertions(+), 14 deletions(-)

commit c7b0d35b2fa1b1a12fc1f2f11d74706e56e8d2e9
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Jan 22 11:55:14 2006 +0000

    Refuse to bind letter keys without a modifier (Closes: #86956)
    
    2006-01-22  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-keybinding-properties.c: (accel_edited_callback):
        Refuse to bind letter keys without a modifier (Closes: #86956)

 capplets/keybindings/ChangeLog                     |  5 +++
 capplets/keybindings/gnome-keybinding-properties.c | 38 ++++++++++++++++++++++
 2 files changed, 43 insertions(+)

commit f2bd50a8a5de453cde1bcd0dac74ad9de5f43311
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Sun Jan 22 10:45:18 2006 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 609 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 275 insertions(+), 338 deletions(-)

commit f1d64618e29bee399d19fb4ed825abee445ce124
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Jan 22 01:29:55 2006 +0000

    Updated Spanish translation.
    
    2006-01-22  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 help/Makefile.am |    2 +-
 help/es/es.po    | 1289 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1290 insertions(+), 1 deletion(-)

commit 62a9bb7c8f656aab59a60b9c17c8691302b7e227
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Sat Jan 21 18:44:55 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 799 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 444 insertions(+), 359 deletions(-)

commit c3fdbfd6488b470b5492035460e3f28cb806a670
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Jan 21 18:16:18 2006 +0000

    Updated Spanish translation.
    
    2006-01-21  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 609 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 335 insertions(+), 278 deletions(-)

commit 0eb8e8b5d6514ab48220a282e7b1c00092d55e33
Author: Diego Gonzalez <diego@pemas.net>
Date:   Sat Jan 21 16:59:38 2006 +0000

    fix crash 317315.
    
    2006-01-21  Diego Gonzalez   <diego@pemas.net>
    
        * gnome-about-me.c (about_me_foucs_out): fix crash 317315.
    
    2006-01-21  Diego Gonzalez   <diego@pemas.net>
    
        * gnome-about-me.glade: don't accept tabs in the address fields to
          preserve the tab navigation on the dialog, as suggested by
          Sebastien Bacher in bug 317468.

 capplets/about-me/ChangeLog            | 10 ++++++++++
 capplets/about-me/gnome-about-me.c     |  3 +++
 capplets/about-me/gnome-about-me.glade |  4 ++--
 3 files changed, 15 insertions(+), 2 deletions(-)

commit 0638a4cf7404047489b18b37d1d779f7d99cea1b
Author: Lasse Bang Mikkelsen <lbm@src.gnome.org>
Date:   Fri Jan 20 20:14:23 2006 +0000

    Updated Danish translation

 po/ChangeLog |  4 ++++
 po/da.po     | 78 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 47 insertions(+), 35 deletions(-)

commit ffea9872cebefb42b9fe6e4c260aac13738ba63d
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Jan 20 17:33:57 2006 +0000

    Updated g-c-c translation.

 po/ChangeLog |   4 +
 po/zh_CN.po  | 699 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 326 insertions(+), 377 deletions(-)

commit e8844d388599621df625d233cf7c0d53aa66825c
Author: Alessandro Ferrucci <a24@umbc.edu>
Date:   Fri Jan 20 10:15:35 2006 +0000

    Fixes #327784
    
    2006-01-20  Alessandro Ferrucci <a24@umbc.edu>
    
        Fixes #327784
    
        * C/config-accessibility-keyboard.xml:
        * C/control-center.xml: Update the scrollkeeper (and yelp) description
        for control-center

 help/C/config-accessibility-keyboard.xml | 3 +++
 help/C/control-center.xml                | 5 +++++
 help/ChangeLog                           | 8 ++++++++
 3 files changed, 16 insertions(+)

commit e88077e3a1f5467ca86065bd1c38c166f8b4482a
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Jan 20 05:15:01 2006 +0000

    Updated Finnish translation

 po/ChangeLog |   4 +
 po/fi.po     | 717 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 398 insertions(+), 323 deletions(-)

commit a3496b037e290ba248c0b2fab7e1b41274847dee
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Thu Jan 19 13:30:53 2006 +0000

    Updated Japanese translation for v2.13.5.1.
    
    2006-01-19  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.13.5.1.

 po/ChangeLog |   4 +
 po/ja.po     | 581 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 262 insertions(+), 323 deletions(-)

commit 3d95ee7cb864f021dc92abd977f52996e8febd2c
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Jan 19 11:36:28 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 +
 po/vi.po     | 380 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 198 insertions(+), 186 deletions(-)

commit 04253a33b35383145f985fbf96e21f721893e833
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Wed Jan 18 12:29:38 2006 +0000

    update for 2.13.5.1.
    
    2006-01-18  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: update for 2.13.5.1.

 ChangeLog    |  9 +++++++--
 NEWS         | 19 +++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 27 insertions(+), 3 deletions(-)

commit 292e97576c7df7e3ae77b669de5811e77dd20aa3
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Jan 18 07:54:57 2006 +0000

    Updated Translation

 po/ChangeLog |   4 +
 po/gu.po     | 596 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 268 insertions(+), 332 deletions(-)

commit 2e374546a627627399e9c373abc32a0ae8aa48f1
Author: Slobodan D. Sredojevic <slobo@akrep.be>
Date:   Wed Jan 18 01:22:31 2006 +0000

    Updated Serbian translation
    
    2006-01-18  Slobodan D. Sredojevic  <slobo@akrep.be>
    
            * sr.po, sr@Latn.po: Updated Serbian translation

 po/ChangeLog  |   4 +
 po/sr.po      | 715 ++++++++++++++++++++++++++++++++--------------------------
 po/sr@Latn.po | 715 ++++++++++++++++++++++++++++++++--------------------------
 3 files changed, 792 insertions(+), 642 deletions(-)

commit 8edf9030c28a81770127a0cf4869378eb9e66dde
Author: Adam Weinberger <adamw@gnome.org>
Date:   Tue Jan 17 19:40:54 2006 +0000

    Added missing file. Updated Canadian English translation.
    
    
    2006-01-17  Adam Weinberger  <adamw@gnome.org>
    
        * POTFILES.in: Added missing file.
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   2 +
 po/en_CA.po    | 343 ++++++++++++++++++++++++++++-----------------------------
 3 files changed, 175 insertions(+), 175 deletions(-)

commit d11e0c199ff62abd30c0461bc0c60971cef7b0d7
Author: Luca Cavalli <loopback@slackit.org>
Date:   Tue Jan 17 15:48:08 2006 +0000

    load translated XML application description, if available. Closes bug
    
    2006-01-17  Luca Cavalli  <loopback@slackit.org>
    
        * gnome-da-xml.c: (gnome_da_xml_get_string): load translated XML
        application description, if available. Closes bug #327221.

 capplets/default-applications/ChangeLog      |  5 +++++
 capplets/default-applications/gnome-da-xml.c | 30 ++++++++++++++++++++++++++--
 2 files changed, 33 insertions(+), 2 deletions(-)

commit b17e24b25c789297ce2f70d81e18e0e118114cf8
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Tue Jan 17 15:43:50 2006 +0000

    use g_mkdir_with_parents instead of creating the whole hierarchy by hand.
    
    2006-01-17  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-settings-font.c (load_cursor): use g_mkdir_with_parents instead
        of creating the whole hierarchy by hand.

 gnome-settings-daemon/ChangeLog             |  5 ++
 gnome-settings-daemon/gnome-settings-font.c | 78 +++++++++++++----------------
 2 files changed, 39 insertions(+), 44 deletions(-)

commit 06f093b46617f2b4cc8339621595ff188b06c279
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Tue Jan 17 14:42:40 2006 +0000

    include m4 directory and fixed .spec file disting.
    
    2006-01-16  Rodrigo Moya <rodrigo@novell.com>
    
        * Makefile.am: include m4 directory and fixed .spec file disting.

 ChangeLog   | 4 ++++
 Makefile.am | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit a4f584bdd9bb1119387b8653b2eba9efc6f3d315
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Tue Jan 17 11:55:46 2006 +0000

    update for string change

 po/pa.po | 426 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 200 insertions(+), 226 deletions(-)

commit f5abf7a911f999b7d0851252f4b400810b47cb29
Author: Lasse Bang Mikkelsen <lbm@src.gnome.org>
Date:   Tue Jan 17 11:31:43 2006 +0000

    Updated Danish translation

 po/ChangeLog |    4 +
 po/da.po     | 1314 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 662 insertions(+), 656 deletions(-)

commit 74424a37ec36555c2c13a5566ca6d7c051d12a61
Author: Funda Wang <fwang@src.gnome.org>
Date:   Mon Jan 16 23:47:13 2006 +0000

    Removed obsolete files from g-c-c POTFILES.in.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 6 ++----
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 97ccdcdb05dd033eb7e82f757f5fb01f9d0d595f
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 16 18:07:04 2006 +0000

    NEWS; update for 2.13.5.
    
    2006-01-16  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS; update for 2.13.5.

 ChangeLog    |  5 +++++
 NEWS         | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 65 insertions(+), 1 deletion(-)

commit 7b6f60b5bba888489f22ef7c35c69d390c95d18e
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 16 17:59:03 2006 +0000

    just read the file from the $datadir we installed it.
    
    2006-01-16  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-da-xml.c (gnome_da_xml_load_list): just read the file
        from the $datadir we installed it.
    
        * Makefile.am: -DDATADIR.

 capplets/default-applications/ChangeLog      |  7 +++++++
 capplets/default-applications/Makefile.am    |  7 ++++++-
 capplets/default-applications/gnome-da-xml.c | 25 ++++++++-----------------
 3 files changed, 21 insertions(+), 18 deletions(-)

commit 7683126997a61813d0e49803d6114d64e66c2b5f
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 17:18:13 2006 +0000

    fixed the dist
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: fixed the dist

 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 82b85f81bab5960af9d7926ada32ad54787fe51c
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 17:09:43 2006 +0000

    fixes some errors with the path
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-da-capplet.c: (show_dialog): fixes some errors with the path

 capplets/default-applications/ChangeLog          | 4 ++++
 capplets/default-applications/gnome-da-capplet.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 3ec46a9076a000bcf49092d7e093a55190df0bac
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 17:03:32 2006 +0000

    use the correct .glade
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-da-capplet.c: (show_dialog): use the correct .glade

 capplets/default-applications/ChangeLog          | 4 ++++
 capplets/default-applications/gnome-da-capplet.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2b2a8147ce590b175895e9295f3a255f0ae30c30
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 16:26:47 2006 +0000

    fix gladedir use
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: fix gladedir use

 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 9d31afa2e2098e4807793f5785d8d85457186684
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 15:26:45 2006 +0000

    fix a name
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: fix a name

 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b64b089390bcf6837413deed51417775d72aa811
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 15:15:28 2006 +0000

    the new gnome-default-applications capplet uses libxml2
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: the new gnome-default-applications capplet uses libxml2

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit 2f8d99ddce8c9a563150c765e8ff48da65d987f1
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 15:13:33 2006 +0000

    new gnome-default-applications capplet, patch by Luca Cavalli
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am:
        * default-applications-properties.glade:
        * gnome-da-capplet.c, gnome-da-capplet.h:
        * gnome-da-item.c, gnome-da-item.h:
        * gnome-da-xml.c, gnome-da-xml.h:
        * gnome-default-applications-properties-structs.c:
        * gnome-default-applications-properties.c:
        * gnome-default-applications-properties.glade:
        * gnome-default-applications.xml.in:
        new gnome-default-applications capplet,
        patch by Luca Cavalli <loopback@slackit.org> updated for the
        cinnamon-control-center build system

 capplets/default-applications/ChangeLog            |   15 +
 capplets/default-applications/Makefile.am          |   16 +-
 .../default-applications-properties.glade          |    1 -
 capplets/default-applications/gnome-da-capplet.c   |  839 +++++++
 capplets/default-applications/gnome-da-capplet.h   |   90 +
 capplets/default-applications/gnome-da-item.c      |   96 +
 capplets/default-applications/gnome-da-item.h      |   64 +
 capplets/default-applications/gnome-da-xml.c       |  208 ++
 capplets/default-applications/gnome-da-xml.h       |   26 +
 ...gnome-default-applications-properties-structs.c |   68 -
 .../gnome-default-applications-properties.c        |  794 -------
 .../gnome-default-applications-properties.glade    | 2430 +++++++++++---------
 .../gnome-default-applications.xml.in              |  291 +++
 13 files changed, 2928 insertions(+), 2010 deletions(-)

commit ccf99ec6beb4453aadb876a4e7963715a1842baf
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 16 10:05:33 2006 +0000

    fix gstreamer0.10 requirement
    
    2006-01-16  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: fix gstreamer0.10 requirement

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 732ff6c94628520cea8ab3c673ba63b5fbe99cfd
Author: Adam Weinberger <adamw@gnome.org>
Date:   Mon Jan 16 04:23:41 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-15  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog   |  5 +++++
 po/POTFILES.in |  1 +
 po/en_CA.po    | 67 +++++++++++++++++++++++++++++++---------------------------
 3 files changed, 42 insertions(+), 31 deletions(-)

commit 95ceaa7ea5fbb03ecd996047af1d0eb9ac271e42
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jan 15 21:56:50 2006 +0000

     optional use of gstreamer0.10, patch based on the work
        done by Saleem Abdulrasool and Tim-Philipp Mller (Fixes: #326257)

 ChangeLog                                          |  5 ++
 configure.in                                       | 34 ++++++++++--
 gnome-settings-daemon/ChangeLog                    |  8 +++
 gnome-settings-daemon/actions/Makefile.am          |  3 ++
 .../actions/acme-volume-gstreamer.c                | 63 +++++++++++++++++++++-
 5 files changed, 106 insertions(+), 7 deletions(-)

commit 90c31372c91569e3e8c523d90c0dc5a203b90b1b
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jan 15 18:22:07 2006 +0000

    Set the Net/FallbackIconTheme XSetting for new versions of
    
    2006-01-14  Rodney Dawes  <dobey@novell.com>
    
        * gnome-settings-xsettings.c (xsettings_callback):
        (gnome_settings_xsettings_load): Set the Net/FallbackIconTheme
        XSetting for new versions of gnome-icon-theme and gtk+ >= 2.8.10
    
        See bug #325546

 gnome-settings-daemon/ChangeLog                  | 8 ++++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 8 ++++++++
 2 files changed, 16 insertions(+)

commit b1314c6387434d5f41fc64442ac57e527937912a
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sun Jan 15 15:57:30 2006 +0000

    Translation updated by Karel Demeyer.
    
    2006-01-15  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Karel Demeyer.

 po/ChangeLog |   4 +
 po/nl.po     | 716 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 393 insertions(+), 327 deletions(-)

commit ad27f6c695fd173d9e48e86d180a61630379dc4c
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Jan 15 07:38:56 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 50 ++++++++++++++++++++++++--------------------------
 2 files changed, 28 insertions(+), 26 deletions(-)

commit 94f17fc4297d603f6e10a42e36d7dcb99a0f3d9b
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Jan 14 21:30:24 2006 +0000

    Set the visibility of the second color chooser button to off by default
    
    2006-01-14  Rodney Dawes  <dobey@novell.com>
    
        * gnome-background-properties.glade: Set the visibility of the second
        color chooser button to off by default
    
        Fixes #319463

 capplets/background/ChangeLog                         | 7 +++++++
 capplets/background/gnome-background-properties.glade | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 569023b7b97d9be3acd55f6de6160f93421b37c7
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Jan 14 20:53:58 2006 +0000

    Update Copyright notice to include 2006 year
    
    2006-01-14  Rodney Dawes  <dobey@novell.com>
    
        * *.[ch]: Update Copyright notice to include 2006 year
    
        * gnome-background-properties.glade: Change the main dialog to use
        explicit apply with OK and Cancel buttons
        Remove the icons from the "Add Wallpaper" and "Remove" buttons
    
        * gnome-wp-capplet.c (gnome_wp_props_wp_set): Add a new retval boolean
        so that we can return whether or not we are trying to set the wallpaper
        to the same image filename as before
        Remove all the UI updating code from here
        Fix a potential leak of the GConfChangeSet object
        (gnome_wp_props_wp_selected): Update the UI whenever a different
        wallpaper is selected in the list
        Remove the timeout to update gconf, as we are using explicit apply now
        (gnome_wp_main_quit): Free the old_filename variable
        Update the indentation style to match the rest of the code
        (wallpaper_properties_clicked): Handle setting the gconf keys when the
        OK button is clicked, and fall through to the cancel/close code
        (gnome_wp_scale_type_changed, gnome_wp_shade_type_changed):
        Don't set the gconf strings from here, only update when OK is clicked
        (gnome_wp_color_changed): Don't update gconf strings here
        Don't generate miniature icon thumbnails for the drop-down menu
        (gnome_wp_remove_wallpaper): Don't need to remove the idle id any more
        (gnome_wp_load_stuffs): Set the old_filename variable to the current
        setting that is stored in gconf for the wallpaper filename
        (gnome_wp_delay_changed): Remove this unused method
        (gnome_wp_icon_theme_changed): Don't need to update the icons in the
        drop-down menu here, as they are being removed
        (set_accessible_name): Don't need this any longer, as the drop-down
        menu items are now standard label menu items, and don't have icons
        (wallpaper_properties_init): No longer need the key repeat delay
        Fix some style issues with the glade_xml_get_widget calls
        Replace the menu items in the option menus with standard label items
    
        * gnome-wp-capplet.h (_GnomeWPCapplet): Remove the no longer needed
        Widget variables for updating the drop-down menu icons
        Remove the no longer needed delay and idleid variables
        Add an old_filename variable to compare against when OK is clicked
    
        Also should fix #316697

 capplets/background/ChangeLog                      |  43 +++
 .../background/gnome-background-properties.glade   |  90 ++---
 capplets/background/gnome-wp-capplet.c             | 415 +++++----------------
 capplets/background/gnome-wp-capplet.h             |  27 +-
 capplets/background/gnome-wp-info.c                |   2 +-
 capplets/background/gnome-wp-info.h                |   2 +-
 capplets/background/gnome-wp-item.c                |   2 +-
 capplets/background/gnome-wp-item.h                |   2 +-
 capplets/background/gnome-wp-utils.c               |   2 +-
 capplets/background/gnome-wp-utils.h               |   2 +-
 capplets/background/gnome-wp-xml.c                 |   2 +-
 capplets/background/gnome-wp-xml.h                 |   2 +-
 12 files changed, 170 insertions(+), 421 deletions(-)

commit 9c27b0926fa75f71a75711eb31186680d38593b1
Author: Alan Swanson <swanson@ukfsn.org>
Date:   Sat Jan 14 16:10:24 2006 +0000

    Check for the scale type being zoom in the config, to set the option menu
    
    2006-01-14  Alan Swanson <swanson@ukfsn.org>
    
        * gnome-wp-capplet.c (gnome_wp_option_menu_set): Check for the scale
        type being zoom in the config, to set the option menu
        (gnome_wp_scale_type_changed): Update the options for zoom type
        (gnome_wp_icon_theme_changed): Update the zoom icon in the menu
        (wallpaper_properties_init): Add an item for Zoom to the scaling menu
    
        * gnome-wp-capplet.h (_GnomeWPCapplet): Add a widget for the zoom item
        (GnomeWPScaleType): Add an enumeration for the zoom type
    
        * gnome-wp-item.c (gnome_wp_item_get_thumbnail): Add the code to
        generate a proper thumbnail for the new zoom option
    
        Fixes #105231

 capplets/background/ChangeLog          | 18 ++++++++++++++-
 capplets/background/gnome-wp-capplet.c | 41 ++++++++++++++++++++++++++++++++++
 capplets/background/gnome-wp-capplet.h |  4 +++-
 capplets/background/gnome-wp-item.c    |  9 ++++++++
 4 files changed, 70 insertions(+), 2 deletions(-)

commit 0f56daf38d2fd44aaeeb95fb79dd5b5ebe8d6765
Author: Alan Swanson <swanson@ukfsn.org>
Date:   Sat Jan 14 13:38:55 2006 +0000

    Handle the new WPTYPE_ZOOM setting and return proper geometry for it
    
    2006-01-14  Alan Swanson <swanson@ukfsn.org>
    
        * applier.c (get_geometry): Handle the new WPTYPE_ZOOM setting and
        return proper geometry for it
    
        * preferences.c (_bg_wptype_values[]): Add the alias for the zoom type
        (read_wptype_from_string): Handle setting the type for zoom
        (bg_preferences_get_wptype_as_string): Return the string for the new
        zoom setting type
    
        * preferences.h (_wallpaper_type_t): Add the new zoom type
    
        Partial code for #105231

 libbackground/ChangeLog     | 14 ++++++++++++++
 libbackground/applier.c     | 21 +++++++++++++++++++++
 libbackground/preferences.c |  5 +++++
 libbackground/preferences.h |  2 +-
 4 files changed, 41 insertions(+), 1 deletion(-)

commit aa194e3fe2911a827a7f49f7d706a448135a251c
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Jan 14 11:41:43 2006 +0000

    Updated Thai translation.
    
    2006-01-14  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 132 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 64 insertions(+), 72 deletions(-)

commit 002eba16bc1f4e2933664a047a0e72b871a08f38
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Sat Jan 14 01:21:49 2006 +0000

    Updated Traditional Chinese translation(Taiwan). Added Traditional Chinese
    
    
    2006-01-14  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
        * zh_TW.po: Updated Traditional Chinese translation(Taiwan).
        * zh_HK.po: Added Traditional Chinese translation(Hong Kong).

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/zh_HK.po  | 3397 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/zh_TW.po  |  531 ++++-----
 5 files changed, 3698 insertions(+), 241 deletions(-)

commit dcbdbe91764d76cb52a9d8a6491ae2bbcf895f48
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Jan 14 01:16:38 2006 +0000

    Updated Spanish translation.
    
    2006-01-14  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 326 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 177 insertions(+), 153 deletions(-)

commit da77b6e5d3330e1328113f034a8872227d3cddae
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Jan 13 13:15:18 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 ++
 po/vi.po     | 181 +++++++++++++++++++----------------------------------------
 2 files changed, 61 insertions(+), 124 deletions(-)

commit 8638514570273eb38f2cd12080186499221f7dcb
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Fri Jan 13 06:35:51 2006 +0000

    update for fuzzy strings

 po/pa.po | 274 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 107 insertions(+), 167 deletions(-)

commit d590057ff6b2a29713c0cd40b79365e3c3391bb4
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Thu Jan 12 12:55:37 2006 +0000

    Do not hardcode the height of the dialog. Add an alignment to
    
    2006-01-11  Dennis Cranston  <dennis_cranston@yahoo.com>
    
        * capplets/sound/sound-properties-capplet.c: (create_dialog):
        Do not hardcode the height of the dialog.
        * capplets/sound/sound-properties.glade:  Add an alignment to

 ChangeLog                                 | 12 ++++++++++++
 capplets/sound/sound-properties-capplet.c |  2 +-
 capplets/sound/sound-properties.glade     | 22 ++++++++++++++++++----
 3 files changed, 31 insertions(+), 5 deletions(-)

commit 0bccc7a1cfcde05332d24d845a687d96d0479a16
Author: Slobodan D. Sredojevic <slobo@akrep.be>
Date:   Thu Jan 12 07:57:10 2006 +0000

    Updated Serbian translation
    
    2006-01-12  Slobodan D. Sredojevic  <slobo@akrep.be>
    
            * sr.po, sr@Latn.po: Updated Serbian translation

 po/ChangeLog  |   4 +
 po/sr.po      | 537 ++++++++++++++++++++++++++++-------------------------
 po/sr@Latn.po | 579 +++++++++++++++++++++++++++++++---------------------------
 3 files changed, 610 insertions(+), 510 deletions(-)

commit d48394996b971fa20901539087f552aed4e630a4
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Wed Jan 11 18:44:10 2006 +0000

    Hungarian translation updated.
    
    2006-01-11  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated.

 po/ChangeLog |   4 +
 po/hu.po     | 610 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 319 insertions(+), 295 deletions(-)

commit b62b47635a8e849c511898a5737af27530fc674a
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jan 11 18:37:17 2006 +0000

    reviewed by: Bastien Nocera <hadess@hadess.net>
    
    2006-01-11  Sebastien Bacher  <seb128@debian.org>
    
        reviewed by: Bastien Nocera <hadess@hadess.net>
    
        * actions/acme-fb-level.c: (acme_fblevel_error_quark),
        (acme_fblevel_new):
        * actions/acme-fb-level.h:
        * gnome-settings-multimedia-keys.c:
        (gnome_settings_multimedia_keys_load):
        cleanup messages about pmu on powerbook,
        patch by Jeroen Zwartepoorte <jeroen.zwartepoorte@gmail.com>
        (Closes: #132655)

 gnome-settings-daemon/ChangeLog                    | 13 +++++++++
 gnome-settings-daemon/actions/acme-fb-level.c      | 32 +++++++++++++++++++---
 gnome-settings-daemon/actions/acme-fb-level.h      | 12 +++++++-
 .../gnome-settings-multimedia-keys.c               | 32 +++++-----------------
 4 files changed, 59 insertions(+), 30 deletions(-)

commit 821ca6fcf2f9abd47f3de76da3a83fb7a25f4fa4
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Wed Jan 11 18:33:34 2006 +0000

    added method for setting single click policy track for changes in the
    
    2006-01-01  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * gnomecc-canvas.[ch]: added method for setting single click policy
            * control-center.c: track for changes in the nautilus click_policy key
            to make g-c-c behave exactly like nautilus

 control-center/ChangeLog        |  6 +++++
 control-center/control-center.c | 52 ++++++++++++++++++++++++++++++++++++++
 control-center/gnomecc-canvas.c | 56 +++++++++++++++++++++++++----------------
 control-center/gnomecc-canvas.h |  2 ++
 4 files changed, 95 insertions(+), 21 deletions(-)

commit 4c5123ec29c6f34bd3c311c5fa7cc7bd6814cafd
Author: Adam Weinberger <adamw@gnome.org>
Date:   Wed Jan 11 18:00:38 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-11  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 2f4cdc31c978456627720f3e52aa03c2dbe8b6e6
Author: Adam Weinberger <adamw@gnome.org>
Date:   Wed Jan 11 17:49:07 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-11  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/en_CA.po | 171 +++++++++++++++++++-----------------------------------------
 1 file changed, 54 insertions(+), 117 deletions(-)

commit 1cd8e070fd29d8306891950ec8c7e2607953b4e9
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jan 11 15:10:13 2006 +0000

    drop the keysym/keycode binding code, it's an hack and
    doesn't work fine, patch by Bastien Nocera <hadess@hadess.net>
    (Closes: #133815)

 ChangeLog                                          |   7 +
 capplets/keybindings/ChangeLog                     |   7 +
 capplets/keybindings/gnome-keybinding-properties.c |   6 -
 gnome-settings-daemon/ChangeLog                    |   9 ++
 gnome-settings-daemon/actions/acme.h               |  10 --
 .../gnome-settings-multimedia-keys.c               | 149 +--------------------
 ...ps_gnome_settings_daemon_keybindings.schemas.in |  59 --------
 7 files changed, 29 insertions(+), 218 deletions(-)

commit ec0566552f6dbf78fed178ab70111f580c387fa2
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Wed Jan 11 13:54:47 2006 +0000

    Updated Thai translation.
    
    2006-01-11  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 126 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 71 insertions(+), 59 deletions(-)

commit 6226f5c1270e27038b288d33855aac26bbabee70
Author: Scott Reeves <SReeves@novell.com>
Date:   Wed Jan 11 10:17:56 2006 +0000

    new GUI.
    
    2006-01-11  Scott Reeves <SReeves@novell.com>
    
        * sound-properties.glade: new GUI.
    
        * sound-properties-capplet.c (create_dialog): make dialog bigger.

 capplets/sound/ChangeLog                  |   6 ++
 capplets/sound/sound-properties-capplet.c |   2 +-
 capplets/sound/sound-properties.glade     | 173 ++++++++++++++----------------
 3 files changed, 85 insertions(+), 96 deletions(-)

commit d9d55d1dd67faa26281f985319670b4e227ab8a1
Author: Scott Reeves <SReeves@novell.com>
Date:   Wed Jan 11 10:17:21 2006 +0000

    only disable sounds for system events. (apply_settings): ditto.
    
    2006-01-11  Scott Reeves <SReeves@novell.com>
    
        * gnome-settings-sound.c (reload_foreach_cb): only disable sounds
        for system events.
        (apply_settings): ditto.

 gnome-settings-daemon/ChangeLog              |  6 +++
 gnome-settings-daemon/gnome-settings-sound.c | 59 ++++++++++++++++++++--------
 2 files changed, 49 insertions(+), 16 deletions(-)

commit 8691136ba5c4ab7130008ca2f39d9aa3619168df
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Jan 11 06:36:38 2006 +0000

    Updated Translation

 po/ChangeLog | 4 ++++
 po/gu.po     | 9 +++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit e12aa04d650831d86db134413083879c9e7796b3
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Wed Jan 11 05:19:26 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog | 4 ++++
 po/vi.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 3e185bd3f488fdb9a61da1d031e4e93cca7c4d8f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jan 10 21:37:02 2006 +0000

    another bit of #326275

 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b29226983029feb35bad98ba6cdc06da1ff49389
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Jan 10 04:19:35 2006 +0000

    Updated Thai translation.
    
    2006-01-10  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog | 4 ++++
 po/th.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 23d9a797f6e05fcc692abda29103ae1edd362cdd
Author: Adam Weinberger <adamw@gnome.org>
Date:   Tue Jan 10 02:53:53 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-09  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 5f2bca0b143068f97c3a63b144fd0ed7dd5c4d8f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jan 9 21:50:36 2006 +0000

    fixing #326725

 capplets/keyboard/ChangeLog                       | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit a53602d1c9e90d4966dc51279523397071ffcae4
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Mon Jan 9 19:48:23 2006 +0000

    *** empty log message ***

 po/ChangeLog |  4 +++
 po/gl.po     | 94 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 55 insertions(+), 43 deletions(-)

commit fb74f7c65e548cc10965d1012462537dd68957e4
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Jan 9 18:03:39 2006 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2006-01-09  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |   5 ++
 po/bg.po     | 252 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 140 insertions(+), 117 deletions(-)

commit 83f0ec0aea61b7b31b5c085f77358c3f2e799608
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jan 9 12:22:34 2006 +0000

    Fixes #326141
    
    2006-01-09  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #326141
    
        * drwright.c (popup_preferences_cb):
        * egg-spawn.[ch]:
        * Makefile.am: kill egg_spawn_* functions, use gdk_spawn_* instead.

 typing-break/ChangeLog   |   8 ++
 typing-break/Makefile.am |   4 +-
 typing-break/drwright.c  |   4 +-
 typing-break/egg-spawn.c | 355 -----------------------------------------------
 typing-break/egg-spawn.h |  81 -----------
 5 files changed, 11 insertions(+), 441 deletions(-)

commit 90010cf73708831bc2f5c12cd35b4b8497a8086b
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Mon Jan 9 05:20:54 2006 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 +++
 po/vi.po     | 109 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 65 insertions(+), 48 deletions(-)

commit ddf7ac0fb01909135bfff4f23f6d5ac2589ac96e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jan 8 21:09:39 2006 +0000

    closing #326137

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit faeef758cb71544533c3895b19342d8d55cd057c
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Jan 7 05:09:35 2006 +0000

    Updated Thai translation.
    
    2006-01-07  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 151 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 83 insertions(+), 72 deletions(-)

commit 187975ce2e6c0f235d6b9739d463066b5fb0eb81
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Jan 6 23:39:53 2006 +0000

    Updated Spanish translation.
    
    2006-01-07  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 215 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 104 insertions(+), 115 deletions(-)

commit fe235fb1ccaba21dac9a178fc2497ab4d229b754
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Jan 6 17:45:58 2006 +0000

    make mouse click work with both left/right buttons, patch by akmal
    
    2006-01-06  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-mouse-properties.glade:
        make mouse click work with both left/right buttons,
        patch by akmal <cowdinosaur@gmail.com> (Fixes: #321225)

 capplets/mouse/ChangeLog                    | 6 ++++++
 capplets/mouse/gnome-mouse-properties.glade | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 8a98c9d3a9076f2eafb27f0e4f663a3fd5f01ba9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Jan 6 17:45:43 2006 +0000

    Updated Norwegian bokmål translation. Same
    
    2006-01-06  Kjartan Maraas <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same

 po/ChangeLog |   5 +++
 po/nb.po     | 100 ++++++++++++++++++++++++++++++++---------------------------
 po/no.po     | 100 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 113 insertions(+), 92 deletions(-)

commit 685055c9e4cab9d92652cd53dda7db8ed89cf5ab
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Jan 6 12:54:57 2006 +0000

    Updated Finnish translation

 po/ChangeLog |  4 +++
 po/fi.po     | 90 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 53 insertions(+), 41 deletions(-)

commit aaedc8bc94dfbb1cb0a2c0f8ac9f89c8cb13d9e8
Author: Thomas Wood <thos@gnome.org>
Date:   Thu Jan 5 19:55:00 2006 +0000

    reviewed by: Sebastien Bacher
    
    2006-01-05  Thomas Wood  <thos@gnome.org>
    
        reviewed by: Sebastien Bacher
    
        * capplets/theme-switcher/gnome-theme-installer.c:
        (transfer_done_cb): Use `head -n 1` instead of `head -1`.
        Fixes bug 316800

 ChangeLog                                       | 8 ++++++++
 capplets/theme-switcher/gnome-theme-installer.c | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit ad3a2645db73107468fbef414b8ba00c2b2acdeb
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Thu Jan 5 09:09:43 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +++
 po/ca.po     | 104 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 60 insertions(+), 48 deletions(-)

commit 847ecb1b176be0cd69395ae8159a45b5f58554a1
Author: Adam Weinberger <adamw@gnome.org>
Date:   Wed Jan 4 20:06:11 2006 +0000

    Updated Canadian English translation.
    
    
    2006-01-04  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |    4 +
 po/en_CA.po  | 1660 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 839 insertions(+), 825 deletions(-)

commit 3de3e4c13aaf59ab94ffc19e3dcfba585d6ac72b
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Wed Jan 4 07:33:53 2006 +0000

    Updated Japanese translation for v2.13.4.
    
    2006-01-04  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.13.4.

 po/ChangeLog |   4 +
 po/ja.po     | 320 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 176 insertions(+), 148 deletions(-)

commit 304320410907ca7a12884305d85531cc67850fee
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Jan 4 05:13:50 2006 +0000

    Updated Translation

 po/ChangeLog |  4 +++
 po/gu.po     | 95 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 56 insertions(+), 43 deletions(-)

commit dc9eede82392dbce14db6de4344bf0d7269ed91e
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Tue Jan 3 19:23:03 2006 +0000

    NEWS; update for 2.13.4.
    
    2006-01-03  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS; update for 2.13.4.

 ChangeLog    |  5 +++++
 NEWS         | 31 +++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 37 insertions(+), 1 deletion(-)

commit e792de8a73c7de5e1d02305a8245b2c8da1ccc9f
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Tue Jan 3 17:25:29 2006 +0000

    remove unused --enable-gconf-source option - it sets the
    
    2006-01-03  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in: remove unused --enable-gconf-source
            option - it sets the GCONF_CONFIG_SOURCE variable
            which isn't used and AM_GCONF_SOURCE_2 does the job
            it's trying to do

 ChangeLog    |  7 +++++++
 configure.in | 14 --------------
 2 files changed, 7 insertions(+), 14 deletions(-)

commit d7dabc81ad500b541f5356cdd86c683c49b01008
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Tue Jan 3 15:10:20 2006 +0000

    Fixes #321779
    
    2006-01-03  Jens Granseuer <jensgr@gmx.net>
    
        Fixes #321779
    
        * configure.in: don't use -Wextra for old gccs.

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 14a749667fa677d8df010bf862b30da6e3cbd3b1
Author: Łukasz Stelmach <stlman@poczta.fm>
Date:   Tue Jan 3 12:10:28 2006 +0000

    Fixes #320727
    
    2006-01-03  Łukasz Stelmach <stlman@poczta.fm>
    
        Fixes #320727
    
        * xrdb/Emacs.ad: added more settings to make Emacs' UI mimic better
        GNOME's look & feel.

 gnome-settings-daemon/ChangeLog     | 13 ++++++++++---
 gnome-settings-daemon/xrdb/Emacs.ad |  6 ++++++
 2 files changed, 16 insertions(+), 3 deletions(-)

commit 23a1f32c5bea125e860384e1021e163ce566e04b
Author: jenglish <jenglish@flightlab.com>
Date:   Tue Jan 3 10:44:34 2006 +0000

    Fixes #130299
    
    2006-01-03  jenglish <jenglish@flightlab.com>
    
        Fixes #130299
    
        * xrdb/Tk.ad: restores prelight/active/mouse-over feedback for Tk
        buttons, checkbuttons, scrollbars, etc.

 gnome-settings-daemon/ChangeLog  |  7 +++++++
 gnome-settings-daemon/xrdb/Tk.ad | 45 ++++++++++++++++++----------------------
 2 files changed, 27 insertions(+), 25 deletions(-)

commit ed3d3f61916ef72958ad7cf178a966b61f945f14
Author: Rajan Singh <singh.rajan@wipro.com>
Date:   Tue Jan 3 10:28:24 2006 +0000

    : Added mnemonics. Removed the mnemonic.
    
    2006-01-03  Rajan Singh  <singh.rajan@wipro.com>
    
        * gnome-window-properties.c: (fill_radio) (reload_mouse_modifiers) :
        Added mnemonics.
        * gnome-window-properties.glade : Removed the mnemonic.

 capplets/windows/ChangeLog                     |  6 ++++++
 capplets/windows/gnome-window-properties.c     | 12 ++++++------
 capplets/windows/gnome-window-properties.glade |  2 +-
 3 files changed, 13 insertions(+), 7 deletions(-)

commit a7fa1e8b9ac24c88d9409e6cb1903283a0532035
Author: David Seseo <david@alderia.com>
Date:   Tue Jan 3 10:24:03 2006 +0000

    Set the search column of the treeview. Fixes #321379.
    
    2006-01-03  David Seseo <david@alderia.com>
    
        * gnome-theme-manager.c (setup_dialog): Set the search column of the
        treeview. Fixes #321379.

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 2 ++
 2 files changed, 7 insertions(+)

commit 9d88a0bb5ebb2916ebe84237270ed76e73f35684
Author: Guillaume Desmottes <cass@skynet.be>
Date:   Tue Jan 3 10:06:50 2006 +0000

    Fixes bug #147665
    
    2006-01-03  Guillaume Desmottes <cass@skynet.be>
    
        Fixes bug #147665
    
        * gnome-theme-manager.[ch] (update_font_button_state,
        update_background_button_state): new functions.
        (background_key_changed): call the 2 above functions to update
        the background from metathemes that include a background.

 capplets/theme-switcher/ChangeLog             |   9 +++
 capplets/theme-switcher/gnome-theme-manager.c | 105 +++++++++++++++++++++++++-
 capplets/theme-switcher/gnome-theme-manager.h |   1 +
 3 files changed, 114 insertions(+), 1 deletion(-)

commit 2f465c487e92ea20ddab2697f8e5e77f679d4503
Author: pholie <golierr@gmail.com>
Date:   Tue Jan 3 09:58:44 2006 +0000

    Fixes bug #324629
    
    2006-01-03  pholie <golierr@gmail.com>
    
        Fixes bug #324629
    
        * gnome-default-applications-properties-structs.c: added Opera to
        list of default browsers.

 capplets/default-applications/ChangeLog                            | 7 +++++++
 .../gnome-default-applications-properties-structs.c                | 2 ++
 2 files changed, 9 insertions(+)

commit 1dc263e13fc80c6db6fba0bdda2fa47ee608ba4e
Author: Jaap A. Haitsma <jaap@haitsma.org>
Date:   Tue Jan 3 09:57:53 2006 +0000

    Fixes bug #321549
    
    2006-01-03  Jaap A. Haitsma <jaap@haitsma.org>
    
        Fixes bug #321549
    
        * gnome-keyboard-properties.c (create_dialog): don't leak
        GtkSizeGroup's.

 capplets/keyboard/ChangeLog                   | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties.c | 3 +++
 2 files changed, 10 insertions(+)

commit be790b919d4f2e2f62b07fc69eccef171113bcf6
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   Mon Jan 2 17:22:59 2006 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 485 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 269 insertions(+), 220 deletions(-)

commit eda4909849d2bc59a9cbe93920375b973d8d849a
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sat Dec 31 06:21:07 2005 +0000

    Updated Finnish translation

 po/ChangeLog |   4 +
 po/fi.po     | 338 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 183 insertions(+), 159 deletions(-)

commit b741519dd29de9bfa2cbe2f01d9c05ef6db8f492
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Dec 30 17:08:39 2005 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 26 +++++++++++++-------------
 2 files changed, 17 insertions(+), 13 deletions(-)

commit 26eda15ef6d6931ed97b928415f35bb75b4d18a6
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Thu Dec 29 07:55:09 2005 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |    4 +
 po/vi.po     | 1994 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 985 insertions(+), 1013 deletions(-)

commit f6c3cd23ca8e9d80623e3fd01b3a5300f6d5d44c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Dec 14 13:46:14 2005 +0000

    Fixes #323895
    
    2005-12-14  Matthias Clasen  <mclasen@redhat.com>
    
        Fixes #323895
    
        * gnome-settings-xsettings.c: Support the symbolic colors setting
        in GTK+ 2.10.

 gnome-settings-daemon/ChangeLog                  | 7 +++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 9 insertions(+)

commit 6cd7761a3ecad4872e9b18e1f9b10e1c28a7fa56
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Dec 12 20:05:20 2005 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 488 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 272 insertions(+), 220 deletions(-)

commit 67fafd67fd3767519f965686a9265c3b1976b3bb
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Dec 12 17:07:19 2005 +0000

    update for 2.13.3.
    
    2005-12-12  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: update for 2.13.3.

 ChangeLog    |  5 +++++
 NEWS         | 45 +++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 51 insertions(+), 1 deletion(-)

commit 38047c8ff50a19136c19b1cb2b7a849b3abec70e
Author: Philippe Troin <phil@fifi.org>
Date:   Mon Dec 12 15:39:41 2005 +0000

    Fixes #323690
    
    2005-12-12  Philippe Troin <phil@fifi.org>
    
        Fixes #323690
    
        * gnome-settings-multimedia-keys.c (update_kbd_cb, init_kbd): don't
        grab keyboard when invalid keys are present in the GConf database.

 gnome-settings-daemon/ChangeLog                        |  7 +++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 12 ++++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

commit 64e9ba3cb5bef98e8aa47708a7bcebc7a99cadbd
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Mon Dec 12 04:29:36 2005 +0000

    update for changes

 po/pa.po | 517 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 271 insertions(+), 246 deletions(-)

commit d3d6bf81663bbbfa4c25f90db40097dbe4407804
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Sun Dec 11 13:27:19 2005 +0000

    Updated Gujarati Translation

 po/ChangeLog |   4 +
 po/gu.po     | 518 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 276 insertions(+), 246 deletions(-)

commit c9304bbb67ddb3201afadfb106e8a19c3d8ead27
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Wed Dec 7 19:13:59 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-12-07  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 485 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 266 insertions(+), 223 deletions(-)

commit def5767b4203316dfde086a4213331a65cf3ffdf
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Tue Dec 6 20:10:36 2005 +0000

    Updated Lithuanian translation.
    
    2005-12-06  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 336 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 182 insertions(+), 158 deletions(-)

commit f4a85af0f01b4cb6c9a0b948911863be45d51517
Author: Adam Weinberger <adamw@gnome.org>
Date:   Sat Dec 3 20:04:35 2005 +0000

    Updated Canadian English translation.
    
    
    2005-12-03  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 194 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 109 insertions(+), 89 deletions(-)

commit eca8c8085271ee7f52e8420de0a0f5ba0ab6c520
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 3 12:32:45 2005 +0000

    Updated Norwegian bokmål translation. Same
    
    2005-12-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same

 po/ChangeLog |   5 ++
 po/nb.po     | 199 ++++++++++++++++++++++++++++++++---------------------------
 po/no.po     | 199 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 221 insertions(+), 182 deletions(-)

commit 01dd21631ddcf8cf2816ff752c3444827511b0bc
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Dec 2 19:50:32 2005 +0000

    Updated Czech translation.
    
    2005-12-02  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 332 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 181 insertions(+), 155 deletions(-)

commit 2ab6797fcc4a4ad923429c791e6b80485341495a
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Mon Nov 28 11:28:23 2005 +0000

    *** empty log message ***

 po/ChangeLog |  4 +++
 po/gl.po     | 86 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 47 insertions(+), 43 deletions(-)

commit c06dae67d1348a7195e2e5ac9a43202809c3a37d
Author: Richard Hult <richard@imendio.com>
Date:   Sun Nov 27 12:30:11 2005 +0000

    Don't display a dialog when the monitor is already running, that's an old
    
    2005-11-27  Richard Hult  <richard@imendio.com>
    
        * main.c: (main): Don't display a dialog when the monitor is
        already running, that's an old remain from when drwright was a
        standalone app. Fixes bug #307425.
    
        * drw-break-window.c:
        * drwright.c: (popup_break_cb): Use stock icon from GTK+ instead
        of libgnomeui and use i18n includes from glib. Fixes bug #171664.

 typing-break/ChangeLog          | 10 ++++++++++
 typing-break/drw-break-window.c |  1 +
 typing-break/drwright.c         | 12 +++---------
 typing-break/main.c             | 32 +++++++++++++-------------------
 4 files changed, 27 insertions(+), 28 deletions(-)

commit cb26efea4e515bcd73d8d31874c4a2b1f8b31623
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Nov 27 08:16:29 2005 +0000

    Updated Thai translation.
    
    2005-11-27  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 201576f1780b3404b4a1ce92e9ab0d9c64efb89f
Author: Guilherme de S. Pastore <gpastore@src.gnome.org>
Date:   Sat Nov 26 22:00:16 2005 +0000

    fixed mistakes in pt_BR translation

 po/ChangeLog | 4 ++++
 po/pt_BR.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 2771359b4e75ca328e6a44a4a1a4b620be730c24
Author: Marcel Telka <marcel@telka.sk>
Date:   Sat Nov 26 20:34:00 2005 +0000

    Updated Slovak translation.
    
    2005-11-26  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 ++++
 po/sk.po     | 52 ++++++++++++++++++++++++++++------------------------
 2 files changed, 32 insertions(+), 24 deletions(-)

commit 22b8a78e55f883a21b7ee445c11a7e76a77268d3
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Nov 26 18:28:56 2005 +0000

    Updated Spanish translation.
    
    2005-11-26  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 52 ++++++++++++++++++++++++++++------------------------
 2 files changed, 32 insertions(+), 24 deletions(-)

commit 1a3f995745313e3c546dbe4e7d51b7cba1efbed8
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Nov 26 09:46:00 2005 +0000

    Updated Thai translation.
    
    2005-11-26  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 138 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 75 insertions(+), 67 deletions(-)

commit 75f8b56f01c7df78586c34370532ec8dce3cc8e3
Author: Brian Cameron <Brian.Cameron@sun.com>
Date:   Fri Nov 25 20:18:23 2005 +0000

    Fix so that gnome-about-me works on non-linux systems which do not have
    
    2005-11-25  Brian Cameron  <Brian.Cameron@sun.com>
    
            * configure.in, capplets/about-me/Makefile.am
              capplets/about-me/gnome-about-me.c,
              capplets/about-me/gnome-about-me-password.c:
              Fix so that gnome-about-me works on non-linux
              systems which do not have forkpty().

 ChangeLog                                   |   8 +
 capplets/about-me/Makefile.am               |   2 +-
 capplets/about-me/gnome-about-me-password.c | 238 +++++++++++++++++++++++++++-
 capplets/about-me/gnome-about-me.c          |   9 +-
 configure.in                                |  46 ++++++
 5 files changed, 295 insertions(+), 8 deletions(-)

commit af7b7b61b17e1fc5031da7e9b2023a6632c32ce4
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Fri Nov 25 16:57:41 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-11-25  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 426 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 234 insertions(+), 196 deletions(-)

commit 1b06eac38debf67b83e81ef19ff7d73533919c53
Author: Guilherme de S. Pastore <gpastore@src.gnome.org>
Date:   Thu Nov 24 16:18:04 2005 +0000

    updated pt_BR translation

 po/ChangeLog |   4 +
 po/pt_BR.po  | 414 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 231 insertions(+), 187 deletions(-)

commit 2073ee147844cff21413ced48ee4f34e252b88e7
Author: Marcel Telka <marcel@telka.sk>
Date:   Tue Nov 22 21:21:40 2005 +0000

    Updated Slovak translation.
    
    2005-11-22  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 128 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 76 insertions(+), 56 deletions(-)

commit 1eae429622688570fa264e3277a8048ab490f220
Author: Funda Wang <fwang@src.gnome.org>
Date:   Tue Nov 22 09:17:06 2005 +0000

    Updated Simplified Chinese translation of g-c-c

 po/ChangeLog |   4 +
 po/zh_CN.po  | 410 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 228 insertions(+), 186 deletions(-)

commit dc9927af8c99fe3731efa9076b7ce71f3947bb0e
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Tue Nov 22 08:42:05 2005 +0000

    *** empty log message ***

 po/ChangeLog |   4 ++
 po/gl.po     | 204 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 102 insertions(+), 106 deletions(-)

commit e14b704369c8d638a0aa05cf1b413d800169f4ac
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Nov 22 04:46:43 2005 +0000

    Add a preview to the filechooser used for selecting an image, using a
    
    2005-11-21  Matthias Clasen  <mclasen@redhat.com>
    
        * gnome-about-me.c: Add a preview to the filechooser used for
        selecting an image, using a GnomeThumbnailFactory.

 capplets/about-me/ChangeLog        |  5 ++++
 capplets/about-me/gnome-about-me.c | 55 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

commit 4f9d2b24789bd7528311f12e4ab2eb07f9dcbfe0
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Nov 22 03:14:22 2005 +0000

    Updated Thai translation.
    
    2005-11-22  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 117 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 72 insertions(+), 49 deletions(-)

commit 8ef2b5c789e75a6c9546dcf9ac7a50a0003597c9
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Mon Nov 21 22:17:33 2005 +0000

    Updated Spanish translation.
    
    2005-11-21  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 117 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 72 insertions(+), 49 deletions(-)

commit 3bb09e2a1ab068bd868ce12436d32d7c62c743a5
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Nov 21 12:08:18 2005 +0000

    Fixes #321778
    
    2005-11-21  Jens Granseuer <jensgr@gmx.net>
    
        Fixes #321778
    
        * gnome-settings-daemon/gnome-settings-keyboard.c
        (numlock_set_xkb_state, numlock_get_gconf_state): C89 compilation
        fixes.

 gnome-settings-daemon/ChangeLog                 | 8 ++++++++
 gnome-settings-daemon/gnome-settings-keyboard.c | 6 ++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit 53ea9368c6bcf90bb60de1804be1c3acea48327a
Author: David Sedeo <david@alderia.com>
Date:   Mon Nov 21 11:26:28 2005 +0000

    Update the sensivility of the button if the user can remove the theme.
    
    2005-11-14  David Sedeo <david@alderia.com>
    
        * gnome-theme-details.c (gtk_theme_update_remove_button): Update the
        sensivility of the button if the user can remove the theme.
        (remove_theme): Remove the selected theme.

 capplets/theme-switcher/ChangeLog              |   6 +
 capplets/theme-switcher/gnome-theme-details.c  | 196 ++++++++++++++++++++++++-
 capplets/theme-switcher/theme-properties.glade | 159 +++++++++++++++++---
 3 files changed, 332 insertions(+), 29 deletions(-)

commit d4d6f5e5a829000e046ab3591eb4c96c1c3808ce
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Nov 21 07:26:20 2005 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2005-11-21  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |   5 ++
 po/bg.po     | 168 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 88 insertions(+), 85 deletions(-)

commit e43e1a350d39d21377842eb6ec00fb3be088b524
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Mon Nov 21 04:42:44 2005 +0000

    Add an image filter to the file chooser.
    
    2005-10-05  Dennis Cranston  <dennis_cranston@yahoo.com>
    
        * gnome-wp-capplet.c: (wallpaper_properties_init):  Add an image
        filter to the file chooser.

 capplets/background/ChangeLog          |  5 +++++
 capplets/background/gnome-wp-capplet.c | 11 +++++++++++
 2 files changed, 16 insertions(+)

commit 82ed701d08f182d7e8cc167d14c1f2fb53ad27d5
Author: Arangel Angov <arangela@src.gnome.org>
Date:   Sun Nov 20 14:09:28 2005 +0000

    Updated Macedonian translation <ArangelA@cvs.gnome.org>

 po/mk.po | 308 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 148 insertions(+), 160 deletions(-)

commit 053db89e7999c2bdb41a7c5091c9d23b69b97737
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Fri Nov 18 15:16:19 2005 +0000

    Updated Japanese translation for v2.13.2.
    
    2005-11-19  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.13.2.

 po/ChangeLog |   4 ++
 po/ja.po     | 128 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 62 insertions(+), 70 deletions(-)

commit c2ba66ac016e0a670a45dd5e57842fa754eecf82
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Fri Nov 18 14:32:48 2005 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 370 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 213 insertions(+), 161 deletions(-)

commit 8446c3bb492ff9d0a36107b4c914334e9c94acc7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Nov 18 09:17:22 2005 +0000

    Updated Norwegian bokmål translation. Same
    
    2005-11-18  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same

 po/ChangeLog |   5 +
 po/nb.po     | 319 +++++++++++++++++++++++++++++++----------------------------
 po/no.po     | 319 +++++++++++++++++++++++++++++++----------------------------
 3 files changed, 343 insertions(+), 300 deletions(-)

commit 18caef44ab18e7d1fb93b08df100ba3e5ce17db4
Author: Adam Weinberger <adamw@gnome.org>
Date:   Fri Nov 18 02:15:39 2005 +0000

    Updated Canadian English translation.
    
    
    2005-11-17  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 126 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 61 insertions(+), 69 deletions(-)

commit 9a89e7772f98437b2dda23c21d0776f32b7b08bb
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Nov 17 21:35:50 2005 +0000

    Updated Spanish translation.
    
    2005-11-17  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 136 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 72 insertions(+), 68 deletions(-)

commit 21955d8e2714b5e88c42e4404610e91efaf8d27f
Author: Marcel Telka <marcel@telka.sk>
Date:   Wed Nov 16 05:37:23 2005 +0000

    Updated Slovak translation.
    
    2005-11-16  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 127 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 62 insertions(+), 69 deletions(-)

commit f6fc6be7243b68b0287f90690582a1a7162f1c2d
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Nov 15 16:09:09 2005 +0000

    Updated Thai translation.
    
    2005-11-15  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 137 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 71 insertions(+), 70 deletions(-)

commit 7c58173e7f314f8c260bf4979357bcf2aa53f5bc
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Nov 14 22:31:17 2005 +0000

    define "Gtk/ShowInputMethodMenu"/"Gtk/ShowUnicodeMenu" xsettings, patch by
    
    2005-11-14  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-settings-xsettings.c:
        define "Gtk/ShowInputMethodMenu"/"Gtk/ShowUnicodeMenu" xsettings,
        patch by Matthias Clasen (Closes: #319634).

 gnome-settings-daemon/ChangeLog                  | 6 ++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 4 ++++
 2 files changed, 10 insertions(+)

commit d2e35a69cfa4b135d370493d01e6b981fb368dd9
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 14 17:44:11 2005 +0000

    update for 2.13.2.
    
    2005-11-14  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:
        * NEWS: update for 2.13.2.

 ChangeLog      |  5 +++++
 NEWS           | 30 ++++++++++++++++++++++++++++++
 configure.in   |  2 +-
 po/ChangeLog   |  1 -
 po/POTFILES.in |  1 -
 5 files changed, 36 insertions(+), 3 deletions(-)

commit cea0dae1f56c8affada9ef205d68cf2d28dfaf61
Author: Jrg Billeter <j@bitron.ch>
Date:   Mon Nov 14 15:38:26 2005 +0000

    Remove numlock schema file again, moved to libgnome. Fixes bug #319788.
    
    2005-11-14  Jrg Billeter  <j@bitron.ch>
    
        * schemas/Makefile.am:
        * schemas/desktop_gnome_peripherals_keyboard_numlock.schemas.in:
        Remove numlock schema file again, moved to libgnome.
        Fixes bug #319788.

 ChangeLog                                                 |  7 +++++++
 schemas/Makefile.am                                       |  1 -
 .../desktop_gnome_peripherals_keyboard_numlock.schemas.in | 15 ---------------
 3 files changed, 7 insertions(+), 16 deletions(-)

commit 3aa5619bd63169a49f19b9fe313ddb4b966fd22c
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Nov 14 15:35:46 2005 +0000

    don't call gnome_theme_init (), it's not required. Speedup of 15-20%.
    
    2005-11-14  Sebastien Bacher  <seb128@debian.org>
    
        * theme-thumbnailer.c: (main):
        don't call gnome_theme_init (), it's not required. Speedup of 15-20%.

 vfs-methods/themus/ChangeLog           | 5 +++++
 vfs-methods/themus/theme-thumbnailer.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3b36fc2f4be0cd8be0fb30a465d804cd72b26420
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 14 15:29:27 2005 +0000

    fixed function signature.
    
    2005-11-14  Rodrigo Moya <rodrigo@novell.com>
    
        * font-method.c (do_tell): fixed function signature.

 vfs-methods/fontilus/ChangeLog     | 4 ++++
 vfs-methods/fontilus/font-method.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 67269d543a11fffe3d0a32586a0e1c7a8c387e69
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Nov 14 15:29:12 2005 +0000

    fixed function signature.
    
    2005-11-14  Rodrigo Moya <rodrigo@novell.com>
    
        * theme-method.c (do_tell): fixed function signature.

 vfs-methods/themus/ChangeLog      | 4 ++++
 vfs-methods/themus/theme-method.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 564a9d03aa5898cda7540f952279e768382fbb1d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Nov 14 15:18:09 2005 +0000

    Huge cleanup. Individual ChangeLogs have info. Closing bug #320157. ANSIfy
    
    2005-11-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * */*: Huge cleanup. Individual ChangeLogs have info.
        Closing bug #320157.
        * libkbddraw/keyboard-drawing.h: ANSIfy some function declarations.

 ChangeLog                                          |  6 ++++
 capplets/accessibility/at-properties/ChangeLog     |  4 +++
 .../at-properties/at-startup-session.c             |  2 +-
 capplets/accessibility/keyboard/ChangeLog          |  4 +++
 .../keyboard/accessibility-keyboard.c              |  1 +
 capplets/common/ChangeLog                          | 10 +++++++
 capplets/common/capplet-stock-icons.c              |  2 --
 capplets/common/file-transfer-dialog.c             |  2 +-
 capplets/common/gconf-property-editor.c            |  8 +++---
 capplets/common/gnome-theme-info.c                 |  2 --
 capplets/default-applications/ChangeLog            |  5 ++++
 ...gnome-default-applications-properties-structs.c |  6 ++--
 capplets/display/ChangeLog                         |  4 +++
 capplets/display/main.c                            |  8 +++---
 capplets/font/ChangeLog                            |  4 +++
 capplets/font/main.c                               |  8 +++---
 capplets/keybindings/ChangeLog                     |  7 +++++
 capplets/keybindings/eggcellrendererkeys.c         |  3 --
 capplets/keybindings/gnome-keybinding-properties.c |  7 ++---
 capplets/keyboard/ChangeLog                        |  5 ++++
 capplets/keyboard/gnome-keyboard-properties.c      |  3 --
 capplets/mouse/ChangeLog                           |  5 ++++
 capplets/mouse/gnome-mouse-properties.c            |  9 ++----
 capplets/theme-switcher/ChangeLog                  | 10 +++++++
 capplets/theme-switcher/gnome-theme-details.c      |  4 ---
 capplets/theme-switcher/gnome-theme-installer.c    | 26 +++--------------
 capplets/theme-switcher/gnome-theme-manager.c      |  2 +-
 capplets/windows/ChangeLog                         |  4 +++
 capplets/windows/gnome-window-properties.c         |  2 --
 configure.in                                       |  2 +-
 control-center/ChangeLog                           | 10 +++++++
 control-center/control-center-categories.c         |  1 -
 control-center/control-center.c                    |  4 +--
 control-center/gnomecc-canvas.c                    | 18 ------------
 control-center/gnomecc-rounded-rect.c              |  2 +-
 gnome-settings-daemon/ChangeLog                    | 17 +++++++++++
 gnome-settings-daemon/actions/acme-volume-dummy.c  |  4 ---
 gnome-settings-daemon/actions/acme-volume.c        |  3 +-
 gnome-settings-daemon/clipboard-manager.c          |  4 ---
 gnome-settings-daemon/gnome-settings-daemon.c      | 33 ++--------------------
 .../gnome-settings-default-editor.c                |  4 +--
 gnome-settings-daemon/gnome-settings-keybindings.c | 10 +++----
 .../gnome-settings-typing-break.c                  |  4 +--
 gnome-settings-daemon/gnome-settings-xrdb.c        |  4 +--
 gnome-settings-daemon/gnome-settings-xsettings.c   |  9 ------
 gnome-settings-daemon/xsettings-manager.c          |  6 ++--
 libwindow-settings/ChangeLog                       |  5 ++++
 libwindow-settings/gnome-window-manager.c          |  2 --
 typing-break/ChangeLog                             |  4 +++
 typing-break/drw-selection.h                       |  2 +-
 vfs-methods/fontilus/ChangeLog                     |  6 ++++
 vfs-methods/fontilus/font-method.c                 |  4 +--
 vfs-methods/fontilus/ftstream-vfs.c                |  2 +-
 vfs-methods/fontilus/thumbnailer.c                 |  2 +-
 vfs-methods/themus/ChangeLog                       |  4 +++
 vfs-methods/themus/theme-method.c                  |  2 --
 56 files changed, 165 insertions(+), 166 deletions(-)

commit c64b931ac0b0772ec1816aaf0ceb6837b53a6368
Author: Roozbeh Pournader <roozbeh@sharif.edu>
Date:   Mon Nov 14 12:48:22 2005 +0000

    Updated Persian translation. Translator: Meelad Zakaria; Reviewer: Elnaz
    
    2005-11-14  Roozbeh Pournader  <roozbeh@sharif.edu>
    
        * fa.po: Updated Persian translation.
          Translator: Meelad Zakaria; Reviewer: Elnaz Sarbar.

 po/ChangeLog |   5 +
 po/fa.po     | 505 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 239 insertions(+), 271 deletions(-)

commit 4299eb87674e63070301c57caed885b7eea60abd
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Nov 14 10:29:29 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-11-14  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 +++
 po/bg.po     | 144 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 90 insertions(+), 59 deletions(-)

commit e55ae2cfd634602d874eb1d5b9469f72fbbb8be4
Author: Alexis Robert <alexis@linuxcode.eu.org>
Date:   Mon Nov 7 17:56:46 2005 +0000

    Fixes #320647
    
    2005-11-07  Alexis Robert <alexis@linuxcode.eu.org>
    
        Fixes #320647
    
        * libbackground/preferences.c (bg_preferences_load): only use strings
        returned from GConf when not NULL.

 libbackground/ChangeLog     |  7 +++++++
 libbackground/preferences.c | 14 ++++++++------
 2 files changed, 15 insertions(+), 6 deletions(-)

commit 9f1c0edb4d3b54bda2adb98beab0af448408d02b
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Nov 6 13:28:05 2005 +0000

    Updated Thai translation.
    
    2005-11-06  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 235 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 138 insertions(+), 101 deletions(-)

commit afc22f589cf8994e9283105fbf8f84f2423c1ea3
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Nov 2 22:54:27 2005 +0000

    Updated Czech translation.
    
    2005-11-02  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 227 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 133 insertions(+), 98 deletions(-)

commit 4cf092327b4b5d6665be275e72aa564e52cdc895
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Wed Nov 2 14:03:45 2005 +0000

    added to reload icons if gtk theme changes switch correctly both shell
    
    2005-10-25  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * control-center-categories.[ch] (control_center_reload_icons): added
            to reload icons if gtk theme changes
            * gnomecc-canvas.c: switch correctly both shell background and icons
            in case of theme change. Plugged a memleak on finalize

 control-center/ChangeLog                   |  7 +++++++
 control-center/control-center-categories.c | 24 +++++++++++++++++++++++-
 control-center/control-center-categories.h |  2 ++
 control-center/gnomecc-canvas.c            | 28 ++++++++++++++++++++--------
 4 files changed, 52 insertions(+), 9 deletions(-)

commit d0e079b4e9db1ddb57c3d00aa314b91a1dba08f2
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Oct 31 23:51:30 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-11-01  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +++
 po/nl.po     | 103 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 58 insertions(+), 49 deletions(-)

commit d08147458c0900f7fad09ef28a3ab213af2cc71d
Author: Adam Weinberger <adamw@gnome.org>
Date:   Mon Oct 31 19:24:21 2005 +0000

    Updated Canadian English translation.
    
    
    2005-10-31  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog   |   4 ++
 po/POTFILES.in |   2 +-
 po/en_CA.po    | 122 ++++++++++++++++++++++++++++++---------------------------
 3 files changed, 70 insertions(+), 58 deletions(-)

commit 0473d56ea3110a80da8d130c83a0f90c532d13a1
Author: Jürg Billeter <j@bitron.ch>
Date:   Mon Oct 31 14:01:59 2005 +0000

    reviewed by: Rodrigo Moya <rodrigo@novell.com>
    
    2005-10-31  Jürg Billeter  <j@bitron.ch>
    
        reviewed by: Rodrigo Moya <rodrigo@novell.com>
    
        * schemas/Makefile.am:
        * schemas/desktop_gnome_peripherals_keyboard.schemas.in: renamed to
          schemas/desktop_gnome_peripherals_keyboard_numlock.schemas.in
        Rename numlock schema file to fix conflict with libgnome.
        Fixes bug #319788.

 ChangeLog                                                 | 10 ++++++++++
 schemas/Makefile.am                                       |  2 +-
 schemas/desktop_gnome_peripherals_keyboard.schemas.in     | 15 ---------------
 .../desktop_gnome_peripherals_keyboard_numlock.schemas.in | 15 +++++++++++++++
 4 files changed, 26 insertions(+), 16 deletions(-)

commit 1464ff05db394d2b98b4617b48591ca7a0dbcfd9
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Mon Oct 31 10:10:50 2005 +0000

    Updated Lithuanian translation.
    
    2005-10-31  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 393 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 214 insertions(+), 183 deletions(-)

commit 5eddf961f852dbf414f6ebc2c6c06c6b0805bc5d
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Oct 30 16:44:19 2005 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 119 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 77 insertions(+), 46 deletions(-)

commit 85ac7c7ada1489d978305a9959494c4c909f8d32
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Oct 28 19:42:56 2005 +0000

    Updated Spanish translation.
    
    2005-10-28  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 300 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 181 insertions(+), 123 deletions(-)

commit aabe03e1efe1a3d6b55209020f14785ad2232b7b
Author: Dan Damian <dand@src.gnome.org>
Date:   Thu Oct 27 19:40:54 2005 +0000

    Updated Romanian translation.

 po/ChangeLog |   4 +++
 po/ro.po     | 105 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 59 insertions(+), 50 deletions(-)

commit 66943fdd3ece208bca8e55921032f6a3930b6f49
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   Thu Oct 27 17:36:20 2005 +0000

    Updated Basque translation.
    
    2005-10-27  Inaki Larranaga  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.

 po/ChangeLog |   4 +
 po/eu.po     | 234 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 137 insertions(+), 101 deletions(-)

commit 0606d7a97385c35b7554cc6c0ac3ed4f5dc8aedc
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Thu Oct 27 13:53:07 2005 +0000

    Updated Japanese translation for v2.13.1.
    
    2005-10-27  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.13.1.

 po/ChangeLog |   4 ++
 po/ja.po     | 229 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 135 insertions(+), 98 deletions(-)

commit 3b36982fe9e9c2ca030971655ef5cf6c340e0c9f
Author: Marcel Telka <marcel@telka.sk>
Date:   Tue Oct 25 04:34:46 2005 +0000

    Updated Slovak translation.
    
    2005-10-25  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 228 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 134 insertions(+), 98 deletions(-)

commit 2c57972a53301ff49481ba6769bb0066ebee143f
Author: Muktha <muktha.narayan@wipro.com>
Date:   Mon Oct 24 16:01:51 2005 +0000

    Fixes part of #90932
    
    2005-10-24  Muktha <muktha.narayan@wipro.com>
    
        Fixes part of #90932
    
        * gnome-keyboard-properties.glade: added accessible_description to
        some widgets.

 capplets/keyboard/ChangeLog                       | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 6 ++++++
 2 files changed, 13 insertions(+)

commit fa537b014bc5c3a1551fd58e869831c03bd0d17d
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Oct 24 14:15:07 2005 +0000

    2005-10-24  Rodrigo Moya <rodrigo@novell.com>
    
        * configure.in:

 ChangeLog    |  5 +++++
 NEWS         | 44 ++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 50 insertions(+), 1 deletion(-)

commit 6db073768224ec1eb72628b8aa25ec7da96e9085
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Mon Oct 24 11:31:27 2005 +0000

    calculate item widths instead of forcing them to be MAX_ITEM_WIDTH, wrap
    
    2005-10-24  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * gnomecc-canvas.c: calculate item widths instead of forcing them to
            be MAX_ITEM_WIDTH, wrap labels with PANGO_WRAP_WORD, this closes
            #319492. force canvas background to base[GTK_STATE_NORMAL], do not
            repaint canvas background, this way it feels quite quicker when
            resizing the window.

 control-center/ChangeLog        |  8 ++++++++
 control-center/gnomecc-canvas.c | 35 ++++++++++-------------------------
 2 files changed, 18 insertions(+), 25 deletions(-)

commit 962e2d3bb00fac7a5e3c13a32027b304bbb38b05
Author: Jens Granseuer <jensgr@gmx.net>
Date:   Mon Oct 24 10:12:09 2005 +0000

    Fixes #318746
    
    2005-10-24  Jens Granseuer <jensgr@gmx.net>
    
        Fixes #318746
    
        * gnome-mouse-properties.c (populate_tree_model): gcc 2.95 compilation
        fixes.

 capplets/mouse/ChangeLog                | 7 +++++++
 capplets/mouse/gnome-mouse-properties.c | 3 +--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 4c13b49727fdf4fcc30535e5336ae1fa0923ff8b
Author: Ed Catmur <ed@catmur.co.uk>
Date:   Mon Oct 24 09:29:34 2005 +0000

    Fixes #319358
    
    2005-10-24  Ed Catmur <ed@catmur.co.uk>
    
        Fixes #319358
    
        * gnome-theme-installer.c (install_dialog_response): make it
        work for file:// URIs.

 capplets/theme-switcher/ChangeLog               | 7 +++++++
 capplets/theme-switcher/gnome-theme-installer.c | 6 ++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 4da94f2992cd7e7392557444a9d90bd4a1cdd0b0
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Oct 24 09:20:34 2005 +0000

    Added seb128 to MAINTAINERS

 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

commit 61e8d50053ef7696d942661312a01d7bd5c41652
Author: Adam Weinberger <adamw@gnome.org>
Date:   Sun Oct 23 06:25:39 2005 +0000

    Added missing files. Updated Canadian English translation.
    
    
    2005-10-23  Adam Weinberger  <adamw@gnome.org>
    
        * POTFILES.in: Added missing files.
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog   |    5 +
 po/POTFILES.in |    2 +
 po/en_CA.po    | 1629 ++++++++++++++++++++++++++++----------------------------
 3 files changed, 833 insertions(+), 803 deletions(-)

commit ce3814ed13a7279c7db9e41a3780cafc744fc2b0
Author: Guilherme de S. Pastore <gpastore@src.gnome.org>
Date:   Sat Oct 22 01:40:37 2005 +0000

    General fixes to the pt_BR translation

 po/ChangeLog |  6 ++++++
 po/pt_BR.po  | 11 ++++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

commit 9e4c91546906ac8e98723311ee9b550580456ac3
Author: Ray Strode <rstrode@redhat.com>
Date:   Fri Oct 21 22:18:53 2005 +0000

    Remap buttons on auxillary mice for left-handed mode (bug 314409).
    
    2005-10-21  Ray Strode  <rstrode@redhat.com>
    
        Remap buttons on auxillary mice for left-handed
        mode (bug 314409).
    
        * configure.in: add check for xinput extension
    
        * gnome-settings-daemon/gnome-settings-mouse.c
        (supports_xinput_devices): new
        function to detect XInput Extension
        (configure_button_layout): new function to set up
        logical mouse button layout for left or right handed
        mode
        (xinput_device_has_buttons): new function to detect if
        an xinput device has buttons to reconfigure
        (set_xinput_devices_left_handed): new function to set
        auxillary mice into left-handed mode
        (set_left_handed): call set_xinput_devices_left_handed
        if available

 ChangeLog                                    |   5 +
 configure.in                                 |  16 ++-
 gnome-settings-daemon/ChangeLog              |  17 +++
 gnome-settings-daemon/gnome-settings-mouse.c | 166 +++++++++++++++++++++++----
 4 files changed, 183 insertions(+), 21 deletions(-)

commit 70e372d544288447d278a94d7078c69d639fddd7
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Oct 21 08:10:48 2005 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2005-10-21  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |   5 +++
 po/bg.po     | 113 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 64 insertions(+), 54 deletions(-)

commit 78d1c99f6ce54b7810fb926b91fc3f2c4edce631
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Oct 21 05:13:43 2005 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 121 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 67 insertions(+), 58 deletions(-)

commit be2703a2085fdb59a0c4be023d30caec4eb7c697
Author: Colin Leroy <colin@colino.net>
Date:   Thu Oct 20 11:29:10 2005 +0000

    added Sylpheed Claws to the list of possible mailers.
    
    2005-10-20  Colin Leroy <colin@colino.net>
    
        * gnome-default-applications-properties-structs.c: added
        Sylpheed Claws to the list of possible mailers.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../gnome-default-applications-properties-structs.c                  | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 70f760aa9f0555f98ece5461eac797fc981b6559
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Tue Oct 18 22:51:31 2005 +0000

    set the adjustments, so the GtkScrollBar arrows works again, set initial
    
    2005-10-19  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * control-center.c: set the adjustments, so the GtkScrollBar arrows
            works again, set initial adjustment to view the top of the canvas.

 control-center/ChangeLog        | 5 +++++
 control-center/control-center.c | 7 ++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 845d3281060ac16cb7dc6568357ec915cc19702f
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Tue Oct 18 14:25:26 2005 +0000

    2005-10-18  Rodrigo Moya <rodrigo@novell.com><>
    
        * gnome-settings-font.c (load_xcursor_theme):
        * gnome-settings-xsettings.c (gnome_xft_settings_set_xsettings):
        run xrdb with -nocpp, since it's not needed here.

 gnome-settings-daemon/ChangeLog                  | 6 ++++++
 gnome-settings-daemon/gnome-settings-font.c      | 2 +-
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit bdf94c17e1685022ad510c79a4650cef65427a59
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Oct 17 14:53:19 2005 +0000

    declare a global GConfClient. (main): unref the global GConfClient.
    
    2005-10-16  Rodrigo Moya <rodrigo@novell.com>
    
        * factory.c: declare a global GConfClient.
        (main): unref the global GConfClient.
    
        * gnome-settings-daemon.[ch] (gnome_settings_daemon_get_conf_client):
        new function to use the same GConfClient everywhere.
        (gnome_settings_daemon_new): use the global GConfClient.
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf,
        ax_response_callback, set_gconf_from_server):
        * gnome-settings-gtk1theme.c (apply_settings):
        * gnome-settings-keybindings.c (bindings_get_entry):
        * gnome-settings-keyboard.c (numlock_get_gconf_state,
        numlock_set_gconf_state, apply_settings):
        * gnome-settings-keyboard-xkb.c (apply_xkb_settings,
        gnome_settings_keyboard_xkb_sysconfig_changed_response,
        gnome_settings_keyboard_xkb_analyze_sysconfig,
        gnome_settings_chk_file_list):
        * gnome-settings-screensaver.c (key_toggled_cb,
        really_start_screensaver):
        * gnome-settings-sound.c (apply_settings):
        * gnome-settings-xmodmap.c (check_button_callback,
        gnome_settings_load_modmap_files, remove_button_clicked_callback,
        load_button_clicked_callback, gnome_settings_modmap_dialog_call):
        * gnome-settings-xsettings.c (xft_callback):
        use the global GConfClient.
    
        * gnome-settings-keyboard-xkb.c (gnome_settings_keyboard_xkb_load):
        don't get another GConfClient when we're getting one passed!

 gnome-settings-daemon/ChangeLog                    | 31 ++++++++++++++++++++++
 gnome-settings-daemon/factory.c                    |  5 ++++
 .../gnome-settings-accessibility-keyboard.c        |  9 +++----
 gnome-settings-daemon/gnome-settings-daemon.c      | 15 ++++++++---
 gnome-settings-daemon/gnome-settings-daemon.h      |  2 ++
 gnome-settings-daemon/gnome-settings-gtk1theme.c   |  5 ++--
 gnome-settings-daemon/gnome-settings-keybindings.c |  3 +--
 .../gnome-settings-keyboard-xkb.c                  | 23 +++++-----------
 gnome-settings-daemon/gnome-settings-keyboard.c    | 10 +++----
 gnome-settings-daemon/gnome-settings-screensaver.c |  7 +++--
 gnome-settings-daemon/gnome-settings-sound.c       |  4 +--
 gnome-settings-daemon/gnome-settings-xmodmap.c     | 23 +++++++---------
 gnome-settings-daemon/gnome-settings-xsettings.c   |  3 +--
 13 files changed, 79 insertions(+), 61 deletions(-)

commit 259294fb02124550199381beb6779aa9b18c24ea
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sat Oct 15 21:56:43 2005 +0000

    added this function to watch for children...
    
    2005-10-14  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-settings-daemon.c (child_watch_cb): added this function to
        watch for children...
        (gnome_settings_daemon_spawn_with_input): ...started here, instead
        of just blocking.
    
        * gnome-settings-screensaver.c (gnome_settings_screensaver_load): do
        lazy loading of the screensaver.
        (really_start_screensaver): start on a 25 seconds timeout.
    
        * gnome-settings-typing-break.c (gnome_settings_typing_break_load): do
        lazy loading og the typing break applet.
        (really_setup_typing_break): start on a 30 seconds timeout.
    
    2005-10-14  Erwann Chenede <erwann.chenede@sun.com>
    
        Fixes #314774
    
        * gnome-settings-xrdb.c (gnome_settings_xrdb_load): connect to
        "notify:gtk-theme-name" signal, to run xrdb only when the whole theme
        has been changed.
        (theme_changed): callback for "notify:gtk-theme-name".

 gnome-settings-daemon/ChangeLog                    | 24 +++++++++++++++
 gnome-settings-daemon/factory.c                    |  2 +-
 gnome-settings-daemon/gnome-settings-daemon.c      | 29 ++++++++++--------
 gnome-settings-daemon/gnome-settings-screensaver.c | 35 +++++++++++++++-------
 .../gnome-settings-typing-break.c                  |  8 ++++-
 gnome-settings-daemon/gnome-settings-xrdb.c        | 25 ++++++++++++----
 6 files changed, 92 insertions(+), 31 deletions(-)

commit ec9217a7ae122085fcbbf2f0ba0f50edac95bf7e
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sat Oct 15 21:42:13 2005 +0000

    Fixes #315505
    
    2005-10-15  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #315505
    
        * control-center-categories.c (control_center_entry_new): don't show
        xscreensaver capplet icon if gnome-screensaver is installed.
        (populate_category): don't add NULL entries to the list.

 control-center/ChangeLog                   |  8 +++++++
 control-center/control-center-categories.c | 38 ++++++++++++++++++++++++++----
 2 files changed, 42 insertions(+), 4 deletions(-)

commit 006f27081ad04bfd705a5cfcf193681197575b45
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Thu Oct 13 22:03:28 2005 +0000

    Added info about gnomecc-list

 README | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit d810ea1f01f16bec0485bcf53820c36164ebd6f9
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Oct 13 20:27:20 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-10-13  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 34 +++++++++++++++++-----------------
 2 files changed, 21 insertions(+), 17 deletions(-)

commit 5201e26525c6cca6aa596880b6c6751fb67117b4
Author: Muktha <muktha.narayan@wipro.com>
Date:   Tue Oct 11 11:27:36 2005 +0000

    Update the desktop font in addition to the application font when 'apply
    
    2005-10-11  Muktha  <muktha.narayan@wipro.com>
    
            * gnome-theme-info.h:
        * gnome-theme-manager.h:
        * gnome-theme-manager.c (apply_font_clicked):
            * gnome-theme-info.c (gnome_theme_read_meta_theme)
            (gnome_theme_meta_info_free) (gnome_theme_meta_info_print)
            (gnome_theme_meta_info_compare): Update the desktop font in
            addition to the application font when 'apply font' in large print
            themes is selected. Fixes #123551.

 capplets/common/ChangeLog                     |  9 +++++++++
 capplets/common/gnome-theme-info.c            | 20 ++++++++++++++++++++
 capplets/common/gnome-theme-info.h            |  2 ++
 capplets/theme-switcher/ChangeLog             |  7 +++++++
 capplets/theme-switcher/gnome-theme-manager.c |  3 +++
 capplets/theme-switcher/gnome-theme-manager.h |  2 ++
 6 files changed, 43 insertions(+)

commit cf2e2fc10999f50aa047554fdd7aad3b17df4c3c
Author: Jürg Billeter <j@bitron.ch>
Date:   Mon Oct 10 19:35:55 2005 +0000

    reviewed by: Sergey V. Udaltsov <svu@gnome.org>
    
    2005-10-10  Jürg Billeter  <j@bitron.ch>
    
        reviewed by: Sergey V. Udaltsov  <svu@gnome.org>
    
        * schemas/Makefile.am:
        * schemas/desktop_gnome_peripherals_keyboard.schemas.in:
        Add schema for remembering NumLock state between sessions.
        Fixes bug #74215. Patch by Sebastian Kapfer  <sebastian_kapfer@web.de>

 ChangeLog                                             |  9 +++++++++
 schemas/Makefile.am                                   |  1 +
 schemas/desktop_gnome_peripherals_keyboard.schemas.in | 15 +++++++++++++++
 3 files changed, 25 insertions(+)

commit 356e767473919463a75ed466333713ae1ad6bdc6
Author: Jürg Billeter <j@bitron.ch>
Date:   Mon Oct 10 19:32:45 2005 +0000

    reviewed by: Sergey V. Udaltsov <svu@gnome.org>
    
    2005-10-10  Jürg Billeter  <j@bitron.ch>
    
        reviewed by: Sergey V. Udaltsov  <svu@gnome.org>
    
        * gnome-settings-keyboard.c: (gsd_keyboard_get_hostname_key),
        (numlock_NumLock_modifier_mask), (numlock_set_xkb_state),
        (numlock_gconf_state_key), (numlock_get_gconf_state),
        (numlock_set_gconf_state), (numlock_xkb_callback),
        (numlock_install_xkb_callback), (apply_settings),
        (gnome_settings_keyboard_init): Remember NumLock state between sessions.
        Fixes bug #74215. Patch by Sebastian Kapfer  <sebastian_kapfer@web.de>

 gnome-settings-daemon/ChangeLog                 |  12 ++
 gnome-settings-daemon/gnome-settings-keyboard.c | 179 +++++++++++++++++++++++-
 2 files changed, 190 insertions(+), 1 deletion(-)

commit 743dd1b9c3f9e8015a124cb96b7cfad1f045606c
Author: Rodrigo Moya <rodrigo@src.gnome.org>
Date:   Mon Oct 10 16:28:21 2005 +0000

    Added new MAINTAINERS

 MAINTAINERS | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 4c48dda6e8f81c67a4b25a575de5bc4b03992275
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Sat Oct 8 16:11:35 2005 +0000

    Fixes #318231
    
    2005-10-07  Rodrigo Moya <rodrigo@novell.com>
    
        Fixes #318231
    
        * eggtrayicon.[ch]: updated to latest eggtrayicon code, to fix weird
        spacing between icons.

 typing-break/ChangeLog     |   7 +
 typing-break/eggtrayicon.c | 324 ++++++++++++++++++++++++++++++++++-----------
 typing-break/eggtrayicon.h |  10 +-
 3 files changed, 262 insertions(+), 79 deletions(-)

commit 6a9ce84078abe57dc4385923e3d706357b88f963
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sat Oct 8 10:17:29 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-10-08  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 16 ++++++++++------
 2 files changed, 14 insertions(+), 6 deletions(-)

commit 116eba0e13bcb97cd818c13c150f362c78fd166c
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Oct 5 22:49:39 2005 +0000

    Updated Swedish translation.
    
    2005-10-06  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 2225 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1263 insertions(+), 966 deletions(-)

commit d962198a1d0f37802919846528a5cae5c96dfaa6
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Mon Oct 3 21:18:44 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-10-04  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 +++
 po/et.po     | 83 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 47 insertions(+), 40 deletions(-)

commit 15c3ba4d34a7c96b3561af4270b7d08f0467608e
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Oct 3 08:47:06 2005 +0000

    update for 2.12.1.
    
    2005-10-03  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: update for 2.12.1.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 36594134506c9a57e21b7f5f37999dcd832e345f
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Oct 2 22:41:50 2005 +0000

    update for 2.12.1.
    
    2005-10-02  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS: update for 2.12.1.

 ChangeLog |  4 ++++
 NEWS      | 41 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

commit 95aec817a6b7298f0050f2f88e29db24bf13397c
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Oct 1 21:29:39 2005 +0000

    Remove utf8 validate check (gnome_wp_props_wp_set): If the filename we
    
    2005-10-01  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (gnome_wp_add_image): Remove utf8 validate check
        (gnome_wp_props_wp_set): If the filename we have for the image is not
        valid utf8, convert it to utf8 before setting the key in gconf
        (gnome_wp_load_stuffs, gnome_wp_file_changed): Make sure that the
        filename is valid utf8 and the file exists with utf8 encoding, or fall
        back to filename encoding as specified by the user with glib's
        environment variables
    
        * gnome-wpitem.c (gnome_wp_item_new): Make sure that the name field
        is always utf8 for displaying to the user with the tree view
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml): Make sure that the
        filename is valid utf8 and the file exists with utf8 encoding, or fall
        back to filename encoding as specified by the user with glib's
        environment variables
        (gnome_wp_xml_save_list): If the filename is not valid utf8, then
        convert to utf8 for storing in the XML file
    
        Fixes #168604

 capplets/background/ChangeLog          | 22 +++++++++++++++++++++
 capplets/background/gnome-wp-capplet.c | 35 +++++++++++++++++++++++++---------
 capplets/background/gnome-wp-item.c    |  6 +++++-
 capplets/background/gnome-wp-xml.c     | 23 ++++++++++++++++++++--
 4 files changed, 74 insertions(+), 12 deletions(-)

commit 3d5e4d4e75ce1605472a93f760f04dcd8195e4f0
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Oct 1 21:18:21 2005 +0000

    Make sure that the UTF8 filename is valid and exists before trying to use
    
    2005-10-01  Rodney Dawes  <dobey@novell.com>
    
        * preferences.c (bg_preferences_load, bg_preferences_merge_entry):
        Make sure that the UTF8 filename is valid and exists before trying
        to use it, otherwise fall back to using the filename encoding specified
        by the user with the environment variables used by glib to determine
        the locale encoding of filenames
    
        Fixes #168604

 libbackground/ChangeLog     | 10 ++++++++++
 libbackground/preferences.c | 22 ++++++++++++++++++++--
 2 files changed, 30 insertions(+), 2 deletions(-)

commit 48047083849ae87be696c3fe89001222c9518089
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Sep 29 22:32:45 2005 +0000

    Reverted unauthorized changes made by user 'kloczek'.
    
    2005-09-29  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Reverted unauthorized changes made by
        user 'kloczek'.

 po/ChangeLog |    5 +
 po/sv.po     | 5953 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 4843 insertions(+), 1115 deletions(-)

commit 24f5d3c6427104c33f7a64812aef60a8840c124d
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Wed Sep 28 11:01:43 2005 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 356 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 151 insertions(+), 209 deletions(-)

commit bd89bf9fb9dce643d38edf3f2aee3eef198e3010
Author: Funda Wang <fwang@src.gnome.org>
Date:   Tue Sep 27 04:40:31 2005 +0000

    Updated Simplified Chinese translation.

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 41de316d5b6a2fa51c6665a828c07781fcf5ba87
Author: Brian Cameron <Brian.Cameron@sun.com>
Date:   Tue Sep 27 03:34:30 2005 +0000

    Fix xcursor test so that it doesn't cause configure to crash if the
    
    2005-09-26  Brian Cameron  <Brian.Cameron@sun.com>
    
            * configure.in: Fix xcursor test so that it doesn't
              cause configure to crash if the xcursor extension
              can't be found.  Instead just build without xcursor
              support.

 ChangeLog    | 7 +++++++
 configure.in | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 5b28dd2404bd660a42cc9dce0065261613d2df03
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Sep 25 21:28:02 2005 +0000

    list evolution-2.4 binary, patch by Jan de Groot <jan@jgc.homeip.net>
    
    2005-09-25  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-default-applications-properties-structs.c:
        list evolution-2.4 binary, patch by Jan de Groot <jan@jgc.homeip.net>
        (Closes: #315871).

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../gnome-default-applications-properties-structs.c                 | 1 +
 2 files changed, 7 insertions(+)

commit cbd1d15ee3a11370f9aee1440a4510fefe71b3f2
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Sep 25 21:23:06 2005 +0000

    fix a typo with the StartupNotify option, thanks Vincent Fretin
    
    2005-09-25  Sebastien Bacher  <seb128@debian.org>
    
        * themus-theme-applier.desktop.in.in:
        fix a typo with the StartupNotify option,
        thanks Vincent Fretin <vincent.fretin@gmail.com> for pointing this
        (Closes: #316159).

 vfs-methods/themus/ChangeLog                          | 7 +++++++
 vfs-methods/themus/themus-theme-applier.desktop.in.in | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 95f23b756fd112b61f0a72060a67a0fefbf9ad1a
Author: Erdal Ronahi <eronahi@src.gnome.org>
Date:   Sat Sep 24 14:30:13 2005 +0000

    Added new Kurdish translation

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/ku.po     | 3242 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3251 insertions(+), 1 deletion(-)

commit 1159ed585f9db28531e5c52f35d83ecfbd71c2e1
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Sep 21 17:25:57 2005 +0000

    Updated Spanish translation.
    
    2005-09-21  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 87 ++++++++++++++++++++++--------------------------------------
 2 files changed, 36 insertions(+), 55 deletions(-)

commit 9c8b535a329667d15cdf832ca0a3a520c335cc54
Author: Stanislav Brabec <utx@src.gnome.org>
Date:   Mon Sep 19 13:07:52 2005 +0000

    Fixed spelling error (#316546).

 po/ChangeLog | 4 ++++
 po/cs.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 14d14c45925fb56b7942f46442bf119e89f7a200
Author: Tomasz Kłoczko <kloczek@src.gnome.org>
Date:   Sat Sep 17 20:31:25 2005 +0000

    remove outdated strings and run "make update-po".

 po/af.po      | 2790 +++++++++++----------------
 po/am.po      | 2627 +++++++++++--------------
 po/ar.po      | 2580 +++++++++++--------------
 po/az.po      | 2588 +++++++++++--------------
 po/be.po      | 3331 +++++++++++---------------------
 po/bg.po      |   41 +-
 po/bn.po      | 1604 ++++++++--------
 po/bs.po      | 2588 +++++++++++--------------
 po/ca.po      | 1676 +---------------
 po/cs.po      |  115 +-
 po/cy.po      |  952 +--------
 po/da.po      | 3097 ++++++------------------------
 po/de.po      |   75 +-
 po/el.po      |  175 +-
 po/en_CA.po   |   91 +-
 po/en_GB.po   | 2332 +++++++++++++---------
 po/es.po      |  141 +-
 po/et.po      |   71 +-
 po/eu.po      |  102 +-
 po/fa.po      |  768 ++++++--
 po/fi.po      |  466 +----
 po/fr.po      |   38 +-
 po/ga.po      | 2643 +++++++++++--------------
 po/gl.po      |  444 ++---
 po/gu.po      |  131 +-
 po/he.po      |  237 ++-
 po/hi.po      |  117 +-
 po/hr.po      | 2726 +++++++++++---------------
 po/hu.po      |   71 +-
 po/id.po      |  703 +------
 po/is.po      | 2600 +++++++++++--------------
 po/it.po      |  772 ++++++--
 po/ja.po      |   92 +-
 po/ko.po      |   83 +-
 po/lt.po      |  470 +----
 po/lv.po      | 3007 +++++++++++------------------
 po/mk.po      |  147 +-
 po/ml.po      | 2799 +++++++++++----------------
 po/mn.po      | 2788 +++++++++++----------------
 po/ms.po      | 2780 +++++++++++----------------
 po/nb.po      |   92 +-
 po/ne.po      | 3002 ++++++++++++++++-------------
 po/nl.po      |   88 +-
 po/nn.po      | 2446 +++++++++++-------------
 po/no.po      |   92 +-
 po/nso.po     | 2589 +++++++++++--------------
 po/pa.po      |  128 +-
 po/pl.po      |   68 +-
 po/pt.po      |  831 +-------
 po/pt_BR.po   |  614 +-----
 po/ro.po      |  510 +++--
 po/ru.po      |  130 +-
 po/rw.po      | 1984 +++++++++++--------
 po/sk.po      |   68 +-
 po/sl.po      | 3801 +++++++++++-------------------------
 po/sq.po      |  128 +-
 po/sr.po      | 1086 +----------
 po/sr@Latn.po | 1128 +----------
 po/sv.po      | 5953 +++++++++++----------------------------------------------
 po/ta.po      | 2576 +++++++++++--------------
 po/te.po      |  297 +--
 po/th.po      | 2336 ++++++++--------------
 po/tr.po      |  110 +-
 po/uk.po      |  505 +++--
 po/vi.po      |   97 +-
 po/wa.po      | 2762 +++++++++++---------------
 po/xh.po      | 1474 +++++++-------
 po/zh_CN.po   |   99 +-
 po/zh_TW.po   |  423 +---
 po/zu.po      | 2581 +++++++++++--------------
 70 files changed, 33533 insertions(+), 55323 deletions(-)

commit 068c86e89cc909b98bceed263b4c23720a9fa5ac
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Sep 16 17:25:15 2005 +0000

    Don't leak the cursor theme name. Closes bug #314692.
    
    2005-09-16  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-settings-font.c: (load_xcursor_theme): Don't leak
        the cursor theme name. Closes bug #314692.

 gnome-settings-daemon/ChangeLog             | 5 +++++
 gnome-settings-daemon/gnome-settings-font.c | 1 +
 2 files changed, 6 insertions(+)

commit 4608b226d3f7da913b11ebb08c07c960953663b7
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Sep 16 12:43:01 2005 +0000

    fix a crasher when the cursor theme has no icon.
    
    2005-09-16  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-mouse-properties.c: (populate_tree_model):
            fix a crasher when the cursor theme has no icon.

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 83485c9acf8ac8889123b5a1840bb2bc87525bf6
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Fri Sep 16 07:02:20 2005 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 60 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 34 insertions(+), 30 deletions(-)

commit 318d780a1291e6e20869ce914f7f15912f96ccba
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Wed Sep 14 14:37:10 2005 +0000

    Added Entry for Bengali (bn) Translation updation:14/09

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 97092e9c75c3c61f83de9ca809763d5609a65ab6
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Wed Sep 14 14:36:28 2005 +0000

    Updated Bengali (bn) Translation:14/09

 po/bn.po | 2005 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 806 insertions(+), 1199 deletions(-)

commit 0d86f01422503fd126fc2a300e3ce42be3ee3db3
Author: Ray Strode <rstrode@redhat.com>
Date:   Wed Sep 14 14:16:37 2005 +0000

    previous patch breaks the build, just revert for now, bug 316142.
    
    2005-09-14 Ray Strode  <rstrode@redhat.com>
    
        * gnome-settings-daemon/gnome-settings-mouse.c: previous
        patch breaks the build, just revert for now, bug 316142.

 gnome-settings-daemon/ChangeLog              |   5 +
 gnome-settings-daemon/gnome-settings-mouse.c | 166 ++++-----------------------
 2 files changed, 25 insertions(+), 146 deletions(-)

commit 428bfe0ffd9d4d34d83b7a2195400339dc63899d
Author: Ray Strode <rstrode@redhat.com>
Date:   Wed Sep 14 14:15:27 2005 +0000

    previous patch breaks the build, just revert for now, bug 316142.
    
    2005-09-14  Ray Strode  <rstrode@redhat.com>
    
        * configure.in:
        * gnome-settings-daemon/gnome-settings-mouse.c: previous
        patch breaks the build, just revert for now, bug 316142.

 ChangeLog    | 5 +++++
 configure.in | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ac2dad48917fa7b47239d133e4740e21effa69d5
Author: Ray Strode <rstrode@redhat.com>
Date:   Mon Sep 12 17:20:22 2005 +0000

    Remap buttons on auxillary mice for left-handed mode (bug 314409).
    
    2005-09-12  Ray Strode  <rstrode@redhat.com>
    
        Remap buttons on auxillary mice for left-handed
        mode (bug 314409).
    
        * configure.in: add check for xinput extension, needed
        for bug 314409.
    
        * gnome-settings-daemon/gnome-settings-mouse.c
        (supports_xinput_devices): new function to detect
        XInput Extension
        (configure_button_layout): new function to set up
        logical mouse button layout for left or right handed
        mode
        (xinput_device_has_buttons): new function to detect if
        an xinput device has buttons to reconfigure
        (set_xinput_devices_left_handed): new function to set
        auxillary mice into left-handed mode
        (set_left_handed): call set_xinput_devices_left_handed
        if available

 ChangeLog                                    |   5 +
 configure.in                                 |   1 +
 gnome-settings-daemon/ChangeLog              |  17 +++
 gnome-settings-daemon/gnome-settings-mouse.c | 166 +++++++++++++++++++++++----
 4 files changed, 169 insertions(+), 20 deletions(-)

commit 333a150ee66054a9634595dcec742e15ebd920dd
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Sun Sep 11 11:14:29 2005 +0000

    Underscore checks

 po/vi.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 7c5d0a4a83a4adcd40858a679728b8b236d60912
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Sep 8 21:41:23 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-09-09  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 20 ++++++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

commit 75bab33c1541c8363dff21a40be848d0ffaab833
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Thu Sep 8 10:01:59 2005 +0000

    guard against invalid values from the GtkHScale widget.
    
    2005-08-31  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-mouse-properties.c (delay_value_changed_cb): guard against
        invalid values from the GtkHScale widget.

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 9 ++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit fb55ccbb92d6c567530c0887a90cfc5a5a08b03b
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Wed Sep 7 20:19:43 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-09-07  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 75 +++++++++++++++++-------------------------------------------
 2 files changed, 25 insertions(+), 54 deletions(-)

commit aa112364bc3fec6a7f7e389c222f395e7e36b21c
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Wed Sep 7 18:26:34 2005 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 58 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 33 insertions(+), 29 deletions(-)

commit 54f879d5519892a5da05d92e8f5d6757775308a3
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   Wed Sep 7 09:11:22 2005 +0000

    Updated Basque translation.
    
    2005-09-07  Inaki Larranaga  <dooteo@euskalgnu.org>
    
        * eu.po: Updated Basque translation.

 po/ChangeLog |   4 +
 po/eu.po     | 986 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 668 insertions(+), 322 deletions(-)

commit 8ba2e3d0e4a2ca73c4fb0370e3145d4259efb3b0
Author: Alexander Shopov <ash@contact.bg>
Date:   Wed Sep 7 05:43:31 2005 +0000

    Updated Bulgarian translation by Yavor Doganov <yavor@doganov.org>
    
    2005-09-07  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Yavor Doganov <yavor@doganov.org>

 po/ChangeLog |  5 ++++
 po/bg.po     | 92 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 51 insertions(+), 46 deletions(-)

commit f7e362d87bef23d43d38b5f1fcd7ce0ba79e3d4d
Author: Rodney Dawes <dobey@novell.com>
Date:   Tue Sep 6 21:49:45 2005 +0000

    Set the style property "action-area-border" for the GtkDialogs here
    
    2005-09-06  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Set the style
        property "action-area-border" for the GtkDialogs here
    
        "Fixes" #313680

 capplets/background/ChangeLog          | 7 +++++++
 capplets/background/gnome-wp-capplet.c | 6 +++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit b5d661076dfa2c66d21738bed7617067adca21d1
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Sep 4 21:15:27 2005 +0000

    Updated French translation.

 po/ChangeLog |    4 +
 po/fr.po     | 1612 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 811 insertions(+), 805 deletions(-)

commit e18191db7caa21ff69f00e7a51f8dfa2c9d0d5d7
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Sun Sep 4 14:39:11 2005 +0000

    Updated mk translation, Arangel Angov <arangela@cvs.gnome.org>

 po/mk.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 845c1ba9b4c2a39b17f4bf3155b647a289fe288b
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Sep 4 13:15:25 2005 +0000

    update for 2.12.0
    
    2005-09-04  Sebastien Bacher  <seb128@debian.org>
    
        * NEWS: update for 2.12.0

 ChangeLog |  4 ++++
 NEWS      | 23 +++++++++++++++++++++++
 2 files changed, 27 insertions(+)

commit db7cd0f79d03595ed4281adaf06c659d9fc44120
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Sat Sep 3 19:58:14 2005 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      | 138 +++++++++++++++++++++++++++++++++++-----------------------
 po/sr@Latn.po | 138 +++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 172 insertions(+), 108 deletions(-)

commit e2dae0fd187b3e2992f96907c52d78b01c57abab
Author: Marcel Telka <marcel@telka.sk>
Date:   Fri Sep 2 21:41:57 2005 +0000

    Fixed typo (thanks to Sergej Chodarev).
    
    2005-09-02  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Fixed typo (thanks to Sergej Chodarev).

 po/ChangeLog |  4 +++
 po/sk.po     | 89 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 47 insertions(+), 46 deletions(-)

commit e90f309bcb1ca9d41fc47c58b3ef75f830564305
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Fri Sep 2 21:27:24 2005 +0000

    update by amanpreetalam@yahoo.com

 po/pa.po | 380 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 202 insertions(+), 178 deletions(-)

commit b83a70ebf7bc63c5bde3bc9dd33bfd823210a18e
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Thu Sep 1 16:36:46 2005 +0000

    Updated tr.po

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit f5a5bfdc3ce220e50c4a1bd022146b404b29d568
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Thu Sep 1 16:31:19 2005 +0000

    Updated tr.po file

 po/tr.po | 1993 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 1169 insertions(+), 824 deletions(-)

commit 2e5ba8fa660605728adafb717bc7b706a864fa25
Author: Rhys Jones <rhys@sucs.org>
Date:   Thu Sep 1 16:24:14 2005 +0000

    Updated Welsh translation.
    
    2005-09-01  Rhys Jones  <rhys@sucs.org>
    
        * cy.po: Updated Welsh translation.

 po/ChangeLog |   4 +
 po/cy.po     | 965 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 597 insertions(+), 372 deletions(-)

commit 62d02c89cfc81b44372adb0a3c58641e1f7b7f91
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Thu Sep 1 13:05:27 2005 +0000

    udt by rranjan@redhat.com

 po/hi.po | 258 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 156 insertions(+), 102 deletions(-)

commit 6c49abab1be28743b1043434bc308c8730ac0021
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Aug 31 23:07:41 2005 +0000

    Updated Spanish translation.
    
    2005-09-01  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog | 4 ++++
 po/es.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 64ffa88cd6008a08403a636a02d3ad62231c8034
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Wed Aug 31 12:26:06 2005 +0000

    Updated Macedonian Translation, Arangel Angov <arangela@cvs.gnome.org>

 po/mk.po | 128 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 64 insertions(+), 64 deletions(-)

commit 6a195e69062d774c1693d21d628d234d9de47c20
Author: Hendrik Richter <hendi@gnome-de.org>
Date:   Tue Aug 30 16:34:34 2005 +0000

    Updated German translation.
    
    2005-08-30  Hendrik Richter  <hendi@gnome-de.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 193 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 112 insertions(+), 85 deletions(-)

commit aed887929d0c2a6e0276bcc369b1d69a179a948b
Author: Tomasz Kłoczko <kloczek@src.gnome.org>
Date:   Tue Aug 30 15:18:25 2005 +0000

    removed outdated phrases.

 po/pl.po | 691 ++-------------------------------------------------------------
 1 file changed, 18 insertions(+), 673 deletions(-)

commit ef660349a1282fc3089cfe8865d59e7238d36152
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Mon Aug 29 22:44:42 2005 +0000

    listen to the XCURSOR_PATH environment variable (Closes: #312534).
    
    2005-08-30  Sven Herzberg  <herzi@gnome-de.org>
    
            * gnome-mouse-properties.c: listen to the XCURSOR_PATH environment
            variable (Closes: #312534).

 capplets/mouse/ChangeLog                |  5 +++++
 capplets/mouse/gnome-mouse-properties.c | 21 ++++++++++++++++++---
 2 files changed, 23 insertions(+), 3 deletions(-)

commit 9833c4364bb7615188b22530719715876f689b25
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Aug 29 22:15:57 2005 +0000

    Updated French translation.

 po/ChangeLog |   5 +
 po/fr.po     | 999 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 653 insertions(+), 351 deletions(-)

commit a7cfe56f8ab8219041bc90fd2eae621f36e24510
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Mon Aug 29 21:19:33 2005 +0000

    Updated Czech translation.
    
    2005-08-29  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 +++
 po/cs.po     | 90 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 64 insertions(+), 30 deletions(-)

commit fe0c041bf873a71336953814d2b1224fb6b88dc2
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Aug 29 19:15:53 2005 +0000

    Updated Polish translation by GNOME PL Team.
    
    2005-08-29  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |    4 +
 po/pl.po     | 1059 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 689 insertions(+), 374 deletions(-)

commit 7059a7a83e11cb08351b25713469d3e704a0d925
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Aug 29 12:51:33 2005 +0000

    Updated Portuguese translation.
    
    2005-08-29  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 2149 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1180 insertions(+), 973 deletions(-)

commit 0590cd2dced60d64f30b44738214cf08edab8824
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sun Aug 28 19:54:46 2005 +0000

    Updated Korean translation by Young-Ho Cha.
    
    2005-08-29  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation by Young-Ho Cha.

 po/ChangeLog |    4 +
 po/ko.po     | 1442 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 644 insertions(+), 802 deletions(-)

commit 1be9080f4c9dacac6ffc98a944403fc40d3d6b53
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Sat Aug 27 11:40:56 2005 +0000

    Updated Catalan translation.

 po/ChangeLog |    7 +-
 po/ca.po     | 1274 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 747 insertions(+), 534 deletions(-)

commit ad01fcd224bc1c24bc91a50562041a73f9b2de15
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sat Aug 27 07:15:11 2005 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 62 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 35 insertions(+), 31 deletions(-)

commit 7cc5dcdbb7c87c0b8917a641a49a38cc6eeac960
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Aug 27 02:44:35 2005 +0000

    Updated Spanish translation.
    
    2005-08-27  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 61 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 34 insertions(+), 31 deletions(-)

commit e3e7088ad423a4dfe40dcf03826f24a5f2812cfd
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Thu Aug 25 16:44:28 2005 +0000

    fixed nshmyrev's translation

 po/ChangeLog |   4 +++
 po/ru.po     | 100 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 45 insertions(+), 59 deletions(-)

commit 45837783970eaf6f32a1a4f172069f9c99cb3430
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 24 17:16:58 2005 +0000

    Move the call to g_free (cursor_font) outside of the conditional so it
    
    2005-08-24  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-mouse-properties.c: (cursor_changed): Move the call to
        g_free (cursor_font) outside of the conditional so it gets free'd
        in both cases.

 capplets/mouse/ChangeLog                | 6 ++++++
 capplets/mouse/gnome-mouse-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 4307dfb6249843bc5c42e9d90874000cb418abcd
Author: Nickolay V. Shmyrev <nshmyrev@src.gnome.org>
Date:   Wed Aug 24 14:07:37 2005 +0000

    Updated Russian translation

 po/ChangeLog |    4 +
 po/ru.po     | 1990 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1153 insertions(+), 841 deletions(-)

commit 9d16092f28247ae689dd741a6b74193f4b7797cd
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Wed Aug 24 09:25:55 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-08-24  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 202 ++++++++++++++++++++++-------------------------------------
 2 files changed, 78 insertions(+), 128 deletions(-)

commit c2a5603fc9554125c3725775c6810b5e895c9f72
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Tue Aug 23 23:59:00 2005 +0000

    Updated Spanish translation.
    
    2005-08-24  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 37 ++++++++++++++++++++-----------------
 2 files changed, 24 insertions(+), 17 deletions(-)

commit b5329ba9905e4d3e432d59b8ae47d721dfe31a3f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Aug 23 23:56:37 2005 +0000

    remove pangoxft

 ChangeLog                     | 5 +++++
 capplets/keyboard/Makefile.am | 2 +-
 configure.in                  | 6 ++----
 3 files changed, 8 insertions(+), 5 deletions(-)

commit 18a0fc9b3cd1524f73ae3393e9048b4126447f51
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Tue Aug 23 21:12:55 2005 +0000

    Hungarian translation updated.
    
    2005-08-23  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated.

 po/ChangeLog |   4 +++
 po/hu.po     | 108 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 65 insertions(+), 47 deletions(-)

commit e815269febd6d35ca90778dd5aedaab92d5724d4
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Tue Aug 23 20:22:56 2005 +0000

    Updated Brazilian Portuguese translation.
    
    2005-08-23  Evandro Fernandes Giovanini <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |    4 +
 po/pt_BR.po  | 2145 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1177 insertions(+), 972 deletions(-)

commit a0e5fe35e5dad88b52b5066c91fec802a75f0e90
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Tue Aug 23 08:27:09 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-08-23  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 787 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 571 insertions(+), 220 deletions(-)

commit af6472e58e446aea5348eedef06694b82e404c5b
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Aug 22 16:27:24 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-08-22  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +++
 po/nl.po     | 109 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 71 insertions(+), 42 deletions(-)

commit 8076564e15b4da9e7e288baf8a0b7db10d0f40d6
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Aug 22 14:10:02 2005 +0000

    update to 2.12.0.
    
    2005-08-22  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: update to 2.12.0.

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f2755dfdd5f4bbd7b3358559c6f601dc7c4eae38
Author: Christian Persch <chpe@cvs.gnome.org>
Date:   Mon Aug 22 13:37:11 2005 +0000

    Fix distcheck.
    
    2005-08-22  Christian Persch  <chpe@cvs.gnome.org>
    
        * capplets/Makefile.am: Fix distcheck.

 ChangeLog            |  4 ++++
 capplets/Makefile.am | 14 +++++---------
 2 files changed, 9 insertions(+), 9 deletions(-)

commit b2893ebe474e72d25a0d3a6399bbc4a1dfa9f089
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Aug 22 13:02:24 2005 +0000

    typo fix

 ChangeLog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2b9bacf6395ce2363d8b3db334efd37dde0404ab
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Aug 22 13:00:08 2005 +0000

    update for 2.11.92
    
    2005-08-22  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS: update for 2.11.92

 ChangeLog |  4 ++++
 NEWS      | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

commit 4969fa3d656354ad27f948b60374754d88f625d1
Author: Dan Damian <dand@src.gnome.org>
Date:   Mon Aug 22 00:23:38 2005 +0000

    Updated Romanian translation by Sebastian Ivan.

 po/ChangeLog |    5 +
 po/ro.po     | 3047 +++++++++++++++++++++++-----------------------------------
 2 files changed, 1231 insertions(+), 1821 deletions(-)

commit 2032c65aef31670aab7459d5daa9c6165d0b1f32
Author: Maxim Dziumanenko <mvd@mylinux.ua>
Date:   Sun Aug 21 20:42:10 2005 +0000

    Updated Ukrainian translation.
    
    2005-08-21  Maxim Dziumanenko <mvd@mylinux.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog |    4 +
 po/uk.po     | 2362 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1227 insertions(+), 1139 deletions(-)

commit ca899939d7ea923b950af3f289ef4318a49590f4
Author: Christian Persch <chpe@cvs.gnome.org>
Date:   Sun Aug 21 19:28:49 2005 +0000

    Simply enable-aboutme check, and fix configure output.
    
    2005-08-21  Christian Persch  <chpe@cvs.gnome.org>
    
        * configure.in: Simply enable-aboutme check, and fix
        configure output.

 ChangeLog    |  5 +++++
 configure.in | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 395251594318fef2aa8073c4c24417a55ea2cb11
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Aug 21 14:07:39 2005 +0000

    If the value for the "picture_options" key is set to "none", don't set the
    
    2005-08-21  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (gnome_wp_option_menu_set): If the value for
        the "picture_options" key is set to "none", don't set the optin menu
        for the scaling options to tiled
    
        Fixes #313883

 capplets/background/ChangeLog          | 8 ++++++++
 capplets/background/gnome-wp-capplet.c | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 1836aacd0befca4fa3d730d817361264727bb760
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Aug 21 13:40:43 2005 +0000

    fix the --enable-aboutme configure option, patch by Ray Strode
    
    2005-08-21  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: fix the --enable-aboutme configure option,
        patch by Ray Strode <rstrode@redhat.com> (Closes: #313121).

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 5f47d439e150cae5a8292c46f29ca4158a5d1e6c
Author: Jens Seidel <jseidel@src.gnome.org>
Date:   Fri Aug 19 17:32:33 2005 +0000

    Fixed a typo

 po/ChangeLog | 4 ++++
 po/de.po     | 7 ++++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 87318c8a81107a81038037c485f4143b679ef5a2
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Thu Aug 18 14:23:00 2005 +0000

    fixed leaked timer.
    
    2005-08-18  Rodrigo Moya <rodrigo@novell.com>
    
        * drw-break-window.c (drw_break_window_dispose): fixed leaked timer.

 typing-break/ChangeLog          | 4 ++++
 typing-break/drw-break-window.c | 5 +++++
 2 files changed, 9 insertions(+)

commit 6d7b1e9ee4cefb342d96b6c1f4d0123b9360ecd8
Author: Rodney Dawes <dobey@novell.com>
Date:   Wed Aug 17 11:58:43 2005 +0000

    Replace the changing of some GtkDialog defaults through style properties
    
    2005-08-17  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Replace the changing
        of some GtkDialog defaults through style properties with calls to
        gtk_widget_ensure_style and gtk_container_set_border_width
    
        Fixes #313680

 capplets/background/ChangeLog          | 8 ++++++++
 capplets/background/gnome-wp-capplet.c | 9 +++------
 2 files changed, 11 insertions(+), 6 deletions(-)

commit e029ff0ec3deb637ac360d81a495a9395ad34cd7
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   Tue Aug 16 22:38:06 2005 +0000

    Updated Traditional Chinese translation.
    
    
    2005-08-17  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
        * zh_TW.po: Updated Traditional Chinese translation.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 928 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 555 insertions(+), 377 deletions(-)

commit 8456c322c0d6173bfd3f05ea24ea4c4450ae9caa
Author: Veerapuram Varadhan <vvaradhan@novell.com>
Date:   Tue Aug 16 21:14:14 2005 +0000

    Enable/disable the style-menu, shading-menu and color-picker buttons w.r.t
    
    2005-08-15  Veerapuram Varadhan <vvaradhan@novell.com>
    
        * gnome-wp-capplet.c (gnome_wp_props_wp_set):
        (gnome_wp_color[12]_changed, gnome_wp_options_changed):
        (gnome_wp_shading_changed, wallpaper_properties_init):
        Enable/disable the style-menu, shading-menu and color-picker
        buttons w.r.t gconf-keys.
        (gnome_wp_set_sensitivities): Utility function to take care of
        enabling/disabling widgets w.r.t gconf-keys.
        (gnome_wp_props_wp_set): Don't set the sensitivity of the remove and
        style buttons here. Just call the new method to do it instead

 capplets/background/ChangeLog          | 12 +++++++
 capplets/background/gnome-wp-capplet.c | 58 +++++++++++++++++++++++++++++++---
 2 files changed, 66 insertions(+), 4 deletions(-)

commit 722667de1e9ba1a9490322b361a66fdc444b4605
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Tue Aug 16 20:34:05 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-08-16  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 547 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 351 insertions(+), 200 deletions(-)

commit 27c8a5ed16d88cea21e9b9d921fd28d660af472d
Author: Diego González <dggonz@src.gnome.org>
Date:   Tue Aug 16 12:10:15 2005 +0000

    Revert patch of the previous patch as it modified the UI

 capplets/about-me/ChangeLog            | 18 ++++++++++++++++++
 capplets/about-me/gnome-about-me.glade |  2 +-
 2 files changed, 19 insertions(+), 1 deletion(-)

commit 4c496648943c733f505a081b18af4c27648f633b
Author: Olaf Heiring <olh@suse.de>
Date:   Mon Aug 15 18:09:33 2005 +0000

    use integer to avoid comparison being always true due to limited range.
    
    2005-08-15  Olaf Heiring <olh@suse.de>
    
        * gnome-about-me-password.c (read_everything): use integer to avoid
          comparison being always true due to limited range.
    
    2005-08-15  Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me-password.c (update_password): use "wrapped" instead
          of "one" to handler the case where the passwd command finds the
          password wrapped. Use a long delay period.
    
          Patch by Jaap Hatsima.

 capplets/about-me/gnome-about-me-password.c | 23 +++++++++--------------
 capplets/about-me/gnome-about-me.glade      |  2 +-
 2 files changed, 10 insertions(+), 15 deletions(-)

commit f2548a55cd389e1389901efc19c2b3c1f1706be0
Author: Rodney Dawes <dobey@src.gnome.org>
Date:   Mon Aug 15 16:15:54 2005 +0000

    Forgot to commit the entire changelog entry (saved in the middle)

 capplets/common/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 0ffa2524281e7f99cc3c2fb6a341b86fa0228735
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Aug 14 23:58:24 2005 +0000

    Get the Example icon that is specified by the icon theme, if it exists,
    
    2005-08-14  Rodney Dawes  <dobey@novell.com>
    
        * theme-thumbnail.c (create_image): Get the Example icon that is
        specified by the icon theme, if it exists, and then fall back through
        a better list of icons to use. Gnome uses gnome-fs-directory currently
        for folders, so we should prefer that over folder, but the icon naming
        spec lists x-directory-normal for standard folders, so we should prefer
        that above other folders
    
        This fixes issues with the wrong icon being drawn in the thumbnail, due
        to the icon theme providing the gnome folder icon, but inheriting from
        another theme which provides a different icon named "folder" for KDE or
        other desktops

 capplets/common/ChangeLog         |  9 +++++++++
 capplets/common/theme-thumbnail.c | 19 +++++++++++++++----
 2 files changed, 24 insertions(+), 4 deletions(-)

commit ab0a4c5111155fed5e0c5746dce7037b2b09e93c
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sun Aug 14 22:02:08 2005 +0000

    Hungarian translation updated.
    
    2005-08-15  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated.

 po/ChangeLog |  4 +++
 po/hu.po     | 85 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 64 insertions(+), 25 deletions(-)

commit a9b538de777c3f530d59dfa35142dd02d14b4560
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Aug 14 21:13:54 2005 +0000

    Fixed a typo.
    
    2005-08-14  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * gnome-about-me-password.c: Fixed a typo.

 capplets/about-me/ChangeLog                 | 6 ++++++
 capplets/about-me/gnome-about-me-password.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 46a69bcda0f1409f521728f847f1e025a9a0fc5f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Aug 14 21:04:40 2005 +0000

    fixing #313368

 ChangeLog                     | 5 +++++
 capplets/keyboard/Makefile.am | 2 +-
 configure.in                  | 2 ++
 3 files changed, 8 insertions(+), 1 deletion(-)

commit d587381671e222d4c63b218c76cab601d6d81c78
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Aug 14 16:10:50 2005 +0000

    Updated Spanish translation.
    
    2005-08-14  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 187 ++++++++++++++++++-----------------------------------------
 2 files changed, 61 insertions(+), 130 deletions(-)

commit 49e485406eacf039de273f798a1e3a9622659ce2
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Aug 14 15:30:51 2005 +0000

    don't use a page value, fix the different behaviour between widgets
        (Closes: #301470).

 capplets/accessibility/keyboard/ChangeLog                | 6 ++++++
 capplets/accessibility/keyboard/accessibility-keyboard.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit b98383f9a9922ea6ae5227ee53ed5d05efc5ba09
Author: Mohammad DAMT <mdamt@gnome.org>
Date:   Sun Aug 14 06:54:41 2005 +0000

    Updated Indonesian translation.
    
    2005-08-14  Mohammad DAMT  <mdamt@gnome.org>
    
      * id.po: Updated Indonesian translation.

 po/ChangeLog | 4 ++++
 po/id.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 559df86efb3a0fa24ae6cc99f91272fa48564980
Author: Terance Sola <terance@lyse.net>
Date:   Sun Aug 14 03:50:37 2005 +0000

    Updated Norwegian bokmål translation. Same.
    
    2005-08-14  Terance Sola  <terance@lyse.net>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same.

 po/ChangeLog |  5 +++++
 po/nb.po     | 17 +++++++++--------
 po/no.po     | 17 +++++++++--------
 3 files changed, 23 insertions(+), 16 deletions(-)

commit 96221f8e0b1ecb85c1748293e4ab0424977bee46
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Fri Aug 12 06:59:00 2005 +0000

    Updated Greek Translation

 po/ChangeLog |   4 +
 po/el.po     | 542 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 262 insertions(+), 284 deletions(-)

commit c4ad3847a97fb86f71e114ffa8b496f0944264dd
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Thu Aug 11 06:24:56 2005 +0000

    Updated Japanese translation for v2.11.91.
    
    2005-08-11  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.11.91.

 po/ChangeLog |   4 ++
 po/ja.po     | 151 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 90 insertions(+), 65 deletions(-)

commit e016061deaa261f0bd09fc6e5f1307e0139e0156
Author: Funda Wang <fwang@src.gnome.org>
Date:   Thu Aug 11 04:55:47 2005 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 ++
 po/zh_CN.po  | 160 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 98 insertions(+), 66 deletions(-)

commit 17b83772fc6d1334e8464c48fc108fb62473f3b3
Author: Mohammad DAMT <mdamt@gnome.org>
Date:   Wed Aug 10 21:16:50 2005 +0000

    Updated Indonesian translation
    
    2005-08-10  Mohammad DAMT  <mdamt@gnome.org>
    
      * id.po: Updated Indonesian translation

 po/ChangeLog |    4 +
 po/id.po     | 3297 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1691 insertions(+), 1610 deletions(-)

commit d7fea45293e03dc8ba596b6a95e5542f3d8c92f4
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   Wed Aug 10 19:07:41 2005 +0000

    Updated Lithuanian translation by Justina Klingaitė and myself.
    
    2005-08-10  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation by Justina Klingaitė and
            myself.

 po/ChangeLog |  297 +++++++-------
 po/lt.po     | 1216 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 861 insertions(+), 652 deletions(-)

commit bd683c47f757daa0d8a96b56f5437bd04b170b8f
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Aug 10 18:31:27 2005 +0000

    Updated Spanish translation.
    
    2005-08-10  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 172 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 107 insertions(+), 69 deletions(-)

commit f8a5023bb1571fe38c73d37378dc9e78b7932ae7
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Aug 10 11:04:39 2005 +0000

    update to 2.9.92
    
    2005-08-10  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: update to 2.9.92

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 90a93fa27c15a2473901618b55913a48476f43f6
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Aug 10 10:13:41 2005 +0000

    update for 2.9.91.
    
    2005-08-10  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS: update for 2.9.91.

 ChangeLog |  4 ++++
 NEWS      | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 55 insertions(+), 1 deletion(-)

commit 71f6f6e1e1891531b91bd137a91d91f522eef4ec
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Tue Aug 9 16:47:31 2005 +0000

    done

 po/mk.po | 161 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 91 insertions(+), 70 deletions(-)

commit 3c08c141d5effb76ffc206473dbb2cf6b4a0fe18
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Aug 8 04:49:25 2005 +0000

    Updated Gujarati translations

 po/ChangeLog |   4 ++
 po/gu.po     | 158 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 95 insertions(+), 67 deletions(-)

commit 52915655ee2262a0bb7ac92a2050f9f59f63badc
Author: Diego Gonzalez <diego@pemas.net>
Date:   Mon Aug 8 01:28:40 2005 +0000

    fix the rest of bug 312092 which was caused when the old and new passwords
    
    2005-08-07  Diego Gonzalez <diego@pemas.net>
    
            * gnome-about-me-password.c (update_password): fix the rest of bug
              312092 which was caused when the old and new passwords were the
              same.

 capplets/about-me/ChangeLog                 | 6 ++++++
 capplets/about-me/gnome-about-me-password.c | 6 +++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit f27337cbce27095f5ce4f736ac573e4ed485f3f6
Author: Terance Sola <terance@lyse.net>
Date:   Sun Aug 7 14:00:15 2005 +0000

    Updated Norwegian bokmål translation. Same.
    
    2005-08-07  Terance Sola  <terance@lyse.net>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same.

 po/ChangeLog |  5 ++++
 po/nb.po     | 87 +++++++++++++++++++++++++++++++++++++++++-------------------
 po/no.po     | 87 +++++++++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 125 insertions(+), 54 deletions(-)

commit 87352c03df822f2a6fcea0dda528f004983e5041
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Aug 7 10:45:47 2005 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2005-08-07  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |  7 ++++++-
 po/bg.po     | 66 +++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 53 insertions(+), 20 deletions(-)

commit 97a88b7725d43dc76387219e0a490ad6c87c2be6
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Aug 7 10:36:43 2005 +0000

    Updated Finnish translation

 po/ChangeLog |   4 +++
 po/fi.po     | 115 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 75 insertions(+), 44 deletions(-)

commit 4e01214fca5e078b7953fec9469f818cec67d1b3
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Aug 7 08:16:33 2005 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 ++
 po/vi.po     | 158 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 94 insertions(+), 68 deletions(-)

commit 6341a90a47aa0bc14f90b9da0feb51d5282dbf43
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Aug 7 07:37:43 2005 +0000

    Updated Thai translation.
    
    2005-08-07  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 172 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 104 insertions(+), 72 deletions(-)

commit cd39b409ef70a0f2d48ba539aff58146e2d13e54
Author: Marcel Telka <marcel@telka.sk>
Date:   Sun Aug 7 05:46:37 2005 +0000

    Updated Slovak translation.
    
    2005-08-07  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 166 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 99 insertions(+), 71 deletions(-)

commit dd60e21ff54e19380e00dba51092ffe169225fa8
Author: Adam Weinberger <adamw@gnome.org>
Date:   Sun Aug 7 02:32:24 2005 +0000

    Updated Canadian English translation.
    
    
    2005-08-06  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |    4 +
 po/en_CA.po  | 1634 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 832 insertions(+), 806 deletions(-)

commit bc36bd888d80610e2db42239a02d5e781ed9660a
Author: Diego González <dggonz@src.gnome.org>
Date:   Sat Aug 6 17:32:04 2005 +0000

    Make the dialog a bit bigger to fit some of the strings

 capplets/about-me/gnome-about-me-password.c | 2 +-
 capplets/about-me/gnome-about-me.glade      | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit c1446b213ae0b1f16de23f332789f79ac1b404a0
Author: Diego Gonzalez <diego@pemas.net>
Date:   Sat Aug 6 17:22:29 2005 +0000

    handle protocol errors from EDS.
    
    2005-08-06  Diego Gonzalez <diego@pemas.net>
    
            * gnome-about-me.c (about_me_setup_dialog): handle protocol errors
              from EDS.
    
              This make the capplet not crash and fixes bug 312450, but the real
              problem is on EDS, not here.

 capplets/about-me/ChangeLog        |  8 ++++++++
 capplets/about-me/gnome-about-me.c | 19 +++++++++++++++----
 2 files changed, 23 insertions(+), 4 deletions(-)

commit 2abc3de4e1e5313a17883a909dee43af94b3cbea
Author: Diego Gonzalez <diego@pemas.net>
Date:   Sat Aug 6 16:29:26 2005 +0000

    change signature and handle error conditions from passwd.
    
    
    2005-08-06 Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me-password.c (update_password): change signature and
          handle error conditions from passwd.
          (passdlg_process_response): adapt to changes in update_password
          to show the error strings returned.
    
        Fixes bug 312092.

 capplets/about-me/ChangeLog                 |  9 ++++++
 capplets/about-me/gnome-about-me-password.c | 49 +++++++++++++++++++++++------
 2 files changed, 49 insertions(+), 9 deletions(-)

commit f868ce40f302adb520d35a55e24656f3c3854b56
Author: Diego Gonzalez <diego@pemas.net>
Date:   Sat Aug 6 15:49:13 2005 +0000

    avoid using gtk_main and use gtk_dialog_run instead.
    
    
    2005-08-06  Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me-password.c (gnome_about_me_password): avoid using
          gtk_main and use gtk_dialog_run instead.
          (passdlg_button_clicked_cb): rename to passdlg_process_response
          (spawn_passwd): return a value, so that we can see if we need to
          exit without using gtk_main_quit
          (wait_child) avoid use of gtk_main_quit. More work is required on
          this case, but for now it will be enough.
    
        Fixes bugs 312580 and 309736.

 capplets/about-me/ChangeLog                 |  14 +++-
 capplets/about-me/gnome-about-me-password.c | 125 +++++++++++++++-------------
 2 files changed, 82 insertions(+), 57 deletions(-)

commit 19629808d7cd75824f9beb5a08e107cb51c92141
Author: Alexander Shopov <ash@contact.bg>
Date:   Sat Aug 6 12:23:24 2005 +0000

    Updated Bulgarian translation by Rostislav Raykov <zbrox@i-space.org>
    
    2005-08-06  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Rostislav Raykov <zbrox@i-space.org>

 po/ChangeLog |   5 +
 po/bg.po     | 312 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 146 insertions(+), 171 deletions(-)

commit c97500d67f3546b9d37bc5f2595496749e6baf4f
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Aug 5 10:48:22 2005 +0000

    Updated Czech translation.
    
    2005-08-05  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 249 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 132 insertions(+), 121 deletions(-)

commit 691e43da26670b8245cd883ddda20ce55833d9d5
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Fri Aug 5 09:43:40 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-08-05  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 65 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 40 insertions(+), 29 deletions(-)

commit d446f959189646ed3ddf6f64d4a3c9a934d052cd
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Thu Aug 4 21:17:30 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2002-10-04  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 57 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 33 insertions(+), 28 deletions(-)

commit 3a04f4292a2ef78f6d68091ee98f9f54e585f2d7
Author: Sunil Mohan Adapa <smohan@src.gnome.org>
Date:   Thu Aug 4 11:38:34 2005 +0000

    Added Telugu translation done by Prajasakti Localisation Team <localisation@prajasakti.com>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    6 +
 po/te.po     | 3539 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3550 insertions(+), 1 deletion(-)

commit 8086604fc1462ec592afeda64a3b6e00427b2d80
Author: Paolo Borelli <pborelli@katamail.com>
Date:   Thu Aug 4 11:11:39 2005 +0000

    follow symlinks when getting info. Fixes part of #309744.
    
    2005-08-04  Paolo Borelli  <pborelli@katamail.com>
    
        * font-view.c (add_face_info): follow symlinks when getting
        info. Fixes part of #309744.

 vfs-methods/fontilus/ChangeLog   | 5 +++++
 vfs-methods/fontilus/font-view.c | 9 +++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit 2a7e8840d78e06a9d5fcfadfbda2e290996994fa
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Aug 4 10:54:42 2005 +0000

    Hungarian translation updated.
    
    2005-08-04  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated.

 po/ChangeLog |    4 +
 po/hu.po     | 1031 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 647 insertions(+), 388 deletions(-)

commit 1f1f4a80a17f9b569b8d37a75b320c724f395420
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Wed Aug 3 19:40:56 2005 +0000

    Updated Serbian translation by Slobodan Sredojevic.

 po/ChangeLog  |    4 +
 po/sr.po      | 2154 +++++++++++++++++++++++++++++++++------------------------
 po/sr@Latn.po | 2154 +++++++++++++++++++++++++++++++++------------------------
 3 files changed, 2476 insertions(+), 1836 deletions(-)

commit 7b57ffb538569fdadcf298bae1d7e0afeff059fb
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Aug 3 16:38:27 2005 +0000

    fix the build without gstreamer and with alsa, patch by Paul Drain
    
    2005-08-03  Sebastien Bacher  <seb128@debian.org>
    
            * actions/Makefile.am: fix the build without gstreamer and with alsa,
            patch by Paul Drain <pd@cipherfunk.org> (Closes: #307368).

 gnome-settings-daemon/ChangeLog           |  5 +++++
 gnome-settings-daemon/actions/Makefile.am | 12 ++----------
 2 files changed, 7 insertions(+), 10 deletions(-)

commit 76f7c7492e90de16ea7748b0a388e9ac5e4ea566
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 3 08:22:34 2005 +0000

    Updated Norwegian bokmål translation. Same
    
    2005-08-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokmål translation.
        * no.po: Same

 po/ChangeLog |   5 +++
 po/nb.po     | 103 ++++++++++++++++++++++++++---------------------------------
 po/no.po     | 103 ++++++++++++++++++++++++++---------------------------------
 3 files changed, 97 insertions(+), 114 deletions(-)

commit 871c932ffb127b55594269e7f739f1cebb78b65a
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Aug 2 13:34:27 2005 +0000

    Minor spelling fixes in Thai translation.
    
    2005-08-02  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Minor spelling fixes in Thai translation.

 po/ChangeLog |  4 ++++
 po/th.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit a896b6888c81982460df1e4f2af27d4197ff6fad
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Aug 1 15:59:43 2005 +0000

    no need to allocate a string for the theme when there is no theme
    
    2005-08-01  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-mouse-properties.c: (cursor_theme_changed): no need to allocate
            a string for the theme when there is no theme installed.

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit c5d1a9b0b7705eebb5bb40e5bfd9e9db7262574e
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Aug 1 13:11:03 2005 +0000

    don't crash if there is no cursor theme installed (Closes: #311599).
    
    2005-08-01  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-mouse-properties.c: (cursor_theme_changed):
            don't crash if there is no cursor theme installed (Closes: #311599).

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 957daca4c21a7f50c4bcacada160d6a1993bff28
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Aug 1 08:26:29 2005 +0000

    Translation updated.
    
    2005-08-01  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated.

 po/ChangeLog |   4 ++
 po/nl.po     | 221 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 121 insertions(+), 104 deletions(-)

commit f1840aed7580601d38fe90e9a4ceeda3a4515aff
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Sun Jul 31 19:38:20 2005 +0000

    Updated Finnish translation

 po/ChangeLog |    4 +
 po/fi.po     | 2121 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1153 insertions(+), 972 deletions(-)

commit 3955af5e7b52f1abc9e361ee29878476171dbd0c
Author: Yair Hershkovitz <yairhr@gmail.com>
Date:   Sun Jul 31 13:22:43 2005 +0000

    Updated Hebrew translation by Yuval Tanai.
    
    2005-07-31  Yair Hershkovitz  <yairhr@gmail.com>
    
        * he.po: Updated Hebrew translation by Yuval Tanai.

 po/ChangeLog |    4 +
 po/he.po     | 3350 +++++++++++++++++++++-------------------------------------
 2 files changed, 1186 insertions(+), 2168 deletions(-)

commit 560cb26529b84e59c4f0a9612b2962edc80bb7e7
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Jul 31 12:58:41 2005 +0000

    update dynamically the double click label (Closes: #166908).
    
    2005-07-31  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-mouse-properties.c: (delay_value_changed_cb),
            (setup_dialog):
            update dynamically the double click label (Closes: #166908).

 capplets/mouse/ChangeLog                |  6 ++++++
 capplets/mouse/gnome-mouse-properties.c | 10 ++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 18793ea419eeeb88088303e33b568e31e28c4583
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Jul 31 12:24:36 2005 +0000

    update of the glade file, no need to restart the session to apply the
    
    2005-07-31  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-mouse-properties.glade:
            update of the glade file, no need to restart the session to apply
            the changes with GTK 2.8 (Closes: #312070).

 capplets/mouse/ChangeLog                    |   6 +
 capplets/mouse/gnome-mouse-properties.glade | 210 ++++++++++++++++++++--------
 2 files changed, 161 insertions(+), 55 deletions(-)

commit 37449e8bb6a0b9ce9801ef980cff9b7db96e794a
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Jul 31 00:13:58 2005 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 ++
 po/zh_CN.po  | 130 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 71 insertions(+), 63 deletions(-)

commit fca598e61981e846340ef4b1d07c563e895eb98a
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sat Jul 30 13:49:25 2005 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |  4 ++++
 po/vi.po     | 38 +++++++++++++++++++-------------------
 2 files changed, 23 insertions(+), 19 deletions(-)

commit c3477bfe6f0d474a67170f7abc7be8883a0eb0d6
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Jul 30 06:57:17 2005 +0000

    Updated Thai translation.
    
    2005-07-30  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 142 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 82 insertions(+), 64 deletions(-)

commit 82b28910b1971f2b52b3533642c97f2eac9ba8fd
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Jul 30 00:12:14 2005 +0000

    Updated Spanish translation.
    
    2005-07-30  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 143 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 79 insertions(+), 68 deletions(-)

commit 3cf20cae916b42471548b876d40e1170e3171d13
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Fri Jul 29 09:20:46 2005 +0000

    updated by rranjan@redhat.com

 po/hi.po | 582 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 323 insertions(+), 259 deletions(-)

commit 25567ca259513b4392a8633088b1d2f961fb8cbe
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Thu Jul 28 20:39:54 2005 +0000

    done

 po/mk.po | 39 +++++++++++++++++++++------------------
 1 file changed, 21 insertions(+), 18 deletions(-)

commit a7aec48325fffadee12d225a46213e890ec28da6
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Thu Jul 28 06:51:16 2005 +0000

    Updated Translation

 po/ChangeLog |  4 ++++
 po/gu.po     | 42 ++++++++++++++++++++++++------------------
 2 files changed, 28 insertions(+), 18 deletions(-)

commit 9e59ada02cddf67790142cd76e068f4a2dacae87
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Thu Jul 28 06:15:25 2005 +0000

    Updated Japanese translation for v2.11.90.
    
    2005-07-28  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.11.90.

 po/ChangeLog |   4 +
 po/ja.po     | 298 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 164 insertions(+), 138 deletions(-)

commit 4f7e86689562d5537c4a8b9a3e989a27da239383
Author: Terance Sola <terance@lyse.net>
Date:   Thu Jul 28 02:00:52 2005 +0000

    Updated Norwegian Bokmål translation. Same.
    
    2005-07-28  Terance Sola  <terance@lyse.net>
    
        * nb.po: Updated Norwegian Bokmål translation.
        * no.po: Same.

 po/ChangeLog |   5 +++
 po/nb.po     | 134 ++++++++++++++++++++++++++++++-----------------------------
 po/no.po     | 134 ++++++++++++++++++++++++++++++-----------------------------
 3 files changed, 141 insertions(+), 132 deletions(-)

commit 79faf3a3c927fab25f6aefe06b6493a4e36ff6da
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 27 22:50:42 2005 +0000

    tiny bit of code polish

 capplets/keyboard/gnome-keyboard-properties-xkbpv.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 9a3665ee0b96f4107fbd95ae1a94de7f127bb84c
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 27 14:19:08 2005 +0000

    update to 2.9.91
    
    2005-07-27  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: update to 2.9.91

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 9cce2ddbbc4924f50f306e0992d09282fd6e933f
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jul 27 13:39:47 2005 +0000

    update for 2.9.90

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit b9a7b237690183b48943845a3356eb0997fd7b2f
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jul 27 13:38:53 2005 +0000

    new translation

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit 95de3b04ad391847980076bd8a39e8eb348a1ba6
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 27 13:35:45 2005 +0000

    fix the make distcheck.
    
    2005-07-27  Sebastien Bacher  <seb128@debian.org>
    
            * C/config-accessibility-keyboard.xml:
            * C/control-center.xml:
            fix the make distcheck.

 help/C/config-accessibility-keyboard.xml | 1 +
 help/C/control-center.xml                | 6 ++++--
 help/ChangeLog                           | 6 ++++++
 3 files changed, 11 insertions(+), 2 deletions(-)

commit 69faf795191020a6bbfb66f168a420d13822a1bb
Author: Hendrik Brandt <heb@gnome-de.org>
Date:   Wed Jul 27 13:05:34 2005 +0000

    Updated German translation.
    
    2005-07-27  Hendrik Brandt  <heb@gnome-de.org>
    
            * de.po: Updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1222 ++++++++++++++++++++++++----------------------------------
 2 files changed, 507 insertions(+), 719 deletions(-)

commit 4f510cf94a079922b5183f46618a5732b632ae0d
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jul 27 12:56:39 2005 +0000

    switch to gnome-doc-utils, require 1.9 to build the tarball correctly

 .cvsignore                  |  1 +
 ChangeLog                   | 10 ++++++++++
 Makefile.am                 | 10 +++++++---
 autogen.sh                  |  2 +-
 configure.in                |  7 ++++++-
 help/.cvsignore             |  1 +
 help/C/Makefile.am          | 25 -------------------------
 help/C/control-center-C.omf | 14 --------------
 help/ChangeLog              |  9 +++++++++
 help/Makefile.am            | 10 ++++++++--
 help/control-center.omf.in  |  9 +++++++++
 m4/.cvsignore               |  1 +
 12 files changed, 53 insertions(+), 46 deletions(-)

commit b1b091815bf35dd2d909b0132b9259f131c1b3f7
Author: Adam Weinberger <adamw@gnome.org>
Date:   Wed Jul 27 11:25:14 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-27  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 39 ++++++++++++++++++++++-----------------
 2 files changed, 26 insertions(+), 17 deletions(-)

commit d8b34663e1d04e0d2b2b04efeb53b41f2220a9e0
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 27 11:04:47 2005 +0000

    updated for 2.11.90.
    
    2005-07-27  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS:
            * configure.in: updated for 2.11.90.

 ChangeLog    |  5 +++++
 NEWS         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  2 +-
 3 files changed, 54 insertions(+), 1 deletion(-)

commit 42ffddb55d1f28a9db4a4a3e8d4b0dfc20d39673
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Jul 27 10:56:18 2005 +0000

    Updated Translation

 po/ChangeLog |    4 +
 po/gu.po     | 1956 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1113 insertions(+), 847 deletions(-)

commit 26ce733fb7d623418a1bfb1b5268196843dfdb96
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 27 09:58:54 2005 +0000

    set a default icon for capplets, patch by Jaap A. Haitsma
    
    2005-07-27  Sebastien Bacher  <seb128@debian.org>
    
            * capplet-util.c: (capplet_set_icon): set a default icon for capplets,
            patch by Jaap A. Haitsma <jaap@haitsma.org> (Closes: #305086).

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 4 ++++
 2 files changed, 9 insertions(+)

commit 890e069b8262f8c25c6568004adc5419923e86e5
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Jul 27 08:04:17 2005 +0000

    forgot this
    
    2005-07-27  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in, autogen.sh: revert what looks like
            accidentally committed changes from svu.

 autogen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7cb7849c7916afc9ba636c3ee726a3bd5d79b751
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Jul 27 07:58:56 2005 +0000

    revert what looks like accidentally committed changes from svu.
    
    2005-07-27  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in, autogen.sh: revert what looks like
            accidentally committed changes from svu.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit be7988963342f0f20dd6983e4fcaea6a4b6373ca
Author: Marcel Telka <marcel@telka.sk>
Date:   Wed Jul 27 03:47:23 2005 +0000

    Updated Slovak translation.
    
    2005-07-27  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 130 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 71 insertions(+), 63 deletions(-)

commit 25ac663f39fdf756ff27023a0ed27cafa1dfb992
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jul 26 20:38:25 2005 +0000

    fixing #310513

 ChangeLog                                          |   8 ++
 autogen.sh                                         |   2 +-
 capplets/keyboard/ChangeLog                        |  26 +++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 119 +++++++++++----------
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  16 ++-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  22 ++++
 .../keyboard/gnome-keyboard-properties-xkbot.c     |  22 ++++
 configure.in                                       |   2 +-
 gnome-settings-daemon/ChangeLog                    |  34 ++++--
 .../gnome-settings-keyboard-xkb.c                  |  54 +++++-----
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in |  10 +-
 11 files changed, 208 insertions(+), 107 deletions(-)

commit 30347dd0e1782157031f76627fe487b8a236d48b
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Tue Jul 26 08:50:57 2005 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |    8 +-
 po/vi.po     | 1660 +++-------------------------------------------------------
 2 files changed, 65 insertions(+), 1603 deletions(-)

commit df5bd5fb0efd430b8b73e89c639f27f399fa5283
Author: Adam Weinberger <adamw@gnome.org>
Date:   Tue Jul 26 08:08:14 2005 +0000

    Remove missing files.
    
    
    2005-07-26  Adam Weinberger  <adamw@gnome.org>
    
        * POTFILES.skip: Remove missing files.

 po/ChangeLog     | 1 +
 po/POTFILES.skip | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

commit 7b95fd6b128b11e84d096e44df545230977f1057
Author: Adam Weinberger <adamw@gnome.org>
Date:   Tue Jul 26 08:07:17 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-26  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +++
 po/en_CA.po  | 106 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 57 insertions(+), 53 deletions(-)

commit 1f12e54e0a26e58ce2bc544f43b4f93c835af87f
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jul 26 03:15:35 2005 +0000

    Update for the changed signal of the option menus
    
    2005-07-25  Sebastien Bacher <seb128@debian.org>
    
        * gnome-wp-capplet.c (gnome_wp_{scale,shade}_type_changed):
        Update for the changed signal of the option menus
        (wallpaper_properties_init): Connect to the changed signal of
        the scale and color style option menus
    
        Fixes #157396

 capplets/background/ChangeLog          | 9 +++++++++
 capplets/background/gnome-wp-capplet.c | 8 ++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

commit b340a7841322e5b8c122a210a6309f286ad6a373
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Tue Jul 26 00:36:31 2005 +0000

    done

 po/mk.po | 110 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 56 insertions(+), 54 deletions(-)

commit 06ca0fa30b7ad43d8e8867e8bd0f85007650d860
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jul 25 20:51:16 2005 +0000

    Replace GnomeColorPicker with the GtkColorButton widget Some properties
    
    2005-07-25  Sebastien Bacher <seb128@debian.org>
    
        * gnome-background-properties.glade: Replace GnomeColorPicker with
        the GtkColorButton widget
        Some properties were added by newer version of glade
    
        * gnome-wp-capplet.c (gnome_wp_props_wp_set):
        (gnome_wp_[s]color_changed, gnome_wp_color[12]_changed):
        (gnome_wp_load_stuffs, wallpaper_properties_init):
        Update to use the API for GtkColorButton instead of GnomeColorPicker
    
        Fixes #171676

 capplets/background/ChangeLog                      | 13 ++++
 .../background/gnome-background-properties.glade   | 70 ++++++++++++++++++++--
 capplets/background/gnome-wp-capplet.c             | 51 +++++-----------
 3 files changed, 93 insertions(+), 41 deletions(-)

commit 84b6e2e24e8bb97e8e58fe4c3e9fde32257012e4
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jul 25 13:25:34 2005 +0000

    set windows' icons, patch by Jaap A. Haitsma <jaap@haitsma.org> (Closes:
    
    2005-07-25  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-settings-accessibility-keyboard.c: (warning_dialog_post):
            * gnome-settings-keyboard-xkb.c:
            (gnome_settings_keyboard_xkb_analyze_sysconfig):
            set windows' icons, patch by Jaap A. Haitsma <jaap@haitsma.org>
            (Closes: #305096).

 gnome-settings-daemon/ChangeLog                               | 8 ++++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 1 +
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c           | 3 +++
 3 files changed, 12 insertions(+)

commit c8c0d6d5f20ca28e3d6475eeb8a5aa392b7aae9d
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jul 25 11:57:03 2005 +0000

    specify the fact that it works with both xscreensaver and
    
    2005-07-20  Rodrigo Moya <rodrigo@novell.com>
    
        * C/config-screensaver.xml: specify the fact that it works with both
        xscreensaver and gnome-screensaver.

 help/C/config-screensaver.xml | 7 ++++---
 help/ChangeLog                | 5 +++++
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 009cdb9b8a58aded80c820098eb0a551c9430e87
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jul 25 11:56:28 2005 +0000

    require either xscreensaver or gnome-screensaver.
    
    2005-07-20  Rodrigo Moya <rodrigo@novell.com>
    
        * control-center.spec.in: require either xscreensaver or gnome-screensaver.
    
        * schemas/apps_gnome_settings_daemon_screensaver.schemas.in: don't

 ChangeLog                                                 | 7 +++++++
 control-center.spec.in                                    | 2 +-
 schemas/apps_gnome_settings_daemon_screensaver.schemas.in | 6 +++---
 3 files changed, 11 insertions(+), 4 deletions(-)

commit 6e25211b2f3cb7f85f5fc6bea9dc8807b121591e
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jul 25 11:55:59 2005 +0000

    try to run gnome-screensaver, and if that fails, run xscreensaver.
    
    2005-07-20  Rodrigo Moya <rodrigo@novell.com>
    
        * gnome-settings-screensaver.c (gnome_settings_screensaver_load):
        * gnome-settings-multimedia-keys.c (do_action): try to run
        gnome-screensaver, and if that fails, run xscreensaver.

 gnome-settings-daemon/ChangeLog                    |  6 +++++
 .../gnome-settings-multimedia-keys.c               |  9 +++++++-
 gnome-settings-daemon/gnome-settings-screensaver.c | 27 ++++++++++++++++++----
 3 files changed, 37 insertions(+), 5 deletions(-)

commit cf87a9a2c9a8d6a62a46008399cf6d294b30bde2
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jul 25 11:55:06 2005 +0000

    new function to get the correct screensaver command to run. (apply_config,
    
    2005-07-20  Rodrigo Moya <rodrigo@novell.com>
    
        * main.c (get_screensaver_command): new function to get the correct
        screensaver command to run.
        (apply_config, revert_config): use gnome-screensaver if available.

 capplets/display/ChangeLog |  6 ++++++
 capplets/display/main.c    | 28 ++++++++++++++++++++--------
 2 files changed, 26 insertions(+), 8 deletions(-)

commit c6f063ff7a733fdb8db4a81bafaf26bd823cc26a
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Jul 24 20:25:24 2005 +0000

    set the "is_important" property for one of the buttons, so the label is
    
    2005-07-24  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-ui-properties.glade: set the "is_important" property for one
            of the buttons, so the label is showed for the "Text beside icons" mode
            (Closes: #308845).

 capplets/ui-properties/ChangeLog                 |  6 +++++
 capplets/ui-properties/gnome-ui-properties.glade | 33 +++++++++++++++++++++++-
 2 files changed, 38 insertions(+), 1 deletion(-)

commit 410b71ba9f9bde60dcf08d65aaf7d472ba7764e7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jul 24 16:11:50 2005 +0000

    Updated Norwegian bokml translation. Same
    
    2005-07-24  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian bokml translation.
        * no.po: Same

 po/ChangeLog |   5 ++
 po/nb.po     | 167 ++++++++++++++++++++++++++++++++---------------------------
 po/no.po     | 167 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 187 insertions(+), 152 deletions(-)

commit 9ab366267f41ee297cd04416abc250631afdf90b
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Jul 23 16:38:46 2005 +0000

    Updated Czech translation.
    
    2005-07-23  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 176 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 102 insertions(+), 78 deletions(-)

commit 439a01223da95e909282090bdf85a40bcc84da27
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Fri Jul 22 20:43:01 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-07-22  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 399 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 229 insertions(+), 174 deletions(-)

commit 6f0360a4c48b459856969b954d0afc5b54743dbe
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Jul 22 15:49:27 2005 +0000

    Updated Bulgarian translation by Rostislav Raykov <zbrox@i-space.org>
    
    2005-07-22  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Rostislav Raykov <zbrox@i-space.org>

 po/ChangeLog |   7 +-
 po/bg.po     | 676 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 498 insertions(+), 185 deletions(-)

commit 4e87ed514ea1e62834c58b5ff1eb7829f559c0c7
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Fri Jul 22 15:16:16 2005 +0000

    Updated Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 933 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 626 insertions(+), 311 deletions(-)

commit 3fac9a8e15b128d77ad982f762457a85c4eb754b
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Jul 22 09:05:38 2005 +0000

    Minor wording adjustments in Thai translation.
    
    2005-07-22  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Minor wording adjustments in Thai translation.

 po/ChangeLog | 4 ++++
 po/th.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 6611ec16f8903b05095a17125465045b35a55404
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Jul 21 05:05:43 2005 +0000

    Translation updated.
    
    2005-07-21  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated.

 po/ChangeLog |   4 +
 po/et.po     | 789 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 474 insertions(+), 319 deletions(-)

commit fd270fb8bb65efb4a979c21d3a331eeb62988efd
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Wed Jul 20 10:11:27 2005 +0000

    full

 po/mk.po | 1291 +++++++++++++++++++++++---------------------------------------
 1 file changed, 468 insertions(+), 823 deletions(-)

commit 1a54ff6b6434c8378533debde1f2c3c2fa793d28
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Wed Jul 20 07:09:38 2005 +0000

    update by amanpreetalam@yahoo.com

 po/pa.po | 2288 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1280 insertions(+), 1008 deletions(-)

commit b48525cff4cedd6adf78b0feb04188cd21088104
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Tue Jul 19 12:35:24 2005 +0000

    See
    
    2005-07-19  Mark McLoughlin  <mark@skynet.ie>
    
            See http://mail.gnome.org/archives/desktop-devel-list/2005-July/msg00341.html
    
            * capplets/wm-properties/*: remove old crufty code.

 ChangeLog                                      |    6 +
 capplets/wm-properties/ChangeLog               |  138 ---
 capplets/wm-properties/Makefile.am             |   33 -
 capplets/wm-properties/wm-capplet.png          |  Bin 3047 -> 0 bytes
 capplets/wm-properties/wm-exec.c               |  331 -------
 capplets/wm-properties/wm-list.c               |  574 -----------
 capplets/wm-properties/wm-properties-capplet.c | 1260 ------------------------
 capplets/wm-properties/wm-properties.h         |   63 --
 capplets/wm-properties/wm.desktop.in.in        |   61 --
 9 files changed, 6 insertions(+), 2460 deletions(-)

commit 1aa8deaf59a3aeea125dceba7bcc065ae1185004
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Tue Jul 19 12:32:38 2005 +0000

    See
    
    2005-07-19  Mark McLoughlin  <mark@skynet.ie>
    
            See http://mail.gnome.org/archives/desktop-devel-list/2005-July/msg00341.html
    
            * wm-exec.c, wm-list.c, wm-properties.h: remove old crufty
            code.
    
            * Makefile.am: update.

 libwindow-settings/.cvsignore      |   4 -
 libwindow-settings/ChangeLog       |   9 +
 libwindow-settings/Makefile.am     |   5 +-
 libwindow-settings/wm-exec.c       | 330 ---------------------
 libwindow-settings/wm-list.c       | 577 -------------------------------------
 libwindow-settings/wm-properties.h |  63 ----
 6 files changed, 10 insertions(+), 978 deletions(-)

commit e60d5c3d615b27ce7ee4d2e62f299bf260bd02cb
Author: Marcel Telka <marcel@telka.sk>
Date:   Mon Jul 18 18:27:57 2005 +0000

    Updated Slovak translation.
    
    2005-07-18  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 252 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 155 insertions(+), 101 deletions(-)

commit 032f1b186718532689b0332bf2aa9d2dd689b959
Author: Adam Weinberger <adamw@gnome.org>
Date:   Mon Jul 18 08:38:29 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-18  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 320 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 189 insertions(+), 135 deletions(-)

commit 036cd6f7315c903d7a844a4207d36808863bfb7a
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Jul 18 07:39:26 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-07-18  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d26bdb7ba57a2169675106ea9e782d27eb76f617
Author: Funda Wang <fwang@src.gnome.org>
Date:   Mon Jul 18 04:56:19 2005 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 +
 po/zh_CN.po  | 993 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 400 insertions(+), 597 deletions(-)

commit c2b7a167f1c7f8aaf51a6b81549e1b556fc61030
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Sun Jul 17 19:12:30 2005 +0000

    use pkg-config to check for xcursor
    
    2005-07-17  Sven Herzberg  <herzi@gnome-de.org>
    
            * configure.in: use pkg-config to check for xcursor

 ChangeLog    |  4 ++++
 configure.in | 10 +++++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 5bf42ad35b8b7550867c16b19e50d5349b3d4315
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sun Jul 17 11:34:44 2005 +0000

    vi.po: Updated Vietnamese translation.CVS: ----------------------------------------------------------------------

 po/ChangeLog |    4 +
 po/vi.po     | 4080 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 2067 insertions(+), 2017 deletions(-)

commit 5632425d96bd8658815f70db7d5253cacf4ab106
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Jul 17 10:39:34 2005 +0000

    Updated Spanish translation.
    
    2005-07-17  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 417 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 236 insertions(+), 185 deletions(-)

commit 0a603c851d3bfebcde72a71596f0571fa0f373c1
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Jul 17 01:47:44 2005 +0000

    Updated Thai translation.
    
    2005-07-17  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 410 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 237 insertions(+), 177 deletions(-)

commit 35a9a8f946658b0ce4a6132488d0396a40d17d4b
Author: Diego Gonzalez <diego@pemas.net>
Date:   Sat Jul 16 21:42:40 2005 +0000

    change the order of the buttons to match the HIG.
    
    2005-07-16  Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me.c (about_me_image_clicked_cb): change the order
          of the buttons to match the HIG.
    
          Patch by Denis Cranston. Fixes bug 309632.

 capplets/about-me/ChangeLog        | 7 +++++++
 capplets/about-me/gnome-about-me.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 6b0cd523f8f6ab2b93a75f47192215f60f7d7076
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Sat Jul 16 21:37:15 2005 +0000

    Set a default message. Use g_strconcat() instead of g_strdup() and mark
    
    2005-07-12  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-about-me-password.c (passdlg_check_password_timeout_cb):
          Set a default message. Use g_strconcat() instead of g_strdup()
          and mark strings for translation; (gnome_about_me_password):
          Set the window icon.
    
        * gnome-about-me.glade:  Rearrange the change password dialog.
          Relabel the ok button to 'Change Password'.
    
          Closes bug 310307

 capplets/about-me/ChangeLog                 |  12 ++
 capplets/about-me/gnome-about-me-password.c |   9 +-
 capplets/about-me/gnome-about-me.glade      | 202 ++++++++++++----------------
 3 files changed, 105 insertions(+), 118 deletions(-)

commit 542dfba26c65cb368fcaa79d87b80c044d4b3287
Author: Diego Gonzalez <diego@pemas.net>
Date:   Sat Jul 16 21:09:01 2005 +0000

    Don't build e-util-marshal, as we can use the glib marshallers. Use
    
    2005-07-16  Diego Gonzalez  <diego@pemas.net>
    
        * Makefile.am: Don't build e-util-marshal, as we can use
          the glib marshallers.
        * e-image-chooser.c: (e_image_chooser_class_init): Use standard
          glib marshallers.
        * gnome-about-me.c: (about_me_focus_out),
          (about_me_get_address_field), (about_me_setup_dialog): Add some
          error checking.
    
          Patch by James Bowes.

 capplets/about-me/ChangeLog         | 12 ++++++++++++
 capplets/about-me/Makefile.am       | 16 +---------------
 capplets/about-me/e-image-chooser.c |  4 ++--
 capplets/about-me/gnome-about-me.c  | 26 +++++++++++++++++++-------
 4 files changed, 34 insertions(+), 24 deletions(-)

commit e1723021da8d0c8fb5cff480060dda1192fc4304
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sat Jul 16 14:55:33 2005 +0000

    fixed a mnemonic conflict (#155953).
    
    2005-07-16  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-network-preferences.glade: fixed a mnemonic conflict (#155953).

 capplets/network/ChangeLog                       |  4 ++++
 capplets/network/gnome-network-preferences.glade | 13 +++++++++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

commit 0ee3eaab67756ef9c74375022311809797d94373
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jul 16 09:05:55 2005 +0000

    Updated Norwegian translation. Same
    
    2005-07-16  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated Norwegian translation.
        * no.po: Same

 po/ChangeLog |   5 +
 po/nb.po     | 361 ++++++++++++++++++++++++++++++++---------------------------
 po/no.po     | 361 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 399 insertions(+), 328 deletions(-)

commit e2094b33e2c4b8042ef381962af216219e2efeed
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   Sat Jul 16 06:56:28 2005 +0000

    vi.po: Updated Vietnamese translation.CVS: ----------------------------------------------------------------------

 po/ChangeLog |    4 +
 po/vi.po     | 5916 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 3004 insertions(+), 2916 deletions(-)

commit 66de225e6cf8febcaf9ea5ef67f296d724f4d776
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Sat Jul 16 05:32:06 2005 +0000

    Updated Japanese translation for v2.11.6.
    
    2005-07-16  Takeshi AIHANA <aihana@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation for v2.11.6.

 po/ChangeLog |   4 +
 po/ja.po     | 544 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 418 insertions(+), 130 deletions(-)

commit c7a821f347a1e6e45538286cd99919691f717b57
Author: Ignacio Casal Quinteiro <icq@src.gnome.org>
Date:   Fri Jul 15 16:09:29 2005 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/gl.po     | 846 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 590 insertions(+), 260 deletions(-)

commit d8715b0371bce4b42daa413fa2d2aaea65f8e621
Author: Rodney Dawes <dobey@novell.com>
Date:   Fri Jul 15 04:41:53 2005 +0000

    If xmlParseFile returns NULL, then just return, rather than trying to
    
    2005-07-14  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml): If xmlParseFile returns
        NULL, then just return, rather than trying to parse the document
    
        Fixes #310041

 capplets/background/ChangeLog      | 7 +++++++
 capplets/background/gnome-wp-xml.c | 3 +++
 2 files changed, 10 insertions(+)

commit 174da6fb3c61ec944076eb2c121d83938180fb4a
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu Jul 14 16:43:36 2005 +0000

    Updated Czech translation.
    
    2005-07-14  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 486 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 372 insertions(+), 118 deletions(-)

commit 72f3f194b1d9e20fa0c43b040e5b8e61982951ef
Author: Rodney Dawes <dobey@novell.com>
Date:   Thu Jul 14 03:06:24 2005 +0000

    Pass the md5sum to the call to g_strconcat to create the path to the
    
    2005-07-13  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-info.c (gnome_wp_info_new): Pass the md5sum to the call
        to g_strconcat to create the path to the thumbnail file
    
        Fixes #310293

 capplets/background/ChangeLog       | 7 +++++++
 capplets/background/gnome-wp-info.c | 8 +++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit 2ad4a3149687f5bbf5d8a42c8f1ab91dffedcf6b
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 13 21:54:58 2005 +0000

    new file.
    
    2005-07-13  Sebastien Bacher  <seb128@debian.org>
    
            * .cvsignore: new file.

 capplets/about-me/.cvsignore | 8 ++++++++
 capplets/about-me/ChangeLog  | 4 ++++
 2 files changed, 12 insertions(+)

commit c6038d4f0bdcde069e807a609b578f663d8ad5cb
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 13 21:51:44 2005 +0000

    update to 2.11.7.
    
    2005-07-13  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: update to 2.11.7.

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit dded3cf6f41318c9b9be383d4d74fae2b6e31fb9
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jul 13 21:14:27 2005 +0000

    updated for 2.11.6.
    
    2005-07-13  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS: updated for 2.11.6.

 ChangeLog |  4 ++++
 NEWS      | 40 ++++++++++++++++++++++++++++++++++++++--
 2 files changed, 42 insertions(+), 2 deletions(-)

commit c18fbc45550d12ea48ffaacbc9348fe948430296
Author: Diego Gonzalez <diego@pemas.net>
Date:   Wed Jul 13 20:28:10 2005 +0000

    change the maxium width and height permitted on an image, in the hope that
    
    2005-07-13  Diego Gonzalez  <diego@pemas.net>
    
        * gnome-about-me.c (about_me_update_photo): change the maxium width
          and height permitted on an image, in the hope that it mitigates
          the problem reported in bug 309643.

 capplets/about-me/ChangeLog        | 6 ++++++
 capplets/about-me/gnome-about-me.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit c9c0a8433182ceebbf7271b2486208eca7efae5e
Author: Diego Gonzalez <diego@pemas.net>
Date:   Wed Jul 13 20:16:13 2005 +0000

    fix image loading when draging an image on the image button, it was
    
    2005-07-13  Diego Gonzalez  <diego@pemas.net>
    
        * e-image-chooser.c (image_drag_data_received_cb): fix image loading
          when draging an image on the image button, it was getting hanged.
          (e_image_chooser_init): fix the positioning of the image on the button,
          still not perfect but a bit better.
    
          Also included in this patch are several cleanups to the code.
    
          Fixes bug 309628 and partially bugs 309629 and 309387
    
        * gnome-about-me.c (about_me_setup_dialog): connect to the changed
          signal on the image-chooser, so that we are notified when the
          user changes the image using DnD.
          (about_me_image_changed_cb): new function, it is called whenever
          the user changes the image using D&D.
    
          Mark two strings for translation.

 capplets/about-me/ChangeLog         | 19 +++++++++++++
 capplets/about-me/e-image-chooser.c | 57 +++++++------------------------------
 capplets/about-me/gnome-about-me.c  | 33 ++++++++++++++-------
 3 files changed, 53 insertions(+), 56 deletions(-)

commit 624869b5228af51b27f7be76279da28c26fdd5ba
Author: Diego Gonzalez <diego@pemas.net>
Date:   Wed Jul 13 10:46:56 2005 +0000

    if the saving timeout has not yet expired and we click exit then commit
    
    2005-07-13  Diego Gonzalez  <diego@pemas.net>
    
        * gnome-about-me.c (about_me_button_clicked_cb): if
          the saving timeout has not yet expired and we click
          exit then commit the changes so that we don't loose
          any data.
    
          Fixes bug 309737.

 capplets/about-me/ChangeLog        |  9 +++++++++
 capplets/about-me/gnome-about-me.c | 20 ++++++++++++++------
 2 files changed, 23 insertions(+), 6 deletions(-)

commit 98d1ad8a495521d9b824e40d3044f936e0f129c7
Author: Diego González <dggonz@src.gnome.org>
Date:   Wed Jul 13 10:03:25 2005 +0000

    Forgot to commit this file.

 capplets/about-me/gnome-about-me.glade | 1294 ++++++++++++++++++--------------
 1 file changed, 721 insertions(+), 573 deletions(-)

commit f8483a3a03c6aacc1abd9f9113233b9b3377c35d
Author: Marcel Telka <marcel@telka.sk>
Date:   Wed Jul 13 05:04:16 2005 +0000

    Updated Slovak translation.
    
    2005-07-13  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 ++++
 po/sk.po     | 66 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 37 insertions(+), 33 deletions(-)

commit 7099ba51afcd621230311bc28250d97d3739cf5a
Author: Diego Gonzalez <diego@pemas.net>
Date:   Tue Jul 12 18:41:25 2005 +0000

    this file is no longer used.
    
    2005-07-12  Diego Gonzalez  <diego@pemas.net>
    
        * gnome-about-me.png: this file is no longer used.

 capplets/about-me/ChangeLog          |   4 ++++
 capplets/about-me/gnome-about-me.png | Bin 2280 -> 0 bytes
 2 files changed, 4 insertions(+)

commit c08f3685cc8c4ed6e25f1d1f8d69b822f4b05a89
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Tue Jul 12 18:29:13 2005 +0000

    fix the without HAVE_XCURSOR build
    
    2005-07-12  Sven Herzberg  <herzi@gnome-de.org>
    
            * gnome-mouse-properties.c: fix the without HAVE_XCURSOR build

 capplets/mouse/ChangeLog                | 4 ++++
 capplets/mouse/gnome-mouse-properties.c | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit a6bfb5ca46e7ba80f95307e13cc14062ced4ccc2
Author: Diego Gonzalez <diego@pemas.net>
Date:   Tue Jul 12 18:06:41 2005 +0000

    remove gdk_pixbuf_unref calls which are deprecated and use g_object_unref
    
    2005-07-11  Diego Gonzalez  <diego@pemas.net>
    
        * e-image-chooser.c: remove gdk_pixbuf_unref calls which are
          deprecated and use g_object_unref instead
    
    2005-07-11  Diego Gonzalez  <diego@pemas.net>
    
        * gnome-about-me-password.c: fix some string errors
    
          Fixes bug 309951 and bug 309950
    
    2005-07-10  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-about-me.glade:  HIG fixes; fix widget padding,
          use sentence capitalization for text field labels, fix
          mnemonic conflics, and remove mnemonics from tab labels.
    
          Also fixes bug 309952

 capplets/about-me/ChangeLog                 | 18 ++++++++++++++++++
 capplets/about-me/e-image-chooser.c         |  6 +++---
 capplets/about-me/gnome-about-me-password.c |  7 ++++---
 capplets/about-me/gnome-about-me.c          |  3 ---
 4 files changed, 25 insertions(+), 9 deletions(-)

commit 9d434685b9dfacff16568928729ab369381edf4e
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jul 12 10:23:17 2005 +0000

    fix a label form (Closes: #167739).
    
    2005-07-12  Sebastien Bacher  <seb128@debian.org>
    
        * modmap-dialog.glade: fix a label form (Closes: #167739).

 gnome-settings-daemon/ChangeLog           |  4 ++++
 gnome-settings-daemon/modmap-dialog.glade | 31 ++++++++++++++++++++++++++++---
 2 files changed, 32 insertions(+), 3 deletions(-)

commit 0fbe40bd72add3af24bba3bbf030d43133c6c228
Author: Rodney Dawes <dobey@novell.com>
Date:   Tue Jul 12 00:48:13 2005 +0000

    Remove the unref call on the GtkIconTheme object to avoid crashing
    
    2005-07-11  Rodney Dawes  <dobey@novell.com>
    
        * capplet-util.c (capplet_set_icon): Remove the unref call on the
        GtkIconTheme object to avoid crashing
    
        Fixes #310037

 capplets/common/ChangeLog      | 7 +++++++
 capplets/common/capplet-util.c | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 854c6ea4fb991d7fa7034f4cf61df3d148e7609c
Author: Marcel Telka <marcel@telka.sk>
Date:   Mon Jul 11 17:30:08 2005 +0000

    Updated Slovak translation.
    
    2005-07-11  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 128 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 68 insertions(+), 64 deletions(-)

commit c8e6b7adabf921abd35ecee6cdabfd413fefd6c3
Author: Adam Weinberger <adamw@gnome.org>
Date:   Sun Jul 10 21:57:10 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-10  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 128 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 67 insertions(+), 65 deletions(-)

commit ea7222e7754413f6dafdf9515b2b7f1f29b971de
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jul 10 21:10:56 2005 +0000

    Update to use the GtkIconTheme API instead of the deprecated
    
    2005-07-10  Rodney Dawes  <dobey@novell.com>
    
        * capplet-util.c (capplet_set_icon): Update to use the GtkIconTheme
        API instead of the deprecated GnomeIconTheme API
        Based on patch from Jan de Groot
    
        Fixes #171679

 capplets/common/ChangeLog      |  8 ++++++++
 capplets/common/capplet-util.c | 15 ++++++++-------
 2 files changed, 16 insertions(+), 7 deletions(-)

commit e7819d91752175499e6acddc50c44985fde7db92
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jul 10 20:45:00 2005 +0000

    Update to use GtkIconTheme rather than GnomeIconTheme Based on patch from
    
    2005-07-10  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.[ch]:
        (gnome_wp_icon_theme_changed):
        (wallpaper_properties_init):
        Update to use GtkIconTheme rather than GnomeIconTheme
        Based on patch from Jan de Groot
    
        Fixes #171677

 capplets/background/ChangeLog          |  10 +++
 capplets/background/gnome-wp-capplet.c | 130 ++++++++++++++++-----------------
 capplets/background/gnome-wp-capplet.h |   2 +-
 3 files changed, 76 insertions(+), 66 deletions(-)

commit 58f7a0ef14671710646b508b153a552989b2e819
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Jul 10 17:25:09 2005 +0000

    Updated Czech translation.
    
    2005-07-10  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 70 ++++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 58 insertions(+), 16 deletions(-)

commit 0a6e4844382f66477649cf76d8f44bd3d48ca067
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sun Jul 10 17:20:41 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-07-10  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |    4 +
 po/nl.po     | 1444 +++++++++++-----------------------------------------------
 2 files changed, 264 insertions(+), 1184 deletions(-)

commit 422dd268e6d4e605681252646facc3eea98ce769
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jul 10 15:58:14 2005 +0000

    Fix some memory leaks by using a separate variable to store the escaped
    
    2005-07-10  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-info.c (gnome_wp_info_new): Fix some memory leaks by using
        a separate variable to store the escaped path, and md5sum
    
        * gnome-wp-item.c (gnome_wp_item_get_thumbnail): Fix a couple of
        memory leaks by using a separate variable to store the escaped path
        Don't unref the pixbuf from the thumbnail generation, and then try
        to load it again after saving

 capplets/background/ChangeLog       | 10 ++++++++++
 capplets/background/gnome-wp-info.c | 17 +++++++++++++----
 capplets/background/gnome-wp-item.c | 11 +++++++----
 3 files changed, 30 insertions(+), 8 deletions(-)

commit e04dd790c9db54fa58d43f5f4cc612d191144c9d
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Jul 10 11:02:10 2005 +0000

    new cursor theme manager for the mouse capplet, patch by Sven Herzberg
    
    2005-07-10  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-mouse-properties.c: (cursor_size_from_widget),
        (event_box_button_press_event), (cursor_theme_changed),
        (cursor_font_changed), (cursor_changed),
        (gdk_pixbuf_from_xcursor_image), (populate_tree_model),
        (setup_dialog), (create_dialog):
        * gnome-mouse-properties.glade:
        new cursor theme manager for the mouse capplet,
        patch by Sven Herzberg <herzi@gnome-de.org> with changes
        by Matthias Clasen <mclasen@redhat.com> (Closes: #110670).

 capplets/mouse/ChangeLog                    |  12 +
 capplets/mouse/gnome-mouse-properties.c     | 461 +++++++++++++++++++---------
 capplets/mouse/gnome-mouse-properties.glade | 149 +++++----
 3 files changed, 419 insertions(+), 203 deletions(-)

commit 95eb67e805d3903f95c10d6e425aa8b2df77f9a8
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Jul 10 09:56:45 2005 +0000

    Fixed plurals in Thai translation.
    
    2005-07-10  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Fixed plurals in Thai translation.

 po/ChangeLog | 4 ++++
 po/th.po     | 4 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit c7898f444861c0be181f24967617ee9b6f682e50
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sun Jul 10 09:39:40 2005 +0000

    Updated Thai translation.
    
    2005-07-10  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 468 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 275 insertions(+), 197 deletions(-)

commit e4243fda830f5474d6e07ca1774f7147b6e2f3bc
Author: Terance Sola <terance@lyse.net>
Date:   Sat Jul 9 01:47:49 2005 +0000

    Updated Norwegian bokml translation. Same.
    
    2005-07-09  Terance Sola  <terance@lyse.net>
    
        * nb.po: Updated Norwegian bokml translation.
        * no.po: Same.

 po/ChangeLog |   5 +
 po/nb.po     | 304 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 po/no.po     | 304 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 3 files changed, 519 insertions(+), 94 deletions(-)

commit 8681a6d672a3c13232b5376bb6c6290fe14db422
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Jul 8 21:13:09 2005 +0000

    updated the libxft requirement to 2.1.7, Christian Lohmaier
    
    2005-07-08  Sebastien Bacher  <seb128@debian.org>
    
        * configure.in: updated the libxft requirement to 2.1.7,
        Christian Lohmaier <cloph@cup.uni-muenchen.de> (Closes: #309558).

 ChangeLog    | 7 ++++++-
 NEWS         | 1 +
 configure.in | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit b8cfac0a78d1dd1fb0f1ea061616af419430e824
Author: Marcel Telka <marcel@telka.sk>
Date:   Fri Jul 8 18:30:14 2005 +0000

    Updated Slovak translation.
    
    2005-07-08  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 303 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 260 insertions(+), 47 deletions(-)

commit c8b2aea34de803bd881375d2bbe711613eff736a
Author: Rajesh Ranjan <rranjan@src.gnome.org>
Date:   Fri Jul 8 13:58:53 2005 +0000

    updated by rranjan@redhat.com

 po/hi.po | 2708 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 1102 insertions(+), 1606 deletions(-)

commit 2861ff85d58753ef9cea92f97408c869879f0839
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Jul 8 09:26:46 2005 +0000

    Updated Spanish translation.
    
    2005-07-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 310 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 269 insertions(+), 45 deletions(-)

commit 8caab020c3f1f3748e61015dda3a9735d9500b27
Author: Adam Weinberger <adamw@gnome.org>
Date:   Fri Jul 8 00:02:22 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-07  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 301 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 259 insertions(+), 46 deletions(-)

commit 3a2e074ecdc02d50ce84f783a51738d34b6fdcff
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jul 7 22:16:14 2005 +0000

    Update of the list of files to translate.
    
    2005-07-08  Sebastien Bacher  <seb128@debian.org>
    
        * POTFILES.in:
        * POTFILES.skip:
        Update of the list of files to translate.

 po/ChangeLog     | 6 ++++++
 po/POTFILES.in   | 4 ++++
 po/POTFILES.skip | 5 -----
 3 files changed, 10 insertions(+), 5 deletions(-)

commit 79b65ac79306873911728b79ec7fbfd24ab820ef
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jul 7 22:13:44 2005 +0000

    this file is not useful on the CVS.
    
    2005-07-08  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-about-me.desktop.in: this file is not useful on the CVS.

 capplets/about-me/ChangeLog                 |  4 ++++
 capplets/about-me/gnome-about-me.desktop.in | 13 -------------
 2 files changed, 4 insertions(+), 13 deletions(-)

commit e9b40e06bfbea86986033cd7dde2cb71f342b885
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jul 7 22:10:36 2005 +0000

    updated.
    
    2005-07-08  Sebastien Bacher  <seb128@debian.org>
    
        * NEWS: updated.

 ChangeLog | 4 ++++
 NEWS      | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 707124edd6f96fb1ae714229633f82c9d5c02659
Author: William Jon McCann <mccann@jhu.edu>
Date:   Thu Jul 7 22:06:56 2005 +0000

    Don't include gnome.h (file_transfer_dialog_update_num_files)
    
    2005-06-30  William Jon McCann  <mccann@jhu.edu>
    
        * file-transfer-dialog.c: Don't include gnome.h
        (file_transfer_dialog_update_num_files)
        (file_transfer_dialog_set_prop, eel_gtk_label_make_bold)
        (create_titled_label, file_transfer_dialog_init)
        (file_transfer_dialog_update_cb):
        HIG updates and make consistent with nautilus transfer
        progress dialog.

 capplets/common/ChangeLog              |  10 ++
 capplets/common/file-transfer-dialog.c | 189 +++++++++++++++++++++++----------
 2 files changed, 141 insertions(+), 58 deletions(-)

commit 1f30c47d1d4f8d27678fea566d6a1cf0c9e6889b
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Thu Jul 7 21:24:03 2005 +0000

        fixed some typo, Clytie Siddall <clytie@riverland.net.au>
        (Closes: #302614).

 capplets/about-me/ChangeLog                         | 6 ++++++
 capplets/about-me/gnome-about-me-password.c         | 6 +++---
 capplets/file-types/ChangeLog                       | 6 ++++++
 capplets/file-types/file-types.desktop.in.in        | 2 +-
 gnome-settings-daemon/ChangeLog                     | 6 ++++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 2 +-
 6 files changed, 23 insertions(+), 5 deletions(-)

commit 125a903d89711610c54a6f2b36d462c716b9c417
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jul 7 20:59:11 2005 +0000

    fix a typo with a .schemas name, Jan Schmidt <thaytan@mad.scientist.com>
    
    2005-07-07  Sebastien Bacher  <seb128@debian.org>
    
        * schemas/Makefile.am: fix a typo with a .schemas name,
        Jan Schmidt <thaytan@mad.scientist.com> (Closes: 307388).

 ChangeLog           | 5 +++++
 schemas/Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 40dc642d092cba7a8b71885b8b1a6ae4f5888c35
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Jul 7 20:53:24 2005 +0000

    Updated Spanish translation.
    
    2005-07-07  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 491 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 281 insertions(+), 214 deletions(-)

commit 3878e5048ea7e6fa381b4ea2b33d8c3426775182
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jul 7 20:48:48 2005 +0000

    fix the markup usage of the XKB dialog (Closes: #308279).
    
    2005-07-07  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-settings-keyboard-xkb.c: (activation_error):
        fix the markup usage of the XKB dialog (Closes: #308279).

 gnome-settings-daemon/ChangeLog                     | 5 +++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 23d4c2d5f2386cf0191d6f0e3f098adb6086b748
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jul 7 19:35:59 2005 +0000

    patch by Matthias Clasen <mclasen@redhat.com> to expose the cursor theme
    
    2005-07-07  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-settings-xsettings.c:
            patch by Matthias Clasen <mclasen@redhat.com> to expose the cursor
            theme settings as xsettings (Closes: #308104).

 NEWS                                             | 5 +++++
 gnome-settings-daemon/ChangeLog                  | 6 ++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 4 ++++
 3 files changed, 15 insertions(+)

commit d83b47a1cc43cdea9eaced6691c78af178964be3
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Thu Jul 7 19:33:08 2005 +0000

    update to 2.11.6

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 279d61bcce47be5a397377a00f8fc8be879fac1b
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Jul 7 14:40:35 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-07-07  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 409 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 228 insertions(+), 185 deletions(-)

commit 493ccb06ee44002dfb167d734ab15a14d70a509c
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Jul 6 21:39:26 2005 +0000

    Updated Galician translation by Ignacio Casal Quinteiro
    
    2004-07-06  Christian Rose  <menthos@menthos.com>
    
        * gl.po: Updated Galician translation by
        Ignacio Casal Quinteiro <nacho.resa@gmail.com>.

 po/ChangeLog |    5 +
 po/gl.po     | 4360 +++++++++++++++++++---------------------------------------
 2 files changed, 1434 insertions(+), 2931 deletions(-)

commit b9686736de9f101d2be3f1eb0ac1f6558a8a6ea0
Author: Marcel Telka <marcel@telka.sk>
Date:   Wed Jul 6 19:21:48 2005 +0000

    Updated Slovak translation.
    
    2005-07-06  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog | 4 ++++
 po/sk.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit d6eb4333b9c8a130d7d17905806a451c39b01859
Author: Adam Weinberger <adamw@gnome.org>
Date:   Tue Jul 5 20:49:25 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-05  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit d4629ab2d879e49a45ae2aedd61dcc375d8150c9
Author: Diego Gonzalez <diego@pemas.net>
Date:   Tue Jul 5 15:29:33 2005 +0000

    Improve the behaviour of the capplet when using large images (scale the
    
    2005-07-05  Diego Gonzalez  <diego@pemas.net>
    
        * gnome-about-me.c (about_me_update_photo): Improve the behaviour
          of the capplet when using large images (scale the image down to
          a resonable size before storing it in EDS).
        * e-image-chooser.c: remove debug output.

 capplets/about-me/ChangeLog         |  9 +++++-
 capplets/about-me/e-image-chooser.c |  2 --
 capplets/about-me/gnome-about-me.c  | 64 +++++++++++++++++++++++++++++++------
 3 files changed, 62 insertions(+), 13 deletions(-)

commit f0ff8f7cc3c65eb5d5b6d8a22cda43f3eeef3f77
Author: Diego González <dggonz@src.gnome.org>
Date:   Tue Jul 5 10:34:49 2005 +0000

    2005-07-05  Diego Gonzalez  <diego@pemas.net
    
            Patch by Jaap A. Haitsma <jaap@haitsma.org>
    
            * gnome-about-me.c: Remove use of bonobo, we don't need it.
            * gnome-about-me.c: Reorder some of the code and simplify file
              chooser, also avoid having more than on instance of the
              file chooser dialog opened.
            * gnome-about-me.glade: remove some garbage that was left
            * gnome-about-me.desktop.in.in: set the correct bugzilla component
              and icon.
        * Makefile.am: fix so that the custom dialog works in glade (bug 309353)
            * Set dialog icon (bug 309342)

 capplets/about-me/ChangeLog                    |  15 +++
 capplets/about-me/Makefile.am                  |   6 +-
 capplets/about-me/e-image-chooser.c            |   4 +-
 capplets/about-me/gnome-about-me.c             | 172 ++++++++-----------------
 capplets/about-me/gnome-about-me.desktop.in.in |   4 +-
 capplets/about-me/gnome-about-me.glade         |   2 +-
 6 files changed, 78 insertions(+), 125 deletions(-)

commit f37d2a8268ccb29ce6baad24431d46b2a9df6ca2
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jul 4 22:49:06 2005 +0000

    fix the list of desktop files for the tarball. fix the component.
    
    2005-07-05  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: fix the list of desktop files for the tarball.
        * gnome-about-me.desktop.in.in: fix the component.

 capplets/about-me/ChangeLog                    | 5 +++++
 capplets/about-me/Makefile.am                  | 4 ++--
 capplets/about-me/gnome-about-me.desktop.in.in | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

commit 8bfafbe86d7012bcd7157089a6670ab661854cc8
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Jul 4 22:33:07 2005 +0000

    clear the desktop file

 capplets/about-me/ChangeLog   | 4 ++++
 capplets/about-me/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6668dd1649c9408a4e561a9ddceb049a5051b209
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Jul 4 22:25:09 2005 +0000

    fix the list of files for the tarball, build the new capplet

 ChangeLog                     | 4 ++++
 capplets/about-me/ChangeLog   | 4 ++++
 capplets/about-me/Makefile.am | 4 ++++
 configure.in                  | 2 +-
 4 files changed, 13 insertions(+), 1 deletion(-)

commit 3ac1d2ec529521da6870e222e692953de96e6d28
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Jul 4 21:56:51 2005 +0000

    update for 2.11.5

 NEWS | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 457798f1adf40ec49610e86badc75971dccff7b7
Author: Hendrik Richter <hendi@gnome-de.org>
Date:   Mon Jul 4 16:03:42 2005 +0000

    Fixed German translation by Jens Seidel <jensseidel@users.sf.net>.
    
    2005-07-04  Hendrik Richter  <hendi@gnome-de.org>
    
        * de.po: Fixed German translation by
        Jens Seidel <jensseidel@users.sf.net>.

 po/ChangeLog |  5 +++++
 po/de.po     | 13 ++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 2b9d28cb0f4af70ea49df9adf9bc1ffa0eb196a8
Author: Roozbeh Pournader <roozbeh@farsiweb.info>
Date:   Mon Jul 4 08:26:47 2005 +0000

    Updated Persian translation by Masoud Ahmadzadeh <masoud@bamdad.org> and
    
    2005-07-04  Roozbeh Pournader  <roozbeh@farsiweb.info>
    
        * fa.po: Updated Persian translation by Masoud Ahmadzadeh
        <masoud@bamdad.org> and Meelad Zakaria <meelad@farsiweb.info>.

 po/ChangeLog |    5 +
 po/fa.po     | 3751 +++++++++++++++++++++++-----------------------------------
 2 files changed, 1469 insertions(+), 2287 deletions(-)

commit e55bfb2d611630d7ee6823f0104d4be170fe9631
Author: Adam Weinberger <adamw@gnome.org>
Date:   Sun Jul 3 22:28:30 2005 +0000

    Updated Canadian English translation.
    
    
    2005-07-03  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |    4 +
 po/en_CA.po  | 1491 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 769 insertions(+), 726 deletions(-)

commit f4116f5a3c0e35f5a43ff168af1708db0c59b349
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sat Jul 2 20:26:39 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-07-02  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |    4 +
 po/nl.po     | 1587 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 812 insertions(+), 779 deletions(-)

commit 5b668979c6193c549d08189fbd459bfe525e7a90
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri Jul 1 11:26:36 2005 +0000

    Updated traditional Chinese translation from GNOME HK Team

 po/ChangeLog |  4 ++++
 po/zh_TW.po  | 74 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 56 insertions(+), 22 deletions(-)

commit 61fb810b16b7d2866e9305ed3b75c7834e48242a
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Jul 1 09:17:33 2005 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   10 +-
 po/zh_CN.po  | 1552 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 797 insertions(+), 765 deletions(-)

commit 49c1242071536647c6fdd9166dd36d504837566f
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Thu Jun 30 23:43:55 2005 +0000

    translated 100%

 po/mk.po | 2863 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1411 insertions(+), 1452 deletions(-)

commit 3340a54a93704f6aa901dfc4091b67102ef61e10
Author: Terance Sola <terance@lyse.net>
Date:   Thu Jun 30 13:31:14 2005 +0000

    Updated Norwegian Bokmaal translation.
    
    2005-06-30  Terance Sola  <terance@lyse.net>
    
        * nb.po: Updated Norwegian Bokmaal translation.
        * no.po:

 po/ChangeLog |   5 +++
 po/nb.po     | 100 ++++++++++++++++++++++++++++++++++++++---------------------
 po/no.po     | 100 ++++++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 135 insertions(+), 70 deletions(-)

commit 25e77bd5eb86607d5190009ffde46a7e203b7a8e
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Tue Jun 28 13:19:49 2005 +0000

    Updated Thai translation.
    
    2005-06-28  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  4 +++
 po/th.po     | 86 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 61 insertions(+), 29 deletions(-)

commit d8276fa2b675fa771beaba5a96c5d5d39091b3fa
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Mon Jun 27 18:44:47 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-06-27  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog | 4 ++++
 po/et.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0c0d5ffdb47991f8b04b6c294ef0e783985f7b89
Author: Marcel Telka <marcel@telka.sk>
Date:   Mon Jun 27 05:24:13 2005 +0000

    Updated Slovak translation.
    
    2005-06-27  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 ++++
 po/sk.po     | 45 +++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 47 insertions(+), 2 deletions(-)

commit 1cea10e4813bdabde745b211b64f13719a59ba03
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jun 26 17:41:07 2005 +0000

    Added missing file entries. Updated Swedish translation.
    
    2005-06-26  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing file entries.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   3 +
 po/sv.po       | 468 +++++++++++++++++++++++++++++++--------------------------
 3 files changed, 264 insertions(+), 212 deletions(-)

commit 40ba64e2daa74cd57c357714964c02e375892cfc
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jun 26 17:30:41 2005 +0000

    Change in terminology for subpixel antialiasing. Fixes bug #136545.
    
    2005-06-26  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Change in terminology for subpixel antialiasing.
        Fixes bug #136545.

 po/ChangeLog |  5 +++++
 po/sv.po     | 16 ++++++++--------
 2 files changed, 13 insertions(+), 8 deletions(-)

commit 774450f9d1e997ee9c4153b8715d439e822f5a8a
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri Jun 24 03:29:36 2005 +0000

    fix language team reference

 po/ChangeLog |   4 +
 po/zh_TW.po  | 368 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 186 insertions(+), 186 deletions(-)

commit 7e3b5d1756ba5a44bffbb1c69723d2a6dacc9201
Author: Diego Gonzalez <diego@pemas.net>
Date:   Thu Jun 23 12:45:39 2005 +0000

    add code to conditionally enable the compilation of the about-me capplet
    
    2005-06-22  Diego Gonzalez <diego@pemas.net>
    
        * configure.in: add code to conditionally enable the compilation of the about-me capplet
        * capplets/Makefile.am: ditto

 ChangeLog            |  6 ++++++
 capplets/Makefile.am | 10 ++++++++--
 configure.in         | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 47 insertions(+), 2 deletions(-)

commit e14b196cec3501e5d0ac1a062810ccf8ae5cfc04
Author: Diego Gonzalez <diego@pemas.net>
Date:   Thu Jun 23 12:27:31 2005 +0000

    Fix another crasher
    
    2005-06-23  Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me-password.c (gnome_about_me_password):
          Fix another crasher

 capplets/about-me/ChangeLog                 | 5 +++++
 capplets/about-me/gnome-about-me-password.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 424e11d851cedd61c3629cee2df933abab0fca37
Author: Diego González <dggonz@src.gnome.org>
Date:   Thu Jun 23 11:35:49 2005 +0000

    Forgot to remove this files in the last commit

 capplets/about-me/cracklib/fascist.c   | 782 -------------------------------
 capplets/about-me/cracklib/packer.h    |  60 ---
 capplets/about-me/cracklib/packlib.c   | 356 --------------
 capplets/about-me/cracklib/rules.c     | 824 ---------------------------------
 capplets/about-me/cracklib/stringlib.c |  52 ---
 5 files changed, 2074 deletions(-)

commit 520b1aa09f846e75d7783bff46d884ce9cb61e2a
Author: Diego Gonzalez <diego@pemas.net>
Date:   Thu Jun 23 11:27:21 2005 +0000

    remove cracklib remove dependencies on cracklib remove it
    
    2005-06-22  Diego Gonzalez <diego@pemas.net>
    
        * Makefile.am: remove cracklib
        * gnome-about-me-password.c (passdlg_check_password_timeout_cb):
          remove dependencies on cracklib
        * cracklib/*: remove it
    
    2005-06-21  Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me.c: Improve some error messages
          about_me_error: new function
        * (about_me_load_info): Avoid crashing when switching to the Address tab
        * (about_me_commit): generate a good file_as field, code taken from evolution

 capplets/about-me/ChangeLog                 | 14 +++++
 capplets/about-me/Makefile.am               |  4 +-
 capplets/about-me/gnome-about-me-password.c | 13 +---
 capplets/about-me/gnome-about-me.c          | 92 +++++++++++++++++++++--------
 4 files changed, 86 insertions(+), 37 deletions(-)

commit 18ee267b3e043f22567f5a910b4d7c5407058fa3
Author: Hendrik Richter <hendi@gnome-de.org>
Date:   Thu Jun 16 22:31:51 2005 +0000

    Updated German translation.
    
    2005-06-17  Hendrik Richter  <hendi@gnome-de.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1523 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 764 insertions(+), 763 deletions(-)

commit aa9ffeb6eb1bae091d95b0aae8b92c06f2a5c40a
Author: Diego González <dggonz@src.gnome.org>
Date:   Wed Jun 15 00:29:46 2005 +0000

    Forgot to commit this file

 capplets/about-me/gnome-about-me-password.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit a6352fc137604dc63253a48e88ff09bf656c4846
Author: Diego González <dggonz@src.gnome.org>
Date:   Wed Jun 15 00:25:55 2005 +0000

    Lots of changes on the password dialog and a bit of a performance improvement
    on the main dialog while instant applying the changes to the EDS database.

 capplets/about-me/ChangeLog                    |  11 +
 capplets/about-me/Makefile.am                  |  17 +-
 capplets/about-me/cracklib/fascist.c           | 782 +++++++++++++++++++++++
 capplets/about-me/cracklib/packer.h            |  60 ++
 capplets/about-me/cracklib/packlib.c           | 356 +++++++++++
 capplets/about-me/cracklib/rules.c             | 824 +++++++++++++++++++++++++
 capplets/about-me/cracklib/stringlib.c         |  52 ++
 capplets/about-me/eel-alert-dialog.c           | 470 ++++++++++++++
 capplets/about-me/eel-alert-dialog.h           |  61 ++
 capplets/about-me/eel-gtk-macros.h             | 178 ++++++
 capplets/about-me/gnome-about-me-bulb-off.png  | Bin 0 -> 3192 bytes
 capplets/about-me/gnome-about-me-bulb-on.png   | Bin 0 -> 3211 bytes
 capplets/about-me/gnome-about-me-password.c    | 472 +++++++++-----
 capplets/about-me/gnome-about-me.c             |  44 +-
 capplets/about-me/gnome-about-me.desktop.in.in |  15 +
 capplets/about-me/gnome-about-me.glade         | 302 ++++++++-
 16 files changed, 3482 insertions(+), 162 deletions(-)

commit 122c552f5c118092e1d2863b362c98e789809f42
Author: Marcel Telka <marcel@telka.sk>
Date:   Tue Jun 14 20:10:22 2005 +0000

    Updated Slovak translation.
    
    2005-06-14  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 1495 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 739 insertions(+), 760 deletions(-)

commit 335381798ae5b4560101a39412985e00d0383e5a
Author: Rodney Dawes <dobey@novell.com>
Date:   Tue Jun 14 16:04:14 2005 +0000

    Revert undocumented, unapproved change from Sebastian Bacher committed on
    
    2005-06-14  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-info.c (gnome_wp_info_new): Revert undocumented, unapproved
        change from Sebastian Bacher committed on 2005-05-22

 capplets/background/ChangeLog       | 5 +++++
 capplets/background/gnome-wp-info.c | 6 +-----
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 8159b69ae1d2c437724b1df3623c934f2ddebe03
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Jun 13 08:02:55 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-06-13  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 33 ++++++++++++++++-----------------
 2 files changed, 20 insertions(+), 17 deletions(-)

commit 88e8f18fba9c58af14518d5b95cd7df3ead74faa
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jun 12 17:55:02 2005 +0000

    update to 2.11.5

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b5de7e67c90b2f9f32702496495cf69a1daf48a6
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jun 12 17:46:33 2005 +0000

    version update

 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6b88af3ea4b0256f2f64c5a705cbf71fdf089960
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jun 12 17:46:07 2005 +0000

    update the version to 2.11.4

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 037b8eddb8f9dff2ede8729efed5cf1fccb8947c
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Jun 12 13:16:18 2005 +0000

    2.11.3.1 bug fix.
    
    2005-06-12  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS:
            * configure.in: 2.11.3.1 bug fix.

 ChangeLog    | 5 +++++
 NEWS         | 9 +++++++++
 configure.in | 2 +-
 3 files changed, 15 insertions(+), 1 deletion(-)

commit efdc3f1cfe9be1135c7f9d90a6b00474d0973eef
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun Jun 12 13:09:44 2005 +0000

    return instead of using an assertion (Closes: #307149).

 gnome-settings-daemon/ChangeLog               | 5 +++++
 gnome-settings-daemon/gnome-settings-daemon.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit fc8728e74770270ba4e1ef7d0c9c8c9d9b487d2e
Author: Christophe Fergeau <teuf@gnome.org>
Date:   Sun Jun 12 11:43:01 2005 +0000

    fix crash when trying to change volume using the multimedia keys, fixes
    
    2005-06-12  Christophe Fergeau  <teuf@gnome.org>
    
        * actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_get_volume): fix crash when trying to change
        volume using the multimedia keys, fixes #307351

 gnome-settings-daemon/ChangeLog                       | 6 ++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 92665324624e6bc2a690e6a293cd04fcba49b040
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Sat Jun 11 15:02:26 2005 +0000

    make sticky keys and slow keys dialog more HIG compliant and usable
    
    2005-03-23  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * gnome-settings-accessibility-keyboard.c: make sticky keys and slow
            keys dialog more HIG compliant and usable (selectable text, no
            separator, making ESC key close the dialog, separation between
            widgets, etc...)

 gnome-settings-daemon/ChangeLog                    |  7 ++
 .../gnome-settings-accessibility-keyboard.c        | 97 ++++++++--------------
 2 files changed, 43 insertions(+), 61 deletions(-)

commit 49601b934df132b30157201c257910e7aba8aef6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Jun 10 18:49:06 2005 +0000

    GCC4 build issues.
    
    2005-06-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * applier.c: (render_wallpaper), (is_nautilus_running): GCC4
        build issues.

 libbackground/ChangeLog | 5 +++++
 libbackground/applier.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 8865b5d08666bd2d5a8e247a6bf39ed75b8f90c9
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Fri Jun 10 13:12:57 2005 +0000

    update to 2.11.4

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 2455a253607bfe789d5a6214c44b09bb7c443827
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Fri Jun 10 12:14:24 2005 +0000

    updated NEWS

 NEWS | 3 +++
 1 file changed, 3 insertions(+)

commit f71f7f15ecf5d53af010179968796c40bde85bc8
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Fri Jun 10 12:10:03 2005 +0000

    update for 2.11.3

 NEWS         | 21 +++++++++++++++++++++
 configure.in |  2 +-
 2 files changed, 22 insertions(+), 1 deletion(-)

commit ba1140a7dc2bbf017656efed7744a702938c6be4
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Fri Jun 10 08:32:38 2005 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |    4 +
 po/da.po     | 1520 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 762 insertions(+), 762 deletions(-)

commit 8729d481de7d3acd5e282f78d5d10434cfffc746
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Mon Jun 6 21:49:33 2005 +0000

    added a11y support
    
    2005-06-06  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * gnomecc-canvas.c: added a11y support

 control-center/ChangeLog        |   4 +
 control-center/gnomecc-canvas.c | 705 +++++++++++++++++++++++++++++++++++++++-
 2 files changed, 706 insertions(+), 3 deletions(-)

commit 1fd29358e613f7900070626113b5661462d44f65
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Mon Jun 6 10:40:59 2005 +0000

    added name and description to the object information.
    
    2005-06-06  Rodrigo Moya <rodrigo@novell.com>
    
        * GNOME_Settings_Daemon.server.in: added name and description
        to the object information.

 gnome-settings-daemon/ChangeLog | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit e31d27154b0e874f0f816a13b3eb98adf17b2d54
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Mon Jun 6 02:52:50 2005 +0000

    Updated Thai translation.
    
    2005-06-06  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 +
 po/th.po     | 406 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 209 insertions(+), 201 deletions(-)

commit 012edc51318cfc2b3c877aff1c6092d58a0e9d78
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Sun Jun 5 17:11:57 2005 +0000

    Fixed a typo in Italian translation.

 po/ChangeLog |   4 +
 po/it.po     | 349 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 165 insertions(+), 188 deletions(-)

commit 6ce4e37a4f68412d9de2e014fd1ae4ef73e3b579
Author: Ronald Bultje <rbultje@src.gnome.org>
Date:   Sun Jun 5 13:04:26 2005 +0000

    Fix mute handling, particularly for devices without hardware mute support
    
    * actions/Makefile.am:
    * actions/acme-volume-gstreamer.c:
    (acme_volume_gstreamer_set_mute), (update_state),
    (acme_volume_gstreamer_get_mute),
    (acme_volume_gstreamer_get_volume),
    (acme_volume_gstreamer_set_volume):
    Fix mute handling, particularly for devices without hardware
    mute support or with applications that use volume=0 for mute.
    Also fix the fact that we linked against all of ALSA, OSS and
    GStreamer if they were all available; default to GStreamer.
    Fixes #306036.

 gnome-settings-daemon/ChangeLog                    | 14 ++++
 gnome-settings-daemon/actions/Makefile.am          | 27 ++++----
 .../actions/acme-volume-gstreamer.c                | 75 +++++++++++++++-------
 3 files changed, 83 insertions(+), 33 deletions(-)

commit 7fdb798d4dcad5e4667b277c5686e5350b35aafe
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Fri Jun 3 09:17:27 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-06-03  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 388 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 197 insertions(+), 195 deletions(-)

commit a9191cd79daa06ab039fdcdcdc1f2965ada28204
Author: Anders Carlsson <andersca@imendio.com>
Date:   Fri Jun 3 08:29:45 2005 +0000

    xutils.c Add clipboard manager files.
    
    2005-06-03  Anders Carlsson  <andersca@imendio.com>
    
        * Makefile.am:
        * clipboard-manager.c:
        * clipboard-manager.h:
        * list.c:
        * list.h:
        * xutils.c
        * xutils.h:
        Add clipboard manager files.
    
        * gnome-settings-daemon.c: (clipboard_manager_terminate_cb),
        (clipboard_manager_event_filter), (clipboard_manager_watch_cb),
        (finalize), (gnome_settings_daemon_new):
        Use clipboard manager for persistent clipboard storage.

 gnome-settings-daemon/ChangeLog               |  16 +
 gnome-settings-daemon/Makefile.am             |   6 +
 gnome-settings-daemon/clipboard-manager.c     | 923 ++++++++++++++++++++++++++
 gnome-settings-daemon/clipboard-manager.h     |  51 ++
 gnome-settings-daemon/gnome-settings-daemon.c |  67 +-
 gnome-settings-daemon/list.c                  | 150 +++++
 gnome-settings-daemon/list.h                  |  57 ++
 gnome-settings-daemon/xutils.c                | 117 ++++
 gnome-settings-daemon/xutils.h                |  50 ++
 9 files changed, 1435 insertions(+), 2 deletions(-)

commit 95ea33ee847068dac6af90e07a1b91fb580e810f
Author: Alexander Shopov <ash@contact.bg>
Date:   Wed Jun 1 14:27:32 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-06-01  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 +
 po/bg.po     | 390 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 198 insertions(+), 197 deletions(-)

commit b5847922dc867fed552361f5688cce7e678931c7
Author: Rodrigo Moya <rodrigo@novell.com>
Date:   Tue May 31 20:49:23 2005 +0000

    added name and description to the object information.
    
    2005-05-31  Rodrigo Moya <rodrigo@novell.com>
    
        * GNOME_Settings_Daemon.server.in: added name and description
        to the object information.

 gnome-settings-daemon/ChangeLog                      | 5 +++++
 gnome-settings-daemon/GNOME_SettingsDaemon.server.in | 2 ++
 2 files changed, 7 insertions(+)

commit d8adb67775af73d5f38fa7b85d41ef9d39920524
Author: Rhys Jones <rhys@sucs.org>
Date:   Sun May 29 21:10:19 2005 +0000

    Updated Welsh translation.
    
    2005-05-29  Rhys Jones  <rhys@sucs.org>
    
        * cy.po: Updated Welsh translation.

 po/ChangeLog |    4 +
 po/cy.po     | 3187 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1531 insertions(+), 1660 deletions(-)

commit 809803a8bda1c5a5a747757010ff2e52f377042b
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun May 29 12:16:54 2005 +0000

    Updated Czech translation.
    
    2005-05-29  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 348 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 176 insertions(+), 176 deletions(-)

commit 6151f670e64717b289aadb42327721bba83a1c7d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 24 15:28:20 2005 +0000

    Update Update
    
    2005-05-24  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |    5 +
 po/nb.po     | 1528 +++++++++++++++++++++++++++++-----------------------------
 po/no.po     | 1528 +++++++++++++++++++++++++++++-----------------------------
 3 files changed, 1521 insertions(+), 1540 deletions(-)

commit be3962871299991b40e629f7cd7493d7a1a5539b
Author: Adam Weinberger <adamw@gnome.org>
Date:   Mon May 23 17:09:26 2005 +0000

    Updated Canadian English translation.
    
    2005-05-23  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 363 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 177 insertions(+), 190 deletions(-)

commit 617a16fbcdf591a08b053dd6c15728fead3c39ae
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Mon May 23 13:08:04 2005 +0000

    Updated Japanese translation for v2.11.1.
    
    2005-05-23  Takeshi AIHANA <aihana@gnome.gr.jp>
        * ja.po: Updated Japanese translation for v2.11.1.

 po/ChangeLog |   4 +
 po/ja.po     | 374 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 177 insertions(+), 201 deletions(-)

commit 67eb8b285af68cfdbc70c552914e34197fc938c4
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun May 22 20:27:48 2005 +0000

    update for 2.11.2

 NEWS | 2 ++
 1 file changed, 2 insertions(+)

commit 63e8550c76ce2b1bed247cdc09839b781771afd7
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun May 22 20:25:09 2005 +0000

    updated for 2.11.2

 NEWS         | 13 +++++++++++++
 configure.in |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit ce6e85b9e8a3294f1a1f10a48eaf44cd271e1fa9
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 19:53:58 2005 +0000

    Use HIG compliant spacing for the proxy dialog, patch by
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-network-preferences.glade: Use HIG compliant spacing
            for the proxy dialog, patch by dennis_cranston@yahoo.com
            (Closes: #167856).

 capplets/network/ChangeLog                       |   6 +
 capplets/network/gnome-network-preferences.glade | 223 +++++++++++++----------
 2 files changed, 133 insertions(+), 96 deletions(-)

commit 05f52484b85cce5ed525597622aa1433b01e108c
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 19:29:14 2005 +0000

    fix the title according to the HIG (Closes: #304950).
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
        * sound-properties-capplet.c: (main):
        fix the title according to the HIG (Closes: #304950).

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 82b98de843d38d7eb61bb206583bcc48a0f85f86
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 16:48:37 2005 +0000

    fix the build with gcc-2.95, patch from Jens Granseuer <jensgr@gmx.net>
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-keyboard-properties-xkbot.c: (xkb_options_add_group):
            fix the build with gcc-2.95, patch from Jens Granseuer <jensgr@gmx.net>
            (Closes: #170159).

 capplets/keyboard/ChangeLog                         |  6 ++++++
 capplets/keyboard/gnome-keyboard-properties-xkbot.c | 11 ++++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

commit 45b672f60f7b78be7f3d15d0c6adf72f0e601851
Author: Shakti Sen <shprasad@novell.com>
Date:   Sun May 22 16:13:45 2005 +0000

    Do not add the Icon Theme if the key 'Hidden' is 'true' in the index.theme
    
    2005-03-02  Shakti Sen  <shprasad@novell.com>
    
            * gnome-theme-info.c (read_icon_theme): Do not add the Icon Theme if
            the key 'Hidden' is 'true' in the index.theme file.
    
            Fixes bug #168348

 capplets/common/ChangeLog          |  7 +++++++
 capplets/common/gnome-theme-info.c | 17 ++++++++++++++---
 2 files changed, 21 insertions(+), 3 deletions(-)

commit 874b8da91d5b7a62311aaf230b8a155259107a8e
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 15:59:59 2005 +0000

    list "thunderbird" as program name, patch from Pawel Worach
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-default-applications-properties-structs.c:
        list "thunderbird" as program name,
        patch from Pawel Worach <sajd@telia.com> (Closes: #167757).

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../gnome-default-applications-properties-structs.c                 | 1 +
 2 files changed, 7 insertions(+)

commit 2174d6a648a74c0f6f4077f5343188b0020c1306
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 15:53:42 2005 +0000

    fix a warning about the icon, patch from Matthias Clasen
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-default-applications-properties.glade:
            fix a warning about the icon,
            patch from Matthias Clasen <mclasen@redhat.com> (Closes: #168060).

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../gnome-default-applications-properties.glade                     | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 581c37e2bb79b784625d52909e9589b88ee21324
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 15:46:45 2005 +0000

    Cleanup of gconf and a few other things, patch from Kjartan Maraas
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
            * ChangeLog capplets/about-me/e-image-chooser.c
            capplets/accessibility/at-properties/at-startup-session.h
            capplets/accessibility/keyboard/accessibility-keyboard.c
            capplets/background/gnome-wp-info.c
            capplets/common/gconf-property-editor.c
            capplets/common/gnome-theme-apply.c
            capplets/default-applications/gnome-default-applications-properties.c
            capplets/keybindings/gnome-keybinding-properties.c
            capplets/keyboard/gnome-keyboard-properties.c
            capplets/mouse/gnome-mouse-properties.c
            capplets/network/gnome-network-preferences.c
            capplets/sound/sound-properties-capplet.c
            capplets/theme-switcher/gnome-theme-details.c
            capplets/theme-switcher/gnome-theme-manager.c
            capplets/ui-properties/gnome-ui-properties.c
            capplets/windows/gnome-window-properties.c
            gnome-settings-daemon/factory.c
            gnome-settings-daemon/gnome-settings-accessibility-keyboard.c
            gnome-settings-daemon/gnome-settings-background.c
            gnome-settings-daemon/gnome-settings-daemon.c
            gnome-settings-daemon/gnome-settings-daemon.h
            gnome-settings-daemon/gnome-settings-font.c
            gnome-settings-daemon/gnome-settings-keybindings.c
            gnome-settings-daemon/gnome-settings-keybindings.h
            gnome-settings-daemon/gnome-settings-keyboard-xkb.c
            gnome-settings-daemon/gnome-settings-keyboard.c
            gnome-settings-daemon/gnome-settings-locate-pointer.h
            gnome-settings-daemon/gnome-settings-mouse.c
            gnome-settings-daemon/gnome-settings-multimedia-keys.c
            gnome-settings-daemon/gnome-settings-screensaver.c
            gnome-settings-daemon/gnome-settings-sound.c
            gnome-settings-daemon/gnome-settings-xmodmap.c
            gnome-settings-daemon/gnome-settings-xrdb.c
            gnome-settings-daemon/gnome-settings-xsettings.c
            libbackground/applier.c libbackground/applier.h
            libbackground/preferences.c libsounds/sound-properties.c
            libsounds/sound-view.h libwindow-settings/gnome-wm-manager.c
            libwindow-settings/metacity-window-manager.c
            typing-break/drw-break-window.c typing-break/drw-utils.h
            typing-break/drwright.c vfs-methods/fontilus/font-view.c
            vfs-methods/themus/themus-theme-applier.c:
            Cleanup of gconf and a few other things,
            patch from Kjartan Maraas <kmaraas@gnome.org> (Closes: #301945).

 ChangeLog                                          | 46 ++++++++++++++++++++++
 NEWS                                               |  1 +
 capplets/about-me/e-image-chooser.c                |  2 +-
 .../at-properties/at-startup-session.h             |  3 +-
 .../keyboard/accessibility-keyboard.c              |  3 ++
 capplets/background/gnome-wp-info.c                |  6 ++-
 capplets/common/gconf-property-editor.c            | 17 +++++++-
 capplets/common/gnome-theme-apply.c                |  1 +
 .../gnome-default-applications-properties.c        |  1 +
 capplets/keybindings/gnome-keybinding-properties.c | 13 +++++-
 capplets/keyboard/gnome-keyboard-properties.c      |  1 +
 capplets/mouse/gnome-mouse-properties.c            | 28 ++++++++-----
 capplets/network/gnome-network-preferences.c       |  5 ++-
 capplets/sound/sound-properties-capplet.c          |  1 +
 capplets/theme-switcher/gnome-theme-details.c      |  3 +-
 capplets/theme-switcher/gnome-theme-manager.c      | 12 +++++-
 capplets/ui-properties/gnome-ui-properties.c       | 12 +++---
 capplets/windows/gnome-window-properties.c         |  4 --
 gnome-settings-daemon/factory.c                    |  2 +
 .../gnome-settings-accessibility-keyboard.c        | 12 +++++-
 gnome-settings-daemon/gnome-settings-background.c  | 18 ---------
 gnome-settings-daemon/gnome-settings-daemon.c      |  9 +++--
 gnome-settings-daemon/gnome-settings-daemon.h      |  2 +-
 gnome-settings-daemon/gnome-settings-font.c        | 10 +++--
 gnome-settings-daemon/gnome-settings-keybindings.c |  6 ++-
 gnome-settings-daemon/gnome-settings-keybindings.h |  2 +
 .../gnome-settings-keyboard-xkb.c                  |  4 +-
 gnome-settings-daemon/gnome-settings-keyboard.c    |  1 +
 .../gnome-settings-locate-pointer.h                |  2 +
 gnome-settings-daemon/gnome-settings-mouse.c       |  9 +++--
 .../gnome-settings-multimedia-keys.c               |  5 ++-
 gnome-settings-daemon/gnome-settings-screensaver.c |  4 +-
 gnome-settings-daemon/gnome-settings-sound.c       |  7 ++--
 gnome-settings-daemon/gnome-settings-xmodmap.c     | 16 +++++---
 gnome-settings-daemon/gnome-settings-xrdb.c        |  3 +-
 gnome-settings-daemon/gnome-settings-xsettings.c   |  6 ++-
 libbackground/applier.c                            |  1 -
 libbackground/applier.h                            |  1 -
 libbackground/preferences.c                        | 13 ++++--
 libwindow-settings/gnome-wm-manager.c              |  2 +-
 libwindow-settings/metacity-window-manager.c       |  2 +-
 typing-break/drw-break-window.c                    | 15 ++++---
 typing-break/drw-utils.h                           |  2 +
 typing-break/drwright.c                            | 13 ++++--
 vfs-methods/fontilus/font-view.c                   | 16 ++------
 vfs-methods/themus/themus-theme-applier.c          |  5 ++-
 46 files changed, 238 insertions(+), 109 deletions(-)

commit 912f58a06f958f1149215a9adce5bebfe1ba6168
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun May 22 15:25:10 2005 +0000

    updated

 NEWS | 8 ++++++++
 1 file changed, 8 insertions(+)

commit b63d084a0ff0eed056ab3aeb601b2790d37f6b6d
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sun May 22 15:11:44 2005 +0000

            port of the font capplet to gtk_font_button and some cleanup,
            patch from paolo borelli <pborelli@katamail.com> (Closes: #160016).

 capplets/common/ChangeLog               |   8 +
 capplets/common/gconf-property-editor.c | 143 +++---------
 capplets/common/gconf-property-editor.h |  10 +-
 capplets/font/ChangeLog                 |   8 +
 capplets/font/font-properties.glade     | 371 +++++++++++++-------------------
 capplets/font/main.c                    | 223 ++++++++++---------
 6 files changed, 309 insertions(+), 454 deletions(-)

commit 31ba39937806796a18dafab937cb03bbcc0ab8c1
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun May 22 14:00:09 2005 +0000

    fix the theme preview crasher with xorg/composite, patch from Colin Gibbs
    
    2005-05-22  Sebastien Bacher  <seb128@debian.org>
    
        * theme-thumbnail.c: (create_image): fix the theme preview crasher with
        xorg/composite, patch from Colin Gibbs <colin@gibbsonline.net>
        (Closes: #152490).

 capplets/common/ChangeLog         | 6 ++++++
 capplets/common/theme-thumbnail.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 6a340d46f047c8881a205c4c462e655f735554ec
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat May 21 13:03:47 2005 +0000

    Updated Spanish translation.
    
    2005-05-21  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 674 ++++++++---------------------------------------------------
 2 files changed, 87 insertions(+), 591 deletions(-)

commit 1fecf1ca449ce32dc3f653385bb27cbb45a01b11
Author: Iaki Larraaga <dooteo@euskalgnu.org>
Date:   Sat May 21 10:26:05 2005 +0000

    Updated Basque translation.
    
    2005-05-21  Iaki Larraaga  <dooteo@euskalgnu.org>
    
            * eu.po:  Updated Basque translation.

 po/ChangeLog |  4 ++++
 po/eu.po     | 70 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 39 insertions(+), 35 deletions(-)

commit 3b174e80bc83be7d6fd2f272a4f21d15b63aba7a
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Fri May 20 06:19:47 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-05-20  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |    4 +
 po/et.po     | 1722 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 914 insertions(+), 812 deletions(-)

commit 3034be41546b207ca95b8fbbf8133d2287dd0d84
Author: Adam Weinberger <adamw@gnome.org>
Date:   Thu May 19 18:15:48 2005 +0000

    Updated Canadian English translation.
    
    2005-05-19  Adam Weinberger  <adamw@gnome.org>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |    4 +
 po/en_CA.po  | 1474 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 737 insertions(+), 741 deletions(-)

commit d18523a511a07f54ec78c66638b50bb39a0588ed
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu May 19 07:49:45 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-05-19  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |    4 +
 po/sq.po     | 1567 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 791 insertions(+), 780 deletions(-)

commit 26d40d3efc7438c412e0d31f40202f3f4d564c77
Author: Olav Vitters <olav@bkor.dhs.org>
Date:   Mon May 16 19:51:57 2005 +0000

    Remove garbage text. Patch by Benjamin LeMasurier. Fixes bug #162492.
    
    2005-05-16  Olav Vitters <olav@bkor.dhs.org>
    
            * gnome-about-me.glade: Remove garbage text. Patch by Benjamin
            LeMasurier. Fixes bug #162492.

 capplets/about-me/ChangeLog            | 5 +++++
 capplets/about-me/gnome-about-me.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 88d037967bc80a7601778e402bb3fd67518992c0
Author: Olav Vitters <olav@bkor.dhs.org>
Date:   Mon May 16 19:44:19 2005 +0000

    Make proxy settings HIG compliant. Patch by Jorn Baayen.
    
    2005-05-16  Olav Vitters <olav@bkor.dhs.org>
    
            * gnome-network-preferences.glade:
            Make proxy settings HIG compliant. Patch by Jorn Baayen.
    
            Fixes bug #167856

 capplets/network/ChangeLog                       |   7 ++
 capplets/network/gnome-network-preferences.glade | 120 +++++++++++++++++++++--
 2 files changed, 117 insertions(+), 10 deletions(-)

commit 5a27e2bdeafc4a8f4b638c68a08565934ea2935b
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Mon May 16 13:57:06 2005 +0000

    new widget that inherits from GnomeCanvas, the drawing logic has been
    
    2005-05-14  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * control-center/gnomecc-canvas.[ch]: new widget that inherits
            from GnomeCanvas, the drawing logic has been mostly moved from
            control-center.c, but the layout function has been quite improved
            (now handles RTL/LTR correctly, assigns a fixed width to all items
            and caches some things to make things a bit faster)
    
            * control-center/control-center.c: removed canvas drawing logic,
            and use the new widget
    
            * Makefile.am: include gnomecc-canvas.[ch]

 control-center/ChangeLog        |   13 +
 control-center/Makefile.am      |    4 +-
 control-center/control-center.c | 1114 +--------------------------------------
 control-center/gnomecc-canvas.c | 1025 +++++++++++++++++++++++++++++++++++
 control-center/gnomecc-canvas.h |   60 +++
 5 files changed, 1116 insertions(+), 1100 deletions(-)

commit 8c5c71072ce65635a2a9f54af2793134dd2b08d2
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Fri May 13 12:30:07 2005 +0000

    Translation updated.
    
    2005-05-13  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated.

 po/ChangeLog |    4 +
 po/et.po     | 1722 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 820 insertions(+), 906 deletions(-)

commit efc735479352f835be7ed2dcdbe89e372c4f94da
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu May 12 15:39:21 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-05-12  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |    4 +
 po/et.po     | 1816 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 950 insertions(+), 870 deletions(-)

commit eac293a6dafeea1154921b68b7d7c5b2c9b718f2
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu May 12 09:47:13 2005 +0000

    Updated Czech translation.
    
    2005-05-12  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |    4 +
 po/cs.po     | 1476 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 742 insertions(+), 738 deletions(-)

commit d816ca179a21c368a29fa64587352dc0cde0681f
Author: Alexander Shopov <ash@contact.bg>
Date:   Thu May 12 06:02:22 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-05-12  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   9 +-
 po/bg.po     | 348 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 182 insertions(+), 175 deletions(-)

commit 2ec3b60bb93de85275d37bcb0d9dee061208dca2
Author: James Henstridge <james@jamesh.id.au>
Date:   Thu May 12 05:04:42 2005 +0000

    use NULL as the var args terminator rather than 0. Patch from Stanislav
    
    2005-05-12  James Henstridge  <james@jamesh.id.au>
    
            * font-method.c (ensure_font_list): use NULL as the var args
            terminator rather than 0.  Patch from Stanislav Brabec
            <sbrabec@suse.cz>, fixing bug #302056.

 vfs-methods/fontilus/ChangeLog     | 6 ++++++
 vfs-methods/fontilus/font-method.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 2f6800b7c64a73b27fab54210945c70b1f7facab
Author: Christian Persch <chpe@cvs.gnome.org>
Date:   Wed May 11 22:07:03 2005 +0000

    Remove stray whitespace. Bug #302036.
    
    2005-05-12  Christian Persch  <chpe@cvs.gnome.org>
    
        * capplets/ui-properties/gnome-ui-properties.glade:
        Remove stray whitespace. Bug #302036.

 ChangeLog                                        | 5 +++++
 capplets/ui-properties/gnome-ui-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0935961f7852abbe5e4c825ae66ca2af98f493b1
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Wed May 11 16:07:51 2005 +0000

    Here too

 archiver/README | 2 ++
 1 file changed, 2 insertions(+)

commit 2373a10183b9fc9f68edea1306461efae07dfa83
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed May 11 11:25:49 2005 +0000

    list "Gtk/MenuBarAccel", allow to configure the menubar shortcut (Closes:
    
    2005-05-11  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-settings-xsettings.c: list "Gtk/MenuBarAccel", allow to
            configure the menubar shortcut (Closes: #120859).

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 7 insertions(+)

commit 625286cf6e1c0e08cd1c84139728ec125cf4208f
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Wed May 11 11:04:15 2005 +0000

    Updated Greek Translation.

 po/ChangeLog |  4 ++++
 po/el.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 227d0296d674d63ab43774a5b4e7eb9d3da11426
Author: Richard Hoelscher <rah@rahga.com>
Date:   Sun May 8 20:49:45 2005 +0000

    Remove egg_pixbuf_new_from_file_at_size, using the gtk+-2.6 function for
    
    2005-05-08  Richard Hoelscher  <rah@rahga.com>
    
        * applier.c (refresh_render): Remove egg_pixbuf_new_from_file_at_size,
        using the gtk+-2.6 function for this instead.
    
        Fixes #169757

 libbackground/ChangeLog |   7 +++
 libbackground/applier.c | 142 ++----------------------------------------------
 2 files changed, 12 insertions(+), 137 deletions(-)

commit d26e8755a5e5d2b51ba10d101c94c576d982e778
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun May 8 20:48:49 2005 +0000

    Require GTK+ >= 2.6.0 now, we should have been requiring at least 2.4 here
    
    2005-05-08  Rodney Dawes  <dobey@novell.com>
    
        * configure.in (gtk_minver): Require GTK+ >= 2.6.0 now, we should have
        been requiring at least 2.4 here anyway, needed for new gdk-pixbuf
        method that we use in libbackground for bug #169757

 ChangeLog    | 8 +++++++-
 configure.in | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 8067b55d1df03987d885391ab69c667525526f74
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Mon May 2 08:05:27 2005 +0000

    append entries, so we get them in the correct order.
    
            * control-center-categories.c: (populate_category):
            append entries, so we get them in the correct order.

 control-center/ChangeLog                   | 5 +++++
 control-center/control-center-categories.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit a0a2ed3ba990db92855a1ec96d1c9dcf57cbf012
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Fri Apr 29 14:43:02 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-04-29  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 303 ++++++-----------------------------------------------------
 2 files changed, 35 insertions(+), 272 deletions(-)

commit 78c049de84517bf0a1c6a095c983c43db3572704
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Thu Apr 28 17:23:05 2005 +0000

    Updated Greek Translation.

 po/ChangeLog | 4 ++++
 po/el.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 4ad87eb434c28ab2d1c4b2f69f92a9ddbb80dd02
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Thu Apr 28 11:13:43 2005 +0000

    Updated Greek Translation.

 po/ChangeLog |    4 +
 po/el.po     | 1476 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 742 insertions(+), 738 deletions(-)

commit b8b2a04948fcd9d4b02370df99dabd609d1a072b
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Mon Apr 25 21:29:26 2005 +0000

    Hungarian translation updated.
    
    2005-04-25  Gabor Kelemen  <kelemeng@gnome.hu>
    
        * hu.po: Hungarian translation updated.

 po/ChangeLog |    4 +
 po/hu.po     | 1486 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 748 insertions(+), 742 deletions(-)

commit a561260c98a89b48ccd7b9ec840caed29d6ac818
Author: Iaki Larraaga <dooteo@euskalgnu.org>
Date:   Tue Apr 12 11:18:01 2005 +0000

    Updated Basque translation.
    
    2005-04-12  Iaki Larraaga  <dooteo@euskalgnu.org>
    
            * eu.po: Updated Basque translation.

 po/ChangeLog |    4 +
 po/eu.po     | 2810 ++++++++++++++++++++--------------------------------------
 2 files changed, 962 insertions(+), 1852 deletions(-)

commit 0aa7789a8b24c7aebb184d43c289232d4ae52b41
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Mon Apr 11 14:59:08 2005 +0000

    update for libgnome-menu API renaming.
    
    2005-04-11  Mark McLoughlin  <mark@skynet.ie>
    
            * control-center-categories.c: update for libgnome-menu
            API renaming.

 control-center/ChangeLog                   |  5 +++
 control-center/control-center-categories.c | 64 +++++++++++++++---------------
 2 files changed, 37 insertions(+), 32 deletions(-)

commit 96ee7376ab296bb8ee8e8a11603263772a25f8f5
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Apr 10 02:19:13 2005 +0000

    improving the preview layout

 capplets/keyboard/ChangeLog                         | 4 ++++
 capplets/keyboard/gnome-keyboard-properties-xkbpv.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c43d4cc6c81665feaa235ac9fd0b3f7484d4c21a
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Apr 6 21:41:15 2005 +0000

    Update for slight change to menu_tree_lookup() API.
    
    2005-04-06  Mark McLoughlin  <mark@skynet.ie>
    
            * control-center-categories.c: (control_center_get_information):
            Update for slight change to menu_tree_lookup() API.

 control-center/ChangeLog                   | 5 +++++
 control-center/control-center-categories.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 79b053c4bfafd16a7f4804ef1edc60aee6493cb3
Author: Maixim Dziumanenko <mvd@mylinux.com.ua>
Date:   Wed Apr 6 18:24:36 2005 +0000

    Updated Ukrainian trasnlation.
    
    2005-04-06  Maixim Dziumanenko <mvd@mylinux.com.ua>
    
        * Updated Ukrainian trasnlation.

 po/ChangeLog |  4 +++
 po/uk.po     | 90 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 48 insertions(+), 46 deletions(-)

commit f4210803749dc1a4e3381e658f2641d4c40c562f
Author: Diego Gonzalez <diego@pemas.net>
Date:   Mon Apr 4 19:20:02 2005 +0000

    fix gnome-about-me.desktop installation
    
    2005-04-04  Diego Gonzalez <diego@pemas.net>
    
        * Makefile.am: fix gnome-about-me.desktop installation
    
    2005-04-01  Diego Gonzalez <diego@pemas.net>
    
        * gnome-about-me.c: fix the case where the self uid is wrong
          and the edition when the self contact is created for the
          first time.

 capplets/about-me/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f30b097f606302dae5372011300211c8e11df5d2
Author: Diego González <dggonz@src.gnome.org>
Date:   Mon Apr 4 19:11:09 2005 +0000

    `head ChangeLog`

 capplets/about-me/ChangeLog        | 10 ++++++++++
 capplets/about-me/Makefile.am      | 24 +++++++++++++++---------
 capplets/about-me/gnome-about-me.c | 31 +++++++++++++++++++++++--------
 3 files changed, 48 insertions(+), 17 deletions(-)

commit ad155907dd7603600bbbc31165ff948499d1af34
Author: Steven Michael Murphy <smurphy@src.gnome.org>
Date:   Fri Apr 1 05:51:17 2005 +0000

    Added new Language, Kinyarwanda (rw), to this package

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/rw.po     | 3568 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3577 insertions(+), 1 deletion(-)

commit b394ea157087773fb54c3f71e7141d9f5d2db58f
Author: Adi Attar <aattar@cvs.gnome.org>
Date:   Tue Mar 29 08:32:15 2005 +0000

    xh.po: Updated Xhosa translation.
    
    2005-03-29  Adi Attar  <aattar@cvs.gnome.org>
    
         xh.po: Updated Xhosa translation.

 po/ChangeLog |   4 +++
 po/xh.po     | 104 +++++++++++++++++++++++++----------------------------------
 2 files changed, 48 insertions(+), 60 deletions(-)

commit e1d9efe6443e96382b4c4b0bee8ae6ae813d390e
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sat Mar 26 23:34:36 2005 +0000

    update to the new libgnome-menu API, patch from Mark McLoughlin
    
    2005-03-27  Sebastien Bacher  <seb128@debian.org>
    
            * control-center-categories.c: (populate_category),
            (read_categories_from_menu_directory),
            (control_center_get_information): update to the new libgnome-menu API,
            patch from Mark McLoughlin <markmc@redhat.com>.

 ChangeLog                                  |  4 +++
 configure.in                               |  2 +-
 control-center/ChangeLog                   |  7 +++++
 control-center/control-center-categories.c | 44 ++++++++++++++++++------------
 4 files changed, 38 insertions(+), 19 deletions(-)

commit 208728d0c49b31a0076d760de766c9c876d77d64
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sat Mar 26 23:25:24 2005 +0000

    update version to 2.11.0
    
    2005-03-27  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: update version to 2.11.0

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0b95b0a6b0e4d5e84f502f2b44bdc09642059393
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Mar 17 05:31:11 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 13a17b75a2757afe459a994a2b3b709ae2d2ec1c
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Mar 17 05:16:45 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/en_CA.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5837b1312694bcd870c5f88c72049edccb844bc2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 14 21:22:17 2005 +0000

    Plug a couple of leaks.
    
    2005-03-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c: (set_server_from_gconf),
        (set_gconf_from_server): Plug a couple of leaks.

 gnome-settings-daemon/ChangeLog                               | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 5 +++++
 2 files changed, 10 insertions(+)

commit be397e44b3a81bfda604126e4ef5c33cb9a59160
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Sun Mar 13 16:12:00 2005 +0000

    I forgot to add tr.po on previous submit
        * tr.po: Updated Turkish Translation

 po/tr.po | 1230 ++++++++++++++------------------------------------------------
 1 file changed, 265 insertions(+), 965 deletions(-)

commit 2f28088a79c9c81c2774552deda11f3a1325d839
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Sat Mar 12 16:58:13 2005 +0000

    Updated Turkish Translation
    
        * tr.po: Updated Turkish Translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit a51c4580da98a289792cafa65b1bee97c6bba665
Author: Adi Attar <aattar@cvs.gnome.org>
Date:   Wed Mar 9 14:32:26 2005 +0000

    Added Xhosa translation. Added "xh" to ALL_LINGUAS.
    
    2005-03-09  Adi Attar  <aattar@cvs.gnome.org>
    
        * xh.po: Added Xhosa translation.
        * configure.in: Added "xh" to ALL_LINGUAS.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/xh.po     | 3653 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3662 insertions(+), 1 deletion(-)

commit f986ab8e1c05ba21c17d31fbe99c75f99d4a76f7
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Mar 8 01:06:26 2005 +0000

    update version to 2.10.1
    
    2005-03-08  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: update version to 2.10.1

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit ec440ce760b781c0a697ace0264167ead038d250
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Mar 8 00:27:15 2005 +0000

    Fix the tarball build.
    
    2005-03-08  Sebastien Bacher  <seb128@debian.org>
    
            * POTFILES.in:
            * POTFILES.skip: Fix the tarball build.

 po/ChangeLog     | 5 +++++
 po/POTFILES.in   | 1 -
 po/POTFILES.skip | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

commit 1e7f0e683175179a4d8958fc75a7649874d73cc0
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Mar 7 23:37:16 2005 +0000

    update for 2.10.0
    
    2005-03-08  Sebastien Bacher  <seb128@debian.org>
    
            * NEWS:
            * configure.in: update for 2.10.0

 ChangeLog    |  5 +++++
 NEWS         | 44 +++++++++++++++++++++++++++++++++++++++++++-
 configure.in |  2 +-
 3 files changed, 49 insertions(+), 2 deletions(-)

commit 99826d67d9754c440c4b26d77f99de3913d5767d
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Mar 7 07:12:04 2005 +0000

    Updated traditional Chinese translation from GNOME HK Team
    
        * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team

 po/ChangeLog |    4 +
 po/zh_TW.po  | 3559 ++++++++++++++++++++--------------------------------------
 2 files changed, 1247 insertions(+), 2316 deletions(-)

commit 80191667a2026fba0c24530990f405b9bf25c161
Author: Dan Damian <dand@src.gnome.org>
Date:   Sun Mar 6 23:13:55 2005 +0000

    Updated Romanian translation.
    
           * ro.po: Updated Romanian translation.

 po/ChangeLog |  4 ++++
 po/ro.po     | 57 +++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 39 insertions(+), 22 deletions(-)

commit 7b341a1cff282c29af3737dd326a3a1620054f63
Author: Marcel Telka <marcel@telka.sk>
Date:   Sat Mar 5 19:42:16 2005 +0000

    Updated Slovak translation.
    
    2005-03-05  Marcel Telka  <marcel@telka.sk>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 1550 +++++++++++++---------------------------------------------
 2 files changed, 352 insertions(+), 1202 deletions(-)

commit 1948ff7740b38ee15160e4c68b86157400ebea9a
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Mar 4 14:44:20 2005 +0000

    Updated Swedish translation (typos).
    
    2005-03-04  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation (typos).

 po/ChangeLog | 4 ++++
 po/sv.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 488cb03217947637874bd3cd51c365ef60d1f15d
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Thu Mar 3 22:09:22 2005 +0000

    Udpated Italian translation.

 po/ChangeLog |  5 ++++
 po/it.po     | 98 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 55 insertions(+), 48 deletions(-)

commit 3522b53e70b5fae2ba4ec5c78b7dc985cfafa323
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Mar 3 10:28:12 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-03-03  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 595 +++++++----------------------------------------------------
 2 files changed, 66 insertions(+), 533 deletions(-)

commit 8e31fa40fd9e7b2078fd45484d182663f24e70d4
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Wed Mar 2 23:09:02 2005 +0000

    Updated Serbian translation.

 po/ChangeLog  |    6 +-
 po/sr.po      | 1422 +++++++++++++++++++++++--------------------------------
 po/sr@Latn.po | 1471 +++++++++++++++++++++++----------------------------------
 3 files changed, 1184 insertions(+), 1715 deletions(-)

commit 376d62fc884dfee26f8c62488687561fe4a6f853
Author: Dan Damian <dand@src.gnome.org>
Date:   Wed Mar 2 19:53:04 2005 +0000

    Updated Romanian translation.
    
            * ro.po: Updated Romanian translation.

 po/ChangeLog |    4 +
 po/ro.po     | 1551 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 708 insertions(+), 847 deletions(-)

commit f034e7085c36114a7f6bab006168256ba96522e6
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Tue Mar 1 21:28:56 2005 +0000

    Updated Italian translation.

 po/ChangeLog |    5 +
 po/it.po     | 2285 +++++++++++++++++++++++-----------------------------------
 2 files changed, 896 insertions(+), 1394 deletions(-)

commit bd90f5595b499cf084c26b2d670f93830b4a2bf7
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Tue Mar 1 12:32:15 2005 +0000

    update by amanpreetalam@yahoo.com

 po/pa.po | 1936 ++++++++++++++++++++------------------------------------------
 1 file changed, 620 insertions(+), 1316 deletions(-)

commit b4f39cc1484dbcd7274a90a922851a12c0dd9316
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Feb 28 23:04:52 2005 +0000

    don't bother VNC users with warnings of XKB breakage, we already know it
    
    
    2005-02-28  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-daemon/gnome-settings-keyboard-xkb.c
        (activation_error) : don't bother VNC users with warnings of XKB
          breakage, we already know it is not going to work.

 ChangeLog                                           |  6 ++++++
 NEWS                                                |  6 ++++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 18 ++++++++++++------
 3 files changed, 24 insertions(+), 6 deletions(-)

commit c7f83884d698620b73d268d3f883e206f36ee0c8
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Mon Feb 28 07:42:08 2005 +0000

    Updated Greek Translation.

 po/ChangeLog |  4 ++++
 po/el.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit a84d6e6e648b8f29f4b7dc8d1be5d2f62af308b0
Author: Laszlo Dvornik <dvornik@gnome.hu>
Date:   Sun Feb 27 17:37:31 2005 +0000

    Hungarian translation updated by Gabor Kelemen.
    
    2005-02-27  Laszlo Dvornik  <dvornik@gnome.hu>
    
        * hu.po: Hungarian translation updated by Gabor Kelemen.

 po/ChangeLog |    4 +
 po/hu.po     | 1320 ++++++++++++++--------------------------------------------
 2 files changed, 311 insertions(+), 1013 deletions(-)

commit 05b1c2f1a32a5c205250ff685599fad3d07a9ac0
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Feb 26 19:15:58 2005 +0000

    Update Copyright to include current year
    
    2005-02-26  Rodney Dawes  <dobey@novell.com>
    
        * *.[ch]: Update Copyright to include current year

 capplets/background/ChangeLog          | 4 ++++
 capplets/background/gnome-wp-capplet.c | 2 +-
 capplets/background/gnome-wp-capplet.h | 2 +-
 capplets/background/gnome-wp-info.c    | 2 +-
 capplets/background/gnome-wp-info.h    | 2 +-
 capplets/background/gnome-wp-item.c    | 2 +-
 capplets/background/gnome-wp-item.h    | 2 +-
 capplets/background/gnome-wp-utils.c   | 2 +-
 capplets/background/gnome-wp-utils.h   | 2 +-
 capplets/background/gnome-wp-xml.c     | 2 +-
 capplets/background/gnome-wp-xml.h     | 2 +-
 11 files changed, 14 insertions(+), 10 deletions(-)

commit c15683e8ff791880935d0d090f8282da53084a69
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Feb 26 19:00:19 2005 +0000

    If the filename is not encoded in UTF-8, we just ignore it for now to
    
    2005-02-26  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (gnome_wp_add_image): If the filename is not
        encoded in UTF-8, we just ignore it for now to avoid crashing
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml): Check to make sure that the
        filename and name tags that we read in, aren't NULL
        If the filename we read in is NULL, free the item, and continue on
    
        Fixes #146130 #146645 (resolving these as dups of #168604 )
        Fixes #159441

 capplets/background/ChangeLog          | 12 ++++++++++++
 capplets/background/gnome-wp-capplet.c |  3 +++
 capplets/background/gnome-wp-xml.c     | 18 ++++++++++++------
 3 files changed, 27 insertions(+), 6 deletions(-)

commit 8dd93b12a7510aac3a00e1d1d134d33a9c4b0a63
Author: Alexander Shopov <ash@contact.bg>
Date:   Fri Feb 25 07:21:03 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-02-25  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |    5 +
 po/bg.po     | 1500 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 756 insertions(+), 749 deletions(-)

commit ab12aeb67402d409e60fdb0eed09821c3d33d169
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Wed Feb 23 10:30:58 2005 +0000

    Updated Russian translation

 po/ChangeLog |   4 +
 po/ru.po     | 652 ++---------------------------------------------------------
 2 files changed, 21 insertions(+), 635 deletions(-)

commit c012d2dc807201314fd31406733221288ed219d4
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Wed Feb 23 04:04:09 2005 +0000

    Updated Translation

 po/ChangeLog |    4 +
 po/gu.po     | 1319 +++++++++++++---------------------------------------------
 2 files changed, 302 insertions(+), 1021 deletions(-)

commit 28be058ae3199d47551b55acd88d08a4fa239812
Author: Hendrik Richter <hendrik@gnome-de.org>
Date:   Mon Feb 21 14:39:32 2005 +0000

    Updated German translation.
    
    2005-02-21  Hendrik Richter  <hendrik@gnome-de.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |   23 +-
 po/de.po     | 1474 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 752 insertions(+), 745 deletions(-)

commit c2673a2a5a690b80ae980653c29b6666a4907250
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Feb 21 10:29:44 2005 +0000

    Updated Polish translation by GNOME PL Team.
    
    2005-02-21  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |    4 +
 po/pl.po     | 2743 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 1249 insertions(+), 1498 deletions(-)

commit 5e2914cf0f819093a6a75f14e3691b05e8378bb2
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Feb 21 09:02:37 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-02-21  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |    4 +
 po/sq.po     | 1315 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 605 insertions(+), 714 deletions(-)

commit 8265abd83a49b8e841533cb606498f9d8bd5d0b3
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Sun Feb 20 15:01:09 2005 +0000

    Updated pt_BR translation

 po/ChangeLog |    4 +
 po/pt_BR.po  | 1160 +++++++++++++++++++++++++---------------------------------
 2 files changed, 509 insertions(+), 655 deletions(-)

commit dc71396a8238d1d111c0402b3e3550639d5c1f2a
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Feb 19 15:15:55 2005 +0000

    Updated French translation.

 po/ChangeLog |    5 +
 po/fr.po     | 1324 ++++++++++++++--------------------------------------------
 2 files changed, 315 insertions(+), 1014 deletions(-)

commit 05223d30fd80ee51f757baa834f6a6beb492f514
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Sat Feb 19 11:09:10 2005 +0000

    Update Ukrainian translation.
    
    2005-02-19  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Update Ukrainian translation.

 po/ChangeLog |  4 ++++
 po/uk.po     | 16 +++++++++-------
 2 files changed, 13 insertions(+), 7 deletions(-)

commit e571f43fc9bbe679223fe2b541fdbc05faf493e4
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Fri Feb 18 20:16:06 2005 +0000

    Updated Finnish translation.
    
    2005-02-18  Pauli Virtanen <pauli.virtanen@hut.fi>
    
         * fi.po: Updated Finnish translation.

 po/ChangeLog |    4 +
 po/fi.po     | 1484 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 745 insertions(+), 743 deletions(-)

commit 31cff08c222aeef1a4ba7c6382240ca33ce5cfd6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Feb 18 13:53:16 2005 +0000

    Fix a sparse warning.
    
    2005-02-18  Kjartan Maraas  <kmaraas@gnome.org>
    
        * control-center.c: (create_control_center): Fix a
        sparse warning.

 control-center/ChangeLog        | 5 +++++
 control-center/control-center.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit e02e5ab5d0af2aaf4a21ab71f677f5f5872811b4
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   Fri Feb 18 11:18:39 2005 +0000

    Updated Finnish translation

 po/ChangeLog |    4 +
 po/fi.po     | 2592 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1241 insertions(+), 1355 deletions(-)

commit b50cf94a4aed4e5f55f3e76c8a406e0f051029ba
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Fri Feb 18 01:34:16 2005 +0000

    Updated Portuguese translation.
    
    2005-02-18  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 1249 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 567 insertions(+), 686 deletions(-)

commit 6c18a4ad18b2eb080a75db89de854e7e561d9fd9
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Thu Feb 17 18:19:06 2005 +0000

    Don't set any url when starting browser.
    
            * gnome-settings-multimedia-keys.c: (do_www_action):
            Don't set any url when starting browser.

 gnome-settings-daemon/ChangeLog                        | 5 +++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 2b42133d698c50b6166b49bead531462bdb3c5a1
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Thu Feb 17 09:11:13 2005 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 0750288ce9c79620b37c3d48ec04536e93b1a305
Author: Alexander Shopov <ash@contact.bg>
Date:   Wed Feb 16 17:32:27 2005 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2005-02-16  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Alexander Shopov <ash@contact.bg>

 po/ChangeLog |  11 +-
 po/bg.po     | 756 +++++++----------------------------------------------------
 2 files changed, 88 insertions(+), 679 deletions(-)

commit 17f9dc1f5a7c707272ca86f3aa807b4945887365
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Wed Feb 16 15:37:35 2005 +0000

    Update Ukrainian translation.
    
    2005-02-16  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Update Ukrainian translation.

 po/ChangeLog |    4 +
 po/uk.po     | 1244 +++++++++++++---------------------------------------------
 2 files changed, 275 insertions(+), 973 deletions(-)

commit dbf0f67a1fa7d6c1927685f88d58729f37934dae
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Wed Feb 16 09:36:11 2005 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |    4 +
 po/da.po     | 1397 ++++++++++++++++++++++++----------------------------------
 2 files changed, 584 insertions(+), 817 deletions(-)

commit 0b7fdd8071c41717e1373fd730cf111ca1ae0208
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 16 09:32:03 2005 +0000

    Update Update
    
    2005-02-16  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |    5 +
 po/nb.po     | 1071 ++--------------------------------------------------------
 po/no.po     | 1071 ++--------------------------------------------------------
 3 files changed, 45 insertions(+), 2102 deletions(-)

commit fe2b057382ac0772f56dd5324551e3fac7e950c2
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Tue Feb 15 13:05:41 2005 +0000

    Updated Korean translation.
    
    2005-02-15  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |    4 +
 po/ko.po     | 2610 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1250 insertions(+), 1364 deletions(-)

commit 06a50001b64a4100cbf62e2a77829f14b1d88d9e
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Feb 15 01:00:19 2005 +0000

    Updated Catalan translation by Josep Puigdemont <josep@imatge-sintetica.com>.

 po/ChangeLog |    5 +
 po/ca.po     | 3149 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1525 insertions(+), 1629 deletions(-)

commit 88f24626425d11900156c869695db27a55132c84
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Tue Feb 15 00:51:32 2005 +0000

    Updated Spanish translation.
    
    2005-02-15  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 210 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 107 insertions(+), 107 deletions(-)

commit fd091fb48add6d0d017b3d1fd104223fe1230f45
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Sun Feb 13 23:37:36 2005 +0000

    Updated Lithuanian translation.
    
    2005-02-14  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 ++++
 po/lt.po     | 15 ++++++++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)

commit 234901b440978212586dae3178c8db82f95e4a5e
Author: David Lodge <dave@cirt.net>
Date:   Sun Feb 13 21:52:11 2005 +0000

    Updated British translation.
    
    2005-02-13  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 691 ++++++-----------------------------------------------------
 2 files changed, 71 insertions(+), 624 deletions(-)

commit 3ca0edbb5162518e9e2077fa74fe3e3c18401d24
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Sun Feb 13 20:43:56 2005 +0000

    Translation updated by Reinout van Schouwen.
    
    2005-02-13  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |    4 +
 po/nl.po     | 1534 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 717 insertions(+), 821 deletions(-)

commit 6ad0611f2ad998ae0e89b90feed67fa54d010f5c
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Sun Feb 13 02:19:56 2005 +0000

    Translation updated.
    
    2005-02-13  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated.

 po/ChangeLog |    4 +
 po/et.po     | 2111 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 997 insertions(+), 1118 deletions(-)

commit 2b8982f3fc77f0027cc8cd771e9bd11f4f9d132f
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Feb 13 01:00:06 2005 +0000

    Updated Czech translation.
    
    2005-02-13  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 827 +++--------------------------------------------------------
 2 files changed, 38 insertions(+), 793 deletions(-)

commit 6f99e683e7548a0da4d734ec5c12d886bbcf7073
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Feb 12 15:27:47 2005 +0000

    Updated Thai translation.
    
    2005-02-12  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |    4 +
 po/th.po     | 2582 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 1225 insertions(+), 1361 deletions(-)

commit e46d284262d0d39d812e7ed0cd35fa3c339ca64d
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Feb 12 08:23:06 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 1119 +++++++++++++++++++++++++----------------------------------
 1 file changed, 481 insertions(+), 638 deletions(-)

commit 9ab6863a06ce386087a0a5acb7adf57936a1ef73
Author: Takeshi AIHANA <aihana@gnome.gr.jp>
Date:   Sat Feb 12 05:24:15 2005 +0000

    Updated Japanese translation for v2.9.91.
    
    2005-02-12  Takeshi AIHANA <aihana@gnome.gr.jp>
        * ja.po: Updated Japanese translation for v2.9.91.

 po/ChangeLog |    4 +
 po/ja.po     | 2218 +++++++++++++++++++++++-----------------------------------
 2 files changed, 862 insertions(+), 1360 deletions(-)

commit 50e7235c248a3b5dd160983c273a4d623519d8ae
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Feb 11 21:01:10 2005 +0000

    Updated Spanish translation.
    
    2005-02-11  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |    4 +
 po/es.po     | 1152 +++++++++++++++++++++++++---------------------------------
 2 files changed, 504 insertions(+), 652 deletions(-)

commit 764e20dd16ee481b0d9b96635bcca8c12e8204fd
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   Fri Feb 11 18:53:25 2005 +0000

    Updated German translation.
    
    2005-02-11  Frank Arnold  <farnold@cvs.gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1163 +++++++++++++++++++++++++---------------------------------
 2 files changed, 507 insertions(+), 660 deletions(-)

commit 6e28c1e52b0cfe1e1d73e821569f610a56c81017
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Feb 11 16:13:15 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 683 +++--------------------------------------------------------
 2 files changed, 39 insertions(+), 648 deletions(-)

commit 48dbe1436ea5884d151720505ed5010ddf72b203
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Fri Feb 11 12:33:43 2005 +0000

    Updated Greek Translation.

 po/ChangeLog |   4 +
 po/el.po     | 738 ++++++-----------------------------------------------------
 2 files changed, 69 insertions(+), 673 deletions(-)

commit 4ea044ae3c2f8d9748368ca5b5881a8dc9e122d2
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Feb 11 12:17:38 2005 +0000

    Added missing file. Updated Swedish translation.
    
    2005-02-11  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing file.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |    5 +
 po/POTFILES.in |    1 +
 po/sv.po       | 1398 ++++++++++++++++++++++++++++----------------------------
 3 files changed, 694 insertions(+), 710 deletions(-)

commit 7f827bf94441c8bfb6d00ef4e1a423dbd3c7ba8a
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Feb 10 22:03:12 2005 +0000

    fix the crash if the given theme is not correct (Closes: #153203).
    
    2005-02-10  Sebastien Bacher  <seb128@debian.org>
    
        * theme-thumbnailer.c: (main): fix the crash if the given theme
        is not correct (Closes: #153203).

 vfs-methods/themus/ChangeLog           |  5 +++++
 vfs-methods/themus/theme-thumbnailer.c | 14 ++++++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

commit df4007d87baec6776663fb758a4a4786261118e2
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Thu Feb 10 20:22:25 2005 +0000

    Updated pt_BR translation

 po/ChangeLog |   4 +
 po/pt_BR.po  | 255 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 198 insertions(+), 61 deletions(-)

commit 71665a599c60ee8882323054576c825a0318c762
Author: Rodney Dawes <dobey@novell.com>
Date:   Thu Feb 10 05:10:51 2005 +0000

    Don't define GNOME_ICONDIR as libbackground does not use it in any of the
    
    2005-02-10  Rodney Dawes  <dobey@novell.com>
    
        * Makefile.am: Don't define GNOME_ICONDIR as libbackground does not
        use it in any of the code

 libbackground/ChangeLog   | 5 +++++
 libbackground/Makefile.am | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0f026fc32c74b2dd5918633557c6dba0d988b72a
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Thu Feb 10 00:09:29 2005 +0000

    Updated Lithuanian translation.
    
    2005-02-07  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |    4 +
 po/lt.po     | 2583 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1233 insertions(+), 1354 deletions(-)

commit d4110905e823f1c9d496c4be5991b2a258543b46
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 21:44:46 2005 +0000

    update version to 2.9.92
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: update version to 2.9.92

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 3910ed267c10808f220ab0f4cf8fd2d7a311d287
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Feb 9 21:11:35 2005 +0000

    moved some files to fix the tarball build.
    
            * POTFILES.in:
            * POTFILES.skip:
            moved some files to fix the tarball build.

 po/POTFILES.in   | 6 ------
 po/POTFILES.skip | 6 ++++++
 2 files changed, 6 insertions(+), 6 deletions(-)

commit e9bc59cd37b89e589414d0a1163c5904187e7373
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 20:50:36 2005 +0000

    moved some files to fix the tarball build.
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * POTFILES.in:
            * POTFILES.skip:
            moved some files to fix the tarball build.

 po/POTFILES.in   | 1 -
 po/POTFILES.skip | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 65e055652bcf03eabd5f99971c0a9ceedd30b762
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 20:11:59 2005 +0000

    the previous change is not needed, changed POTFILES.in.
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in:
            * capplets/Makefile.am:
            the previous change is not needed, changed POTFILES.in.

 ChangeLog            | 6 ++++++
 capplets/Makefile.am | 2 +-
 configure.in         | 1 -
 3 files changed, 7 insertions(+), 2 deletions(-)

commit e065267cb945212f3327062abca9d9dc1963b3ae
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 20:08:43 2005 +0000

    build e-util-marshal.c.
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
        * Makefile.am: build e-util-marshal.c.

 capplets/about-me/ChangeLog   | 4 ++++
 capplets/about-me/Makefile.am | 7 +++++++
 2 files changed, 11 insertions(+)

commit 4331d7ce063abba56cd541ef941d06742ced37df
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 20:00:00 2005 +0000

    moved some files to fix the tarball build.
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * POTFILES.in:
            * POTFILES.skip:
            moved some files to fix the tarball build.
    
    ---------------------------------------------------------------------

 po/ChangeLog     |  6 ++++++
 po/POTFILES.in   | 12 ------------
 po/POTFILES.skip | 12 ++++++++++++
 3 files changed, 18 insertions(+), 12 deletions(-)

commit 7617297d424dd91e3e339132c7e5c439e2206eed
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 19:26:50 2005 +0000

    Added some files from the bug #155671.
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-about-me.desktop.in:
            * gnome-about-me.png:
            Added some files from the bug #155671.

 capplets/about-me/gnome-about-me.desktop.in |  13 +++++++++++++
 capplets/about-me/gnome-about-me.png        | Bin 0 -> 2280 bytes
 2 files changed, 13 insertions(+)

commit 538ae28c23d14658d2f00d83508129ff22b1b026
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 19:21:16 2005 +0000

    include the "about-me" capplet files to the tarball to fix the tarball
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in:
            * capplets/Makefile.am:
            include the "about-me" capplet files to the tarball to fix the tarball
            build.

 ChangeLog            | 7 +++++++
 capplets/Makefile.am | 5 +----
 configure.in         | 1 +
 3 files changed, 9 insertions(+), 4 deletions(-)

commit 46030c459b73be47fbdfd590204df52bcfeec535
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 17:27:53 2005 +0000

    updated for the 2.9.91 release.
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
        * NEWS:
        * configure.in: updated for the 2.9.91 release.

 ChangeLog    |  5 +++++
 NEWS         | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 configure.in |  2 +-
 3 files changed, 64 insertions(+), 3 deletions(-)

commit 14f60262519ae2671326bc96b9bd96e7d6dce165
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Wed Feb 9 17:10:40 2005 +0000

    Updated Russian translation

 po/ChangeLog |   4 +
 po/ru.po     | 256 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 186 insertions(+), 74 deletions(-)

commit 9291b1c786a4938e47f4d0ac5df500a8662994de
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 15:23:04 2005 +0000

    patch by Kjartan Maraas <kmaraas@gnome.org> to fix a leak (Closes:
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-settings-keyboard-xkb.c: (gnome_settings_chk_file_list):
            patch by Kjartan Maraas <kmaraas@gnome.org> to fix a leak
            (Closes: #166796).

 gnome-settings-daemon/ChangeLog                     | 6 ++++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 1 +
 2 files changed, 7 insertions(+)

commit 98966780d0f030a9a1bf515691e0a4c57496dbb7
Author: Fernando Herrera <fernando.herrera@tecsidel.es>
Date:   Wed Feb 9 14:10:02 2005 +0000

    Fix an Spanish translation.
    
    2005-02-09  Fernando Herrera  <fernando.herrera@tecsidel.es>
    
            * es.po: Fix an Spanish translation.

 po/ChangeLog | 4 ++++
 po/es.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4a2404ef619af7c7bbe2dcb457daa5d77e13e3d3
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Feb 9 12:11:31 2005 +0000

    change back to the previous code, that fixes the themes:/// thumbnails
    
    2005-02-09  Sebastien Bacher  <seb128@debian.org>
    
            * theme-thumbnailer.c: (main): change back to the previous code,
            that fixes the themes:/// thumbnails (Closes: #165778).

 vfs-methods/themus/ChangeLog           |  5 +++++
 vfs-methods/themus/theme-thumbnailer.c | 26 ++++----------------------
 2 files changed, 9 insertions(+), 22 deletions(-)

commit f544fa95e27850e01bb9b0cd13de6976dcc7f7c1
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Wed Feb 9 00:21:47 2005 +0000

    Updated Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 352 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 177 insertions(+), 179 deletions(-)

commit 12e01119d8cd823c0a403a675fea4661728fc6ff
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Feb 8 22:42:10 2005 +0000

    patch by Kjartan Maraas <kmaraas@gnome.org>, remove a load of leaks and
    
    2005-02-08  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-theme-installer.c: (file_theme_type), (transfer_done_cb),
        (install_dialog_response), (gnome_theme_installer_run):
        patch by Kjartan Maraas <kmaraas@gnome.org>, remove a load of leaks
        and make sure newly installed themes show up in the relevant lists
        without having to close/open the dialog again (Closes: #166267).
    
    2005-02-08  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keyboard-properties-xkb.c: (setup_xkb_tabs):
        * gnome-keyboard-properties-xkblt.c: (def_group_in_gconf_changed):
        patch by Kjartan Maraas <kmaraas@gnome.org>, some code cleanups
        (Closes: #166267).
    
    2005-02-08  Sebastien Bacher  <seb128@debian.org>
    
        * eggcellrendererkeys.c: (egg_cell_renderer_keys_start_editing):
        patch by Kjartan Maraas <kmaraas@gnome.org>, some code cleanups
            (Closes: #166267).
    
    2005-02-08  Sebastien Bacher  <seb128@debian.org>
    
        * main.c: (wrap_in_label):
            patch by Kjartan Maraas <kmaraas@gnome.org>, some code cleanups
            (Closes: #166267).
    
    2005-02-08  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-theme-info.c: (update_common_theme_dir_index):
        * theme-thumbnail.c: (create_image):
        patch by Kjartan Maraas <kmaraas@gnome.org>, move to use GtkIconTheme
        and remove a load of leaks in the theme manager code (Closes: #166267).

 capplets/common/ChangeLog                          |  7 ++
 capplets/common/gnome-theme-info.c                 |  4 +-
 capplets/common/theme-thumbnail.c                  | 30 +++----
 capplets/display/ChangeLog                         |  6 ++
 capplets/display/main.c                            |  2 +-
 capplets/keybindings/ChangeLog                     |  6 ++
 capplets/keybindings/eggcellrendererkeys.c         |  2 +-
 capplets/keyboard/ChangeLog                        |  7 ++
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  2 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  2 +-
 capplets/theme-switcher/ChangeLog                  |  8 ++
 capplets/theme-switcher/gnome-theme-installer.c    | 92 +++++++++++++++++++---
 12 files changed, 134 insertions(+), 34 deletions(-)

commit b29dfe67f1db64bb0d30c34c5ca69ab86dc45cc6
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Tue Feb 8 21:34:47 2005 +0000

    Updated Spanish translation.
    
    2005-02-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 72 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 52 insertions(+), 24 deletions(-)

commit 31e553684ec49c69f3c546ac192fce74568bf4f5
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Tue Feb 8 17:49:34 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 76 +++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 54 insertions(+), 26 deletions(-)

commit 0db6a5e05394f55948f0aa146cadc592075a6bee
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Tue Feb 8 14:23:59 2005 +0000

    Updated Czech translation.
    
    2005-02-08  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 73 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 51 insertions(+), 26 deletions(-)

commit f7d49a791555d74047055805b4df8eee7643fa02
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 8 11:57:11 2005 +0000

    Update Update
    
    2005-02-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |   5 ++
 po/nb.po     | 284 ++++++++++++++++++++++++++++++++++++++++-------------------
 po/no.po     | 284 ++++++++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 387 insertions(+), 186 deletions(-)

commit db5c04c903c274a6becf38b7a929d4a893931058
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   Tue Feb 8 08:01:32 2005 +0000

    Updated German translation.
    
    2005-02-08  Frank Arnold  <farnold@cvs.gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 45 +++++++++++++++++++++++++++++++++++----------
 2 files changed, 39 insertions(+), 10 deletions(-)

commit 7bcf83c9b2aec1949bf59a4e315df7b54000bcea
Author: Funda Wang <fwang@src.gnome.org>
Date:   Tue Feb 8 00:12:19 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 70 +++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 47 insertions(+), 23 deletions(-)

commit 3be4937dab76e0ee4a24490b1bbef9a12a0229d2
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Feb 7 21:39:30 2005 +0000

    fix some strings, changes by David Lodge <dave@cirt.net> (Closes:
    
    2005-02-07  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-theme-installer.c: (transfer_done_cb): fix some strings,
              changes by David Lodge <dave@cirt.net> (Closes: #166550).

 capplets/theme-switcher/ChangeLog               | 5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 118592aab0ed27073906b58b4e08268f0c7e458d
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Mon Feb 7 16:33:41 2005 +0000

    add missing file

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 1d165c70a3307d91bdb5b266d27eff801ba82ff2
Author: David Lodge <dave@cirt.net>
Date:   Mon Feb 7 12:16:19 2005 +0000

    Updated British translation.
    
    2005-02-07  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 205 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 151 insertions(+), 58 deletions(-)

commit 8f7d17e9625e788fa8e1ed69d844124e71445a97
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Feb 7 08:39:07 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-02-07  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 66 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 42 insertions(+), 28 deletions(-)

commit d568473a0ecfb76c9c068bcb778b57365ee31b69
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Mon Feb 7 07:22:41 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-02-07  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 ++
 po/et.po     | 177 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 88 insertions(+), 93 deletions(-)

commit a944595c234b501ebcc40bcb23abf5444a77f1c8
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   Mon Feb 7 02:05:39 2005 +0000

    Updated German translation.
    
    2005-02-07  Frank Arnold  <farnold@cvs.gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 54 +++++++++++++++++++++++++++++++-----------------------
 2 files changed, 35 insertions(+), 23 deletions(-)

commit cd9d377d61361b83239ab99c5af416d741cf8145
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Feb 6 23:25:23 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 32 ++++++++++++++++++++------------
 2 files changed, 24 insertions(+), 12 deletions(-)

commit 904cbeb3cf167d4c2e35075206c975f3272f524a
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Feb 6 23:13:21 2005 +0000

    change fullscreen_flash to fullscreen (Closes: #166455).
    
    2005-02-07  Sebastien Bacher  <seb128@debian.org>
    
            * sound-properties-capplet.c: change fullscreen_flash to fullscreen
              (Closes: #166455).

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 39dc62b22394de538fb868d25a8b463663ecc781
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Feb 6 23:02:14 2005 +0000

    Force using the gtk+ backend for the file chooser since we don't support
    
    2005-02-06  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Force using the gtk+
        backend for the file chooser since we don't support vfs yet
    
        Fixes #154978

 capplets/background/ChangeLog          |  7 +++++++
 capplets/background/gnome-wp-capplet.c | 17 +++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

commit f3db3b9cd1f89f5b220c99b9decefdc05c154bec
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Feb 6 22:41:19 2005 +0000

    Change the API to use the boolean argument to specify if we want to update
    
    2005-02-06  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (gnome_wp_color_changed): Change the API to use
        the boolean argument to specify if we want to update gconf or not
        Always get the colors for both primary and secondary and update the
        thumbnail
        Only set the keys in gconf if we have the update boolean argument
        (gnome_wp_pcolor_changed): Removed this method, since we don't need
        to differentiate between primary/secondary for updating the thumbnail
        (gnome_wp_scolor_changed): When we change the color in the UI, we want
        to update gconf, we use this method for both color picker buttons now
        (gnome_wallpaper_properties_init): Use gnome_wp_scolor_changed for the
        callback on both color picker button widgets now
    
        Fixes #166486

 capplets/background/ChangeLog          | 16 ++++++++++
 capplets/background/gnome-wp-capplet.c | 53 ++++++++++++++++------------------
 2 files changed, 41 insertions(+), 28 deletions(-)

commit bdf78c5591ccb2a7ec1e14a27c73f3a534445fce
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Feb 6 16:30:23 2005 +0000

    Updated Czech translation.
    
    2005-02-06  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 30 +++++++++++++++++++++---------
 2 files changed, 25 insertions(+), 9 deletions(-)

commit 5ec4d836118011354c815f6aeb72b12c431091b5
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Feb 6 16:21:18 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

commit dfcba377cc5a2113eb17217bb5238deec224f411
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Feb 6 13:35:28 2005 +0000

    Updated Spanish translation.
    
    2005-02-06  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 31 ++++++++++++++++++++-----------
 2 files changed, 24 insertions(+), 11 deletions(-)

commit c634eff099fe3ef7f455912b93775b1d97f86739
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Feb 6 09:26:34 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-02-06  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 ++
 po/bg.po     | 184 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 139 insertions(+), 50 deletions(-)

commit 736c919ed039af72b9aca21bdcef425901b85927
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Feb 6 03:32:06 2005 +0000

    fixing #150435

 ChangeLog                                          |  7 +++
 .../gnome-settings-keyboard-xkb.c                  | 72 +++++++++++++++-------
 gnome-settings-daemon/modmap-dialog.glade          |  2 +-
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 13 ++++
 4 files changed, 71 insertions(+), 23 deletions(-)

commit 0deb69aa5b5a5b5c7aebba82aaedccfc05bc4000
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun Feb 6 01:07:27 2005 +0000

    Updated Portuguese translation.
    
    2005-02-06  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 561 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 302 insertions(+), 263 deletions(-)

commit 3810ced13b524a64f58b828eb9de396a6b053399
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   Sat Feb 5 18:18:06 2005 +0000

    Updated German translation.
    
    2005-02-05  Frank Arnold  <farnold@cvs.gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1879 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 989 insertions(+), 894 deletions(-)

commit 1554e5dc6b33c02c5800f379d49e44589723d357
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Sat Feb 5 15:57:18 2005 +0000

    Updated Thai translation.
    
    2005-02-05  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |    4 +
 po/th.po     | 2120 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1097 insertions(+), 1027 deletions(-)

commit 86ac811b2f6630b1809a08e9ad9fb6301228d1fc
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Feb 5 15:25:15 2005 +0000

    Updated Spanish translation.
    
    2005-02-05  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 35 +++++++++++++++++------------------
 2 files changed, 21 insertions(+), 18 deletions(-)

commit 206af76406723c87b3db2143fa63976849260f9b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Feb 5 13:45:56 2005 +0000

    Don't leak the theme name if the theme is invalid. NULL vs. 0 in
    
    2005-01-27  Kjartan Maraas  <kmaraas@gnome.org>
    
            * theme-thumbnailer.c: (main): Don't leak the theme name
            if the theme is invalid.
            * themus-properties-view.c: (themus_properties_view_init):
            NULL vs. 0 in gnome_theme_init()

 vfs-methods/themus/ChangeLog                | 7 +++++++
 vfs-methods/themus/theme-thumbnailer.c      | 1 +
 vfs-methods/themus/themus-properties-view.c | 2 +-
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 61878a725f2b7f94d9eff36b5214146748967cdb
Author: Shakti Sen <shprasad@novell.com>
Date:   Sat Feb 5 13:19:38 2005 +0000

    Adding/Removing the host name instantly to/from gconf.
    
    2005-02-04  Shakti Sen  <shprasad@novell.com>
    
            * gnome-network-preferences.c (cb_add_url, cb_remove_url):
            Adding/Removing the host name instantly to/from gconf.
    
            Fixes bug #166233

 capplets/network/ChangeLog                   |  7 +++++++
 capplets/network/gnome-network-preferences.c | 16 +++++++++++-----
 2 files changed, 18 insertions(+), 5 deletions(-)

commit c09bb616f38d77ccb09b973525a559a44e4751c3
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Sat Feb 5 10:57:24 2005 +0000

    Updated Lithuanian translation.
    
    2005-02-05  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 ++++
 po/lt.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit b519673f94f4f49d876f7c46e2d9f39de6b94fca
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sat Feb 5 10:35:52 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-02-05  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 168 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 125 insertions(+), 47 deletions(-)

commit 2797431102a6bf7ff02800cda950f75207b7acfb
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Feb 4 21:57:59 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 55 +++++++++++++++++++++++++++++++++----------------------
 1 file changed, 33 insertions(+), 22 deletions(-)

commit e8db8b0bce1516b087503afcee853284eb787310
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Feb 4 12:48:32 2005 +0000

    Updated Czech translation.
    
    2005-02-04  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 38 +++++++++++++++++---------------------
 2 files changed, 21 insertions(+), 21 deletions(-)

commit 9a8054893cb51228ed5357f204c0985400b5c091
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Fri Feb 4 10:14:49 2005 +0000

    Updated Finnish translation.
    
    2005-02-04  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
            * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 986 +++++++++++++++++------------------------------------------
 2 files changed, 282 insertions(+), 708 deletions(-)

commit 3a0fe7e3da515c3c992a155ef45ff9279de15c12
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Feb 4 07:32:35 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 44 ++++++++++++++++++++++----------------------
 2 files changed, 26 insertions(+), 22 deletions(-)

commit fe7da7b6c19a7ad7ea6302496ee93f86985b22e3
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Feb 3 23:44:39 2005 +0000

    fixing #165018

 gnome-settings-daemon/ChangeLog                     |  4 ++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 12 +++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 6288637f2d1407d937f9725555807357f6fe7d14
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Thu Feb 3 23:34:29 2005 +0000

    Updated Lithuanian translation.
    
    2005-02-04  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 ++++
 po/lt.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 8150942a61d3d1bf8f6e4ccf566d3f8a81427f00
Author: Richard Hult <richard@imendio.com>
Date:   Thu Feb 3 23:23:59 2005 +0000

    Revert the patch from below since it fixes #134595 but breaks other
    
    2005-02-04  Richard Hult  <richard@imendio.com>
    
        * drwright.c: Revert the patch from below since it fixes #134595
        but breaks other things. Keep the tooltip changes though.

 typing-break/ChangeLog  |  3 +++
 typing-break/drwright.c | 39 +++++++++------------------------------
 2 files changed, 12 insertions(+), 30 deletions(-)

commit b76f5fa46a1d9e2fc8e382babe1ee65c3065fc59
Author: Richard Hult <richard@imendio.com>
Date:   Thu Feb 3 23:07:58 2005 +0000

    Update description on how to add notification area for the new "add to
    
    2005-02-04  Richard Hult  <richard@imendio.com>
    
        * main.c (main): Update description on how to add notification
        area for the new "add to panel" dialog. Patch from uid0@akl.lt,
        fixes bug #166057.

 typing-break/ChangeLog | 6 ++++++
 typing-break/main.c    | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 77db41b6cdfcfb1d4e51628c4119396d691d094f
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Thu Feb 3 23:02:40 2005 +0000

    Updated pt_BR translation

 po/ChangeLog |   4 +
 po/pt_BR.po  | 531 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 237 insertions(+), 298 deletions(-)

commit f86cf16e33641e808a1c464b32399d41c087f997
Author: Richard Hult <richard@imendio.com>
Date:   Thu Feb 3 22:59:58 2005 +0000

    Go back to the timer value from before the break if postponing a manual
    
    2005-02-03  Richard Hult  <richard@imendio.com>
    
        * drwright.c (break_window_postpone_cb), (maybe_change_state),
        (popup_break_cb): Go back to the timer value from before the break
        if postponing a manual break. Fixes bug #134595, based on patch
        from Vinay M R <vinay.mandyakoppal@wipro.com>. Modified to use the
        right enum type and changed to update the tooltip immendiately
        after a break.

 typing-break/ChangeLog  |  9 +++++++++
 typing-break/drwright.c | 40 +++++++++++++++++++++++++++++++---------
 2 files changed, 40 insertions(+), 9 deletions(-)

commit 7c1d70b04ac7dd89664ea8f5470d41ab9c4f87d3
Author: Leena Gunda <leena.gunda@wipro.com>
Date:   Thu Feb 3 22:29:35 2005 +0000

    Check for screensaver functionality in libXext.so also when deciding to
    
    2005-02-03  Leena Gunda  <leena.gunda@wipro.com>
    
        * configure.in: Check for screensaver functionality in libXext.so
        also when deciding to build typing-break. Fixes bug #155461.

 ChangeLog    |  5 +++++
 configure.in | 22 ++++++++++------------
 2 files changed, 15 insertions(+), 12 deletions(-)

commit 66cf18149393f2281751c1464e804a285467b64d
Author: Chris Lahey <clahey@boston.ximian.com>
Date:   Thu Feb 3 21:59:49 2005 +0000

    Prune empty categories.
    
    2005-02-03  Chris Lahey  <clahey@boston.ximian.com>
    
        * control-center-categories.c (control_center_get_information):
        Prune empty categories.

 control-center/ChangeLog                   |  5 +++++
 control-center/control-center-categories.c | 10 ++++++++++
 2 files changed, 15 insertions(+)

commit b6f16f17c2171a9f7df2b9046d01002e3d652601
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Feb 3 20:10:05 2005 +0000

    Updated Spanish translation.
    
    2005-02-03  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |    4 +
 po/es.po     | 1847 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 973 insertions(+), 878 deletions(-)

commit 1a1829da54b2262c8db18090ca14f439813c4c06
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Feb 3 01:30:55 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 +++
 po/en_CA.po  | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------
 2 files changed, 92 insertions(+), 10 deletions(-)

commit ae7e92ad3737472ffa58d5f660c726ccdf6ded5f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 3 00:07:37 2005 +0000

    Revert the previous two commits. It looks like the fix in gnome-vfs to
    
    2005-02-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-info.c: (update_theme_index),
        (top_theme_dir_changed), (top_icon_theme_dir_changed),
        (real_add_top_theme_dir_monitor): Revert the previous
        two commits. It looks like the fix in gnome-vfs to make
        sure gnome_vfs_uri_extract_short_name() doesn't return
        NULL was what we really needed. Please retest to see if
        you can still reproduce the crashes in the theme-manager
        after this change and with the latest gnome-vfs from CVS.

 capplets/common/ChangeLog          | 11 +++++++++++
 capplets/common/gnome-theme-info.c |  6 ++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

commit 41e0025e214456449b360de282608364ed2b3ea2
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Feb 2 20:35:49 2005 +0000

    Updated Czech translation.
    
    2005-02-02  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 169 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 135 insertions(+), 38 deletions(-)

commit efe10e7d50174ce2b6517740394d416cadda20c0
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Wed Feb 2 19:10:52 2005 +0000

    Updated Korean translation.
    
    2005-02-03  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 645 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 267 insertions(+), 382 deletions(-)

commit 76dd3396d82bcafdfe31a7312e77644fa949f799
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Wed Feb 2 16:56:04 2005 +0000

    Updated Lithuanian translation.
    
    2005-02-02  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 ++
 po/lt.po     | 191 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 122 insertions(+), 73 deletions(-)

commit 2780a722c2bed9b5f01d1821fa153b6b3f7c1409
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Wed Feb 2 11:32:50 2005 +0000

    Updated Greek Translation.

 po/ChangeLog |   4 +
 po/el.po     | 265 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 178 insertions(+), 91 deletions(-)

commit f6d458c4e711de3747db78efffbe63e2f2c33032
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 2 11:13:54 2005 +0000

    Plug a leak. Closes bug #165312. Remove unused var
    
    2005-02-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * font-method.c: (fill_file_info): Plug a leak.
        Closes bug #165312.
        * thumbnailer.c: (main): Remove unused var

 vfs-methods/fontilus/ChangeLog     | 6 ++++++
 vfs-methods/fontilus/font-method.c | 1 +
 vfs-methods/fontilus/thumbnailer.c | 1 -
 3 files changed, 7 insertions(+), 1 deletion(-)

commit 316baedb90526df115b6d166a004aec9b12b0774
Author: Funda Wang <fwang@src.gnome.org>
Date:   Wed Feb 2 09:43:32 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 76 insertions(+), 17 deletions(-)

commit 8740debbb82e63156052c0b204cee99b02ee3fb0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 2 08:42:45 2005 +0000

    More bandaids for test purposes.
    
    2005-02-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-info.c: (update_theme_index),
        (real_add_top_theme_dir_monitor): More bandaids for test
        purposes.

 capplets/common/ChangeLog          | 6 ++++++
 capplets/common/gnome-theme-info.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit aef8ab24ab2b12c0af569a8bdbb79b248084d750
Author: Elijah Newren <newren@gmail.com>
Date:   Wed Feb 2 00:59:51 2005 +0000

    Don't forget to use 'cvs add' in order to add new files to the repository.
    
    2005-02-01  Elijah Newren  <newren@gmail.com>
    
        * gnome-settings-xmodmap.h:
        * gnome-settings-xmodmap.c:
    
        Don't forget to use 'cvs add' in order to add new files to the
        repository.  :)  (See #143487)

 gnome-settings-daemon/ChangeLog                |   8 +
 gnome-settings-daemon/gnome-settings-xmodmap.c | 364 +++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-xmodmap.h |  32 ++
 gnome-settings-daemon/modmap-dialog.glade      | 389 +++++++++++++++++++++++++
 4 files changed, 793 insertions(+)

commit 74b81bcaae69ca6014e9a20d24171b242fa28264
Author: Elijah Newren <newren@gmail.com>
Date:   Wed Feb 2 00:57:55 2005 +0000

    The lack of comprehensiveness of the .cvsignore files were making it hard
    
    2005-02-01  Elijah Newren  <newren@gmail.com>
    
        The lack of comprehensiveness of the .cvsignore files were making
        it hard to find the files missing from the commit (see bug 143487,
        comment 35).  This should fix that...  :)

 .cvsignore                                      | 2 ++
 capplets/accessibility/at-properties/.cvsignore | 1 +
 capplets/accessibility/keyboard/.cvsignore      | 1 +
 capplets/default-applications/.cvsignore        | 1 +
 capplets/display/.cvsignore                     | 1 +
 capplets/font/.cvsignore                        | 1 +
 capplets/keybindings/.cvsignore                 | 1 +
 capplets/mouse/.cvsignore                       | 1 +
 capplets/network/.cvsignore                     | 1 +
 capplets/sound/.cvsignore                       | 1 +
 capplets/theme-switcher/.cvsignore              | 1 +
 capplets/ui-properties/.cvsignore               | 1 +
 capplets/windows/.cvsignore                     | 3 ++-
 control-center/.cvsignore                       | 1 +
 14 files changed, 16 insertions(+), 1 deletion(-)

commit 1a6babf14b2f99a6ef3c300b4d2218d22dd0828c
Author: Elijah Newren <newren@src.gnome.org>
Date:   Wed Feb 2 00:30:55 2005 +0000

    The same dufus keeps forgetting to save the ChangeLog before committing...

 capplets/theme-switcher/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 72475688be2f78a0a33e742d503dbfb92e1ead30
Author: Elijah Newren <newren@gmail.com>
Date:   Wed Feb 2 00:30:04 2005 +0000

    Fix an infinite loop that was bringing single-CPU systems to their knees.
    
    2005-02-01  Elijah Newren  <newren@gmail.com>
    
        Fix an infinite loop that was bringing single-CPU systems to their
        knees.  Approved by Kjartan.  #160803
    
        * gnome-theme-manager.c: (window_settings_changed): keep track of
        the window manager theme last selected and just exit if we are
        already using the one we want

 capplets/theme-switcher/ChangeLog             |  9 +++++++++
 capplets/theme-switcher/gnome-theme-manager.c | 14 +++++++++++++-
 2 files changed, 22 insertions(+), 1 deletion(-)

commit 0b8267577e66b1fdac47bf66450c648feb7eb1ae
Author: David Sedeo <david@alderia.com>
Date:   Tue Feb 1 22:33:47 2005 +0000

    New install procedure: See bug #102216. Remove
    
    2005-02-01  David Sedeo <david@alderia.com>
    
        New install procedure: See bug #102216.
        * gnome-theme-details.c: Remove gnome_theme_installer_run_cb,
        gnome_icon_theme_installer_run_cb because gnome_theme_installer_run
        function now detects if it is a icon or theme.
        (gnome_theme_details_init): Remove install buttons in theme details
        window.
        * gnome-theme-installer.c (file_theme_type): Detects the type of the
        theme inspecting the content of the file.
        (transfer_done_targz_idle_cb, transfer_done_tarbz2_idle_cb): Install
        the theme in the correct temp dir.
        (transfer_done_cb): Detects if the file to install it is in the
        correct format and informs the user if it is not supported. Unpack the
        file (informs the user if there are not the correct utility in the
        system) and install the theme in the correct directory.
        (gnome_theme_installer_run): Remove parameter. Now we detect the file
        type.
        * gnome-theme-manager.c (gnome_meta_theme_installer_run_cb,
        gnome_theme_manager_drag_data_received_cb): Call
        gnome_theme_installer_run without the third parameter. Now we detect
        the file type.
        * theme-properties.glade: Removes install buttons in details window.

 capplets/theme-switcher/ChangeLog               |  24 ++
 capplets/theme-switcher/gnome-theme-details.c   |  21 --
 capplets/theme-switcher/gnome-theme-installer.c | 372 +++++++++++++++++++++---
 capplets/theme-switcher/gnome-theme-installer.h |   2 +-
 capplets/theme-switcher/gnome-theme-manager.c   |   4 +-
 capplets/theme-switcher/theme-properties.glade  | 268 ++++-------------
 6 files changed, 417 insertions(+), 274 deletions(-)

commit ffdb4ad80afa761d09d24fc801c97762708fed53
Author: Funda Wang <fwang@src.gnome.org>
Date:   Tue Feb 1 10:47:12 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 78 ++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 43 insertions(+), 35 deletions(-)

commit 6d87c7728f444c2577d3cba5717757762514214c
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Tue Feb 1 07:34:25 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 +++
 po/en_CA.po  | 99 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 51 insertions(+), 52 deletions(-)

commit 4ab7c201fda5763f22f118e46be068629b58a536
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Mon Jan 31 22:53:01 2005 +0000

    Updated Lithuanian translation.
    
    2005-02-01  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog | 266 ++++++++++++++++++++++++++++++-----------------------------
 po/lt.po     |  75 ++++++++++-------
 2 files changed, 178 insertions(+), 163 deletions(-)

commit 15e61684f581c5b5fa4fcb01e13722abdf9b2037
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Jan 31 18:36:11 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-01-31  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 +++
 po/sq.po     | 79 +++++++++++++++++++++---------------------------------------
 2 files changed, 31 insertions(+), 52 deletions(-)

commit 4b5b78ae76f925e225ce6ec34e400cd2daaf33df
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Mon Jan 31 15:36:21 2005 +0000

    forgot the NEWS

 NEWS | 4 ++++
 1 file changed, 4 insertions(+)

commit 0c21cb9f4556e38947d1fb82dd9133bf82765be4
Author: Shakti Sen <shprasad@novell.com>
Date:   Mon Jan 31 15:31:44 2005 +0000

    #143487 Calls the modmap load dialog. Loads the modmap files. Added newly
    
    2005-01-29  Shakti Sen  <shprasad@novell.com>
    
        #143487
        * gnome-settings-keyboard-xkb.c
        (gnome_settings_keyboard_xkb_chk_lcl_xmm): Calls the modmap load
        dialog.
        * gnome-settings-daemon.c (gnome_settings_daemon_new):
        Loads the modmap files.
        * gnome-settings-xmodmap.h: Added newly
        * gnome-settings-xmodmap.c: Also added newly which handles the modmap
        settings.
        * modmap-dialog.glade: Added newly.

 gnome-settings-daemon/ChangeLog                    | 14 ++++
 gnome-settings-daemon/Makefile.am                  |  7 +-
 gnome-settings-daemon/gnome-settings-daemon.c      |  2 +
 .../gnome-settings-keyboard-xkb.c                  | 96 +++++++++++++---------
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 14 ++++
 5 files changed, 93 insertions(+), 40 deletions(-)

commit 0bfbf3610a43d7e49461a3933a849e505e1a1775
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Jan 31 07:46:00 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-01-31  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |  11 +++++--
 po/bg.po     | 104 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 56 insertions(+), 59 deletions(-)

commit d8c5c73dc665609de959a003ca0407fce374de86
Author: David Lodge <dave@cirt.net>
Date:   Sun Jan 30 22:03:51 2005 +0000

    Updated British translation.
    
    2005-01-30  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 744 +++++++++++++++++++----------------------------------------
 2 files changed, 240 insertions(+), 508 deletions(-)

commit d419c3971abdd07bf2c47eafbef34e0c7f5fe1ea
Author: Martin Wehner <martin.wehner@epost.de>
Date:   Sat Jan 29 22:12:24 2005 +0000

    Revert my last commit.
    
    2005-01-29  Martin Wehner  <martin.wehner@epost.de>
    
        Revert my last commit.

 libbackground/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c48c7c711ec708c306905155e5d8a07161381c72
Author: Martin Wehner <mwehner@src.gnome.org>
Date:   Sat Jan 29 21:32:25 2005 +0000

    2005-01-29  Martin Wehner  <martin.wehner@epost.de>>
    
        * libbackground/Makefile.am:
        Use ${datadir} instead of ${prefix}/share for GNOME_ICONDIR.
        Fixes bug #95008.
    
        Patch from Christian Neumair <chris@gnome-de.org>

 libbackground/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b314aeef762fa7e9e31beba9bb4e45142304a930
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sat Jan 29 16:11:00 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-01-29  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 138 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 82 insertions(+), 60 deletions(-)

commit a965c8ff8bd7881f0b43ef2d70f271d8d13c0c79
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:   Fri Jan 28 05:43:36 2005 +0000

    Updated Thai translation.
    
    2005-01-27  Theppitak Karoonboonyanan  <thep@linux.thai.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |   4 ++
 po/th.po     | 188 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 94 insertions(+), 98 deletions(-)

commit 9b326c7ace479284c41bfdc18058e819b78cd8b2
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Jan 27 22:35:46 2005 +0000

    changing default value of 'handleIndicators' to false

 ChangeLog                                                 | 6 ++++++
 schemas/desktop_gnome_peripherals_keyboard_xkb.schemas.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 454c13566a33c4992751eefac8e8eaeba87318ed
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jan 27 03:14:14 2005 +0000

    Try to fix bug #149236 by not freeing stuff already being free'd by the
    
    2005-01-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-info.c: (top_theme_dir_changed),
        (top_icon_theme_dir_changed), (real_add_top_theme_dir_monitor):
        Try to fix bug #149236 by not freeing stuff already being free'd
        by the hash destroy_func. It will leak a bit more, but that can
        be fixed later. Please test this and report success in the report
        mentioned above.

 capplets/common/ChangeLog          | 9 +++++++++
 capplets/common/gnome-theme-info.c | 4 +---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 7d324e378a8343016550ff5535184fefb1049925
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 26 19:49:17 2005 +0000

    skip lines that are finished, but keep processing up coming lines. This
    
    
    2005-01-26  Jody Goldberg <jody@gnome.org>
    
        * control-center.c (relayout_canvas) : skip lines that are finished,
          but keep processing up coming lines.  This should make alignment
          work again.  While we're here add a bit more padding at the bottom.

 control-center/ChangeLog             |  6 ++++++
 control-center/control-center.c      | 31 ++++++++++++++++++-------------
 control-center/gnomecc.desktop.in.in |  4 +++-
 3 files changed, 27 insertions(+), 14 deletions(-)

commit 749c2a373ec910914685aba87854a083141dbc51
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Tue Jan 25 11:08:40 2005 +0000

    Updated Russian translation

 po/ChangeLog |   4 ++
 po/ru.po     | 175 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 76 insertions(+), 103 deletions(-)

commit 27a3666a5c71b714d5b4118ad9f2e77e8a3250c4
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jan 23 20:58:09 2005 +0000

    Added missing file. Removed nonexisting entries. Updated Swedish
    
    2005-01-23  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing file.
        * POTFILES.skip: Removed nonexisting entries.
        * sv.po: Updated Swedish translation.

 po/ChangeLog     |   6 +++
 po/POTFILES.in   |   1 +
 po/POTFILES.skip |  17 --------
 po/sv.po         | 129 ++++++++++++++++++++++++++++++++-----------------------
 4 files changed, 83 insertions(+), 70 deletions(-)

commit c4caf10e2007801d5a2be8955dd99ec442ba94f4
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Sun Jan 23 18:35:29 2005 +0000

    Updated Italian translation.

 po/ChangeLog |   5 +
 po/it.po     | 658 ++++++++++++++++++++---------------------------------------
 2 files changed, 231 insertions(+), 432 deletions(-)

commit a47b8ad764bb7db18a490661dbaeaa3a651e4935
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Jan 22 12:21:42 2005 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 436dc5e443242debe1c81a321f12d76e7fc7fe30
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Jan 22 09:14:02 2005 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 +
 po/zh_CN.po  | 289 +++++++++++++++++++++++------------------------------------
 2 files changed, 118 insertions(+), 175 deletions(-)

commit 9f05d5652d76b6b85b4320f788b96b53baf9b2df
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Fri Jan 21 16:33:01 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-01-21  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog | 4 ++++
 po/et.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 9e22dd2ff33ca3035b605ddc7789376af423b912
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Jan 21 13:48:36 2005 +0000

    Update...can you tell that I'm bored now?
    
    2005-01-21  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nn.po: Update...can you tell that I'm bored now?
    
    2005-01-21  Žygimantas Beručka  <uid0@akl.lt>

 po/ChangeLog |   4 +
 po/nn.po     | 468 +++++++++++++++++------------------------------------------
 2 files changed, 136 insertions(+), 336 deletions(-)

commit 7d067fc465bf227de4d1d281e3f40ef1aabbb65b
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Fri Jan 21 07:26:04 2005 +0000

    Updated Lithuanian translation.
    
    2005-01-21  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |  4 +++
 po/lt.po     | 86 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 49 insertions(+), 41 deletions(-)

commit 2f59c47e1a519fef01143b2a27cfa97841621f98
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu Jan 20 19:30:23 2005 +0000

    Updated Czech translation.
    
    2005-01-20  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 49 ++++++++++++++++++++++++++-----------------------
 2 files changed, 30 insertions(+), 23 deletions(-)

commit 88b354cef2389957c04cc7f1097f78f369785dba
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Jan 20 15:02:12 2005 +0000

    Updated Spanish translation.
    
    2005-01-20  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 49 ++++++++++++++++++++++++++-----------------------
 2 files changed, 30 insertions(+), 23 deletions(-)

commit e467bd2e08958f20db1829dd3a032987cff11586
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Thu Jan 20 14:39:33 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-01-20  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |  4 ++++
 po/et.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit c8aede029c92f943a4732676c4d5cfd16a90ab52
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jan 19 23:16:13 2005 +0000

    fixing #164090, big UI change

 capplets/keyboard/ChangeLog                        |   7 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   5 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 503 ++++++++++-----------
 capplets/keyboard/gnome-keyboard-properties.glade  | 208 +--------
 4 files changed, 252 insertions(+), 471 deletions(-)

commit 1abaf69ac11215f1f163b650dff5020042185bcd
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   Wed Jan 19 22:44:47 2005 +0000

    Updated German translation.
    
    2005-01-19  Frank Arnold  <farnold@cvs.gnome.org>
    
        * de.po: Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 268 +++++++++++++++++++++++++----------------------------------
 2 files changed, 119 insertions(+), 153 deletions(-)

commit 2ed1c52efb85fee938ab6fcf70cf7564bd0c6588
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 19 14:40:51 2005 +0000

    Update Update
    
    2005-01-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |  5 ++++
 po/nb.po     | 74 ++++++++++++++++++++++++++++++++----------------------------
 po/no.po     | 74 ++++++++++++++++++++++++++++++++----------------------------
 3 files changed, 85 insertions(+), 68 deletions(-)

commit 48928f77c7e54c9b086e61921772ef949893621c
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Tue Jan 18 17:17:46 2005 +0000

    Translation updated by Ivar Smolin.
    
    2005-01-18  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Ivar Smolin.

 po/ChangeLog |   4 +
 po/et.po     | 284 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 120 insertions(+), 168 deletions(-)

commit f94c33643d59f998beba663475555afac4cbde2e
Author: Priit Laes <plaes@cvs.gnome.org>
Date:   Tue Jan 18 13:23:08 2005 +0000

    Translation updated by Tõivo Leedjärv.
    
    2005-01-18  Priit Laes  <plaes@cvs.gnome.org>
    
        * et.po: Translation updated by Tõivo Leedjärv.

 po/ChangeLog |    4 +
 po/et.po     | 2017 +++++++++++++++++-----------------------------------------
 2 files changed, 586 insertions(+), 1435 deletions(-)

commit b335f80c13ef0c7d82d15b9a76eb7131bd9b44cd
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Mon Jan 17 20:59:01 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 26 +++++++++++++++-----------
 2 files changed, 19 insertions(+), 11 deletions(-)

commit 9df5517cf31cf0bbd7de4082d376dec75efb2e1a
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Jan 17 09:36:04 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-01-17  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 178 +++++++++++++++--------------------------------------------
 2 files changed, 50 insertions(+), 132 deletions(-)

commit 841f753f2f80b3e47f4ec6f6c6640a1264ef6d5a
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Jan 16 15:58:44 2005 +0000

    Updated Czech translation.
    
    2005-01-16  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 32 +++++++++++++++++---------------
 2 files changed, 21 insertions(+), 15 deletions(-)

commit 43cc057346c46305d01247fe5ba7938d6e98d39e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jan 16 14:54:13 2005 +0000

    fixed #159685

 capplets/keyboard/ChangeLog                       |  4 ++++
 capplets/keyboard/gnome-keyboard-properties.glade | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 3a7bfdd0f8ba631e543a7e391333c0ce0a84be2b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jan 15 22:02:49 2005 +0000

    Add *.desktop.in files.
    
    2005-01-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.skip: Add *.desktop.in files.

 po/ChangeLog     |  4 ++++
 po/POTFILES.skip | 17 +++++++++++++++++
 2 files changed, 21 insertions(+)

commit 3d44ca569671ec246c714b6ab1cb1be1de16a306
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 15 18:50:24 2005 +0000

    a bit of optimization

 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 30 ++++++++++++----------
 1 file changed, 16 insertions(+), 14 deletions(-)

commit c49aedff2f50bba10999a7834ab1584377f2ba68
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 15 18:46:27 2005 +0000

    fixing the current model selection

 capplets/keyboard/ChangeLog                        |  5 ++++
 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 31 +++++++++++++++++-----
 2 files changed, 29 insertions(+), 7 deletions(-)

commit 9f3b6cd14c66e142dc144ebb91f260c55e469e68
Author: Pawan Chitrakar <pawan@nplinux.org>
Date:   Sat Jan 15 05:22:54 2005 +0000

    Update Nepali Translation
    
    2005-01-15  Pawan Chitrakar  <pawan@nplinux.org>
    
        * ne.po: Update Nepali Translation

 po/ChangeLog |    4 +
 po/ne.po     | 1238 ++++++++++++++++++----------------------------------------
 2 files changed, 383 insertions(+), 859 deletions(-)

commit aa0a05d67c6a195e2660ddf6b07e0af0ffc72bd5
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Jan 15 01:44:08 2005 +0000

    Updated Spanish translation.
    
    2005-01-15  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +++
 po/es.po     | 114 +++++++++++++++++++++++------------------------------------
 2 files changed, 49 insertions(+), 69 deletions(-)

commit 64961b9dfd5c5b115bc8c5d0d6f202f8fe5bbc6a
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Fri Jan 14 16:25:11 2005 +0000

    2005-01-15 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |  4 ++++
 po/ja.po     | 67 +++++++++++++++++++++++-------------------------------------
 2 files changed, 30 insertions(+), 41 deletions(-)

commit 080447df245669ae5732ef72748e438d7e975671
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Fri Jan 14 10:44:57 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-01-14  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 56 +++++++++++++++++++-------------------------------------
 2 files changed, 23 insertions(+), 37 deletions(-)

commit 64dfcb4fe4e87ef89b23b5a723cab649b3aed425
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Jan 13 06:32:27 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 24 ++++++++++++++----------
 2 files changed, 18 insertions(+), 10 deletions(-)

commit e5e68c264770b6d25271775baa06669b92f3f1e8
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jan 13 01:08:54 2005 +0000

    edit the keybinding when "enter" is pressed (Closes: #127992).
    
    2005-01-13  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-keybinding-properties.c: (start_editing_kb_cb),
        (setup_dialog): edit the keybinding when "enter" is pressed
        (Closes: #127992).

 capplets/keybindings/ChangeLog                     |  6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 18 ++++++++++++++++++
 2 files changed, 24 insertions(+)

commit 6e29105c35b90547caaee953af8dfd75ef88a446
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jan 13 00:56:07 2005 +0000

    patch from Christian - Manny Calavera - Neumair <chris@gnome-de.org>, add
    
    2005-01-13  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-ui-properties.c: (setup_dialog):
            * gnome-ui-properties.glade:
            patch from Christian - Manny Calavera - Neumair <chris@gnome-de.org>,
            add an option in the UI to activate menus accelators changes
            (Closes: #148013).

 capplets/ui-properties/ChangeLog                 |  8 ++++
 capplets/ui-properties/gnome-ui-properties.c     |  3 ++
 capplets/ui-properties/gnome-ui-properties.glade | 59 ++++++++++++++++++++----
 3 files changed, 61 insertions(+), 9 deletions(-)

commit bb703355357e64882221edaa062c8e2439c13fc9
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Wed Jan 12 21:09:29 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 28 +++++++---------------------
 2 files changed, 11 insertions(+), 21 deletions(-)

commit 2d481e4827d7b2d28cf861d714e3dcee8dc56602
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jan 12 17:43:50 2005 +0000

    post release bump to 2.9.5.
    
    2004-12-20  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: post release bump to 2.9.5.

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 3d3e0a8a738085bc1135f2c6dad703bc1e608516
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jan 12 15:15:29 2005 +0000

    updated

 po/af.po      |  952 ++++++++++++++++++++++++++++----------------
 po/am.po      |  945 ++++++++++++++++++++++++++-----------------
 po/ar.po      |  931 ++++++++++++++++++++++++++++---------------
 po/az.po      |  935 +++++++++++++++++++++++++++----------------
 po/be.po      |  976 ++++++++++++++++++++++++++++-----------------
 po/bg.po      |   80 ++--
 po/bn.po      |  935 +++++++++++++++++++++++++++----------------
 po/bs.po      |  942 +++++++++++++++++++++++++++----------------
 po/ca.po      |  988 ++++++++++++++++++++++++++++-----------------
 po/cs.po      |  155 ++++----
 po/cy.po      |  957 +++++++++++++++++++++++++++-----------------
 po/da.po      |  950 ++++++++++++++++++++++++++-----------------
 po/de.po      |  908 +++++++++++++++++++++++++++---------------
 po/el.po      |  285 +++++++------
 po/en_CA.po   |  148 +++----
 po/en_GB.po   |  901 +++++++++++++++++++++++++++--------------
 po/es.po      |  233 ++++++-----
 po/et.po      |  971 +++++++++++++++++++++++++++-----------------
 po/eu.po      |  953 ++++++++++++++++++++++++++++----------------
 po/fa.po      |  964 +++++++++++++++++++++++++++-----------------
 po/fi.po      |  950 +++++++++++++++++++++++++++----------------
 po/fr.po      |  937 +++++++++++++++++++++++++++----------------
 po/ga.po      |  927 ++++++++++++++++++++++++++----------------
 po/gl.po      |  985 +++++++++++++++++++++++++++------------------
 po/gu.po      |  936 ++++++++++++++++++++++++++++---------------
 po/he.po      |  966 +++++++++++++++++++++++++++-----------------
 po/hi.po      |  951 ++++++++++++++++++++++++++++----------------
 po/hr.po      |  945 +++++++++++++++++++++++++++----------------
 po/hu.po      |  935 +++++++++++++++++++++++++++----------------
 po/id.po      |  925 +++++++++++++++++++++++++++---------------
 po/is.po      |  946 +++++++++++++++++++++++++++----------------
 po/it.po      |  933 ++++++++++++++++++++++++++++---------------
 po/ja.po      |  173 ++++----
 po/ko.po      |  931 ++++++++++++++++++++++++++++---------------
 po/lt.po      |  154 +++----
 po/lv.po      |  978 ++++++++++++++++++++++++++++-----------------
 po/mk.po      |  252 +++++++-----
 po/ml.po      |  968 +++++++++++++++++++++++++++-----------------
 po/mn.po      |  954 ++++++++++++++++++++++++++++----------------
 po/ms.po      |  951 ++++++++++++++++++++++++++++----------------
 po/nb.po      |   67 ++--
 po/ne.po      | 1238 +++++++++++++++++++++++++++++++++++++++------------------
 po/nl.po      |  946 +++++++++++++++++++++++++++----------------
 po/nn.po      |  937 +++++++++++++++++++++++++++----------------
 po/no.po      |   67 ++--
 po/nso.po     |  933 ++++++++++++++++++++++++++++---------------
 po/pa.po      |  931 ++++++++++++++++++++++++++++---------------
 po/pl.po      |  945 +++++++++++++++++++++++++++----------------
 po/pt.po      |  957 ++++++++++++++++++++++++++++----------------
 po/pt_BR.po   |  936 +++++++++++++++++++++++++++----------------
 po/ro.po      |  938 +++++++++++++++++++++++++++----------------
 po/ru.po      |  289 ++++++++------
 po/sk.po      |  947 +++++++++++++++++++++++++++----------------
 po/sl.po      |  960 +++++++++++++++++++++++++++-----------------
 po/sq.po      |  198 +++++----
 po/sr.po      |  957 ++++++++++++++++++++++++++++----------------
 po/sr@Latn.po |  957 ++++++++++++++++++++++++++++----------------
 po/sv.po      |  237 +++++------
 po/ta.po      |  931 ++++++++++++++++++++++++++++---------------
 po/th.po      |  954 ++++++++++++++++++++++++++++----------------
 po/tr.po      |  937 +++++++++++++++++++++++++++----------------
 po/uk.po      |  939 +++++++++++++++++++++++++++----------------
 po/vi.po      |  965 +++++++++++++++++++++++++++-----------------
 po/wa.po      |  977 ++++++++++++++++++++++++++++-----------------
 po/zh_CN.po   |  901 +++++++++++++++++++++++++++--------------
 po/zh_TW.po   |  972 +++++++++++++++++++++++++++-----------------
 po/zu.po      |  937 +++++++++++++++++++++++++++----------------
 67 files changed, 34139 insertions(+), 19620 deletions(-)

commit e088a753108781d14d9cbe03ba2ec67144da0a27
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jan 12 14:50:44 2005 +0000

    Version 2.9.4.
    
    2004-12-20  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: Version 2.9.4.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 3bcc2e4f42e2e137e35c12f91fea865ac5c0a9cc
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jan 12 14:49:11 2005 +0000

    translation credits

 NEWS | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit f1ee5fac3461cc730e3e121728bfa7b80ce2ef5f
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jan 12 14:29:47 2005 +0000

    updated the NEWS

 NEWS | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit fab221341918f4b3892a5b7de48301154159ea81
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jan 12 01:45:56 2005 +0000

    updated

 NEWS | 6 ++++++
 1 file changed, 6 insertions(+)

commit 3aeea5bd841e65db3831b1bbc23ff26a57392dd0
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jan 12 01:30:23 2005 +0000

    patch from Adriano Del Vigna <adriano.delvigna@freedows.com> to add a
    
    2005-01-11  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-network-preferences.c: (create_listmodel),
        (populate_listmodel), (config_treeview), (cb_add_url),
        (cb_remove_url), (cb_dialog_response), (setup_dialog):
        * gnome-network-preferences.glade:
        patch from Adriano Del Vigna <adriano.delvigna@freedows.com> to add
        a proxy exclusion list configuration (Closes: #147666).

 capplets/network/ChangeLog                       |    9 +
 capplets/network/gnome-network-preferences.c     |  115 ++-
 capplets/network/gnome-network-preferences.glade | 1162 +++++++++++++---------
 3 files changed, 803 insertions(+), 483 deletions(-)

commit bf7d49e37853f66607903aa187667c147a1f8c34
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jan 11 23:48:10 2005 +0000

    patch from John Spray <jcs116@york.ac.uk> to use the style described in
    
    2005-01-12  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-settings-accessibility-keyboard.c: (warning_dialog_post):
        patch from John Spray <jcs116@york.ac.uk> to use the style described
        in the HIG for the titles (Closes: #163653).

 gnome-settings-daemon/ChangeLog                               | 6 ++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit d34d345d0d85ab6ef384b52ec571cb2944e7fb34
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 11 00:57:34 2005 +0000

    Update Update
    
    2005-01-11  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |  5 ++++
 po/nb.po     | 84 +++++++++++++++++++++++++++++++-----------------------------
 po/no.po     | 84 +++++++++++++++++++++++++++++++-----------------------------
 3 files changed, 91 insertions(+), 82 deletions(-)

commit 9042303784d452d4a7127916c486d9efedda8c0a
Author: Rodney Dawes <dobey@novell.com>
Date:   Mon Jan 10 15:46:00 2005 +0000

    Fix compile warning for syslangs declaration Wrap g_get_language_names in
    
    2005-01-10  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml):
        Fix compile warning for syslangs declaration
        Wrap g_get_language_names in #if GLIB_CHECK_VERSION as it is 2.6 API

 capplets/background/ChangeLog      | 6 ++++++
 capplets/background/gnome-wp-xml.c | 4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 704131e28d3cce94ecf659d5e20698550fd65c72
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Jan 10 13:19:42 2005 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-01-10  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |    5 +
 po/bg.po     | 1012 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 560 insertions(+), 457 deletions(-)

commit 71913620ae02f381a861da551b5bb3b59ad78a4a
Author: Pawan Chitrakar <pawan@nplinux.org>
Date:   Mon Jan 10 06:30:36 2005 +0000

    Added Nepali Translation
    
    2005-01-10  Pawan Chitrakar  <pawan@nplinux.org>
    
        * ne.po: Added Nepali Translation

 po/ne.po | 3067 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3067 insertions(+)

commit d12ad65391f04c03019eb90799cda37581a0b873
Author: Pawan Chitrakar <pawan@nplinux.org>
Date:   Mon Jan 10 06:27:30 2005 +0000

    Added nepali translation
    
    2005-01-10  Pawan Chitrakar  <pawan@nplinux.org>
    
        * ne.po: Added nepali translation
    
        * configure.in: Added ne "nepali" in ALL_LINGUAS
    
    a

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 po/ChangeLog | 4 ++++
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 12c59c7f09022e066bb0a71dac1eb5cacd349d6f
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jan 9 23:57:36 2005 +0000

    Add new callback routine for when the preview widget in the file chooser
    
    2005-01-09  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.[ch] (gnome_wp_update_preview): Add new callback
        routine for when the preview widget in the file chooser needs an update
        (wallpaper_properties_init): Set the preview widget in the file chooser
        to a GtkImage object and connect to the update-preview signal for when
        the selected file changes
        - Based on patch from Sebastien Bacher <seb128@debian.org>
    
        Fixes #139714

 capplets/background/ChangeLog          | 11 +++++++++
 capplets/background/gnome-wp-capplet.c | 41 ++++++++++++++++++++++++++++++++++
 capplets/background/gnome-wp-capplet.h |  1 +
 3 files changed, 53 insertions(+)

commit b27b907b321b6226edbc93b64aec10304c61afcc
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jan 9 04:15:56 2005 +0000

    Preload the directory rather than nothing when adding directories for
    
    2005-01-08  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Preload the directory
        rather than nothing when adding directories for gconf notification

 capplets/background/ChangeLog          | 5 +++++
 capplets/background/gnome-wp-capplet.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit bdd4d0142e4d8c5b252877bd22c738c5e2e88877
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Jan 9 03:53:35 2005 +0000

    Add %F to Exec command line
    
    2005-01-08  Rodney Dawes  <dobey@novell.com>
    
        * background.desktop.in.in: Add %F to Exec command line
    
        * gnome-wp-capplet.[ch] (gnome_wp_remove_wp): Check that the tree path
        is not NULL before removing items from the list store
        (gnome_wp_load_stuffs): Don't duplicate the code from
        gnome_wp_add_image/gnome_wp_capplet_scroll_to_item  here
        Load any images we were passed on the command line, and free the
        GSList that they were stored in after doing so
        (gnome_wp_file_changed): Clean up to just call gnome_wp_add_image and
        gnome_wp_capplet_scroll_to_item rather than duplicating the code
        (wallpaper_properties_init): Take a poptContext argument now
        Parse the poptContext into a GSList for loading the images from
        (main): Use a clearer variable name for the GnomeProgram object
        Get the poptContext from the GnomeProgram object and pass it through
        to wallpaper_properties_init
    
        Fixes #120720

 capplets/background/ChangeLog                | 20 ++++++++
 capplets/background/background.desktop.in.in |  2 +-
 capplets/background/gnome-wp-capplet.c       | 68 +++++++++++++++-------------
 capplets/background/gnome-wp-capplet.h       |  3 ++
 capplets/background/gnome-wp-item.c          |  4 +-
 5 files changed, 64 insertions(+), 33 deletions(-)

commit 35037d76eca3d220ba9749f83d7c3d07362a9bd5
Author: Thomas Wood <thos@gnome.org>
Date:   Sun Jan 9 01:21:07 2005 +0000

    Load translated XML description elements if available
    
    2005-01-08  Thomas Wood  <thos@gnome.org>
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml): Load translated XML
        description elements if available
    
        Fixes #160700

 capplets/background/ChangeLog      |  7 +++++++
 capplets/background/gnome-wp-xml.c | 19 ++++++++++++++++++-
 2 files changed, 25 insertions(+), 1 deletion(-)

commit bbf89d121b7ba4bacf655fc00e3bfd938f956454
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 8 23:00:52 2005 +0000

    fixing #163299

 gnome-settings-daemon/ChangeLog                     |  4 ++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 13 +++++++++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

commit 6b0d6cac30a70e50c2ed55fb0bc67ca577f591e9
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 8 21:23:15 2005 +0000

    a bit of more optimization

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d52a911b8e544d3cf81999255b28c343d43db62b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 8 21:04:33 2005 +0000

    update save/load function names

 .../gnome-settings-keyboard-xkb.c                  | 109 +++++++++------------
 1 file changed, 49 insertions(+), 60 deletions(-)

commit d4d9ff7c1f810f737ba4597670c1fe79aa894bac
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 8 21:01:03 2005 +0000

    update function names

 capplets/keyboard/gnome-keyboard-properties-xkb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit af6e3298716f9433a46337381533cc437d6b0f74
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Jan 8 20:47:52 2005 +0000

    Fix the leaks in the scaling type option menu creation correctly
    
    2005-01-08  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Fix the leaks
        in the scaling type option menu creation correctly

 capplets/background/ChangeLog          | 7 ++++++-
 capplets/background/gnome-wp-capplet.c | 5 ++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

commit a05153311a6fd9a40c3848b692d467532e1ac12c
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Sat Jan 8 18:49:10 2005 +0000

    update

 po/mk.po | 967 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 565 insertions(+), 402 deletions(-)

commit 67c8ce4925257cbc018a0eb98bef2cf13a020283
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sat Jan 8 15:42:40 2005 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2005-01-08  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 929 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 568 insertions(+), 365 deletions(-)

commit ad89ead4da482e92f0d15e973df76b35e5aded99
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sat Jan 8 14:47:57 2005 +0000

    add evolution-2.0 and evolution-2.2 to the mailers list (Closes: #163334).
    
    2005-01-08  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-default-applications-properties-structs.c: add evolution-2.0
            and evolution-2.2 to the mailers list (Closes: #163334).

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../gnome-default-applications-properties-structs.c                  | 2 ++
 2 files changed, 7 insertions(+)

commit b30091f9abea68f74ef353a70d7691e0217aa40d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 8 00:13:28 2005 +0000

    sorry for committing debug version

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fd1a0c770e85f339bded46165b2534b3f0022bd4
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Jan 7 23:18:19 2005 +0000

    fixed the mnemonics for some widgets (Closes: #163227).
    
    2005-01-08  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-keyboard-properties.glade: fixed the mnemonics for some widgets
            (Closes: #163227).

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 3 +++
 2 files changed, 8 insertions(+)

commit 6c18c3ea3b001b50cc8a81b9ec0b74ccbde418ea
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Jan 7 21:30:21 2005 +0000

    Updated Spanish translation.
    
    2005-01-07  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 94 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 52 insertions(+), 46 deletions(-)

commit 52b43b5d1c17744b83c0c53e3804b8d77a35b330
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Jan 7 13:24:56 2005 +0000

    add Mod2Mask and Mod4Mask to the modifiers, fix the issue with Numlock
    
    2005-01-07  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-settings-mouse.c: (set_locate_pointer): add Mod2Mask and
        Mod4Mask to the modifiers, fix the issue with Numlock activated
        (Closes: #149383).

 gnome-settings-daemon/ChangeLog              |  6 ++++++
 gnome-settings-daemon/gnome-settings-mouse.c | 22 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

commit 9b8a663c05b585fb3768f82e4d0b7fce235cf87c
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Jan 7 03:48:15 2005 +0000

    a bit of optimization - no more redundant xkb reconfigurations

 gnome-settings-daemon/ChangeLog                    |  5 +++
 .../gnome-settings-keyboard-xkb.c                  | 41 +++++++++++++++-------
 2 files changed, 33 insertions(+), 13 deletions(-)

commit 2c817e4d7af62a8cd475134fca21cc55b7e7453b
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Thu Jan 6 21:47:21 2005 +0000

    Updated Lithuanian translation.
    
    2005-01-06  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 ++
 po/lt.po     | 125 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 69 insertions(+), 60 deletions(-)

commit 49e7ca15c54b93d987a0d47708e65a82fd38298d
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu Jan 6 19:53:16 2005 +0000

    Updated Czech translation.
    
    2005-01-06  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +++
 po/cs.po     | 101 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 54 insertions(+), 51 deletions(-)

commit dc10539a5f8ae8c6f7c1393da6545a9910af3831
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Jan 6 11:54:55 2005 +0000

    check the permission of the .icons/.themes dir instead of the files in it
    
    2005-01-06  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-theme-installer.c: (install_dialog_response): check the
            permission of the .icons/.themes dir instead of the files in it
            (Closes: #161649).

 capplets/theme-switcher/ChangeLog               | 6 ++++++
 capplets/theme-switcher/gnome-theme-installer.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit b6650c0f8cc78d51a03366528eaecc477d14bc4c
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Jan 6 03:44:52 2005 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 76 ++++++++++++++++++++++++++++--------------------------------
 2 files changed, 40 insertions(+), 40 deletions(-)

commit 495745ad408667f95f07d5a94f0cfae566c0e808
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Thu Jan 6 01:56:27 2005 +0000

    HIG corrections. Use HIG capitalization for buttons: "Reset to defaults"
    
    
    2005-01-05  Dennis Cranston <dennis_cranston@yahoo.com>
    
        * gnome-keyboard-properties.glade:  HIG corrections.
        Use HIG capitalization for buttons: "Reset to defaults" ->
        "Reset To Defaults".  Use HIG capitalization for window titles:
        "Choose a keyboard model" -> "Choose A Keyboard Model" &
        "Choose a layout" -> "Choose A Layout".  Add a missing ":"
        from "Model" -> "Model:". Remove the dialog separators.
        Use HIG widget padding to match the other capplet dialogs.

 capplets/keyboard/ChangeLog                       | 10 ++++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 28 ++++++++++++-----------
 2 files changed, 25 insertions(+), 13 deletions(-)

commit 0c91ba5a962ee5062fe214a201e36505f8f4fca1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jan 6 00:02:04 2005 +0000

    Update Update
    
    2005-01-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |  5 ++++
 po/nb.po     | 96 ++++++++++++++++++++++++++++++++----------------------------
 po/no.po     | 96 ++++++++++++++++++++++++++++++++----------------------------
 3 files changed, 107 insertions(+), 90 deletions(-)

commit e0a7c3ebf3828088cb1dd54b1bd1f38c4dec40cf
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Jan 5 20:46:53 2005 +0000

    fixed a typo in the label-for for the "pixels/second" label (Part of
    
    2005-01-05  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-accessibility-keyboard-properties.glade: fixed a typo in the
            label-for for the "pixels/second" label (Part of #162368).

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../keyboard/gnome-accessibility-keyboard-properties.glade           | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit efba053cd1fffded67acbf1d2fa8c58f2be9b84e
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Jan 5 10:50:29 2005 +0000

    updated

 NEWS | 2 ++
 1 file changed, 2 insertions(+)

commit e05cbe044e43c66b49f014baf666142f315cd839
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Wed Jan 5 03:03:10 2005 +0000

    use g_spawn_sync() and g_spawn_async() to define the working directory.
    
    
    2005-01-04  Dennis Cranston <dennis_cranston@yahoo.com>
    
        * gnome-settings-multimedia-keys.c: (execute):  use g_spawn_sync()
        and g_spawn_async() to define the working directory.

 gnome-settings-daemon/ChangeLog                    |  5 +++++
 .../gnome-settings-multimedia-keys.c               | 24 ++++++++++++++++------
 2 files changed, 23 insertions(+), 6 deletions(-)

commit 9946689e3df21647b3a260cf817ca0f25279e398
Author: Shakti Sen <shprasad@novell.com>
Date:   Tue Jan 4 18:39:00 2005 +0000

    Defined PREFIX to <prefix> bug #153203
    
    2005-01-04  Shakti Sen <shprasad@novell.com>
    
            * configure.in: Defined PREFIX to <prefix>
            bug #153203
    
    2005-01-04  Shakti Sen <shprasad@novell.com>
    
            * theme-thumbnailer.c (main): Added the full path of the theme
            so that it will create the thumbnail.
            Fixes bug #153203

 ChangeLog                              |  5 +++++
 NEWS                                   |  1 +
 configure.in                           |  1 +
 vfs-methods/themus/ChangeLog           |  6 ++++++
 vfs-methods/themus/theme-thumbnailer.c | 25 +++++++++++++++++++++----
 5 files changed, 34 insertions(+), 4 deletions(-)

commit bd99e7e01bd826562e113ce59b5ff81a6f163168
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Jan 4 09:41:21 2005 +0000

    fixed a grammar error (Closes: #131521)
    
    2005-01-04  Sebastien Bacher  <seb128@debian.org>
    
            * gnome-mouse-properties.glade: fixed a grammar error (Closes: #131521)

 capplets/mouse/ChangeLog                    | 4 ++++
 capplets/mouse/gnome-mouse-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit dbb03af7628e15d38ebda869ddc196b365667b05
Author: Dan Winship <danw@novell.com>
Date:   Mon Jan 3 20:50:06 2005 +0000

    Remove redundant check for ngettext, since AM_GLIB_GNU_GETTEXT already
    
    2005-01-03  Dan Winship  <danw@novell.com>
    
        * configure.in: Remove redundant check for ngettext, since
        AM_GLIB_GNU_GETTEXT already checks for it (in both libc and
        libintl)._
    
    2005-01-03  Dan Winship  <danw@novell.com>
    
        * gswitchit_util.c (GSwitchItLogAppender): Cast time_t to long to
        match the printf format.

 ChangeLog    | 6 ++++++
 configure.in | 5 -----
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 95e2f9002efafd110f73d1f78024d7cc1036ee76
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Jan 3 18:35:18 2005 +0000

    updated the NEWS

 NEWS | 6 ++++++
 1 file changed, 6 insertions(+)

commit 0b31b594da792376cacab6998a4a2ad7182a1fba
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 3 18:08:23 2005 +0000

    use a temporary filename to not overwrite existant files in ~/.themes
    
    2005-01-03  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-theme-installer.c: (install_dialog_response): use a temporary
        filename to not overwrite existant files in ~/.themes (Closes: #97180).

 capplets/theme-switcher/ChangeLog               |  5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 21 +++++++++++++++++++++
 2 files changed, 26 insertions(+)

commit 8a5ffe6444434ee2c384e23eb51cdd6508f23d7f
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Mon Jan 3 14:00:49 2005 +0000

    2005-01-03 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 691 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 464 insertions(+), 231 deletions(-)

commit 9fb4bff76b2d8a8e7187e6389e489f71dc652681
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Jan 3 10:39:59 2005 +0000

    patch from Marco Pesenti Gritti <marco@gnome.org> to fix the build out of
    
    2005-01-03  Sebastien Bacher  <seb128@debian.org>
    
        * libkbdraw/Makefile.am:
        patch from Marco Pesenti Gritti <marco@gnome.org>
        to fix the build out of the source dir (Closes: #158333).

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit b767376b683a09f204c0584a6edd5bfaf7903b7b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jan 2 02:01:31 2005 +0000

    a bit of the code cleanup

 capplets/keyboard/ChangeLog                        |   8 ++
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   2 -
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  13 ++-
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 110 ++++-----------------
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |   2 -
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |   2 -
 6 files changed, 37 insertions(+), 100 deletions(-)

commit 0622e2e6ed44114bad64e9fdfd38bcf4ffc248e9
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jan 2 01:59:28 2005 +0000

    a bit of the code cleanup

 .../keyboard/gnome-keyboard-properties-xkbpv.c     | 130 +++++++++++----------
 1 file changed, 70 insertions(+), 60 deletions(-)

commit 88cdc89141778c7514b914547a5363e4da3da03b
Author: Thomas Cataldo <thomas.cataldo@aliacom.fr>
Date:   Sun Jan 2 00:43:06 2005 +0000

    plug gconf key leak.
    
    2005-01-02  Thomas Cataldo  <thomas.cataldo@aliacom.fr>
    
        * gconf-property-editor.c: (gconf_property_editor_finalize): plug
        gconf key leak.
    
    2005-01-02  Thomas Cataldo  <thomas.cataldo@aliacom.fr>
    
        * gnome-wp-capplet.c: (wallpaper_properties_init): plug icon
        filename leak.

 capplets/background/ChangeLog           | 5 +++++
 capplets/background/gnome-wp-capplet.c  | 1 +
 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 2 ++
 4 files changed, 13 insertions(+)

commit f5489de525062842bd95044f738b57bf01d3e4bb
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Sat Jan 1 23:18:33 2005 +0000

            patch from Heikki Paajanen <hepaajan@iki.fi> (based on the patch
            from Andrew Johnson <acjgenius@earthlink.net>)
            to not set "close" as the default button (Closes: #98202).

 capplets/default-applications/ChangeLog                            | 7 +++++++
 .../gnome-default-applications-properties.glade                    | 1 -
 capplets/font/ChangeLog                                            | 7 +++++++
 capplets/font/font-properties.glade                                | 2 --
 capplets/keybindings/ChangeLog                                     | 7 +++++++
 capplets/keybindings/gnome-keybinding-properties.glade             | 1 -
 capplets/keyboard/ChangeLog                                        | 7 +++++++
 capplets/keyboard/gnome-keyboard-properties.glade                  | 2 --
 capplets/mouse/ChangeLog                                           | 7 +++++++
 capplets/mouse/gnome-mouse-properties.glade                        | 2 --
 capplets/network/ChangeLog                                         | 7 +++++++
 capplets/network/gnome-network-preferences.glade                   | 1 -
 capplets/ui-properties/ChangeLog                                   | 7 +++++++
 capplets/ui-properties/gnome-ui-properties.glade                   | 2 --
 capplets/windows/ChangeLog                                         | 7 +++++++
 capplets/windows/gnome-window-properties.glade                     | 1 -
 16 files changed, 56 insertions(+), 12 deletions(-)

commit 0751b3f98534e4ad61cf0aabd1cd7f8bda2a0ad8
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Dec 31 00:52:49 2004 +0000

    preview is working again!

 capplets/keyboard/ChangeLog                        |  6 ++
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  2 +
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 94 +++++++++++++++++++++-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     | 32 +++++---
 4 files changed, 121 insertions(+), 13 deletions(-)

commit b5a90d16ff6869ed9db6bf38d7599a2c81dce0f0
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Dec 31 00:14:27 2004 +0000

    libxklavier 1.14

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 69ed2e6137bc16b608fa3b552519e7e7b35d4d9e
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Thu Dec 30 16:19:17 2004 +0000

    Updated Greek Translation.

 po/ChangeLog |   4 +
 po/el.po     | 985 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 537 insertions(+), 452 deletions(-)

commit fca0c2aa24613610cf187209960bf9fd545a182b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Dec 28 10:34:49 2004 +0000

    Update Update
    
    2004-12-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Update
        * no.po: Update

 po/ChangeLog |   5 +
 po/nb.po     | 867 ++++++++++++++++++++++++++++++++++++-----------------------
 po/no.po     | 867 ++++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 1057 insertions(+), 682 deletions(-)

commit e38d5e9b4cfc5836d2d5a119daf14d2120f79666
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Dec 26 19:31:46 2004 +0000

    Updated Spanish translation.
    
    2004-12-26  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 841 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 530 insertions(+), 315 deletions(-)

commit e79bf6d2822dec969197525ef057d9bd2267c2c7
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Dec 26 08:33:47 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 52 +++++++++++++++++++++++++++++-----------------------
 2 files changed, 33 insertions(+), 23 deletions(-)

commit e6268243c4e4dc964a264d637c0190d444111f6b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Dec 25 20:50:01 2004 +0000

    more more use case

 capplets/keyboard/use_cases.txt | 1 +
 1 file changed, 1 insertion(+)

commit 3478fe13d81752043219d142d120dc31fd159904
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Dec 25 15:02:06 2004 +0000

    Updated Czech translation.
    
    2004-12-25  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 740 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 489 insertions(+), 255 deletions(-)

commit a3b069d6c5b00acebf619e81568fe3bd763c754b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 25 14:50:28 2004 +0000

    Don't include <gtk/gtk.h> twice. Same (comes in from -installer.h) Same.
    
    2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-details.c: Don't include <gtk/gtk.h> twice.
        * gnome-theme-installer.c: Same (comes in from -installer.h)
        * gnome-theme-manager.c: Same.

 capplets/theme-switcher/ChangeLog               | 6 ++++++
 capplets/theme-switcher/gnome-theme-details.c   | 2 --
 capplets/theme-switcher/gnome-theme-installer.c | 1 -
 capplets/theme-switcher/gnome-theme-manager.c   | 1 -
 4 files changed, 6 insertions(+), 4 deletions(-)

commit c24348a264d34c0130889b08a3009c9d10771f53
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Sat Dec 25 14:46:36 2004 +0000

    Forgot this a while back

 capplets/common/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit d5e70f1f38217a5addb0316fd5ad300e5c447f14
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 25 14:40:07 2004 +0000

    s/gboolean/guint/ in single bitfield to quiet warnings from sparse.
    
    2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-wm-manager.c: s/gboolean/guint/ in single bitfield to
        quiet warnings from sparse.

 libwindow-settings/ChangeLog          | 5 +++++
 libwindow-settings/gnome-wm-manager.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 12060b387f247980cf7af6b976e9d1404bfa563a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 25 14:38:45 2004 +0000

    ANSIfication. NULL vs. 0
    
    2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * drw-selection.c: (drw_selection_start): ANSIfication.
        * drwright.c: NULL vs. 0

 typing-break/ChangeLog       | 5 +++++
 typing-break/drw-selection.c | 2 +-
 typing-break/drwright.c      | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit c788aa73dfdb3749a4b65db858604d25a9b1a6d4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 25 14:37:57 2004 +0000

    NULL vs. 0 Same
    
    2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * theme-method.c: (vfs_module_init): NULL vs. 0
        * theme-thumbnailer.c: (main): Same

 vfs-methods/themus/ChangeLog              | 6 ++++++
 vfs-methods/themus/theme-method.c         | 2 +-
 vfs-methods/themus/theme-thumbnailer.c    | 2 +-
 vfs-methods/themus/themus-theme-applier.c | 2 +-
 4 files changed, 9 insertions(+), 3 deletions(-)

commit 2fec3922de15717d4fbeebb1b1fe05e7a64d5c57
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 25 14:37:33 2004 +0000

    NULL vs. 0 Same.
    
    2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * font-method.c: (ensure_font_list): NULL vs. 0
        * ftstream-vfs.c: (vfs_stream_close): Same.

 vfs-methods/fontilus/ChangeLog      | 5 +++++
 vfs-methods/fontilus/font-method.c  | 2 +-
 vfs-methods/fontilus/ftstream-vfs.c | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit ea68d7a0c9b49721c73c816987e09d7e43113306
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 25 14:32:12 2004 +0000

    NULL vs. 0. Fix a test to use the boolean instead of the return value from
    
    2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * factory.c: (main): NULL vs. 0.
        * gnome-settings-default-editor.c: (vfs_change_cb): Fix a test to
        use the boolean instead of the return value from a void function.
        This has been sitting in bugzilla forever and now other people start
        adding comments to the code about it so I'm just going to commit.
        * gnome-settings-keybindings.c: (binding_register_keys): ANSIfication.

 gnome-settings-daemon/ChangeLog                       | 9 +++++++++
 gnome-settings-daemon/factory.c                       | 2 +-
 gnome-settings-daemon/gnome-settings-default-editor.c | 9 +--------
 gnome-settings-daemon/gnome-settings-keybindings.c    | 2 +-
 4 files changed, 12 insertions(+), 10 deletions(-)

commit dbbb7dc8d5ec4ba7645d16cf5a9a0f85009a7a6c
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Dec 25 02:28:11 2004 +0000

    a bit more logical separator for the layouts popup

 capplets/keyboard/gnome-keyboard-properties.glade | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

commit 6413e8586c5cf69cd9b5f0ad2d69335f17373ae1
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Dec 24 21:43:27 2004 +0000

    a tiny bit of doc

 capplets/keyboard/ChangeLog     |  5 +++++
 capplets/keyboard/use_cases.txt | 41 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

commit c204bded14b692a95e15e659cc66c3c3b66384d3
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Fri Dec 24 10:31:59 2004 +0000

    Update Russian translation

 po/ChangeLog |   4 +
 po/ru.po     | 806 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 511 insertions(+), 299 deletions(-)

commit 21ba9fde722ddbef0b48ae38daae3653a097adf4
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Dec 24 01:40:47 2004 +0000

    WHAT IS THIS in g-s-d-e.c?

 gnome-settings-daemon/gnome-settings-default-editor.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 54369fabdf459742029eb5b914799e5ef93feaad
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Dec 24 01:36:03 2004 +0000

    gsd now manages the keyboard

 gnome-settings-daemon/ChangeLog                    |   5 +
 .../gnome-settings-default-editor.c                |   4 +-
 .../gnome-settings-keyboard-xkb.c                  | 107 +++++++++++++--------
 3 files changed, 74 insertions(+), 42 deletions(-)

commit 2ce6a2338be371413fe81f542a42d0788c4fb48f
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Thu Dec 23 21:15:39 2004 +0000

    Updated Lithuanian translation.
    
    2004-12-23  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 641 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 438 insertions(+), 207 deletions(-)

commit d9b116a8e7f329a976eb557719598f0c3f76aba3
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Dec 23 17:09:26 2004 +0000

    fixed a typo (Closes: #162094).
    
    2004-12-23  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-about-me.glade: fixed a typo (Closes: #162094).

 capplets/about-me/ChangeLog            | 3 +++
 capplets/about-me/gnome-about-me.glade | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit b3877ce924e4d862a6938e94a666bb9f93dee47b
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Dec 23 16:16:02 2004 +0000

    Updated Swedish translation.
    
    2004-12-23  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 908 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 577 insertions(+), 335 deletions(-)

commit 68bf4da1093fe1e0d328f4524fc874a71ba3007c
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Dec 23 15:39:54 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 625 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 430 insertions(+), 199 deletions(-)

commit c83de11ce1b6eeada06b348a835519e8ef145c3c
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Dec 22 20:40:05 2004 +0000

    Removed no longer existing files. Added missing files and sorted it.
    
    2004-12-22  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.skip: Removed no longer existing files.
        * POTFILES.in: Added missing files and sorted it.

 po/ChangeLog     |  5 +++++
 po/POTFILES.in   | 24 +++++++++++++++---------
 po/POTFILES.skip | 16 ----------------
 3 files changed, 20 insertions(+), 25 deletions(-)

commit ccbadaf6cfca677f84a448fa2d532fd9324069af
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Wed Dec 22 20:13:31 2004 +0000

    Updated Lithuanian translation.
    
    2004-12-22  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 ++
 po/lt.po     | 146 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 78 insertions(+), 72 deletions(-)

commit 3294e05561489ab25dcfa72d99afca0aabc35213
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Wed Dec 22 07:37:39 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 +++
 po/en_CA.po  | 85 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 50 insertions(+), 39 deletions(-)

commit 9b3cf59b67c3e90ea64e4ff6bfd2c63610c55df2
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Tue Dec 21 04:42:16 2004 +0000

    2004-12-21 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 342 ++++++++++++++++-------------------------------------------
 2 files changed, 98 insertions(+), 248 deletions(-)

commit ef06fdccb5759eb70a20d9fcd129aa1260ee51f1
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Dec 21 02:51:19 2004 +0000

    Updated vi.po

 po/vi.po | 118 +++++++++++++++++++++++----------------------------------------
 1 file changed, 43 insertions(+), 75 deletions(-)

commit 7ecb79383c1a18151377c0e95e0f9c558574cbb5
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Dec 21 02:25:32 2004 +0000

    enable/disable default group depending on the WPG setting

 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 15 +++++++-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  3 ++
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 44 +++++++++++++---------
 3 files changed, 44 insertions(+), 18 deletions(-)

commit 9a171517c16bd15f44a7f24d02726ddf5677a432
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Dec 20 23:52:41 2004 +0000

    big change in the layout - layout selection popup introduced

 capplets/keyboard/ChangeLog                        |  15 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  76 ++---
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  39 ++-
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 353 +++++++++++++++------
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |   4 +-
 .../keyboard/gnome-keyboard-properties-xkbot.c     |  62 ++--
 capplets/keyboard/gnome-keyboard-properties.c      |   1 +
 capplets/keyboard/gnome-keyboard-properties.glade  | 350 +++++++++++++++-----
 8 files changed, 620 insertions(+), 280 deletions(-)

commit d4ea6a605805be60b2e4f09ce45c04e6f0b34fa7
Author: Sebastien Bacher <seb128@debian.org>
Date:   Mon Dec 20 22:41:49 2004 +0000

    post release bump to 2.9.4.
    
    2004-12-20  Sebastien Bacher  <seb128@debian.org>
    
            * configure.in: post release bump to 2.9.4.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 305ee0a2e51d8e290cdc598e95cc9ff18366dfff
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Mon Dec 20 22:31:03 2004 +0000

    2.9.3 release

 po/af.po      |  962 +++++++++++++++++++++++++++++++-----------------------
 po/am.po      |  884 ++++++++++++++++++++++++++------------------------
 po/ar.po      |  949 ++++++++++++++++++++++++++++++-----------------------
 po/az.po      |  959 +++++++++++++++++++++++++++++++-----------------------
 po/be.po      |  998 +++++++++++++++++++++++++++++++-------------------------
 po/bg.po      |   81 ++++-
 po/bn.po      |  948 ++++++++++++++++++++++++++++++-----------------------
 po/bs.po      |  957 +++++++++++++++++++++++++++++++-----------------------
 po/ca.po      |   99 ++++--
 po/cs.po      |   18 +-
 po/cy.po      |  974 +++++++++++++++++++++++++++++++------------------------
 po/da.po      |  126 +++++--
 po/de.po      |   60 ++--
 po/el.po      |   71 ++--
 po/en_CA.po   |    2 +-
 po/en_GB.po   |  501 +++++++++++++++++++++-------
 po/es.po      |  101 ++++--
 po/et.po      |  954 +++++++++++++++++++++++++++++------------------------
 po/eu.po      |  965 +++++++++++++++++++++++++++++++-----------------------
 po/fa.po      |  912 +++++++++++++++++++++++++++------------------------
 po/fi.po      |  961 +++++++++++++++++++++++++++++++-----------------------
 po/fr.po      |  967 +++++++++++++++++++++++++++++++-----------------------
 po/ga.po      |  862 +++++++++++++++++++++++++-----------------------
 po/gl.po      |  997 ++++++++++++++++++++++++++++++--------------------------
 po/gu.po      |  979 +++++++++++++++++++++++++++++++------------------------
 po/he.po      |  982 +++++++++++++++++++++++++++++++------------------------
 po/hi.po      |  977 ++++++++++++++++++++++++++++++++-----------------------
 po/hr.po      |  959 +++++++++++++++++++++++++++++++-----------------------
 po/hu.po      |  971 +++++++++++++++++++++++++++++++-----------------------
 po/id.po      |  851 +++++++++++++++++++++++++++---------------------
 po/is.po      |  957 +++++++++++++++++++++++++++++++-----------------------
 po/it.po      |  955 +++++++++++++++++++++++++++++++-----------------------
 po/ja.po      |  959 +++++++++++++++++++++++++++++++-----------------------
 po/ko.po      |  951 ++++++++++++++++++++++++++++++-----------------------
 po/lt.po      |  109 +++++--
 po/lv.po      | 1003 +++++++++++++++++++++++++++++++-------------------------
 po/mk.po      |  967 +++++++++++++++++++++++++++++++-----------------------
 po/ml.po      |  942 +++++++++++++++++++++++++++++------------------------
 po/mn.po      |  965 +++++++++++++++++++++++++++++++-----------------------
 po/ms.po      |  959 +++++++++++++++++++++++++++++++-----------------------
 po/nb.po      |  957 +++++++++++++++++++++++++++++++-----------------------
 po/nl.po      |  112 +++++--
 po/nn.po      |  955 +++++++++++++++++++++++++++++++-----------------------
 po/no.po      |  957 +++++++++++++++++++++++++++++++-----------------------
 po/nso.po     |  125 +++++--
 po/pa.po      |  949 ++++++++++++++++++++++++++++++-----------------------
 po/pl.po      |  949 ++++++++++++++++++++++++++++++-----------------------
 po/pt.po      |  960 +++++++++++++++++++++++++++++++-----------------------
 po/pt_BR.po   |  967 +++++++++++++++++++++++++++++++-----------------------
 po/ro.po      |  953 ++++++++++++++++++++++++++++++-----------------------
 po/ru.po      |  122 +++++--
 po/sk.po      |  959 +++++++++++++++++++++++++++++++-----------------------
 po/sl.po      |  983 +++++++++++++++++++++++++++++++------------------------
 po/sq.po      |  850 ++++++++++++++++++++++++++++--------------------
 po/sr.po      |  976 +++++++++++++++++++++++++++++++------------------------
 po/sr@Latn.po |  976 +++++++++++++++++++++++++++++++------------------------
 po/sv.po      | 1009 +++++++++++++++++++++++++++++++--------------------------
 po/ta.po      |  947 ++++++++++++++++++++++++++++++-----------------------
 po/th.po      |  965 ++++++++++++++++++++++++++++++------------------------
 po/tr.po      |  953 ++++++++++++++++++++++++++++++-----------------------
 po/uk.po      |  959 +++++++++++++++++++++++++++++++-----------------------
 po/vi.po      |  979 ++++++++++++++++++++++++++++++-------------------------
 po/wa.po      |  936 +++++++++++++++++++++++++++-------------------------
 po/zh_CN.po   |   90 ++++-
 po/zh_TW.po   | 1009 ++++++++++++++++++++++++++++++++-------------------------
 po/zu.po      |   81 ++++-
 66 files changed, 28884 insertions(+), 21588 deletions(-)

commit efc3ce995f5a56df803b0af727ce8ecf580fce9a
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Dec 20 21:53:31 2004 +0000

    release 2.9.3
    
    Mon Dec 20 16:52:47 2004  Jonathan Blandford  <jrb@redhat.com>
    
            * configure.in: release 2.9.3

 ChangeLog                         | 4 ++++
 configure.in                      | 2 +-
 gnome-settings-daemon/Makefile.am | 3 +++
 vfs-methods/fontilus/Makefile.am  | 3 +++
 vfs-methods/themus/Makefile.am    | 3 +++
 5 files changed, 14 insertions(+), 1 deletion(-)

commit d8bd50ad7752fa3e22228fc1431f76f9ca6e4aed
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Mon Dec 20 20:25:37 2004 +0000

    Updated Greek translation

 po/ChangeLog |    4 +
 po/el.po     | 1008 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 556 insertions(+), 456 deletions(-)

commit d85110e9146ff7447bce781d834538858ebfee78
Author: Hendrik Brandt <heb@gnome-de.org>
Date:   Sun Dec 19 17:11:31 2004 +0000

    Updated German translation.
    
    
    2004-12-19  Hendrik Brandt  <heb@gnome-de.org>
    
            * de.po: Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 762 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 360 insertions(+), 406 deletions(-)

commit 183b2087af8643235c905c3d7cae3a1cd1440660
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Dec 19 12:07:21 2004 +0000

    Updated Czech translation.
    
    2004-12-19  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +++
 po/cs.po     | 105 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 80 insertions(+), 29 deletions(-)

commit 6ee74cb27f12983695e8cd4d244eaa862051fb86
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Dec 19 10:34:41 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 72 ++++++++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 62 insertions(+), 14 deletions(-)

commit 7fc9fde3870791e09b9e0ab53cc91e1f5f4de8a0
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Dec 18 13:02:42 2004 +0000

    Updated Spanish translation.
    
    2004-12-18  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 136 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 100 insertions(+), 40 deletions(-)

commit 9c74a852897136dd7e1f5aafdf0bc62b72ee94b6
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Dec 18 05:01:55 2004 +0000

    updating the schema against new libgswitchit

 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 90 ++++++++++++++++------
 1 file changed, 68 insertions(+), 22 deletions(-)

commit f5fb13632fff66848316aa76f5fa6303f79878dd
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Dec 18 04:38:49 2004 +0000

    reflect libgswitchit changes

 capplets/keyboard/ChangeLog                        |  9 +++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 26 +++++++-------
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  8 ++---
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 16 ++++-----
 .../keyboard/gnome-keyboard-properties-xkbmc.c     |  6 ++--
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 12 +++----
 gnome-settings-daemon/ChangeLog                    |  4 +++
 .../gnome-settings-keyboard-xkb.c                  | 42 +++++++++++-----------
 8 files changed, 68 insertions(+), 55 deletions(-)

commit 452593fafdb2342c6f34644f4bb29cb0715a29a9
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Thu Dec 16 18:23:45 2004 +0000

    updated the NEWS file for 2.9.3

 NEWS | 5 +++++
 1 file changed, 5 insertions(+)

commit 28b355eb91d2104fad1bf38356bd50e9b1e3b14b
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Thu Dec 16 17:39:33 2004 +0000

    update Russian translation

 po/ChangeLog |   4 +
 po/ru.po     | 804 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 364 insertions(+), 444 deletions(-)

commit d9c4667f7ce501b85620a27b3c8169827db75965
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Dec 16 15:55:39 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 4a6eb07d1d94cdae77e10058718cd1fdf17ab25d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Dec 16 12:27:52 2004 +0000

    mute properly when the system has hardware mute, patch from Pierre Ossman
    
    2004-12-16  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-alsa.c: (acme_volume_alsa_set_mute): mute
        properly when the system has hardware mute, patch from Pierre Ossman
        <drzeus-bugzilla@drzeus.cx> (Closes: #144489)

 gnome-settings-daemon/ChangeLog                  | 6 ++++++
 gnome-settings-daemon/actions/acme-volume-alsa.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f91325b4cd4d48e29779031a9a3f27d88cded194
Author: Sebastien Bacher <sbacher@src.gnome.org>
Date:   Wed Dec 15 13:58:56 2004 +0000

    changed the tooltips to respect the HIG.

 capplets/network/ChangeLog                               | 5 +++++
 capplets/network/gnome-network-preferences.desktop.in.in | 2 +-
 capplets/windows/ChangeLog                               | 5 +++++
 capplets/windows/window-properties.desktop.in.in         | 2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

commit c60b2af2120008ec0be4e2e89291c5b514697e4b
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Dec 14 13:42:18 2004 +0000

    Updated Catalan translation.

 po/ChangeLog |  10 +-
 po/ca.po     | 935 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 503 insertions(+), 442 deletions(-)

commit c215a3b52105ac729b30a02207bfa7a4649f3901
Author: David Lodge <dave@cirt.net>
Date:   Mon Dec 13 21:33:33 2004 +0000

    Updated British translation.
    
    2004-12-13  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 585 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 290 insertions(+), 299 deletions(-)

commit 66cda9bf56ed323cff5ee765a26ca0efafe178a2
Author: Dwayne Bailey <dwayne@translate.org.za>
Date:   Mon Dec 13 18:24:19 2004 +0000

    Added "zu" to ALL_LINGUAS.
    
    2004-12-13  Dwayne Bailey  <dwayne@translate.org.za>
    
        * configure.in: Added "zu" to ALL_LINGUAS.
    
        * po/zu.po: Added Zulu translation by
        Zuza Software Foundation <info@translate.org.za>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/zu.po     | 3520 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3530 insertions(+), 1 deletion(-)

commit b8ee2498798fe319bcce56272aac784da91d1746
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Dec 12 16:44:48 2004 +0000

    Updated Bulgarian translation
    
    2004-12-12  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation

 po/ChangeLog |  4 ++++
 po/bg.po     | 47 ++++++++++++++++++++++++++++++-----------------
 2 files changed, 34 insertions(+), 17 deletions(-)

commit 202fed23c8adbf701fe459cc46c0450df1b6aaa6
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Dec 12 07:33:50 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 29 ++++++++++++++++++-----------
 2 files changed, 22 insertions(+), 11 deletions(-)

commit abc91a9a24c2b43ed64e70bd4bce85884af5c88c
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Dec 11 20:31:40 2004 +0000

    Fix the ngettext calling bit to actually work, and move the %d into the
    
    2004-12-11  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_update_description):
        Fix the ngettext calling bit to actually work, and move the %d into
        the format string for g_strdup_print, so we don't say "%d pixels"

 capplets/background/ChangeLog       | 6 ++++++
 capplets/background/gnome-wp-item.c | 8 +++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 4a3189e661d9a960fc46f6dc6e2878f37d006e91
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Dec 11 12:35:00 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 +
 po/zh_CN.po  | 594 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 295 insertions(+), 303 deletions(-)

commit 3b25630ea889b43ce7b1fbbdb25450495018efb4
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Dec 11 03:53:30 2004 +0000

    add gnome-wp-item.c to list of translatable files
    
    2004-12-10  Rodney Dawes  <dobey@novell.com>
    
        * POTFILES.in: add gnome-wp-item.c to list of translatable files
    
        Fixes #151425

 po/ChangeLog   | 6 ++++++
 po/POTFILES.in | 1 +
 2 files changed, 7 insertions(+)

commit 418952b21a6b4f653fcfec88cd990ad5719641cc
Author: Rodney Dawes <dobey@novell.com>
Date:   Sat Dec 11 03:52:09 2004 +0000

    Change the description to use "W pixels x H pixels" and ngettext for each
    
    2004-12-10  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_update_description):
        Change the description to use "W pixels x H pixels" and ngettext for
        each individual part, instead of just "W x H pixels" (#151425)
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml): Don't duplicate check to
        make sure that the root element is not NULL

 capplets/background/ChangeLog       | 9 +++++++++
 capplets/background/gnome-wp-item.c | 6 +++---
 capplets/background/gnome-wp-xml.c  | 2 --
 3 files changed, 12 insertions(+), 5 deletions(-)

commit 439b627de73b8ade0857bd8ac2a5db6e66b907fe
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Fri Dec 10 09:56:03 2004 +0000

    small change so that install-desktop-database runs after install-desktopDATA

 vfs-methods/fontilus/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e7b2082335e9e3c76bc2cdc00338529da5b0f41
Author: James Henstridge <james@jamesh.id.au>
Date:   Fri Dec 10 09:55:33 2004 +0000

    update the desktop file database on install, since we add a new mime
    
    2004-12-10  James Henstridge  <james@jamesh.id.au>
    
        * Makefile.am: update the desktop file database on install, since
        we add a new mime action.
    
        * themus-theme-applier.desktop.in.in (Exec): use %u rather than
        %U, since it only handles a single file.

 vfs-methods/themus/ChangeLog                          | 8 ++++++++
 vfs-methods/themus/Makefile.am                        | 9 +++++++--
 vfs-methods/themus/themus-theme-applier.desktop.in.in | 2 +-
 3 files changed, 16 insertions(+), 3 deletions(-)

commit 2a7bec1ecbd42cd94e115411e4860899b3cf142a
Author: James Henstridge <james@jamesh.id.au>
Date:   Fri Dec 10 09:51:25 2004 +0000

    update the desktop file database on install, since we install a new mime
    
    2004-12-10  James Henstridge  <james@jamesh.id.au>
    
        * Makefile.am (install-desktop-database): update the desktop file
        database on install, since we install a new mime action.
    
        * font-view.c (get_font): don't free the pattern when creating the
        font object, since XftFontOpenPattern takes ownership of the
        pattern.
    
        * gnome-font-viewer.desktop.in.in (Exec): use %u instead of %U,
        since we only support openning one file.

 vfs-methods/fontilus/ChangeLog                       | 12 ++++++++++++
 vfs-methods/fontilus/Makefile.am                     |  9 +++++++--
 vfs-methods/fontilus/font-view.c                     |  1 -
 vfs-methods/fontilus/gnome-font-viewer.desktop.in.in |  2 +-
 4 files changed, 20 insertions(+), 4 deletions(-)

commit a76902382e288e7f1f9150c5f374209ac9fb73f1
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Dec 9 16:53:52 2004 +0000

    2004-11-30  Sebastien Bacher  <seb128@debian.org>
    
        * actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_finalize), (acme_volume_gstreamer_set_mute),
        (acme_volume_gstreamer_get_mute),
        (acme_volume_gstreamer_get_volume),
        (acme_volume_gstreamer_set_volume),
        (acme_volume_gstreamer_close_real), (acme_volume_gstreamer_open),

 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

commit 1f98a6b4366bfdb47ed784cf5783c2b3f2de4e63
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Dec 9 02:02:16 2004 +0000

    using XklGetMaxNumGroups

 capplets/keyboard/ChangeLog                         | 4 ++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 5 +++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit a0ec0f1fd16de0c6251c8835be8fc1f4f7491345
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Dec 8 21:46:41 2004 +0000

    libxklavier 1.13

 ChangeLog    | 4 ++++
 configure.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit b5db10c22592ab0c2426e60a01c3d9cc2ab17a83
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Tue Dec 7 21:03:09 2004 +0000

    CVS_SILENT

 po/tr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a2bc021c7f9a07e7c8040a9c4fe9f02c2f1c7367
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Tue Dec 7 17:22:54 2004 +0000

    Updated Czech translation.
    
    2004-12-07  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 13 ++++++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

commit 617bf5fc8f2bc904c93a6ce5c7bd7edb8bee60ef
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Dec 6 01:02:14 2004 +0000

    Translation updated by Reinout van Schouwen.
    
    2004-12-06  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 889 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 472 insertions(+), 421 deletions(-)

commit 0b27609b36691cb89b69901a8bdfdb6a3834dc87
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Dec 3 19:06:06 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/en_CA.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit a02f678bcfa3a59d35f025b3c06455cbdce2cf0f
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Fri Dec 3 16:42:02 2004 +0000

    Updated Lithuanian translation.
    
    2004-12-03  Žygimantas Beručka  <uid0@akl.lt>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 989 ++++++++++++++++++++++-------------------------------------
 2 files changed, 365 insertions(+), 628 deletions(-)

commit 58a37359a4511fdfeaeb967b6309c531015f8ed3
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Dec 3 10:00:26 2004 +0000

    use "Preferences" for the window title (like the other capplets) instead
    
    2004-12-03  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-network-preferences.glade: use "Preferences" for the window
        title (like the other capplets) instead of "Configuration",
        bug noticed by Lars Weber <me@lars.in-berlin.de> (Closes: #132391).

 capplets/network/ChangeLog                       | 6 ++++++
 capplets/network/gnome-network-preferences.glade | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 069aa436015d653c63f94e6c884750baa0e4a3c6
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Dec 3 05:43:24 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 64f399db7acbc385d94fc9c1d5e34cb61e587f8c
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Dec 1 18:51:38 2004 +0000

    Updated Czech translation.
    
    2004-12-01  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 16e644c1ad02df57f2bc789bf82f073ef86d03db
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Nov 30 16:46:38 2004 +0000

    free the alsa device, after 4 seconds, with gstreamer too. Patch from
    
    2004-11-30  Sebastien Bacher  <seb128@debian.org>
    
        * actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_finalize), (acme_volume_gstreamer_set_mute),
        (acme_volume_gstreamer_get_mute),
        (acme_volume_gstreamer_get_volume),
        (acme_volume_gstreamer_set_volume),
        (acme_volume_gstreamer_close_real), (acme_volume_gstreamer_open),
        (acme_volume_gstreamer_close), (acme_volume_gstreamer_init):
        free the alsa device, after 4 seconds, with gstreamer too.
        Patch from Arnaud Patard <Arnaud Patard> (Closes: #141793).

 gnome-settings-daemon/ChangeLog                    |  12 ++
 .../actions/acme-volume-gstreamer.c                | 122 +++++++++++++++++----
 2 files changed, 112 insertions(+), 22 deletions(-)

commit 41889beb0c5e8ad6f4c36e7ddf6bf4991ba69171
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 30 13:08:12 2004 +0000

    Patch from Michal Bukovjan <bukovjan@mbox.dkm.cz> to handle backspace in
    
    2004-11-30  Bastien Nocera  <hadess@hadess.net>
    
        * eggcellrendererkeys.c: (grab_key_callback): Patch from
        Michal Bukovjan <bukovjan@mbox.dkm.cz> to handle backspace in multi-
        layout setups correctly (Closes: #154492)

 capplets/keybindings/ChangeLog             | 6 ++++++
 capplets/keybindings/eggcellrendererkeys.c | 7 ++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 071f849d76a0d9659bc14b6431317b2ebe709445
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Nov 30 12:02:18 2004 +0000

    hack to get the logout action working (Closes: #141472)
    
    2004-11-30  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-settings-multimedia-keys.c: (do_exit_action): hack
        to get the logout action working (Closes: #141472)

 gnome-settings-daemon/ChangeLog                        |  5 +++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 12 +-----------
 2 files changed, 6 insertions(+), 11 deletions(-)

commit aad80506ea92aa9001c537ea44bf4e38b2441a7c
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Tue Nov 30 11:24:36 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 15 +++++++++------
 2 files changed, 13 insertions(+), 6 deletions(-)

commit 048188955eebe41a13c51ba0bfa3e291c25662a4
Author: Sebastien Bacher <seb128@debian.org>
Date:   Tue Nov 30 01:22:50 2004 +0000

    use the right name for each browser instead of listing different names for
    
    2004-11-30  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-default-applications-properties-structs.c: use the right name
        for each browser instead of listing different names for some entry
        (#155246).

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../gnome-default-applications-properties-structs.c                 | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 5c4a42e79de42b4d2b1fe785f826d2f6c0ec4172
Author: Dwayne Bailey <dwayne@translate.org.za>
Date:   Mon Nov 29 20:49:15 2004 +0000

    Updated Northern Sotho translation.
    
    2004-11-29  Dwayne Bailey  <dwayne@translate.org.za>
    
        * nso.po: Updated Northern Sotho translation.

 po/ChangeLog |  4 ++++
 po/nso.po    | 34 ++++++++++++++++++----------------
 2 files changed, 22 insertions(+), 16 deletions(-)

commit 77e018d8757efa64016b210740c7704508e30570
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Nov 29 20:33:19 2004 +0000

    preview - only for XKB

 capplets/keyboard/ChangeLog                       | 4 ++++
 capplets/keyboard/gnome-keyboard-properties-xkb.c | 5 +++++
 2 files changed, 9 insertions(+)

commit 6f4927922f9dfc97480852ca17dd32113bf9ed2f
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Mon Nov 29 11:56:04 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 674 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 351 insertions(+), 327 deletions(-)

commit beb210c01e831bfdc40cdde51f786e1b8d18f0e1
Author: Dwayne Bailey <dwayne@translate.org.za>
Date:   Sun Nov 28 19:31:37 2004 +0000

    Added "nso" to ALL_LINGUAS. Added Northern Sotho translation by Zuza
    
    2004-11-28  Dwayne Bailey  <dwayne@translate.org.za>
    
        * configure.in: Added "nso" to ALL_LINGUAS.
        * po/nso.po: Added Northern Sotho translation by
        Zuza Software Foundation <info@translate.org.za>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/nso.po    | 3541 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3551 insertions(+), 1 deletion(-)

commit f876d51832563b89a84068d0ce1789a3eca77406
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Nov 28 15:19:04 2004 +0000

    Updated Spanish translation.
    
    2004-11-28  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 584 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 287 insertions(+), 301 deletions(-)

commit 5207e9151aad18e5acaa5c482255dd7f8e48cbaf
Author: James Henstridge <james@jamesh.id.au>
Date:   Sun Nov 28 13:51:58 2004 +0000

    use gnome_vfs_make_uri_from_shell_arg() to parse the first argument.
    
    2004-11-28  James Henstridge  <james@jamesh.id.au>
    
        * thumbnailer.c (main): use gnome_vfs_make_uri_from_shell_arg() to
        parse the first argument.
        (main): if the glyphs for 'A' and 'a' aren't found, pick some
        other ones so we display something possibly relevant.
        (draw_char): pass in a glyph index rather than a character.

 vfs-methods/fontilus/ChangeLog               |  6 ++++++
 vfs-methods/fontilus/fontilus-context-menu.c |  2 +-
 vfs-methods/fontilus/thumbnailer.c           | 30 ++++++++++++++++++----------
 3 files changed, 27 insertions(+), 11 deletions(-)

commit de983c365cca21dbb927205f48b1097548ff2407
Author: Alexander Shopov <ash@contact.bg>
Date:   Sun Nov 28 13:50:38 2004 +0000

    Updated Bulgarian translation
    
    2004-11-28  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation

 po/ChangeLog |   10 +-
 po/bg.po     | 1917 ++++++++++++++--------------------------------------------
 2 files changed, 455 insertions(+), 1472 deletions(-)

commit f33e58be237d811ed818745c985624753ea855c4
Author: James Henstridge <james@jamesh.id.au>
Date:   Sun Nov 28 09:34:50 2004 +0000

    apply Federic Zhang <federic.zhang@sun.com>'s patch to speed up loading of
    
    2004-11-28  James Henstridge  <james@jamesh.id.au>
    
        * font-view.c: apply Federic Zhang <federic.zhang@sun.com>'s patch
        to speed up loading of large (eg. CJK) fonts, plus a few small bug
        fixes.  Fixes bug #142878.
        (set_icon): use gtk_window_set_icon_name() to set the icon.  Also,
        get the correct icon theme object for the window's screen.

 vfs-methods/fontilus/ChangeLog   |  8 ++++
 vfs-methods/fontilus/font-view.c | 88 +++++++++++++++++++++++++++-------------
 2 files changed, 67 insertions(+), 29 deletions(-)

commit 20706a02ba408d2ca9aa512dc94ccc98c456ee37
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Sun Nov 28 08:25:10 2004 +0000

    the only macro in acinclude.m4 was not being used, so remove the file.

 acinclude.m4                   | 164 -----------------------------------------
 vfs-methods/themus/Makefile.am |   2 -
 2 files changed, 166 deletions(-)

commit ebd8e46d445019839868f1e907f167dad0e16c86
Author: James Henstridge <james@jamesh.id.au>
Date:   Sun Nov 28 08:14:05 2004 +0000

    use GNOMELOCALEDIR.
    
    2004-11-28  James Henstridge  <james@jamesh.id.au>
    
        * vfs-methods/themus/themus-properties-main.c: use GNOMELOCALEDIR.
    
        * vfs-methods/themus/Makefile.am: similar changes to the fontilus
        ones.
    
        * vfs-methods/fontilus/fontilus-context-menu.c: same here.
    
        * vfs-methods/fontilus/font-view.c: use GNOMELOCALEDIR rather than
        FONTILUS_LOCALEDIR in the bindtextdomain() call, to match the rest
        of cinnamon-control-center.
    
        * vfs-methods/fontilus/Makefile.am: similar schema and desktop
        file fixes.  Don't include the old mime files in the dist.
    
        * schemas/Makefile.am: remove .schemas files on clean, when
        installing schemas, look for them in builddir rather than srcdir.
    
        * gnome-settings-daemon/actions/Makefile.am: fix up build rules so
        that ALSA_CFLAGS isn't defined multiple times (use the newer
        automake += syntax).
    
        * control-center/Makefile.am: distribute $(icon_DATA).
    
        * capplets/*/Makefile.am: put the .desktop and .desktop.in files
        in CLEANFILES.  The .desktop.in.in file gets included because it
        is listed in the configure script.
    
        * configure.in: update configure script, and remove macro calls
        that are not needed by modern versions of Automake.
    
        * Makefile.am: remove intltool files on distclean.
    
        * autogen.sh: request Automake >= 1.7.

 ChangeLog                                        |  34 +++++++
 Makefile.am                                      |  11 +--
 autogen.sh                                       |  22 +----
 capplets/accessibility/at-properties/Makefile.am |   4 +-
 capplets/accessibility/keyboard/Makefile.am      |   4 +-
 capplets/background/Makefile.am                  |   4 +-
 capplets/default-applications/Makefile.am        |   4 +-
 capplets/display/Makefile.am                     |   4 +-
 capplets/font/Makefile.am                        |   4 +-
 capplets/keybindings/Makefile.am                 |   4 +-
 capplets/keyboard/Makefile.am                    |   4 +-
 capplets/mouse/Makefile.am                       |   4 +-
 capplets/network/Makefile.am                     |   4 +-
 capplets/sound/Makefile.am                       |   4 +-
 capplets/theme-switcher/Makefile.am              |   4 +-
 capplets/ui-properties/Makefile.am               |   4 +-
 capplets/windows/Makefile.am                     |   4 +-
 configure.in                                     | 112 ++++++++---------------
 control-center/Makefile.am                       |   3 +-
 gnome-settings-daemon/actions/Makefile.am        |  36 ++++----
 schemas/Makefile.am                              |   6 +-
 vfs-methods/fontilus/Makefile.am                 |  11 +--
 vfs-methods/fontilus/font-view.c                 |   2 +-
 vfs-methods/fontilus/fontilus-context-menu.c     |   2 +-
 vfs-methods/themus/Makefile.am                   |  10 +-
 vfs-methods/themus/themus-properties-main.c      |   2 +-
 26 files changed, 143 insertions(+), 164 deletions(-)

commit a37db9f09d7288580031c42b61ec73e3a167eb5c
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Nov 28 04:54:22 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 78 ++++++++++++++++++++++--------------------------------------
 2 files changed, 33 insertions(+), 49 deletions(-)

commit 474018dd317d8cd49cb5ebf934f8bcc43aee7858
Author: James Henstridge <james@jamesh.id.au>
Date:   Sun Nov 28 00:43:31 2004 +0000

    fix up typo that I introduced in the configure script. Should fix the
    
    2004-11-28  James Henstridge  <james@jamesh.id.au>
    
        * configure.in (FONT_THUMBNAILER_LIBS): fix up typo that I
        introduced in the configure script.  Should fix the build properly
        now.

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 61d59e927d5dc2ea51add097637b0b9dd9102d35
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Nov 27 19:11:09 2004 +0000

    Updated Czech translation.
    
    2004-11-27  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 211 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 120 insertions(+), 95 deletions(-)

commit b3fff0e955eb2dcb678b98550efed00c9b2e3e1b
Author: James Henstridge <james@jamesh.id.au>
Date:   Sat Nov 27 16:07:54 2004 +0000

    get rid of old mime stuff.
    
    2004-11-27  James Henstridge  <james@jamesh.id.au>
    
        * Makefile.am: get rid of old mime stuff.
    
        * gnome-font-viewer.desktop.in.in (Exec): add a "%U" to the
        command line, so Nautilus will run gnome-font-viewer for stuff
        under the fonts:/// URI.
    
    2004-11-27  James Henstridge  <james@jamesh.id.au>
    
        * themus.applications, themus.keys: remove.
    
        * themus-theme-applier.desktop.in.in: new file to hook up
        themus-apply-theme, since the old .applications file isn't used by
        the new MIME system.

 configure.in                                       |  1 +
 po/POTFILES.in                                     |  3 +--
 vfs-methods/fontilus/ChangeLog                     |  6 +++++
 vfs-methods/fontilus/Makefile.am                   |  6 -----
 vfs-methods/fontilus/fontilus.applications         |  8 -------
 vfs-methods/fontilus/fontilus.keys                 | 26 ----------------------
 vfs-methods/fontilus/fontilus.mime                 |  5 -----
 .../fontilus/gnome-font-viewer.desktop.in.in       |  4 ++--
 vfs-methods/themus/.cvsignore                      |  6 ++---
 vfs-methods/themus/ChangeLog                       |  6 +++++
 vfs-methods/themus/Makefile.am                     | 16 +++++--------
 .../themus/themus-theme-applier.desktop.in.in      | 15 +++++++++++++
 vfs-methods/themus/themus.applications             |  8 -------
 vfs-methods/themus/themus.keys                     |  6 -----
 14 files changed, 39 insertions(+), 77 deletions(-)

commit 653d3d99f73a325b08b8df1635e1007f28100c7a
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Nov 27 16:05:03 2004 +0000

    xmodmap support is here

 gnome-settings-daemon/ChangeLog                    |  4 +++
 .../gnome-settings-keyboard-xkb.c                  | 36 ++++++++++++++++++++++
 2 files changed, 40 insertions(+)

commit b3cec1437685b9c3b77ecb82af98068adc49b77e
Author: James Henstridge <james@jamesh.id.au>
Date:   Sat Nov 27 15:22:44 2004 +0000

    use libnautilus-extension.
    
    2004-11-27  James Henstridge  <james@jamesh.id.au>
    
        * configure.in (THEMUS_COMPONENT): use libnautilus-extension.
    
    2004-11-27  James Henstridge  <james@jamesh.id.au>
    
        * themus-theme-applier.c: get rid of the bonobo includes.
    
        * Makefile.am: update to install Nautilus extension.
    
        * themus-properties-main.c: convert from a Bonobo component to a
        Nautilus extension.
    
        * themus-properties-view.[ch]: convert to a simple widget.  Also
        fix a bunch of leaks.

 ChangeLog                                          |   2 +
 configure.in                                       |  30 +-
 vfs-methods/themus/ChangeLog                       |  12 +
 vfs-methods/themus/Makefile.am                     |  23 +-
 .../themus/Themus_Properties_View.server.in.in     |  19 --
 vfs-methods/themus/themus-properties-main.c        | 116 +++++--
 vfs-methods/themus/themus-properties-view.c        | 332 +++++++++++----------
 vfs-methods/themus/themus-properties-view.h        |  31 +-
 vfs-methods/themus/themus-theme-applier.c          | 101 +++----
 9 files changed, 371 insertions(+), 295 deletions(-)

commit 7de3d67e423a650b5382c7061b32d4e1c48771a5
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Sat Nov 27 13:19:09 2004 +0000

    clean up the unused .server file

 vfs-methods/fontilus/.cvsignore            |  4 +---
 vfs-methods/fontilus/fontilus.server.in.in | 34 ------------------------------
 2 files changed, 1 insertion(+), 37 deletions(-)

commit 52f46ac78c67bef0c5f952a4d6f63522679b5706
Author: James Henstridge <james@jamesh.id.au>
Date:   Sat Nov 27 13:13:25 2004 +0000

    use libnautilus-extension for the context menu instead of Bonobo.
    
    2004-11-27  James Henstridge  <james@jamesh.id.au>
    
        * configure.in (FONT_CONTEXT_MENU): use libnautilus-extension for
        the context menu instead of Bonobo.
    
    2004-11-27  James Henstridge  <james@jamesh.id.au>
    
        * Makefile.am: fix build rules for Nautilus stuff.
    
        * fontilus-context-menu.c: convert to a Nautilus extension.

 ChangeLog                                    |   5 +
 configure.in                                 |  44 ++++-
 vfs-methods/fontilus/ChangeLog               |   6 +
 vfs-methods/fontilus/Makefile.am             |  18 +-
 vfs-methods/fontilus/fontilus-context-menu.c | 238 ++++++++++++++++++---------
 5 files changed, 218 insertions(+), 93 deletions(-)

commit 6d9726e3048d9b2e582eb871dcf1c2c18e37cabb
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Nov 26 23:50:36 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 +++
 po/en_CA.po  | 80 ++++++++++++++++++++++++------------------------------------
 2 files changed, 36 insertions(+), 48 deletions(-)

commit 7571f44d8d54124a45d9d43ded430b2b61c3d6ee
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Nov 26 16:40:31 2004 +0000

    changed a mnemonic to fix #144343.
    
    2004-11-26  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-default-applications-properties.glade: changed a mnemonic to
        fix #144343.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 4ab58ee9f70f561e8e88e74ec1d8408946a5861a
Author: Sebastien Bacher <seb128@debian.org>
Date:   Fri Nov 26 15:30:26 2004 +0000

    Mask the "Text Editor" tab since it's not used by the new mime system.
    
    2004-11-26  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-default-applications-properties.glade: Mask the "Text Editor"
        tab since it's not used by the new mime system.

 NEWS                                                                 | 2 ++
 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.glade | 1 -
 3 files changed, 7 insertions(+), 1 deletion(-)

commit 34a319d0f7a53c7e689a67366814ba12b5db2880
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Nov 26 14:45:16 2004 +0000

    Updated Czech translation.
    
    2004-11-26  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 475 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 250 insertions(+), 229 deletions(-)

commit 6c1639eb557480e3683c03d6af80c72141681c90
Author: Michael Terry <mike@mterry.name>
Date:   Fri Nov 26 14:40:05 2004 +0000

    Commited these changes
    
    2004-11-26  Michael Terry <mike@mterry.name>
    
           * gnome-default-applications-properties.glade: Simplify some strings
           and add a window icon per bug #98918.

 capplets/default-applications/ChangeLog            |  5 ++++
 .../gnome-default-applications-properties.glade    | 27 +++++++++++-----------
 2 files changed, 19 insertions(+), 13 deletions(-)

commit d4c45e4215db77ed9a2b5ebb50a310bcc43f059d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Nov 26 00:34:42 2004 +0000

    a bit of cleanup

 capplets/keyboard/.cvsignore | 1 +
 1 file changed, 1 insertion(+)

commit 5d06aeb598b86e249dbe25a486ebd9b7c0973c8b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Nov 26 00:32:59 2004 +0000

    libxklavier 1.12 required

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 00f80f214b89934a4276a280871d7de517dec027
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Nov 25 23:24:48 2004 +0000

    libxklavier 1.12 compatibility

 capplets/keyboard/ChangeLog                         | 4 ++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3470a2f16993157a9fccc7b6f4f1ecda1dcf2430
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Nov 25 16:41:22 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 473 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 249 insertions(+), 228 deletions(-)

commit 08874d2ea0e61c75d589f1f11b13dbe5afc556ed
Author: Christoffer Olsen <colsen@src.gnome.org>
Date:   Wed Nov 24 18:59:31 2004 +0000

    Fixed an error I just introduced. Sorry.

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0ffe4d4e98e8f4ff4e7bf55455ab5651dc2fc3fa
Author: Christoffer Olsen <colsen@src.gnome.org>
Date:   Wed Nov 24 18:54:03 2004 +0000

    Added *.desktop.in.in for bug-buddy love.
    See ChangeLog for details.

 ChangeLog                                          | 53 ++++++++++++++++++++
 .../at-properties/at-properties.desktop.in         | 14 ------
 .../at-properties/at-properties.desktop.in.in      | 15 ++++++
 .../keyboard/accessibility-keyboard.desktop.in     | 14 ------
 .../keyboard/accessibility-keyboard.desktop.in.in  | 15 ++++++
 capplets/background/background.desktop.in          | 14 ------
 capplets/background/background.desktop.in.in       | 15 ++++++
 .../default-applications.desktop.in                | 14 ------
 .../default-applications.desktop.in.in             | 15 ++++++
 capplets/display/display-properties.desktop.in     | 14 ------
 capplets/display/display-properties.desktop.in.in  | 15 ++++++
 capplets/file-types/file-types-capplet.desktop.in  | 10 ----
 .../file-types/file-types-capplet.desktop.in.in    | 11 +++++
 capplets/file-types/file-types.desktop.in          | 14 ------
 capplets/file-types/file-types.desktop.in.in       | 15 ++++++
 capplets/font/font-properties.desktop.in           | 14 ------
 capplets/font/font-properties.desktop.in.in        | 15 ++++++
 capplets/keybindings/keybinding.desktop.in         | 14 ------
 capplets/keybindings/keybinding.desktop.in.in      | 15 ++++++
 capplets/keyboard/keyboard.desktop.in              | 14 ------
 capplets/keyboard/keyboard.desktop.in.in           | 15 ++++++
 capplets/localization/localization.desktop.in      | 13 -----
 capplets/localization/localization.desktop.in.in   | 14 ++++++
 capplets/mouse/gnome-settings-mouse.desktop.in     | 14 ------
 capplets/mouse/gnome-settings-mouse.desktop.in.in  | 15 ++++++
 .../network/gnome-network-preferences.desktop.in   | 14 ------
 .../gnome-network-preferences.desktop.in.in        | 15 ++++++
 capplets/sound/gnome-settings-sound.desktop.in     | 14 ------
 capplets/sound/gnome-settings-sound.desktop.in.in  | 15 ++++++
 .../theme-switcher/gtk-theme-selector.desktop.in   | 14 ------
 .../gtk-theme-selector.desktop.in.in               | 15 ++++++
 .../ui-properties/gnome-ui-properties.desktop.in   | 14 ------
 .../gnome-ui-properties.desktop.in.in              | 15 ++++++
 capplets/url-properties/url-properties.desktop.in  | 11 -----
 .../url-properties/url-properties.desktop.in.in    | 12 +++++
 capplets/windows/window-properties.desktop.in      | 14 ------
 capplets/windows/window-properties.desktop.in.in   | 15 ++++++
 configure.in                                       | 22 ++++++++-
 control-center/gnomecc.desktop.in                  | 13 -----
 control-center/gnomecc.desktop.in.in               | 14 ++++++
 po/POTFILES.in                                     | 56 +++++++++++-----------
 vfs-methods/fontilus/gnome-font-viewer.desktop.in  | 14 ------
 .../fontilus/gnome-font-viewer.desktop.in.in       | 15 ++++++
 43 files changed, 394 insertions(+), 299 deletions(-)

commit 2a57eb3a61011ec5d27eb181fcfa1602be972f6b
Author: Funda Wang <fwang@src.gnome.org>
Date:   Wed Nov 24 15:30:03 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 ++
 po/zh_CN.po  | 227 +++++++++++++++++++++++------------------------------------
 2 files changed, 94 insertions(+), 137 deletions(-)

commit 7b12c49dde66aa71dc13cd41f454a3144c5da882
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Mon Nov 22 15:41:17 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 129 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 74 insertions(+), 59 deletions(-)

commit c4219bd115aefc5e4077a5ca21467ad5321ac460
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sun Nov 21 22:41:00 2004 +0000

    use the stock_proxy icon for the capplet (Closes: #130624).
    
    2004-11-21  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-network-preferences.c: (cb_http_details_button_clicked):
        use the stock_proxy icon for the capplet (Closes: #130624).

 capplets/network/ChangeLog                   | 5 +++++
 capplets/network/gnome-network-preferences.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0af3acbdb3e76948a94f0d7b6fd42a1e842e185d
Author: David Lodge <dave@cirt.net>
Date:   Sun Nov 21 21:34:16 2004 +0000

    Updated British translation.
    
    2004-11-21  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 36 +++++++-----------------------------
 2 files changed, 11 insertions(+), 29 deletions(-)

commit 7d23e813c5255011f01bd862602081a8647e94cf
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sat Nov 20 09:41:35 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-11-20  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 159 +++++++++++++++--------------------------------------------
 2 files changed, 43 insertions(+), 120 deletions(-)

commit be90975299fec803b0896a738155d0a78e66c123
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Nov 18 23:35:54 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 52 +++++++---------------------------------------------
 2 files changed, 11 insertions(+), 45 deletions(-)

commit 6979ee42f52e880b15650a7c56b69a0b00a278db
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu Nov 18 20:52:02 2004 +0000

    Updated Czech translation.
    
    2004-11-18  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 +++
 po/cs.po     | 82 +++++++++++++++++++++++++++---------------------------------
 2 files changed, 41 insertions(+), 45 deletions(-)

commit 870ebce7fc3051f20b0d8eda9367b7c1962fda1e
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Nov 18 16:16:17 2004 +0000

    Updated Spanish translation
    
    2004-11-18  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/ChangeLog |  4 +++
 po/es.po     | 87 ++++++++++++++++++++++--------------------------------------
 2 files changed, 36 insertions(+), 55 deletions(-)

commit 34fb9b5258a6f8c149e69d128cef685ffd034170
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Nov 17 14:33:18 2004 +0000

    remove gnomecc-ui.xml
    
    2004-11-17  Mark McLoughlin  <mark@skynet.ie>
    
            * POTFILES.in: remove gnomecc-ui.xml

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit c1611ee87da956b8c6a5c8a99ebcc8d6701a0ad8
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Tue Nov 16 08:58:45 2004 +0000

    require libgnome-menu for the shell, fixup other shell requirements and
    
    2004-11-10  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in: require libgnome-menu for the shell, fixup
            other shell requirements and don't look for libnautilus
            anymore.
    
            * Makefile.am: don't install control-center2.png anymore.
    
            * control-center2.png: remove.

 ChangeLog           |  10 ++++++++++
 Makefile.am         |   3 ---
 configure.in        |   8 +-------
 control-center2.png | Bin 3464 -> 0 bytes
 4 files changed, 11 insertions(+), 10 deletions(-)

commit b39d768877d98ff8c6f3f5e36dd74f9d60e27138
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Tue Nov 16 08:56:50 2004 +0000

    re-write to use libgnome-menu to load the contents of the preferences
    
    2004-11-10  Mark McLoughlin  <mark@skynet.ie>
    
            * control-center-categories.[ch]: re-write to use libgnome-menu
            to load the contents of the preferences menu.
    
            * control-center.c:
            (relayout_canvas), (get_x), (get_y), (get_entry),
            (get_line_length): update for control-center-categories.[ch] changes.
            (activate_entry): load the .desktop file and launch.
            (create_window), (main): remove all nautilus and bonobo stuff.
    
            * cinnamon-control-center.png: rename from control-center2.png.
    
            * gnomecc.desktop.in: update for new icon name.
    
            * GNOME_ControlCenter.server.in: remove, we're not a Nautilus view
            anymore.
    
            * active.png, bcg_top.png, bg.png, bgtop.png,
              blank.png, ccsplash.png, empty.png, foot.png,
              gnome-lockscreen.png, gnome-unlockscreen.png,
              gnomecc-ui.xml, html-view.xpm, kill-gnomecc.sh,
              left.png, left_top.png, title.png, tree-view.xpm:
            Remove what seems to be a big bunch of cruft.
    
            * Makefile.am: remove cruft, install new icon, don't link
            aganst libnautilus.

 control-center/ChangeLog                   |  28 ++
 control-center/Makefile.am                 |  29 +-
 control-center/active.png                  | Bin 121 -> 0 bytes
 control-center/bcg_top.png                 | Bin 93 -> 0 bytes
 control-center/bg.png                      | Bin 109 -> 0 bytes
 control-center/bgtop.png                   | Bin 396 -> 0 bytes
 control-center/blank.png                   | Bin 88 -> 0 bytes
 control-center/ccsplash.png                | Bin 25562 -> 0 bytes
 control-center/control-center-categories.c | 580 +++++++++--------------------
 control-center/control-center-categories.h |  99 +++--
 control-center/control-center.c            | 274 ++------------
 control-center/empty.png                   | Bin 108 -> 0 bytes
 control-center/foot.png                    | Bin 11605 -> 0 bytes
 control-center/cinnamon-control-center.png    | Bin 0 -> 3464 bytes
 control-center/gnome-lockscreen.png        | Bin 1092 -> 0 bytes
 control-center/gnome-unlockscreen.png      | Bin 1106 -> 0 bytes
 control-center/gnomecc-ui.xml              |  19 -
 control-center/gnomecc.desktop.in          |   2 +-
 control-center/html-view.xpm               | 102 -----
 control-center/kill-gnomecc.sh             |  11 -
 control-center/left.png                    | Bin 1493 -> 0 bytes
 control-center/left_top.png                | Bin 519 -> 0 bytes
 control-center/title.png                   | Bin 763 -> 0 bytes
 control-center/tree-view.xpm               |  77 ----
 24 files changed, 332 insertions(+), 889 deletions(-)

commit 9ef3d2f4670356baefd3a53d73111e1f2c28d312
Author: Hendrik Richter <hendrikr@src.gnome.org>
Date:   Mon Nov 15 20:14:15 2004 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 52 +++++++++++++++++++++++++++++++---------------------
 2 files changed, 35 insertions(+), 21 deletions(-)

commit d2be36a62ac6d942198c4408fe73c092d05bcd82
Author: David Lodge <dave@cirt.net>
Date:   Sun Nov 14 20:14:39 2004 +0000

    Updated British English translation.
    
    2004-11-14  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 +++
 po/en_GB.po  | 116 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 64 insertions(+), 56 deletions(-)

commit 0957cbe9a92fb5b9d75b7f80218df8466d7feb1e
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Nov 11 09:24:19 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-11-11  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 32 ++++++++++++++------------------
 2 files changed, 18 insertions(+), 18 deletions(-)

commit f5304dd650b1eb220031946f1fe322effffea3d3
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Tue Nov 9 17:48:42 2004 +0000

    remove capplets/desktop-links/*
    
    2004-11-09  Mark McLoughlin  <mark@skynet.ie>
    
            * POTFILES.in: remove capplets/desktop-links/*

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 860e984b3ad894049f0cf827afdac48356f09678
Author: Mark McLoughlin <markmc@src.gnome.org>
Date:   Tue Nov 9 17:43:47 2004 +0000

     - install all capplet .desktop files in $(datadir)/applications
       instead of $(datadir)/control-center-2.0/capplets
     - add OnlyShowIn=GNOME; to them all
     - remove capplets/desktop-links/*

 ChangeLog                                          |  12 ++
 capplets/Makefile.am                               |   2 +-
 capplets/accessibility/at-properties/ChangeLog     |   7 +
 capplets/accessibility/at-properties/Makefile.am   |   2 +-
 .../at-properties/at-properties.desktop.in         |   1 +
 capplets/accessibility/keyboard/ChangeLog          |   6 +
 capplets/accessibility/keyboard/Makefile.am        |   2 +-
 .../keyboard/accessibility-keyboard.desktop.in     |   1 +
 capplets/background/ChangeLog                      |   6 +
 capplets/background/Makefile.am                    |   2 +-
 capplets/background/background.desktop.in          |   1 +
 capplets/default-applications/ChangeLog            |   6 +
 capplets/default-applications/Makefile.am          |   2 +-
 .../default-applications.desktop.in                |   1 +
 capplets/desktop-links/.cvsignore                  |  12 --
 capplets/desktop-links/Accessibility.directory.in  |   5 -
 capplets/desktop-links/Advanced.directory.in       |   5 -
 capplets/desktop-links/ChangeLog                   | 207 ---------------------
 capplets/desktop-links/Makefile.am                 |  34 ----
 capplets/desktop-links/README                      |   5 -
 capplets/desktop-links/Sawfish/.cvsignore          |   5 -
 capplets/desktop-links/Sawfish/Makefile.am         |  68 -------
 .../desktop-links/Sawfish/Sawfish.directory.in.in  |   5 -
 .../Sawfish/appearance-properties.desktop.in       |  11 --
 .../Sawfish/bindings-properties.desktop.in         |  11 --
 .../Sawfish/focus-properties.desktop.in            |  19 --
 .../Sawfish/match-properties.desktop.in            |  11 --
 .../Sawfish/maximize-properties.desktop.in         |  11 --
 .../Sawfish/meta-properties.desktop.in             |  11 --
 .../Sawfish/misc-properties.desktop.in             |  12 --
 .../Sawfish/move-properties.desktop.in             |  11 --
 .../Sawfish/placement-properties.desktop.in        |  11 --
 capplets/desktop-links/Sawfish/sawfish-group.png   | Bin 3047 -> 0 bytes
 .../Sawfish/sound-properties.desktop.in            |  11 --
 .../Sawfish/workspace-properties.desktop.in        |  11 --
 capplets/desktop-links/accessibility-directory.png | Bin 3688 -> 0 bytes
 .../desktop-links/legacy-applications-capplet.png  | Bin 5528 -> 0 bytes
 .../legacy-applications.desktop.in.in              |   8 -
 capplets/display/ChangeLog                         |   6 +
 capplets/display/Makefile.am                       |   2 +-
 capplets/display/display-properties.desktop.in     |   1 +
 capplets/file-types/ChangeLog                      |   6 +
 capplets/file-types/Makefile.am                    |   2 +-
 capplets/file-types/file-types.desktop.in          |   1 +
 capplets/font/ChangeLog                            |   6 +
 capplets/font/Makefile.am                          |   2 +-
 capplets/font/font-properties.desktop.in           |   1 +
 capplets/keybindings/ChangeLog                     |   6 +
 capplets/keybindings/Makefile.am                   |   2 +-
 capplets/keybindings/keybinding.desktop.in         |   1 +
 capplets/keyboard/ChangeLog                        |   6 +
 capplets/keyboard/Makefile.am                      |   2 +-
 capplets/keyboard/keyboard.desktop.in              |   1 +
 capplets/localization/Makefile.am                  |   2 +-
 capplets/localization/localization.desktop.in      |   1 +
 capplets/mouse/ChangeLog                           |   6 +
 capplets/mouse/Makefile.am                         |   2 +-
 capplets/mouse/gnome-settings-mouse.desktop.in     |   1 +
 capplets/network/ChangeLog                         |   6 +
 capplets/network/Makefile.am                       |   2 +-
 .../network/gnome-network-preferences.desktop.in   |   1 +
 capplets/sound/ChangeLog                           |   6 +
 capplets/sound/Makefile.am                         |   2 +-
 capplets/sound/gnome-settings-sound.desktop.in     |   1 +
 capplets/theme-switcher/ChangeLog                  |   6 +
 capplets/theme-switcher/Makefile.am                |   2 +-
 .../theme-switcher/gtk-theme-selector.desktop.in   |   1 +
 capplets/ui-properties/ChangeLog                   |   6 +
 capplets/ui-properties/Makefile.am                 |   2 +-
 .../ui-properties/gnome-ui-properties.desktop.in   |   1 +
 capplets/windows/ChangeLog                         |   6 +
 capplets/windows/Makefile.am                       |   2 +-
 capplets/windows/window-properties.desktop.in      |   1 +
 configure.in                                       |   3 -
 control-center/ChangeLog                           |   5 +
 control-center/Makefile.am                         |   1 -
 76 files changed, 141 insertions(+), 505 deletions(-)

commit 5bde1b9bd5d6bf38d388238fa7a67520b617764d
Author: Alexander Shopov <ash@contact.bg>
Date:   Mon Nov 8 07:22:30 2004 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2004-11-08  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 +
 po/bg.po     | 502 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 257 insertions(+), 250 deletions(-)

commit 476c397fdf0eb358a2a1ff73bf38c8799a25cc45
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Nov 4 21:33:45 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 17 +++++++++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

commit a5f9c028ccb71b62086a82819f1f1fbc79f64e7a
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Nov 4 09:06:37 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-11-04  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 63 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 44 insertions(+), 23 deletions(-)

commit dfd5a56899a93233009f9f2ed86790a292c6cf44
Author: Diego González <dggonz@src.gnome.org>
Date:   Wed Nov 3 20:29:08 2004 +0000

    adding the about-me capplet

 capplets/about-me/AUTHORS                   |    2 +
 capplets/about-me/Makefile.am               |   25 +
 capplets/about-me/e-image-chooser.c         |  522 ++++++
 capplets/about-me/e-image-chooser.h         |   64 +
 capplets/about-me/e-util-marshal.list       |    3 +
 capplets/about-me/gnome-about-me-password.c |  333 ++++
 capplets/about-me/gnome-about-me-password.h |    7 +
 capplets/about-me/gnome-about-me.c          |  705 +++++++
 capplets/about-me/gnome-about-me.glade      | 2647 +++++++++++++++++++++++++++
 9 files changed, 4308 insertions(+)

commit 8cc47370b0c80924984c270c7f0de4c55f8eadab
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Nov 3 12:34:32 2004 +0000

    Updated Czech translation.
    
    2004-11-03  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 17 +++++++++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

commit 55e4e4f5e496c3a0d37c5a5f9f3d9711906a958c
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Nov 2 22:17:48 2004 +0000

    forgot this

 capplets/theme-switcher/gnome-theme-installer.c | 1 -
 1 file changed, 1 deletion(-)

commit 233c68170e78b7365385e35f79c74bb59b3f2115
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Nov 2 22:13:05 2004 +0000

    Patch from Vijaykumar Patwari <vijaykumar.patwari@wipro.com> to warn when
    
    Tue Nov  2 16:03:41 2004  Jonathan Blandford  <jrb@redhat.com>
    
            * theme-switcher.c (install_dialog_response): Patch from
            Vijaykumar Patwari <vijaykumar.patwari@wipro.com> to warn when
            .themes can't be written to.

 capplets/theme-switcher/ChangeLog               |   6 +
 capplets/theme-switcher/gnome-theme-installer.c |  91 +--
 capplets/theme-switcher/theme-switcher.c        | 836 ------------------------
 3 files changed, 57 insertions(+), 876 deletions(-)

commit 8512ca3865f04c366597557169697cf724b91f54
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Tue Nov 2 00:22:38 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 9 +++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 4044f6637fb2aed7788dd298e6ebc1275578a902
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Mon Nov 1 21:23:31 2004 +0000

    Updated Czech translation.
    
    2004-11-01  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog | 4 ++++
 po/cs.po     | 9 +++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit a66b869ef809863d55cf8e2dabdbbf68354010b3
Author: Jeff Waugh <jdub@perkypants.org>
Date:   Mon Nov 1 11:39:28 2004 +0000

    Add a .desktop file for the font viewer, need it for the MIME loving.
    
    
    2004-11-01  Jeff Waugh  <jdub@perkypants.org>
    
        * po/POTFILES.in, vfs-methods/fontilus/Makefile.am,
          vfs-methods/fontilus/gnome-font-viewer.desktop.in,
          vfs-methods/fontilus/.cvsignore: Add a .desktop file for the
          font viewer, need it for the MIME loving. D'oh!

 ChangeLog                                         |  7 +++++++
 po/POTFILES.in                                    |  1 +
 vfs-methods/fontilus/.cvsignore                   |  1 +
 vfs-methods/fontilus/Makefile.am                  |  8 +++++++-
 vfs-methods/fontilus/gnome-font-viewer.desktop.in | 14 ++++++++++++++
 5 files changed, 30 insertions(+), 1 deletion(-)

commit 388fb297cba44e41821500d757ed196d5ddf1c42
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Oct 31 20:20:53 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 37 +++++++++++++++++++++----------------
 2 files changed, 25 insertions(+), 16 deletions(-)

commit 46ae8ee81946aab0583109d2ad2e89214296bb7b
Author: Hendrik Richter <hendrikr@src.gnome.org>
Date:   Sun Oct 31 12:33:03 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 211 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 117 insertions(+), 98 deletions(-)

commit 2b072c3d59f414937a6a106485f09ef2b55793dc
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Oct 30 13:41:32 2004 +0000

    Updated Spanish translation.
    
    2004-10-30  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |    4 +
 po/es.po     | 1423 +++++-----------------------------------------------------
 2 files changed, 106 insertions(+), 1321 deletions(-)

commit f0b4b1bdc50ae9b3fcf7bd178a1de3c2057e63f8
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Oct 29 08:50:22 2004 +0000

    Updated Czech translation.
    
    2004-10-29  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 37 +++++++++++++++++++++----------------
 2 files changed, 25 insertions(+), 16 deletions(-)

commit ba3823a412ab9d2b042ea24350b4246cdaf97db5
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Oct 28 19:26:03 2004 +0000

    patch by June Tate <june@theonelab.com> to add a "remove" button that
    
    2004-10-28  Sebastien Bacher  <seb128@debian.org>
    
           * sound-view.c: (remove_cb), (sound_view_init), (select_row_cb):
           patch by June Tate <june@theonelab.com> to add a "remove" button that
           allow to turn off a sound event (Closes: #14272).

 NEWS | 5 +++++
 1 file changed, 5 insertions(+)

commit 007bde5c1d81d182af3c50d083899e27624e2df3
Author: Mike Newman <MikeGTN@src.gnome.org>
Date:   Thu Oct 28 18:20:17 2004 +0000

    Fix for #148895

 capplets/theme-switcher/ChangeLog               |  6 ++++++
 capplets/theme-switcher/gnome-theme-installer.c | 17 +++++++++++++++--
 2 files changed, 21 insertions(+), 2 deletions(-)

commit 8eac60b61649118fa39346adf117844935a5e623
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Oct 28 17:37:50 2004 +0000

    Don't nuke .Xdefaults when restarting g-s-d. Patch from Nick
    
    2004-10-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-settings-xrdb.c: (append_xresource_file), (apply_settings):
        Don't nuke .Xdefaults when restarting g-s-d. Patch from Nick

 gnome-settings-daemon/ChangeLog             |  6 ++++++
 gnome-settings-daemon/gnome-settings-xrdb.c | 11 +++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

commit 7d643f1f53cbdcaf1e9f19d927b0a1a9182a4b95
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Oct 28 07:04:32 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-10-28  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 64 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 39 insertions(+), 29 deletions(-)

commit cba33bf8e467fbfef60f51160ab0166898824929
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Wed Oct 27 14:33:17 2004 +0000

    da.po: quick fix

 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit c67c245f286d1c739a66f2b91fe05a87b464a783
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Oct 27 10:43:24 2004 +0000

    * patch by Rajkumar <rajkumar.siva@wipro.com> to fix the themes
    
    2004-10-27  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-theme-installer.c: (transfer_done_targz_idle_cb),
        (transfer_done_tarbz2_idle_cb): *
        patch by Rajkumar <rajkumar.siva@wipro.com> to fix the themes
        installation with the non GNU versions of tar (Closes: #114553).

 capplets/theme-switcher/ChangeLog               | 7 +++++++
 capplets/theme-switcher/gnome-theme-installer.c | 8 ++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit fe379bce54ddc8df3b23d096a8d1876446d9a372
Author: Sebastien Bacher <seb128@debian.org>
Date:   Wed Oct 27 09:32:33 2004 +0000

    patch by David Sedeo Fernndez <david@alderia.com> to fix a warning
    
    2004-10-27  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-theme-save.c: (setup_directory_structure):
        patch by David Sedeo Fernndez <david@alderia.com> to fix a
        warning during the compilation (Closes: #148345).

 capplets/theme-switcher/ChangeLog          | 6 ++++++
 capplets/theme-switcher/gnome-theme-save.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 018427fb2cb4ba2f1f8a46bad6ffa9ec598ca8c8
Author: Mohammad DAMT <mdamt@bisnisweb.com>
Date:   Tue Oct 26 00:54:10 2004 +0000

    Updated Indonesian translation
    
    2004-10-26  Mohammad DAMT  <mdamt@bisnisweb.com>
    
        * id.po: Updated Indonesian translation

 po/ChangeLog |    4 +
 po/id.po     | 1341 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 733 insertions(+), 612 deletions(-)

commit 73eb0f283a4c018ac6e3548f7f990120b3a0b74c
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Fri Oct 22 15:09:30 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 170 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 94 insertions(+), 80 deletions(-)

commit b4ec19dbda9c7912ffd4a3b22ce27718b1e356eb
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Oct 22 14:04:46 2004 +0000

    Updated Czech translation.
    
    2004-10-22  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 50 +++++++++++++++++++++++++-------------------------
 2 files changed, 29 insertions(+), 25 deletions(-)

commit 5461d0a7c2e14f066f9b977a79e42641e82e5198
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Fri Oct 22 08:19:15 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-10-22  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 24 +++++++++++++-----------
 2 files changed, 17 insertions(+), 11 deletions(-)

commit 121ed1f96db937bd3aabc753a384ba665bcaaf97
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Oct 22 02:51:20 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 52 ++++++++++++++++++++++++++--------------------------
 2 files changed, 30 insertions(+), 26 deletions(-)

commit ad0968036a2bd3a305461ff3193d4c0cdbf02487
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Oct 21 19:41:26 2004 +0000

    patch by Thomas Cataldo <thomas.cataldo@aliacom.fr> to fix a bunch of
    
    2004-10-21  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-settings-default-editor.c: (vfs_change_cb):
        * gnome-settings-font.c: (load_cursor):
        * gnome-settings-gtk1theme.c: (apply_settings):
        * gnome-settings-keyboard.c: (apply_settings):
        * gnome-settings-multimedia-keys.c: (init_kbd):
        * gnome-settings-xsettings.c: (gnome_settings_xsettings_load):
        patch by Thomas Cataldo <thomas.cataldo@aliacom.fr> to fix a bunch of
        memory leaks (Closes: #150145).

 gnome-settings-daemon/ChangeLog                        | 11 +++++++++++
 gnome-settings-daemon/gnome-settings-default-editor.c  | 16 ++++++++++++++--
 gnome-settings-daemon/gnome-settings-font.c            |  5 +++--
 gnome-settings-daemon/gnome-settings-gtk1theme.c       |  2 ++
 gnome-settings-daemon/gnome-settings-keyboard.c        |  3 ++-
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 18 +++++++++++++-----
 gnome-settings-daemon/gnome-settings-xsettings.c       |  2 ++
 7 files changed, 47 insertions(+), 10 deletions(-)

commit 6f620d298dbfc13f98da952abc46572a901d68aa
Author: J.H.M. Dassen (Ray) <jdassen@src.gnome.org>
Date:   Thu Oct 21 19:19:45 2004 +0000

    Added Thunderbird to the mail clients

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../gnome-default-applications-properties-structs.c                  | 1 +
 2 files changed, 6 insertions(+)

commit 59193577c43497e80bf4f281116c31a35479bf20
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Oct 21 17:47:12 2004 +0000

    reviewed by: <delete if not using a buddy>
    
    2004-10-21  Sebastien Bacher  <seb128@debian.org>
    
        reviewed by: <delete if not using a buddy>
    
        * gnome-default-applications-properties.c: (read_browser),
        (read_mailer):

 capplets/default-applications/ChangeLog                            | 7 +++++++
 .../default-applications/gnome-default-applications-properties.c   | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit e28e7ca0dbe83d1db6177ab4b5924b10c1a72868
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Oct 21 17:38:46 2004 +0000

    patch by Ross Burton <ross@burtonini.com> to fix the widget expansion
    
    2004-10-21  Sebastien Bacher  <seb128@debian.org>
    
           * gnome-keyboard-properties.glade:
           patch by Ross Burton <ross@burtonini.com> to fix the widget expansion
           (Closes: #151588).

 capplets/keyboard/ChangeLog                       | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit aead454d838010fd9c1e82ed94200973c782dbcc
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Oct 21 16:57:23 2004 +0000

    Changed the "Gnome" occurences to "GNOME" (Closes: #152085).
    
    2004-10-21  Sebastien Bacher  <seb128@debian.org>
    
        * capplets/default-applications/gnome-default-applications-properti
        es-structs.c:
        * capplets/file-types/service-info.c:
        * control-center/control-center-categories.c:
        (load_information_to_information):
        * control-center/control-center.c: (gnome_cc_about):
        Changed the "Gnome" occurences to "GNOME" (Closes: #152085).

 ChangeLog                                                      | 10 ++++++++++
 .../gnome-default-applications-properties-structs.c            |  2 +-
 capplets/file-types/service-info.c                             |  2 +-
 control-center/control-center-categories.c                     |  2 +-
 control-center/control-center.c                                |  2 +-
 5 files changed, 14 insertions(+), 4 deletions(-)

commit 86a4d3517a0815266f884f5e5bb0536ff0853fe5
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Wed Oct 20 14:40:45 2004 +0000

    Only show hyper if it is mapped to a different key than the other
    
    2004-10-20  Matthias Clasen  <mclasen@redhat.com>
    
        * gnome-window-properties.c (reload_mouse_modifiers): Only
        show hyper if it is mapped to a different key than the other
        modifiers.  Fixes bug #152132

 capplets/windows/gnome-window-properties.c | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

commit a157aea351a83fab6ca86c57bc70e111cf9a8156
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Wed Oct 20 13:51:37 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-10-20  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 224 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 114 insertions(+), 114 deletions(-)

commit f4826423885ec4fbad9c82e0b8d11d1bdda78c16
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Mon Oct 18 09:51:42 2004 +0000

    Updated Czech translation.
    
    2004-10-18  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 137 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 74 insertions(+), 67 deletions(-)

commit abe616d82c95bb3b59ec43bc6f40334f03eceb95
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Oct 17 19:00:14 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +++
 po/en_CA.po  | 115 +++++++++++++++++++++--------------------------------------
 2 files changed, 44 insertions(+), 75 deletions(-)

commit 3c53e1ee001a97db2cc530219902b61680f68fe6
Author: Paolo Borelli <pborelli@katamail.com>
Date:   Sun Oct 17 17:32:05 2004 +0000

    fix leak, patch by Kjartan Maaras. (#153595).
    
    2004-10-17  Paolo Borelli  <pborelli@katamail.com>
    
        * capplets/common/activate-settings-daemon.c: fix leak, patch by
        Kjartan Maaras. (#153595).
    
        approved by jrb.

 ChangeLog                                  | 5 +++++
 capplets/common/activate-settings-daemon.c | 2 +-
 capplets/common/gnome-theme-info.c         | 6 ++++--
 3 files changed, 10 insertions(+), 3 deletions(-)

commit b2b3154710c49431170472d47815a40c8ea1a085
Author: David Lodge <dave@cirt.net>
Date:   Sun Oct 17 12:22:05 2004 +0000

    Updated British English translation.
    
    2004-10-17  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 543 +++++++++++++++++------------------------------------------
 2 files changed, 154 insertions(+), 393 deletions(-)

commit 0a97111f9a044f9ecb2ed4d7bad8d3a13ff55ea7
Author: Vincent Untz <vincent@vuntz.net>
Date:   Sun Oct 17 09:17:31 2004 +0000

    add the keybinding to launch a terminal
    
    2004-10-17  Vincent Untz  <vincent@vuntz.net>
    
        * gnome-keybinding-properties.c: add the keybinding to launch a
        terminal

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit 31241dc09d00d49318d1642a16b394ec670bb832
Author: J.H.M. Dassen (Ray) <jdassen@src.gnome.org>
Date:   Sun Oct 17 08:27:37 2004 +0000

    Corrected w3m binary name
    Added Debian's "sensible-browser" (wrapper script honouring
    $BROWSER (http://www.catb.org/~esr/BROWSER/), x-www-browser etc.)
    Added Debian's "x-terminal-emulator" (which is managed through the
    alternatives mechanism)
    Added "aterm" (http://aterm.sf.net)
    Added "Firefox" entry (official capitalisation; no StudlyCaps)
    Removed inconsistent "Firebird/FireFox" entry

 capplets/default-applications/ChangeLog                      | 12 ++++++++++++
 .../gnome-default-applications-properties-structs.c          |  8 +++++---
 2 files changed, 17 insertions(+), 3 deletions(-)

commit 6e1883c2b042697472d6a43aa9547472e3361f21
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Oct 17 01:32:28 2004 +0000

    require libxklavier 1.10 - since API was changed

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit cafb0ad7485adb92c7ecd61c81e540b257d8995f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Oct 15 22:43:13 2004 +0000

    Fixing #154358

 capplets/keyboard/ChangeLog                        |  5 ++++
 .../keyboard/gnome-keyboard-properties-xkbpv.c     | 28 ++++++++++++++++++----
 2 files changed, 28 insertions(+), 5 deletions(-)

commit eb83cea64a8693e44fcb33513291c8aaf6a6fa53
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Oct 15 19:37:59 2004 +0000

    Enable the ximian shell at long last
    
    2004-10-15  Jody Goldberg <jody@gnome.org>
    
        * configure.in : bump the xklavier version dep.  I hope 1.04 is
          sufficient, rather than cvs head.

 ChangeLog                              |   5 +
 configure.in                           |   2 +-
 control-center/Makefile.am             |  37 ++-
 control-center/capplet-dir-view-list.c | 530 -------------------------------
 control-center/capplet-dir-view.c      | 560 ---------------------------------
 control-center/capplet-dir-view.h      | 102 ------
 control-center/capplet-dir.c           | 510 ------------------------------
 control-center/capplet-dir.h           |  99 ------
 control-center/main.c                  | 172 ----------
 control-center/ximian-shell.patch      |  62 ----
 po/POTFILES.in                         |   4 -
 11 files changed, 35 insertions(+), 2048 deletions(-)

commit 690958ade8eb0b851e92017df4fb79f06faa45da
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Oct 14 19:09:45 2004 +0000

    post release bump
    
    
    2004-10-14  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6112128120dc044ab7240d84b80bd6179ac123e0
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Oct 14 19:07:43 2004 +0000

    post release bump
    
    
    2004-10-14  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 135d52c612f6ba5b24e73f24d155625ffa7653aa
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Oct 14 19:05:48 2004 +0000

    Release 2.8.1
    
    
    2004-10-14  Jody Goldberg <jody@gnome.org>
    
        * Release 2.8.1

 ChangeLog                                      |   4 +
 NEWS                                           |   9 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/display/ChangeLog                     |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 configure.in                                   |   2 +-
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/af.po                                       |  56 +--
 po/am.po                                       |  56 +--
 po/ar.po                                       |  56 +--
 po/az.po                                       |  56 +--
 po/be.po                                       |  56 +--
 po/bg.po                                       |  56 +--
 po/bn.po                                       |  56 +--
 po/bs.po                                       |  56 +--
 po/ca.po                                       |  56 +--
 po/cs.po                                       |  56 +--
 po/cy.po                                       |  56 +--
 po/da.po                                       |  48 +--
 po/de.po                                       |  56 +--
 po/el.po                                       |  56 +--
 po/en_CA.po                                    |  39 +-
 po/en_GB.po                                    | 474 ++++++++++++++++++-------
 po/es.po                                       |  56 +--
 po/et.po                                       |  56 +--
 po/eu.po                                       |  56 +--
 po/fa.po                                       |  56 +--
 po/fi.po                                       |  56 +--
 po/fr.po                                       |  48 +--
 po/ga.po                                       |  56 +--
 po/gl.po                                       |  56 +--
 po/gu.po                                       |  80 +++--
 po/he.po                                       |  56 +--
 po/hi.po                                       |  56 +--
 po/hr.po                                       |  56 +--
 po/hu.po                                       |  56 +--
 po/id.po                                       |  56 +--
 po/is.po                                       |  56 +--
 po/it.po                                       | 122 ++++---
 po/ja.po                                       |  56 +--
 po/ko.po                                       |  56 +--
 po/lt.po                                       |  56 +--
 po/lv.po                                       |  56 +--
 po/mk.po                                       | 142 +++++---
 po/ml.po                                       |  56 +--
 po/mn.po                                       |  56 +--
 po/ms.po                                       |  56 +--
 po/nb.po                                       |  56 +--
 po/nl.po                                       |  56 +--
 po/nn.po                                       |  56 +--
 po/no.po                                       |  56 +--
 po/pa.po                                       |  56 +--
 po/pl.po                                       |  43 ++-
 po/pt.po                                       |  56 +--
 po/pt_BR.po                                    |  56 +--
 po/ro.po                                       |  56 +--
 po/ru.po                                       |  96 +++--
 po/sk.po                                       |  56 +--
 po/sl.po                                       |  56 +--
 po/sq.po                                       |  56 +--
 po/sr.po                                       |  43 ++-
 po/sr@Latn.po                                  |  94 ++---
 po/sv.po                                       |  56 +--
 po/ta.po                                       |  56 +--
 po/th.po                                       |  56 +--
 po/tr.po                                       |  56 +--
 po/uk.po                                       |  56 +--
 po/vi.po                                       |  56 +--
 po/wa.po                                       |  56 +--
 po/zh_CN.po                                    |  60 ++--
 po/zh_TW.po                                    |  56 +--
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 99 files changed, 2441 insertions(+), 1903 deletions(-)

commit 5ce9fb8666b3e4b779e1d043c47f6cb81aeaf64e
Author: Rodney Dawes <dobey@novell.com>
Date:   Thu Oct 14 14:55:24 2004 +0000

    Use g_markup_printf_escaped () to fill in the description
    
    2004-10-14  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_update_description):
        Use g_markup_printf_escaped () to fill in the description
    
        Fixes #155184

 capplets/background/ChangeLog       | 7 +++++++
 capplets/background/gnome-wp-item.c | 8 ++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 8bfa40eecd6ba0b39c9d45f5aaa01f613998ac3e
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Thu Oct 14 10:04:15 2004 +0000

    fix header

 po/ru.po | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit 04963f545cecf55f50f525d76b59ac078b42fe4d
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Thu Oct 14 09:25:29 2004 +0000

    Update Russian translation

 po/ChangeLog |   4 ++
 po/ru.po     | 191 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 105 insertions(+), 90 deletions(-)

commit 41951d5b3ad82606d3a26f7dbd2b493cbc3c899d
Author: Sebastien Bacher <seb128@debian.org>
Date:   Thu Oct 14 08:54:44 2004 +0000

    Use the Web Browser for https too. (Closes: #123487).
    
    2004-10-14  Sebastien Bacher  <seb128@debian.org>
    
        * gnome-default-applications-properties.c: (setup_peditors),
        (read_browser), (value_changed_cb): Use the Web Browser for https too.
        (Closes: #123487).

 capplets/default-applications/ChangeLog            |  6 +++
 .../gnome-default-applications-properties.c        | 48 ++++++++++++++++++----
 2 files changed, 45 insertions(+), 9 deletions(-)

commit fc56c5f861e61743cdcba008044deec1a98a47c9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Oct 14 08:35:05 2004 +0000

    Revert string changes and add entries for Firefox on Debian and Fedora
    
    2004-10-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-default-applications-properties-structs.c: Revert string
        changes and add entries for Firefox on Debian and Fedora with
        new binary names. Original patch from jdassen at debian org.
        Closes part of bug #155246. The original patch should go into HEAD
        after branching.
        * gnome-default-applications-properties.c: (browser_setup_custom),
        (mailer_setup_custom), (terminal_setup_custom): Use the binary
        that's found in the path. Patch by seb128 at debian org. Closes
        bug #148991.

 capplets/default-applications/ChangeLog                      | 12 ++++++++++++
 .../gnome-default-applications-properties-structs.c          |  9 ++++-----
 .../gnome-default-applications-properties.c                  |  6 +++---
 3 files changed, 19 insertions(+), 8 deletions(-)

commit 464e9f4837e6406958ff4749b74ebbd0b31b1daf
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Thu Oct 14 04:17:33 2004 +0000

    ankit@redhat.com 14/10/2004 * Last Modification

 po/gu.po | 112 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 56 insertions(+), 56 deletions(-)

commit b6fe1f8a13e943705a75ad53172ae2eb3e7c3882
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Oct 14 00:40:01 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 70 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 45 insertions(+), 29 deletions(-)

commit b1786abb426b0943faa3b5524c2289fc4c049540
Author: Richard Hult <richard@imendio.com>
Date:   Wed Oct 13 23:39:47 2004 +0000

    Remove unecessary frame, fixes a bug with the transparent background.
    
    2004-10-14  Richard Hult  <richard@imendio.com>
    
        * drw-break-window.c (drw_break_window_init): Remove unecessary
        frame, fixes a bug with the transparent background.

 typing-break/ChangeLog          | 5 +++++
 typing-break/drw-break-window.c | 8 +-------
 2 files changed, 6 insertions(+), 7 deletions(-)

commit aa90031bee5522bf6669c7227c9d8ddf85b459a9
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Wed Oct 13 23:12:46 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   6 ++-
 po/sr.po      |  66 +++++++++++++++++++--------------
 po/sr@Latn.po | 117 +++++++++++++++++++++++++++++++---------------------------
 3 files changed, 107 insertions(+), 82 deletions(-)

commit b18c197c73721898e0daae72e0cfc84601fbb567
Author: David Lodge <dave@cirt.net>
Date:   Wed Oct 13 20:41:57 2004 +0000

    Updated British English translation.
    
    2004-10-13  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 499 ++++++++++++++++++-----------------------------------------
 2 files changed, 157 insertions(+), 346 deletions(-)

commit fda2b9570f4fd65e636c83ab33681d596a9a1baa
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Oct 13 20:11:35 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-10-13  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 64 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 42 insertions(+), 26 deletions(-)

commit c1261c4812edb235d35e7df3f8e6829e1ab9a411
Author: J.H.M. Dassen (Ray) <jdassen@src.gnome.org>
Date:   Wed Oct 13 15:40:00 2004 +0000

    Added Mozilla Firefox, Debian's "sensible-browser" and Debian's
    "x-terminal-emulator"; corrected typo in "w3m" binary name.

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../gnome-default-applications-properties-structs.c                 | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 0f44d74f5b7122075216b90c60c37a89fe2417be
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Oct 10 18:49:30 2004 +0000

    Updated French translation.

 po/ChangeLog |  4 +++
 po/fr.po     | 83 +++++++++++++++++++++++-------------------------------------
 2 files changed, 36 insertions(+), 51 deletions(-)

commit 95f498692414fdff6b7c82720b134e6ab1fded44
Author: Christophe Fergeau <teuf@gnome.org>
Date:   Fri Oct 8 21:16:07 2004 +0000

    switch ALSA_LIBS and GST_LIBS order in libacme_la_LIBADD, fixes some
    
    2004-10-08  Christophe Fergeau  <teuf@gnome.org>
    
        * gnome-settings-daemon/actions/Makefile.am: switch ALSA_LIBS and
          GST_LIBS order in libacme_la_LIBADD, fixes some libtool link
          issues on Debian.

 ChangeLog                                 | 6 ++++++
 gnome-settings-daemon/actions/Makefile.am | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 91f43f2085cadc32298c11e4687274e8b2ac199a
Author: Ole Laursen <olau@hardworking.dk>
Date:   Thu Oct 7 17:59:58 2004 +0000

    Fixed a couple of spelling mistakes in the Danish translation.
    
    2004-10-07  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Fixed a couple of spelling mistakes in the Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 26 +++++++++-----------------
 2 files changed, 13 insertions(+), 17 deletions(-)

commit eb1faeaa3114ae36f987621af299b3b5de8c184c
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Wed Oct 6 04:02:17 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 2a50d6456cb50504cbdaadeb12119cfb031bc114
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 20:52:53 2004 +0000

    rework the dialog_show so that the dialog is moved before it's shown, and
    
    2004-09-29  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-settings-multimedia-keys.c: (dialog_show): rework the
        dialog_show so that the dialog is moved before it's shown, and
        use gdk_display_sync() instead of a event looping to avoid
        "reentrancy" problems when showing/hiding the dialog in fast
        successions (Closes: #144490)

 gnome-settings-daemon/ChangeLog                        | 8 ++++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 8 +++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 3c2c6c3b26e982fd87a252b49d7c2557a8793565
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Sep 29 20:29:12 2004 +0000

    better way to look for the volume track (patch by Michal Bukovjan
    
    2004-09-29  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-gstreamer.c: (acme_volume_gstreamer_init):
        better way to look for the volume track (patch by Michal Bukovjan
        <bukovjan@mbox.dkm.cz>) (Closes: #153866)

 gnome-settings-daemon/ChangeLog                       | 6 ++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 170a52c503f3e2217046f273c570888c4a8decc8
Author: Rodney Dawes <dobey@novell.com>
Date:   Wed Sep 29 18:12:08 2004 +0000

    Unescape the filename so that we can laod the thumbnail and set the gconf
    
    2004-09-29  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_new): Unescape the filename so that
        we can laod the thumbnail and set the gconf key properly
    
        Fixes #154003

 capplets/background/ChangeLog       | 7 +++++++
 capplets/background/gnome-wp-item.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit caac404814cf97960eb8a2ae9b5404a5d163eb4f
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Wed Sep 29 16:18:56 2004 +0000

    fixed some problems in Russian translation

 po/ChangeLog |   4 +
 po/ru.po     | 505 +++++++----------------------------------------------------
 2 files changed, 59 insertions(+), 450 deletions(-)

commit b98fd2ff69cf400d74e8343e0f5b8b428b1d07c6
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Sep 27 22:33:49 2004 +0000

    fixing one leak, pointed by kmaraas

 gnome-settings-daemon/ChangeLog                     | 5 +++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit bf88391b66b450bb8728109f6c6bc2026f587e16
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun Sep 26 15:13:58 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog | 4 ++++
 po/zh_CN.po  | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 60dbf53a9c4b1c96f4f36037c5d41aa0bd2164a8
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sat Sep 25 19:50:38 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 1be7aa7de78930dd3138577d5ecd3de6dea5dd9b
Author: Rodney Dawes <dobey@novell.com>
Date:   Wed Sep 22 15:07:01 2004 +0000

    Check that the colors aren't NULL before calling gdk_color_free
    
    2004-09-22  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_free):
        Check that the colors aren't NULL before calling gdk_color_free
    
        * gnome-wp-xml.c (gnome_wp_xml_load_xml):
        Check that the item isn't already listed, before we try to add
        the wallpaper to the list
        (gnome_wp_xml_load_list): Load XML files from the correct directory

 capplets/background/ChangeLog       | 10 ++++++++++
 capplets/background/gnome-wp-item.c |  7 +++++--
 capplets/background/gnome-wp-xml.c  | 11 ++++++++++-
 3 files changed, 25 insertions(+), 3 deletions(-)

commit 9cb21bffd560cf06c5e55f792a06aa03d4f3453f
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Tue Sep 21 20:31:03 2004 +0000

    Updated Italian translation.

 po/ChangeLog |   5 ++
 po/it.po     | 200 +++++++++++++++++++----------------------------------------
 2 files changed, 70 insertions(+), 135 deletions(-)

commit 2bf6f52533815ae7f11b900b1cba686c55c6855a
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Sat Sep 18 01:07:04 2004 +0000

    gotovo

 po/mk.po | 107 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 49 insertions(+), 58 deletions(-)

commit d094498605409969d7bd9ab5a5fa99a7dad757de
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Fri Sep 17 19:25:48 2004 +0000

    Updated Greek translation

 po/ChangeLog |  4 ++++
 po/el.po     | 61 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 33 insertions(+), 32 deletions(-)

commit c63544892e5eb058addb6017328074e062740d38
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Wed Sep 15 03:03:10 2004 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |  5 +++++
 po/ru.po     | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 2daf7534abe3ec0d382b501815740a5bc340356b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Sep 14 21:52:01 2004 +0000

    Release 2.8.0
    
    Tue Sep 14 17:50:56 2004  Jonathan Blandford  <jrb@redhat.com>
    
            * configure.in:
            * NEWS: Release 2.8.0

 ChangeLog     |    5 +
 NEWS          |   18 +
 configure.in  |    2 +-
 po/af.po      |   16 +-
 po/am.po      |   16 +-
 po/ar.po      |  628 ++++++++++++---------
 po/az.po      |   55 +-
 po/be.po      |   16 +-
 po/bg.po      |   16 +-
 po/bn.po      |   39 +-
 po/bs.po      |   16 +-
 po/ca.po      |   22 +-
 po/cs.po      |    6 +-
 po/cy.po      |   10 +-
 po/da.po      |    2 +-
 po/de.po      |    6 +-
 po/el.po      |   88 ++-
 po/en_CA.po   |    2 +-
 po/en_GB.po   |    2 +-
 po/es.po      |    2 +-
 po/et.po      |   16 +-
 po/eu.po      |   16 +-
 po/fa.po      |   16 +-
 po/fi.po      |    6 +-
 po/fr.po      |   16 +-
 po/ga.po      |   16 +-
 po/gl.po      |   16 +-
 po/gu.po      |   49 +-
 po/he.po      |   16 +-
 po/hi.po      |   16 +-
 po/hr.po      |   16 +-
 po/hu.po      |    2 +-
 po/id.po      |   16 +-
 po/is.po      |   16 +-
 po/it.po      |   16 +-
 po/ja.po      |    2 +-
 po/ko.po      |    6 +-
 po/lt.po      |   16 +-
 po/lv.po      |   16 +-
 po/mk.po      |   16 +-
 po/ml.po      |   16 +-
 po/mn.po      |   16 +-
 po/ms.po      |   16 +-
 po/nb.po      |   23 +-
 po/nl.po      |    2 +-
 po/nn.po      |   87 +--
 po/no.po      |   23 +-
 po/pa.po      |   56 +-
 po/pl.po      |    2 +-
 po/pt.po      |    2 +-
 po/pt_BR.po   |    2 +-
 po/ro.po      |   15 +-
 po/ru.po      |   10 +-
 po/sk.po      |   16 +-
 po/sl.po      |   16 +-
 po/sq.po      |   62 ++-
 po/sr.po      |   21 +-
 po/sr@Latn.po |   66 +--
 po/sv.po      |    2 +-
 po/ta.po      |   64 ++-
 po/th.po      |   20 +-
 po/tr.po      |    2 +-
 po/uk.po      |    2 +-
 po/vi.po      | 1730 +++++++++++++++++++++++++++++----------------------------
 po/wa.po      |   16 +-
 po/zh_CN.po   |    6 +-
 po/zh_TW.po   |   16 +-
 67 files changed, 1928 insertions(+), 1653 deletions(-)

commit adb0c31413bc6d07462df2e37cb957cfea116d3b
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Mon Sep 13 05:22:19 2004 +0000

    add translation

 po/pa.po | 72 ++++++++++++++++++++++++++--------------------------------------
 1 file changed, 29 insertions(+), 43 deletions(-)

commit 6f52d63cc84bd7e15e489674b8d878897c001697
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Mon Sep 13 04:19:11 2004 +0000

    Updated Thai translation.
    
    2004-09-12  Paisa Seeluangsawat  <paisa@users.sf.net>
    
        * th.po: Updated Thai translation.

 po/th.po | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit d94269b15f28292a5ecbb0d7a35ddd09ddb72032
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Sun Sep 12 20:54:42 2004 +0000

    Updated Thai translation.
    
    2004-09-12  Paisa Seeluangsawat  <paisa@users.sf.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |  20 ++++++----
 po/th.po     | 124 ++++++++++++++++++-----------------------------------------
 2 files changed, 50 insertions(+), 94 deletions(-)

commit 64ae3d3d51d37fec32854b3cb87389b5f288f86a
Author: Laszlo Dvornik <dvornik@gnome.hu>
Date:   Sun Sep 12 11:27:46 2004 +0000

    Updated Hungarian translation by Gabor Kelemen.
    
    2004-09-12  Laszlo Dvornik  <dvornik@gnome.hu>
    
        * hu.po: Updated Hungarian translation by Gabor Kelemen.

 po/ChangeLog |  4 ++++
 po/hu.po     | 47 ++++++++++++++++++++++++-----------------------
 2 files changed, 28 insertions(+), 23 deletions(-)

commit 00c89298327d5c25a357f779b02197331ea825a7
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Sun Sep 12 03:52:47 2004 +0000

    Updated Welsh translation.

 po/ChangeLog |   4 ++
 po/cy.po     | 161 +++++++++++++++++++++--------------------------------------
 2 files changed, 62 insertions(+), 103 deletions(-)

commit 08c5dcbda388a8643a72857a8d91371a1cce2f26
Author: Hendrik Richter <hendrikr@src.gnome.org>
Date:   Sat Sep 11 20:30:55 2004 +0000

    Updated German translation.

 po/ChangeLog | 4 ++++
 po/de.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 173f0e73af2c55999d44dafcf2b588bb09e350da
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Sat Sep 11 12:07:20 2004 +0000

    Updated Catalan translation.

 po/ChangeLog |  4 ++++
 po/ca.po     | 13 +++++--------
 2 files changed, 9 insertions(+), 8 deletions(-)

commit a03720175490019ba6bf236aeb1586cf1445953c
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Sat Sep 11 11:43:13 2004 +0000

    Updated Catalan translation.

 po/ca.po | 39 +++++++++++++++++++--------------------
 1 file changed, 19 insertions(+), 20 deletions(-)

commit 6d14362e4baee79b8fbdee14682b4f3000618a7e
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Fri Sep 10 12:25:46 2004 +0000

    Updated Ukrainian translation.
    
    2004-09-10  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog |  4 ++++
 po/uk.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit cd402f5aed42ebd80f4f29968ec28663ec2e05fc
Author: Ole Laursen <olau@hardworking.dk>
Date:   Thu Sep 9 19:51:58 2004 +0000

    Fixed a string in the Danish translation.
    
    2004-09-09  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Fixed a string in the Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 11 +++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 25d695c6f88e72b0e03400a08329c33944da23a7
Author: Pauli Virtanen <pvirtane@src.gnome.org>
Date:   Thu Sep 9 19:11:25 2004 +0000

    fi.po: Updated Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 24 +++++++++++-------------
 2 files changed, 15 insertions(+), 13 deletions(-)

commit da5a054b9297c0e1fe60219f81fa80904dde57d7
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Thu Sep 9 13:57:24 2004 +0000

    Updated Turkish Translation
    
        * tr.po: Updated Turkish Translation

 po/ChangeLog |  4 ++++
 po/tr.po     | 16 ++++++----------
 2 files changed, 10 insertions(+), 10 deletions(-)

commit ae3cc25dc5983a9580970890fe37d5ec25d8aa18
Author: Arafat Medini <lumina@arabeyes.org>
Date:   Wed Sep 8 12:41:17 2004 +0000

    Updated Arabic translation
    
    
    2004-09-08  Arafat Medini  <lumina@arabeyes.org>
    
        * ar.po: Updated Arabic translation

 po/ChangeLog |    4 +
 po/ar.po     | 1959 +++++++++++-----------------------------------------------
 2 files changed, 354 insertions(+), 1609 deletions(-)

commit 4fd5c3fd20d7efa3380e3df2d8a4db3e0c961013
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Sep 7 17:35:32 2004 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 ++
 po/ca.po     | 168 ++++++++++++++++++++---------------------------------------
 2 files changed, 61 insertions(+), 111 deletions(-)

commit 398a7770fab5dbc05d6adde472b25841c39c511b
Author: Laszlo Dvornik <dvornik@gnome.hu>
Date:   Tue Sep 7 16:52:43 2004 +0000

    Updated Hungarian translation.
    
    2004-09-07  Laszlo Dvornik  <dvornik@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |  4 ++++
 po/hu.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 824b72ebda99d0c35acd4c5d63e467b599af03c7
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Tue Sep 7 14:24:18 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 30ca4f03ffd7b4ae51b0aa8d2414aff1aeca7d39
Author: David Lodge <dave@cirt.net>
Date:   Tue Sep 7 06:03:16 2004 +0000

    Updated British translation.
    
    2004-09-07  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   2 +-
 po/en_GB.po  | 438 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 333 insertions(+), 107 deletions(-)

commit f7368edd0a2ffea9689e3311bf9167f509a8beba
Author: Nguyen Thai Ngoc Duy <pclouds@src.gnome.org>
Date:   Tue Sep 7 05:53:59 2004 +0000

    Updated vi.po

 po/vi.po | 2846 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 1326 insertions(+), 1520 deletions(-)

commit 4a5e40f1e64110f0208683b59d208909094c9778
Author: David Lodge <dave@cirt.net>
Date:   Mon Sep 6 20:39:32 2004 +0000

    Updated British translation.
    
    2004-09-06  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 823 ++++++++---------------------------------------------------
 2 files changed, 116 insertions(+), 711 deletions(-)

commit 7422b7c12d0918f8b8cbcd26e65f3365c0186ec6
Author: Funda Wang <fwang@src.gnome.org>
Date:   Mon Sep 6 17:06:24 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 28 ++++++++++++++--------------
 2 files changed, 18 insertions(+), 14 deletions(-)

commit aa0b8b97b12d567538bee31793f06e69e3ec6796
Author: Mugurel Tudor <mugurelu@go.ro>
Date:   Mon Sep 6 14:18:11 2004 +0000

    Updated Romanian translation by Misu Moldovan <dumol@go.ro>
    
    2004-09-06  Mugurel Tudor  <mugurelu@go.ro>
    
            * ro.po: Updated Romanian translation
        by Misu Moldovan <dumol@go.ro>

 po/ChangeLog |   5 ++
 po/ro.po     | 174 ++++++++++++++++++++++-------------------------------------
 2 files changed, 70 insertions(+), 109 deletions(-)

commit a57401c6bf0709966db026684b4f3cdefee6938c
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Sep 6 12:32:15 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 23 ++++++++++-------------
 2 files changed, 14 insertions(+), 13 deletions(-)

commit d23db89116df533036bbcfd46118124322ddc2e6
Author: N Jayaradha <njaya@src.gnome.org>
Date:   Mon Sep 6 12:28:25 2004 +0000

    yet to proof read

 po/ta.po | 23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

commit f9f25f27c15baf04a180e999189a20881ea64890
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Sep 6 09:56:01 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-09-06  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 4a168c7761cc9e950123713365bd1af36b685f89
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Mon Sep 6 09:39:16 2004 +0000

    Updated Greek Translation.

 po/ChangeLog |  4 +++
 po/el.po     | 93 +++++++++++++++++++++++-------------------------------------
 2 files changed, 40 insertions(+), 57 deletions(-)

commit 6c4b0b06c7e05667184de2d38c00ec930e492b21
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Mon Sep 6 09:28:27 2004 +0000

    Translation updated by Reinout van Schouwen.
    
    2004-09-06  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 19 +++++++++----------
 2 files changed, 13 insertions(+), 10 deletions(-)

commit aac9249c5c69219fb1f59829fe644c83c121350a
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Sep 6 08:55:32 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-09-06  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 8ed5851cf16bec7ab098ecd91c4ef4003b0bbf3b
Author: N Jayaradha <njaya@src.gnome.org>
Date:   Mon Sep 6 05:44:36 2004 +0000

    translated 1 string

 po/ta.po | 65 ++++++++++++++++++++++++----------------------------------------
 1 file changed, 24 insertions(+), 41 deletions(-)

commit 05225f24425be3721da7318f7db8646e3fa4fc6c
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Sep 6 01:38:06 2004 +0000

    Updated Portuguese translation.
    
    2004-09-06  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 3619ac3390b502c24a5d37cd5ec5b745b13db84a
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Mon Sep 6 01:33:41 2004 +0000

    2004-09-06 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |  4 ++++
 po/ja.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit e280cd666467428354379b0ce6e9c3e8cf0db95d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Sep 5 21:02:13 2004 +0000

    Updated Updated
    
    2004-09-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Updated
        * no.po: Updated

 po/ChangeLog |  5 +++++
 po/nb.po     | 61 ++++++++++++++++++++++++++----------------------------------
 po/no.po     | 61 ++++++++++++++++++++++++++----------------------------------
 3 files changed, 57 insertions(+), 70 deletions(-)

commit 0f4aec5e8d13d2bf21a1d3dd68bcd3e19f66877e
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Sep 5 17:58:16 2004 +0000

    Updated spanish translation.
    
    2004-09-05  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated spanish translation.

 po/es.po | 87 ++++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 57 insertions(+), 30 deletions(-)

commit a44c2356f29862b671062a3c5ff46135fb49ddbd
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Sun Sep 5 15:26:35 2004 +0000

    Updating pt_BR translation

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 27 ++++++++++++++++-----------
 2 files changed, 20 insertions(+), 11 deletions(-)

commit 1e025d6766f509e9c557acc0aca26a64760db77f
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sun Sep 5 15:10:26 2004 +0000

    Updated Czech translation.
    
    2004-09-05  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 15 ++++++---------
 2 files changed, 10 insertions(+), 9 deletions(-)

commit 052e59c45590a99a3339868bd263f38d8ff8068d
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Sep 5 11:58:04 2004 +0000

    Updated spanish translation.
    
    2004-09-05  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated spanish translation.

 po/ChangeLog |   4 +++
 po/es.po     | 103 ++++++++++++++++++++++-------------------------------------
 2 files changed, 42 insertions(+), 65 deletions(-)

commit 48807574f437e538499e0b13f103537d501f1b6e
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sat Sep 4 16:48:06 2004 +0000

    Translation updated.
    
    2004-09-04  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |  4 ++++
 po/az.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 86e09488ab1f7bb36fc2b0f4278aa1fa0cfd0acf
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sat Sep 4 16:41:43 2004 +0000

    Translation updated.
    
    2004-09-04  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |  4 ++++
 po/az.po     | 73 ++++++++++++++++++++++++------------------------------------
 2 files changed, 33 insertions(+), 44 deletions(-)

commit a39e048e3471e185654b57d3b3b3cc7fd4b83190
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Sep 4 15:21:35 2004 +0000

    Updated Swedish translation.
    
    2004-09-04  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit a60fcb01c63eec4eade4b4ccfb2962d8e243b936
Author: Hendrik Richter <hendrik@gnome-de.org>
Date:   Sat Sep 4 11:17:56 2004 +0000

    Updated German translation
    
    2004-09-04  Hendrik Richter <hendrik@gnome-de.org>
    
            * de.po: Updated German translation

 po/ChangeLog |  4 ++++
 po/de.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit c7dc8e2d17ca61f2e2d1f6753f4fb2e005a37bda
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Sat Sep 4 11:04:52 2004 +0000

    ankit@redhat.com 04/09/2004

 po/gu.po | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

commit 79e54169eb5d3762d79dcd251e2890166e990b92
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sat Sep 4 04:38:23 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 1ddd0390a141bf16b85909d257c3c6221d93681f
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   Sat Sep 4 00:00:02 2004 +0000

    Updating pt_BR translations.

 po/ChangeLog |   4 +++
 po/pt_BR.po  | 115 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 54 insertions(+), 65 deletions(-)

commit 77af0885104a50400d821552ccc00dcafefb638d
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Sep 3 20:06:32 2004 +0000

    Updated Czech translation.
    
    2004-09-04  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 03def60e2fc77abe503f70cfd26bb3a5a68c0786
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Sep 3 19:56:16 2004 +0000

    revert unintended string change
    
    
    2004-09-03  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-daemon/gnome-settings-keyboard-xkb.c : revert
          unintended string change

 ChangeLog                                           |  5 +++++
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 20 +++++++++++---------
 2 files changed, 16 insertions(+), 9 deletions(-)

commit ce1635dbff8abb133a28d98d6a705d9c20c718b0
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Fri Sep 3 16:46:23 2004 +0000

    Translation updated by Reinout van Schouwen.
    
    2004-09-03  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 17 +++++++++--------
 2 files changed, 13 insertions(+), 8 deletions(-)

commit c15f50d3fba4be0fcbf1aadd4191f617d2809859
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Fri Sep 3 15:57:22 2004 +0000

    Updated Turkish Translation

 po/ChangeLog |   4 +
 po/tr.po     | 372 +++++++++++++++++------------------------------------------
 2 files changed, 110 insertions(+), 266 deletions(-)

commit a947f0d4b2e8bcd3e33b13067559e9fe06336aeb
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Fri Sep 3 14:22:32 2004 +0000

    Updated Serbian translations.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 22 +++++++++++++-------
 po/sr@Latn.po | 67 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 55 insertions(+), 38 deletions(-)

commit 737c0e3f544d6b0113cb090edeceed2d5179c3eb
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Fri Sep 3 04:44:53 2004 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |  5 +++++
 po/ru.po     | 20 ++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit 072b848184b3480b993213887b21349d29efbd52
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Sep 2 21:07:48 2004 +0000

    Change to use help docs instead of the "foo"/"bar" that's there.
    
    Thu Sep  2 17:06:28 2004  Jonathan Blandford  <jrb@redhat.com>
    
            * main.c: (cb_dialog_response): Change to use help docs instead of
            the "foo"/"bar" that's there.

 capplets/accessibility/at-properties/ChangeLog | 5 +++++
 capplets/accessibility/at-properties/main.c    | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit c0b5b58d617b0ac9c37339cf7d515c856d5933f9
Author: Hendrik Richter <hendrik@gnome-de.org>
Date:   Thu Sep 2 15:52:17 2004 +0000

    Updated German translation
    
    2004-09-02  Hendrik Richter <hendrik@gnome-de.org>
    
        * de.po: Updated German translation

 po/ChangeLog |  4 ++++
 po/de.po     | 19 ++++++++++---------
 2 files changed, 14 insertions(+), 9 deletions(-)

commit 6c7f2e74517bd446842633e664cc3a198828a1df
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Sep 1 19:43:53 2004 +0000

    changing the default switchcut to Alt*2

 capplets/keyboard/ChangeLog                         | 4 ++++
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9493341cc91ac34a9f96752f781760d6b4745fd5
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Aug 31 18:05:35 2004 +0000

    tracked the long running irrtation about 'expecting int received float'.
    
    
    2004-08-31  Jody Goldberg <jody@gnome.org>
    
        * capplets/common/gconf-property-editor.c
        (peditor_numeric_range_widget_changed) : tracked the long running
          irrtation about 'expecting int received float'.  Running without a
          schema would default the value to float.  12 of 13 callers had ints
          so I have changed the default and added a warning.

 ChangeLog                               | 8 ++++++++
 capplets/common/gconf-property-editor.c | 9 +++++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

commit 86ef7cfba097f977247ea944c772780b69f33e45
Author: Runa Bhattacharjee <runab@src.gnome.org>
Date:   Tue Aug 31 13:46:37 2004 +0000

    Updated Bengali (bn) Translation

 po/ChangeLog |   3 +
 po/bn.po     | 334 +++++++++++++++--------------------------------------------
 2 files changed, 84 insertions(+), 253 deletions(-)

commit 0d6dcbc402abb231808ad07e5ed6e4517ca1a548
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Tue Aug 31 12:06:18 2004 +0000

    Updated Ukrainian translation.
    
    2004-08-31  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog | 4 ++++
 po/uk.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 703240a48fcb00fa850203680a3c88387cbb2fbf
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Tue Aug 31 08:04:01 2004 +0000

    Updated Norwegian Nynorsk translation.
    
    2004-08-31  Åsmund Skjæveland <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |   4 +
 po/nn.po     | 319 ++++++++++++-----------------------------------------------
 2 files changed, 67 insertions(+), 256 deletions(-)

commit 7540f9c8455b372bcf560d5a780488b9aab97a1d
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Mon Aug 30 21:02:45 2004 +0000

    Updated Greek Translation.

 po/ChangeLog |   4 ++
 po/el.po     | 119 +++++++++++++++++++++--------------------------------------
 2 files changed, 46 insertions(+), 77 deletions(-)

commit 6875f43e806941aeb00739a3f4dec555238118c3
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Aug 30 14:23:53 2004 +0000

    Updated Swedish translation.
    
    2004-08-30  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 157 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 75 insertions(+), 86 deletions(-)

commit 653214edc1607a64c5e202c6fefee91138875a96
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Mon Aug 30 13:44:02 2004 +0000

    2004-08-30 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |  4 ++++
 po/ja.po     | 29 ++++++++++++-----------------
 2 files changed, 16 insertions(+), 17 deletions(-)

commit e552c12fcba28eedcca0a813e51645ddff4d9e2c
Author: Carlos Garnacho Parro <carlosg@gnome.org>
Date:   Mon Aug 30 13:04:48 2004 +0000

    applied patch from Pierre Ossman <drzeus-bugzilla@drzeus.cx> to display
    
    2004-08-30  Carlos Garnacho Parro  <carlosg@gnome.org>
    
            * gnome-settings-multimedia-keys.c: applied patch from Pierre Ossman
            <drzeus-bugzilla@drzeus.cx> to display the volume dialog in the
            correct place. Fixes #144490

 gnome-settings-daemon/ChangeLog                        | 6 ++++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 1381075c32accb141b796f04e3d316771999376a
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Mon Aug 30 10:18:06 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 11 ++++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit fbe8a2b752808a1a01e3af3a8e9daafc1082b045
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Aug 30 09:38:46 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-08-30  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 66 +++++++++++++++++++++++-------------------------------------
 2 files changed, 29 insertions(+), 41 deletions(-)

commit 65dd41955181d7e235bbffe005cccfb9e2688654
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Aug 30 04:41:10 2004 +0000

    ankit@redhat.com 30/08/2004

 po/gu.po | 52 ++++++++++++++++++++--------------------------------
 1 file changed, 20 insertions(+), 32 deletions(-)

commit 11a6c7cb3551a62226b06b6d51f14ebd8f410b6a
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon Aug 30 02:36:56 2004 +0000

    post release bump.
    
    Sun Aug 29 22:37:00 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * configure.in: post release bump.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 29727e139ec52e6a1341f8f533d3a1079c91f283
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Aug 30 02:32:38 2004 +0000

    release 2.7.1

 ChangeLog     |   6 +-
 NEWS          |  23 +-
 po/af.po      | 541 ++++++++++++++++++++++------------------
 po/am.po      | 528 +++++++++++++++++++++------------------
 po/ar.po      | 543 ++++++++++++++++++++++------------------
 po/az.po      |  93 ++++---
 po/be.po      | 543 ++++++++++++++++++++++------------------
 po/bg.po      | 603 ++++++++++++++++++++++++--------------------
 po/bn.po      | 555 ++++++++++++++++++++++-------------------
 po/bs.po      | 788 ++++++++++++++++++++++++++++++++--------------------------
 po/ca.po      | 568 +++++++++++++++++++++++-------------------
 po/cs.po      |   7 +-
 po/cy.po      | 543 ++++++++++++++++++++++------------------
 po/da.po      |  40 +--
 po/de.po      |  40 +--
 po/el.po      | 576 +++++++++++++++++++++++-------------------
 po/en_CA.po   |   2 +-
 po/en_GB.po   |  10 +-
 po/es.po      |  89 ++++---
 po/et.po      | 543 ++++++++++++++++++++++------------------
 po/eu.po      | 541 ++++++++++++++++++++++------------------
 po/fa.po      | 536 +++++++++++++++++++++------------------
 po/fi.po      |  10 +-
 po/fr.po      | 506 ++++++++++++++++++++-----------------
 po/ga.po      | 507 ++++++++++++++++++++-----------------
 po/gl.po      | 551 +++++++++++++++++++++-------------------
 po/gu.po      |  57 +++--
 po/he.po      | 545 +++++++++++++++++++++-------------------
 po/hi.po      | 510 ++++++++++++++++++++-----------------
 po/hr.po      | 543 ++++++++++++++++++++++------------------
 po/hu.po      |  40 +--
 po/id.po      | 493 +++++++++++++++++++-----------------
 po/is.po      | 528 +++++++++++++++++++++------------------
 po/it.po      | 540 ++++++++++++++++++++++------------------
 po/ja.po      | 514 ++++++++++++++++++++------------------
 po/ko.po      |   7 +-
 po/lt.po      |  13 +-
 po/lv.po      | 545 ++++++++++++++++++++++------------------
 po/mk.po      | 163 +++++++-----
 po/ml.po      | 542 ++++++++++++++++++++++------------------
 po/mn.po      | 543 ++++++++++++++++++++++------------------
 po/ms.po      | 537 +++++++++++++++++++++------------------
 po/nb.po      | 517 ++++++++++++++++++++------------------
 po/nl.po      |  14 +-
 po/nn.po      | 543 ++++++++++++++++++++++------------------
 po/no.po      | 517 ++++++++++++++++++++------------------
 po/pa.po      | 123 ++++-----
 po/pl.po      |   2 +-
 po/pt.po      |   2 +-
 po/pt_BR.po   | 507 ++++++++++++++++++++-----------------
 po/ro.po      | 543 ++++++++++++++++++++++------------------
 po/ru.po      |  40 +--
 po/sk.po      | 543 ++++++++++++++++++++++------------------
 po/sl.po      | 553 ++++++++++++++++++++++-------------------
 po/sq.po      |  19 +-
 po/sr.po      |  44 ++--
 po/sr@Latn.po |  85 ++++---
 po/sv.po      | 543 ++++++++++++++++++++++------------------
 po/ta.po      | 158 ++++++++----
 po/th.po      | 543 ++++++++++++++++++++++------------------
 po/tr.po      | 543 ++++++++++++++++++++++------------------
 po/uk.po      |  10 +-
 po/vi.po      | 555 ++++++++++++++++++++++-------------------
 po/wa.po      | 543 ++++++++++++++++++++++------------------
 po/zh_CN.po   |   6 +-
 po/zh_TW.po   | 539 +++++++++++++++++++++------------------
 66 files changed, 12529 insertions(+), 10375 deletions(-)

commit 38e4b4685eb8a2efda969a0567aa250e479d9f2c
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun Aug 29 11:31:50 2004 +0000

    Updated Portuguese translation.
    
    2004-08-29  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 44 ++++++++++++++++++++++----------------------
 2 files changed, 26 insertions(+), 22 deletions(-)

commit 173cba243668d96ebc5fb08df134f3353725a354
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Sun Aug 29 09:15:50 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-08-29  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 42 +++++++++++++++++++++---------------------
 2 files changed, 25 insertions(+), 21 deletions(-)

commit 11a26e4c41dfd620be756cab090e9e0aee79425f
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sun Aug 29 09:11:26 2004 +0000

    check 29Aug

 po/pa.po | 560 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 287 insertions(+), 273 deletions(-)

commit 237bddd0166f5998dccc62e6ed72b07e1d10c1b3
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Aug 28 16:48:52 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 44 ++++++++++++++++++++++----------------------
 2 files changed, 26 insertions(+), 22 deletions(-)

commit 89a517f345d691a8cca1d2329dd8957b4c8bfac1
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sat Aug 28 16:44:23 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 44 +++++++++++++++++++++-----------------------
 2 files changed, 25 insertions(+), 23 deletions(-)

commit 93803f544c686bdd8779d4eab6540f2ab310b55c
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Aug 28 15:43:43 2004 +0000

    Updated Spanish translation
    
    2004-08-28  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/es.po | 104 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 39 insertions(+), 65 deletions(-)

commit 7a94ceed487680311d7c536d024156123c260944
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Aug 28 13:26:56 2004 +0000

    Updated Spanish translation
    
    2004-08-28  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/ChangeLog |   4 ++
 po/es.po     | 127 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 79 insertions(+), 52 deletions(-)

commit bea7a67e7baa0b40def47d9e70eaf2c4bc5265a6
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Aug 28 13:14:51 2004 +0000

    Updated Czech translation.
    
    2004-08-28  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 44 +++++++++++++++++++++-----------------------
 2 files changed, 25 insertions(+), 23 deletions(-)

commit 93c370a0df919f5feaef5802f1c39ae26c889845
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sat Aug 28 13:14:48 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 045a375898dee325bc3d9be3e26288d3f8efceb2
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sat Aug 28 13:14:20 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/en_CA.po | 70 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 35 insertions(+), 35 deletions(-)

commit 6c1b530337ecd7b64b1464b5fce82fbef13dada4
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Sat Aug 28 01:56:11 2004 +0000

    don't violate string freeze

 schemas/desktop_gnome_peripherals_keyboard_xkb.schemas.in | 2 ++
 1 file changed, 2 insertions(+)

commit 2ab41bb8cc96e7b6dea6b878bb9b5cf5e885e1f9
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Aug 28 01:42:25 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=148291 typo
    
    2004-07-23  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=148291
        * configure.in : typo
    
    2004-06-07  Jody Goldberg <jody@gnome.org>
    
        * po/POTFILES.in : add server file, still unused without the patch
        * configure.in : ditto.
    
    2004-06-01  Jody Goldberg <jody@gnome.org>
    
        * schemas/desktop_gnome_peripherals_keyboard_xkb.schemas.in : Add
          xkb/update_handlers.

 ChangeLog                                          | 15 +++++++++
 NEWS                                               |  6 ++++
 configure.in                                       |  3 +-
 .../gnome-settings-keyboard-xkb.c                  | 22 ++++++-------
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 36 +++++++++-------------
 5 files changed, 47 insertions(+), 35 deletions(-)

commit c8763b95a77f4937378bc80e36f482f8172e9c35
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Aug 28 00:18:58 2004 +0000

    fixing #149820

 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 900acaacde087a6d5ac0754dd6ffcd96611097b5
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Aug 28 00:02:42 2004 +0000

    fixing #137428

 capplets/keyboard/gnome-keyboard-properties-xkb.h  | 20 +++++++++
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 47 +++++++++++++++++-----
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 10 -----
 3 files changed, 57 insertions(+), 20 deletions(-)

commit 3cee7a69a3da70b8081cf79454c40ba73a7305e5
Author: N Jayaradha <njaya@src.gnome.org>
Date:   Thu Aug 26 07:39:33 2004 +0000

    yet to proof read

 po/ta.po | 637 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 332 insertions(+), 305 deletions(-)

commit a7730d95c648a4131d256d12558a33cfbf008485
Author: David Lodge <dave@cirt.net>
Date:   Wed Aug 25 20:28:32 2004 +0000

    Updated British translation.
    
    2004-08-25  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 49 ++++++++++++++++++++++++++++---------------------
 2 files changed, 32 insertions(+), 21 deletions(-)

commit abef17dde1ce92674f575e470b4e8d5cca0f9861
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Wed Aug 25 15:52:12 2004 +0000

    *** empty log message ***

 po/mk.po | 1407 +++++++++++++++++++++-----------------------------------------
 1 file changed, 479 insertions(+), 928 deletions(-)

commit 2fd4cfe9e7bec56e3db537e5d6f4dbf240d10331
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Tue Aug 24 21:40:56 2004 +0000

    Updated Spanish translation
    
    2004-08-24  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
    
        * es.po: Updated Spanish translation

 po/ChangeLog |  4 ++++
 po/es.po     | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 266df77052b4896b11cbf506526dbf8b5cd3b8af
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Aug 24 15:48:09 2004 +0000

    Updated Korean translation.

 po/ChangeLog | 4 ++++
 po/ko.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 6ee54683277074859d789cff7228a4749a1febbe
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Mon Aug 23 09:45:13 2004 +0000

    ankit@redhat.com 23/08/2004 * gu.po : Final Proofread.

 po/gu.po | 235 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 119 insertions(+), 116 deletions(-)

commit c392d603764609a0e4f84e2e9cc29a0bfedfaddd
Author: Jeroen Zwartepoorte <jeroen@xs4all.nl>
Date:   Sun Aug 22 12:17:03 2004 +0000

    Use the parent type in the G_DEFINE_TYPE macro, not its own type (fixes rh
    
    2004-08-22  Jeroen Zwartepoorte  <jeroen@xs4all.nl>
    
        * actions/acme-fb-level.c: Use the parent type in the G_DEFINE_TYPE
        macro, not its own type (fixes rh #130473).

 gnome-settings-daemon/ChangeLog               | 5 +++++
 gnome-settings-daemon/actions/acme-fb-level.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b96a71361c23f6395d4d60cf6954b37fa74eeb28
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Sat Aug 21 09:59:19 2004 +0000

    check

 po/pa.po | 180 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 90 insertions(+), 90 deletions(-)

commit 347006e0d8c36374060abc1d69e22c238ec1eda9
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Fri Aug 20 16:50:57 2004 +0000

    Use themed icons for WM hint.

 capplets/accessibility/at-properties/ChangeLog                    | 5 +++++
 capplets/accessibility/at-properties/main.c                       | 2 +-
 capplets/accessibility/keyboard/ChangeLog                         | 5 +++++
 .../keyboard/gnome-accessibility-keyboard-properties.c            | 2 +-
 capplets/background/ChangeLog                                     | 6 ++++++
 capplets/background/gnome-wp-capplet.c                            | 4 ++--
 capplets/default-applications/ChangeLog                           | 5 +++++
 .../default-applications/gnome-default-applications-properties.c  | 2 +-
 capplets/font/ChangeLog                                           | 5 +++++
 capplets/font/main.c                                              | 2 +-
 capplets/keybindings/ChangeLog                                    | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c                | 2 +-
 capplets/keyboard/ChangeLog                                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c                     | 2 +-
 capplets/mouse/ChangeLog                                          | 5 +++++
 capplets/mouse/gnome-mouse-properties.c                           | 2 +-
 capplets/sound/.cvsignore                                         | 1 +
 capplets/sound/ChangeLog                                          | 8 ++++++++
 capplets/sound/sound-properties-capplet.c                         | 2 +-
 capplets/theme-switcher/ChangeLog                                 | 7 +++++++
 capplets/theme-switcher/gnome-theme-details.c                     | 2 +-
 capplets/theme-switcher/gnome-theme-manager.c                     | 2 +-
 capplets/theme-switcher/theme-switcher.c                          | 2 +-
 capplets/ui-properties/ChangeLog                                  | 5 +++++
 capplets/ui-properties/gnome-ui-properties.c                      | 2 +-
 capplets/windows/ChangeLog                                        | 5 +++++
 capplets/windows/gnome-window-properties.c                        | 2 +-
 27 files changed, 82 insertions(+), 15 deletions(-)

commit 29a43bc7d2073f1ac979a7214f94005313107f98
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Fri Aug 20 16:48:51 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-08-20  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 29 +++++++++++++++++------------
 2 files changed, 21 insertions(+), 12 deletions(-)

commit a45d49996fa1d1685fc990b96d773a9c2db8be50
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Fri Aug 20 10:35:15 2004 +0000

    Updated Ukrainian translation.
    
    2004-08-20  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog |   4 +
 po/uk.po     | 508 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 272 insertions(+), 240 deletions(-)

commit d13df7822b9ffa6e020a03831aa29d033d7f9f70
Author: Pauli Virtanen <pvirtane@src.gnome.org>
Date:   Wed Aug 18 22:40:53 2004 +0000

    Updated Finnish translation.
    
    * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 657 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 335 insertions(+), 326 deletions(-)

commit 0e829f6798fd1d8a3bff9f275cc22de6bae7127f
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Wed Aug 18 10:55:53 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-08-18  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 +++
 po/sq.po     | 95 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 62 insertions(+), 37 deletions(-)

commit f50afbe91e5e2501e7bd6b056908b900e48c5d31
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 17 16:31:49 2004 +0000

    Added this.
    
    2004-08-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nb.po: Added this.

 po/ChangeLog |    4 +
 po/nb.po     | 3692 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3696 insertions(+)

commit fc4e47ac894196916bfe64993c7fa28634044296
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 17 16:31:24 2004 +0000

    Added «nb» to ALL_LINGUAS. 2004-08-16 Christian Rose
    
    2004-08-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * configure.in: Added «nb» to ALL_LINGUAS.
    2004-08-16  Christian Rose  <menthos@menthos.com>

 ChangeLog    | 3 +++
 configure.in | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 5993d17d760c185f93041e30d841c7bd5485706a
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Aug 17 10:40:27 2004 +0000

    Translation updated by Reinout van Schouwen.
    
    2004-08-17  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 588 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 299 insertions(+), 293 deletions(-)

commit 037aaba62177edd50eb12c1e0c32bef887213132
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Tue Aug 17 09:59:24 2004 +0000

    Updated Lithuanian translation.
    
    2004-08-17  Žygimantas Beručka  <uid0@akl.lt>
    
        * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 531 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 285 insertions(+), 250 deletions(-)

commit f5ffa2032b5097719ec9a293640772c08841cdfe
Author: Rodney Dawes <dobey@novell.com>
Date:   Tue Aug 17 01:15:02 2004 +0000

    Handle the GTK_RESPONSE_DELETE_EVENT case as well
    
    2004-08-16  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_clicked):
        Handle the GTK_RESPONSE_DELETE_EVENT case as well
    
        Fixes #150273

 capplets/background/ChangeLog          | 7 +++++++
 capplets/background/gnome-wp-capplet.c | 1 +
 2 files changed, 8 insertions(+)

commit 8629ac9ed38396afce73e64fd2bbec2dafccf6b2
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Aug 16 20:47:15 2004 +0000

    Added "bs" to ALL_LINGUAS. Added Bosnian translation by Kenan Hadžiavdić
    
    2004-08-16  Christian Rose  <menthos@menthos.com>
    
        * configure.in: Added "bs" to ALL_LINGUAS.
        * po/bs.po: Added Bosnian translation by
        Kenan Hadžiavdić <kenan@bgnett.no>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/bs.po     | 3344 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3354 insertions(+), 1 deletion(-)

commit 9e28a3091f3d64a99e4f444ed8af0946c7c4bf11
Author: Metin Amiroff <metin@karegen.com>
Date:   Mon Aug 16 19:46:36 2004 +0000

    Translation updated.
    
    2004-08-17  Metin Amiroff  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |   4 +
 po/az.po     | 619 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 299 insertions(+), 324 deletions(-)

commit d5aba66bf006c6831a33e3457b16f2df64eb85e6
Author: Laszlo Dvornik <dvornik@gnome.hu>
Date:   Mon Aug 16 13:54:51 2004 +0000

    Updated Hungarian translation.
    
    2004-08-16  Laszlo Dvornik  <dvornik@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 +
 po/hu.po     | 546 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 299 insertions(+), 251 deletions(-)

commit d4b9a45a000e538483dca9b5835670e92b9ea83c
Author: Rodney Dawes <dobey@novell.com>
Date:   Sun Aug 15 19:07:34 2004 +0000

    Add "W x H pixels" to description, and remove file size Mark the
    
    2004-08-15  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_update_description):
        Add "W x H pixels" to description, and remove file size
        Mark the description string for translation as well

 capplets/background/ChangeLog       |  8 +++++++-
 capplets/background/gnome-wp-item.c | 15 ++++++++++++---
 2 files changed, 19 insertions(+), 4 deletions(-)

commit 1e257d3741d7a1b3063b3f062ee6bf7b92641285
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Sun Aug 15 12:16:07 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog | 4 ++++
 po/da.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit c458b08e7b7d0619fce76afa503ae4f87261be7e
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Sat Aug 14 12:09:18 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 483 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 263 insertions(+), 224 deletions(-)

commit cd3d0d165e25bcd26c31b036f0855607ba0b7bc9
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Aug 14 11:10:23 2004 +0000

    Updated Portuguese translation.
    
    2004-08-14  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 481 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 257 insertions(+), 228 deletions(-)

commit 24e369a7781b42034e3f8887b1222a159444f1e5
Author: Tommi Vainikainen <tvainika@src.gnome.org>
Date:   Fri Aug 13 19:46:12 2004 +0000

    Unified po headers for Finnish Team

 po/ChangeLog | 4 ++++
 po/fi.po     | 5 ++---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 4ae3187663dd40c82d39a1c29388ad5fce51b4af
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Aug 13 05:46:05 2004 +0000

    Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 480 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 260 insertions(+), 224 deletions(-)

commit bc56cd53660ad9b457e27e65daba20aa04009c1f
Author: Amanpreet Singh Alam <aman@src.gnome.org>
Date:   Wed Aug 11 11:09:29 2004 +0000

    check

 po/pa.po | 1631 +++++++++++++++++++++++++++-----------------------------------
 1 file changed, 717 insertions(+), 914 deletions(-)

commit 267dd707b614970f57ed30f12abcfb08aee03d94
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Wed Aug 11 09:52:15 2004 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |   5 +
 po/ru.po     | 475 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 255 insertions(+), 225 deletions(-)

commit f6d7b3c49cc855071d12d6df1e8f373df6a60b8f
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Tue Aug 10 07:37:41 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-08-10  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +
 po/pl.po     | 484 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 263 insertions(+), 225 deletions(-)

commit aab3066be5092ed4092ed389b743a6c2109b3b1f
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Mon Aug 9 20:11:40 2004 +0000

    Updated Spanish translation.
    
    2004-08-09  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 477 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 255 insertions(+), 226 deletions(-)

commit 7a7e8b51728b52da34e2bc959e7edb5156f187c0
Author: David Lodge <dave@cirt.net>
Date:   Mon Aug 9 19:09:42 2004 +0000

    Updated British English translation.
    
    2004-08-09  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 +
 po/en_GB.po  | 495 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 261 insertions(+), 238 deletions(-)

commit 823cc484520880e03017f819c735494ebbaa1ef1
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Mon Aug 9 08:50:08 2004 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 78 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 43 insertions(+), 39 deletions(-)

commit a7d58fde835e34ec3e10bfd370f7d32b0fb0a8d0
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Sun Aug 8 15:26:29 2004 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ru.po | 817 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 490 insertions(+), 327 deletions(-)

commit d2e4f5e14bcc9d5b48812d6969e3e1fca8b34275
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sun Aug 8 10:33:52 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-08-08  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +
 po/sq.po     | 474 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 255 insertions(+), 223 deletions(-)

commit 0053bcbe136e7c0888c087e39775f042979693db
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sat Aug 7 21:19:51 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 472 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 254 insertions(+), 222 deletions(-)

commit 51d3d3f1894698a7ba567cfc6d439c4eb25e9cab
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sat Aug 7 18:58:44 2004 +0000

    Updated Simplified Chinese translation

 po/zh_CN.po | 472 ++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 250 insertions(+), 222 deletions(-)

commit 251c345dbb3ab7e75e3a2860a626f0efa5db5e2d
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Aug 7 15:45:27 2004 +0000

    Updated Czech translation.
    
    2004-08-07  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 +
 po/cs.po     | 835 ++++++++++++++++++-----------------------------------------
 2 files changed, 254 insertions(+), 585 deletions(-)

commit 364385ca0a42be76160d387f6f651deeedf109bc
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Aug 7 07:32:43 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 830 +++++++++++++++++++----------------------------------------
 2 files changed, 263 insertions(+), 571 deletions(-)

commit d4aa78c9e7cdc3be33e2dbf1863b67da65e003fb
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   Sat Aug 7 07:29:00 2004 +0000

    ankit@redhat.com 07/08/04

 po/gu.po | 989 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 396 insertions(+), 593 deletions(-)

commit 68e2e6d77762a49c2ed02e8cded9cb00a26b1d22
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Fri Aug 6 21:04:41 2004 +0000

    Updated Serbian translations and POTFILES.in.

 po/ChangeLog   |   6 +
 po/POTFILES.in |  17 +-
 po/sr.po       | 560 ++++++++++++++++++++++++++---------------------------
 po/sr@Latn.po  | 601 ++++++++++++++++++++++++++++-----------------------------
 4 files changed, 594 insertions(+), 590 deletions(-)

commit a4d480d9cb1371f2d86e2989d9f9a8d246080c09
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Aug 6 02:24:33 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 35 ++++++++++++++++++++++-------------
 2 files changed, 26 insertions(+), 13 deletions(-)

commit 3565b026e1b83fb426256bdad2ef97aa991f38f9
Author: Alexander Shopov <ash@contact.bg>
Date:   Thu Aug 5 07:09:40 2004 +0000

    Updated Bulgarian translation by Vladimir "Kaladan" Petkov
    
    2004-08-05  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir "Kaladan" Petkov <vpetkov@i-space.org>

 po/ChangeLog |   5 ++
 po/bg.po     | 258 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 128 insertions(+), 135 deletions(-)

commit 55e434c81f27f21fea1a48cf2949ae4d628bb459
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Wed Aug 4 16:46:09 2004 +0000

    Updated Ukraininan translation.
    
    2004-08-04  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Updated Ukraininan translation.

 po/ChangeLog |   4 +
 po/uk.po     | 304 +++++++++++++++--------------------------------------------
 2 files changed, 81 insertions(+), 227 deletions(-)

commit 3bd92c1d238d67b5da1a264ef391f7e9bae8f4d6
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Aug 2 21:06:22 2004 +0000

    Updated Portuguese translation.
    
    2004-08-02  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 ++
 po/pt.po     | 145 +++++++++++++++++++++++++----------------------------------
 2 files changed, 65 insertions(+), 84 deletions(-)

commit b9cc214259a6bea4230073aee6705123b0489921
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Mon Aug 2 17:32:21 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 75 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 40 insertions(+), 39 deletions(-)

commit b54890e6d10933b586891ad31d27738f8b7e8344
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Aug 2 16:28:42 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-08-02  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 21 +++++++++++++++++----
 2 files changed, 21 insertions(+), 4 deletions(-)

commit 42c890a6eb1d452105b385b8f72392c135d2973d
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Sun Aug 1 16:41:55 2004 +0000

    2004-08-01 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 ++
 po/ja.po     | 138 +++++++++++++++++++++--------------------------------------
 2 files changed, 52 insertions(+), 90 deletions(-)

commit 0b0ea6e281bd75ce3f2253d75a2699b1fd08c5c8
Author: David Lodge <dave@cirt.net>
Date:   Sun Aug 1 14:49:11 2004 +0000

    Updated British translation.
    
    2004-08-01  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 16 +++++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit da5f5b45a89a1db5172752aee95ccafc4ae773fd
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Aug 1 11:35:36 2004 +0000

    Updated Spanish translation.
    
    2004-08-01  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po:  Updated Spanish translation.

 po/ChangeLog |  12 +++++--
 po/es.po     | 115 +++++++++++++++++++++++++----------------------------------
 2 files changed, 59 insertions(+), 68 deletions(-)

commit e36f23d762bf1489249033cb5617fd245f9b9e3e
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sat Jul 31 19:41:58 2004 +0000

    Updated Korean translation

 po/ChangeLog |   4 ++
 po/ko.po     | 148 +++++++++++++++++++++--------------------------------------
 2 files changed, 56 insertions(+), 96 deletions(-)

commit 7fbed886c93b9bc85bbb786f976fce87d8208d9c
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Jul 31 18:59:20 2004 +0000

    Updated Czech translation.
    
    2004-07-31  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 21 +++++++++++++++++----
 2 files changed, 21 insertions(+), 4 deletions(-)

commit 4383553c3449def257c721ef847beab26ca1bfb4
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sat Jul 31 15:00:12 2004 +0000

    post release bump
    
    Sat Jul 31 11:00:33 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * configure.in: post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 32fdee702b9a8753df2c898073ce862338a1b48c
Author: David Lodge <dave@cirt.net>
Date:   Sat Jul 31 10:39:20 2004 +0000

    Updated British translation.
    
    2004-07-31  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 46 +++++++++++++++++++++++++++-------------------
 2 files changed, 31 insertions(+), 19 deletions(-)

commit e608fc8f28d4d8a149236b5e973eed7b6626078a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jul 31 10:13:37 2004 +0000

    Add missing files from capplets/keyboard Updated Norwegian translation.
    
    2004-07-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Add missing files from capplets/keyboard
        * no.po: Updated Norwegian translation.

 po/ChangeLog   |   5 +++
 po/POTFILES.in |   3 ++
 po/no.po       | 130 +++++++++++++++++++--------------------------------------
 3 files changed, 52 insertions(+), 86 deletions(-)

commit 9a1ccb451e47799620f781f81125c8b99a6ca22f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jul 31 10:11:30 2004 +0000

    Remove extra space in a string before question mark.
    
    2004-07-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-save.c: (setup_directory_structure): Remove
        extra space in a string before question mark.

 capplets/theme-switcher/ChangeLog          | 5 +++++
 capplets/theme-switcher/gnome-theme-save.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f7e2e07dbc455bc43776d533f756df7824d96409
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sat Jul 31 09:54:31 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-07-31  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 76 +++++++++++++++++++++++-------------------------------------
 2 files changed, 33 insertions(+), 47 deletions(-)

commit 9098b0dc5049ba49d11f670c0e7e6d05342da90b
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sat Jul 31 09:22:48 2004 +0000

    Updated Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 357 +++++++++--------------------------------------------------
 2 files changed, 54 insertions(+), 307 deletions(-)

commit 4b1bc2fdf44cf92ba7020044a6b3084f5c748c88
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sat Jul 31 00:58:52 2004 +0000

    2.7.0

 ChangeLog     |   4 +
 NEWS          |   5 +
 po/af.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/am.po      | 452 ++++++++++++++++++++++++++++++---------------------
 po/ar.po      | 487 ++++++++++++++++++++++++++++++++++---------------------
 po/az.po      | 478 ++++++++++++++++++++++++++++++++++--------------------
 po/be.po      | 487 ++++++++++++++++++++++++++++++++++---------------------
 po/bg.po      |  63 +++++---
 po/bn.po      | 478 ++++++++++++++++++++++++++++++++++--------------------
 po/ca.po      | 503 ++++++++++++++++++++++++++++++++++++---------------------
 po/cs.po      |   2 +-
 po/cy.po      | 491 +++++++++++++++++++++++++++++++++++---------------------
 po/da.po      |   2 +-
 po/de.po      | 155 ++++++++++--------
 po/el.po      | 266 +++++++++++++++++-------------
 po/en_CA.po   | 261 ++++++++++++++++++------------
 po/en_GB.po   |  19 ++-
 po/es.po      | 156 ++++++++++--------
 po/et.po      | 464 ++++++++++++++++++++++++++++++++---------------------
 po/eu.po      | 481 +++++++++++++++++++++++++++++++++++--------------------
 po/fa.po      | 449 +++++++++++++++++++++++++++++++--------------------
 po/fi.po      | 479 ++++++++++++++++++++++++++++++++++--------------------
 po/fr.po      | 266 ++++++++++++++++++------------
 po/ga.po      | 446 +++++++++++++++++++++++++++++++--------------------
 po/gl.po      | 469 ++++++++++++++++++++++++++++++++---------------------
 po/gu.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/he.po      | 476 +++++++++++++++++++++++++++++++++---------------------
 po/hi.po      | 127 +++++++++------
 po/hr.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/hu.po      | 152 +++++++++++-------
 po/id.po      | 412 ++++++++++++++++++++++++++++-------------------
 po/is.po      | 469 +++++++++++++++++++++++++++++++++--------------------
 po/it.po      | 478 ++++++++++++++++++++++++++++++++++--------------------
 po/ja.po      | 478 ++++++++++++++++++++++++++++++++++--------------------
 po/ko.po      | 474 ++++++++++++++++++++++++++++++++++--------------------
 po/lt.po      | 223 +++++++++++++++-----------
 po/lv.po      | 473 +++++++++++++++++++++++++++++++++---------------------
 po/mk.po      | 469 +++++++++++++++++++++++++++++++++--------------------
 po/ml.po      | 448 +++++++++++++++++++++++++++++++--------------------
 po/mn.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/ms.po      | 479 ++++++++++++++++++++++++++++++++++--------------------
 po/nl.po      | 489 ++++++++++++++++++++++++++++++++++---------------------
 po/nn.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/no.po      | 480 ++++++++++++++++++++++++++++++++++--------------------
 po/pa.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/pl.po      | 160 ++++++++++--------
 po/pt.po      | 481 +++++++++++++++++++++++++++++++++++--------------------
 po/pt_BR.po   | 176 ++++++++++++--------
 po/ro.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/ru.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/sk.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/sl.po      | 478 +++++++++++++++++++++++++++++++++---------------------
 po/sq.po      |  29 ++--
 po/sr.po      | 487 ++++++++++++++++++++++++++++++++++---------------------
 po/sr@Latn.po | 487 ++++++++++++++++++++++++++++++++++---------------------
 po/sv.po      | 507 ++++++++++++++++++++++++++++++++++++----------------------
 po/ta.po      | 227 +++++++++++++++-----------
 po/th.po      | 476 ++++++++++++++++++++++++++++++++++--------------------
 po/tr.po      | 478 ++++++++++++++++++++++++++++++++++--------------------
 po/uk.po      | 478 ++++++++++++++++++++++++++++++++++--------------------
 po/vi.po      | 474 +++++++++++++++++++++++++++++++++---------------------
 po/wa.po      | 458 +++++++++++++++++++++++++++++++---------------------
 po/zh_CN.po   | 160 ++++++++++--------
 po/zh_TW.po   | 475 ++++++++++++++++++++++++++++++++++--------------------
 64 files changed, 14890 insertions(+), 8915 deletions(-)

commit 0564270d07a085665b1dfb8927f8f119c004da30
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Fri Jul 30 15:01:17 2004 +0000

    Updated Czech translation.
    
    2004-07-30  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 20 ++++++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

commit 699c5783eb4abae8c04a7a6828c603be7ad7c8fd
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   Thu Jul 29 20:37:10 2004 +0000

    Reviewed and updated fuzzy messages plus translated new messages.
    
            * da.po: Reviewed and updated fuzzy messages plus
            translated new messages.

 po/ChangeLog |   5 +
 po/da.po     | 526 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 319 insertions(+), 212 deletions(-)

commit 21f63048855900da0a71ddd608eb718dd3a41bc2
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Jul 29 19:25:15 2004 +0000

    now the models list is sorted

 capplets/keyboard/gnome-keyboard-properties-xkbmc.c | 3 +++
 1 file changed, 3 insertions(+)

commit 4538df5f49bf9a5a99819edbd5f555aa696267ce
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Jul 29 19:01:05 2004 +0000

    tiny layout fix - hope to improve HIGfulness

 .../keyboard/gnome-keyboard-properties-xkbmc.c     |  2 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 25 ++++++++++++++++++++--
 2 files changed, 24 insertions(+), 3 deletions(-)

commit 8f6bc429f48f1b218c365f8a96f541753493caae
Author: Alexander Shopov <ash@contact.bg>
Date:   Thu Jul 29 13:04:28 2004 +0000

    Updated Bulgarian translation by Rostislav "zbrox" Raykov
    
    2004-07-29  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Rostislav "zbrox" Raykov <zbrox@i-space.org>

 po/ChangeLog |  5 ++++
 po/bg.po     | 76 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 44 insertions(+), 37 deletions(-)

commit 14ee90ba660c22eb3c63085b0039e0fadd743f88
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Thu Jul 29 00:42:36 2004 +0000

    Updated British English translation

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 38 +++++++++++++++++++-------------------
 2 files changed, 23 insertions(+), 19 deletions(-)

commit 294533b539a10b72802ee9eba7ea3017b15a598a
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Wed Jul 28 16:29:42 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-07-28  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 +++
 po/sq.po     | 115 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 75 insertions(+), 44 deletions(-)

commit 18d86b740ec3d099f20d997685f85fa6ab5fa986
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Jul 28 15:23:20 2004 +0000

    Updated Czech translation.
    
    2004-07-28  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 47 ++++++++++++++++++++++-------------------------
 2 files changed, 26 insertions(+), 25 deletions(-)

commit 2b0039ff6e51259923507a5dda0f50a6d4c27522
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 28 01:08:25 2004 +0000

    set the default size for the models popup

 capplets/keyboard/gnome-keyboard-properties.glade | 2 ++
 1 file changed, 2 insertions(+)

commit d36f6b5749304a670b32503e72041b26e88e1ca3
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 28 00:58:01 2004 +0000

    show 2(two!!!!) levels

 capplets/keyboard/gnome-keyboard-properties-xkbpv.c | 3 +++
 1 file changed, 3 insertions(+)

commit 9a1378b4b6bce5b1a3892324ad0536c2f04fd871
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Jul 28 00:18:35 2004 +0000

    proper handling of the X WM button

 capplets/keyboard/gnome-keyboard-properties-xkbpv.c | 15 +++++++++++++--
 capplets/keyboard/gnome-keyboard-properties.glade   |  2 +-
 2 files changed, 14 insertions(+), 3 deletions(-)

commit afc5f43cbaeb08ebd21f5d37358c49a47be6d394
Author: Richard Hult <richard@imendio.com>
Date:   Tue Jul 27 23:12:33 2004 +0000

    Switch to the right page for typing monitor preferences.
    
    2004-07-28  Richard Hult  <richard@imendio.com>
    
        * gnome-keyboard-properties.c (main): Switch to the right page for
        typing monitor preferences.

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 14b9f41c611d656d5be2c16106a7a46423d893d5
Author: Richard Hult <richard@imendio.com>
Date:   Tue Jul 27 23:08:47 2004 +0000

    Patch from Markus Berg <mberg@hp.com> to fix bug #123141.
    
    2004-07-28  Richard Hult  <richard@imendio.com>
    
        * drw-break-window.c: Patch from Markus Berg <mberg@hp.com> to fix
        bug #123141.
    
        * drwright.c: Remove some cruft. Shorten the warning period a bit.

 typing-break/ChangeLog          |  7 +++++++
 typing-break/drw-break-window.c | 29 ++++++++++++++++++++++++++---
 typing-break/drwright.c         | 12 +-----------
 3 files changed, 34 insertions(+), 14 deletions(-)

commit 7007308123f0f0297d4668b47f101fb766028b1d
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Jul 27 18:25:15 2004 +0000

    Updated Bulgarian translation by Rostislav "zbrox" Raykov
    
    2004-07-27  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Rostislav "zbrox" Raykov <zbrox@i-space.org>

 po/ChangeLog |   5 ++
 po/bg.po     | 260 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 160 insertions(+), 105 deletions(-)

commit c7ea128af5e4c34d95f5a6656c0facad41c695d8
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Tue Jul 27 10:34:00 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-07-27  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 130 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 75 insertions(+), 59 deletions(-)

commit b03a836d888bebb8eeb8c417b2806d0dde9b04b8
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Tue Jul 27 03:41:14 2004 +0000

    Updated British English translation

 po/ChangeLog |   4 +++
 po/en_GB.po  | 104 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 62 insertions(+), 46 deletions(-)

commit 824fc21c1c5e06c9264facac9719ec82304ba415
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jul 26 23:19:03 2004 +0000

    -preview is only visible on tabs 2 and 3

 capplets/keyboard/gnome-keyboard-properties-xkb.c   | 18 ++++++++++++++++++
 capplets/keyboard/gnome-keyboard-properties-xkbpv.c |  2 +-
 2 files changed, 19 insertions(+), 1 deletion(-)

commit 0bb2c8c192dca83032aeef22b56d4e0eaaeee36e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jul 26 23:07:03 2004 +0000

    preview as separate window

 capplets/keyboard/ChangeLog                        |  10 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   4 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   6 +-
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |  34 ++-
 capplets/keyboard/gnome-keyboard-properties.glade  | 248 +++++++++------------
 5 files changed, 156 insertions(+), 146 deletions(-)

commit 7b52ac44568a2b146f34711bfc709a6dea5d2eb4
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Mon Jul 26 10:56:16 2004 +0000

    Updated Czech translation.
    
    2004-07-26  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 123 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 72 insertions(+), 55 deletions(-)

commit fcc609f1c7c0bf6a1bf1391e6f6388436296a3f6
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jul 26 00:48:24 2004 +0000

    models popup is 99% working (1% for bugs)

 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 33 ++++++++++++++++++++--
 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 20 ++++++++++---
 2 files changed, 46 insertions(+), 7 deletions(-)

commit 885acff46a85399adc9170016d1b0789f633d2ce
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Jul 25 23:28:35 2004 +0000

    first round of working model chooser - not complete yet

 capplets/keyboard/Makefile.am                      |   1 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 121 ++-----------
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |   2 +
 .../keyboard/gnome-keyboard-properties-xkbmc.c     | 127 ++++++++++++++
 capplets/keyboard/gnome-keyboard-properties.glade  | 191 ++++++++++++++++++++-
 5 files changed, 331 insertions(+), 111 deletions(-)

commit 85cb682efc04ff98dc96219a43fd7e3c74e6c0cc
Author: David Sedeo <david@alderia.com>
Date:   Fri Jul 23 20:18:20 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=148208 Expand to false to the
    
    2004-07-23 David Sedeo <david@alderia.com>
    
            http://bugzilla.gnome.org/show_bug.cgi?id=148208
            * gnome-keybinding-properties.glade: Expand to false to the hbox1

 capplets/keybindings/ChangeLog                         | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 11ebaa67a9e6da2e89c809d098884476e84c5737
Author: Christian Neumair <chris@gnome-de.org>
Date:   Thu Jul 22 18:16:49 2004 +0000

    Use GTK_SHADOW_IN shadow for all treeviews (consistency). Fixes #144050.
    
    2004-07-22  Christian Neumair  <chris@gnome-de.org>
    
        * gnome-keyboard-properties.glade: Use GTK_SHADOW_IN shadow for
        all treeviews (consistency). Fixes #144050.

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit b7bd72a511dd94001036058f8c1c230c0e7565c6
Author: Christian Neumair <chris@gnome-de.org>
Date:   Thu Jul 22 17:43:58 2004 +0000

    Use gi18n-lib for internationalization, fixes #109206.
    
    2004-07-22  Christian Neumair  <chris@gnome-de.org>
    
        * themus-properties-view.c: Use gi18n-lib for internationalization,
        fixes #109206.

 vfs-methods/themus/ChangeLog                | 5 +++++
 vfs-methods/themus/themus-properties-view.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit ea3f37b9994dd3329f8408916396f93dd231ec3a
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Jul 21 19:46:59 2004 +0000

    Blah. badly applied patch.
    
    Wed Jul 21 15:43:55 2004  Jonathan Blandford  <jrb@redhat.com>
    
            * configure.in: Blah.  badly applied patch.
    
    :

 ChangeLog    | 4 ++++
 configure.in | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit bdd978458079c141c26426545e51bc461ddcf2c1
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Jul 21 19:12:45 2004 +0000

    patch from Mason Kidd <mrkidd@mrkidd.com> to put back default-applications
    
    Wed Jul 21 15:09:17 2004  Jonathan Blandford  <jrb@redhat.com>
    
            * configure.in: patch from Mason Kidd <mrkidd@mrkidd.com> to put
            back default-applications and remove file-types.

 ChangeLog    | 5 +++++
 configure.in | 4 +---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 60007b4f03703e459c168d0c99b1614521f0895b
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Wed Jul 21 12:15:55 2004 +0000

    updated hindi translation

 po/ChangeLog |    4 +
 po/hi.po     | 1811 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 833 insertions(+), 982 deletions(-)

commit b3bc6d77df38efcc648e0c132c80d88bc3eb2e0c
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Tue Jul 20 02:32:20 2004 +0000

    Updated British English translation

 po/ChangeLog |  4 +++
 po/en_GB.po  | 80 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 46 insertions(+), 38 deletions(-)

commit 6d976698e6c5781e0723ebd1406fff3dc4b4a06c
Author: Rodney Dawes <dobey@novell.com>
Date:   Mon Jul 19 21:16:50 2004 +0000

    Free what we get with gtk_tree_model_get
    
    2004-07-19  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_remove_wallpaper, gnome_wp_list_sort):
        Free what we get with gtk_tree_model_get
    
        Fixes #147403

 capplets/background/ChangeLog          |  7 +++++++
 capplets/background/gnome-wp-capplet.c | 16 +++++++++++++---
 2 files changed, 20 insertions(+), 3 deletions(-)

commit 80529d675e98b5f208f04ad090445869c86fe77d
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon Jul 19 15:09:37 2004 +0000

    remove default-applications capplet.
    
    Mon Jul 19 11:09:44 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * capplets/Makefile.am (always_built_SUBDIRS):
            * configure.in: remove default-applications capplet.

 ChangeLog            | 5 +++++
 capplets/Makefile.am | 2 +-
 configure.in         | 1 -
 3 files changed, 6 insertions(+), 2 deletions(-)

commit 3a7566628f820c3602a5a0540cf77b50737cbc3b
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jul 16 22:06:35 2004 +0000

    fix a crash when there aren't any ALSA mixers (or soundcards) present on
    
    2004-07-16  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-alsa.c: (acme_volume_alsa_finalize),
        (acme_volume_alsa_close_real), (acme_volume_alsa_open),
        (acme_volume_alsa_init): fix a crash when there aren't any ALSA mixers
        (or soundcards) present on the system

 gnome-settings-daemon/ChangeLog                  |  7 +++++++
 gnome-settings-daemon/actions/acme-volume-alsa.c | 22 +++++++++++++---------
 2 files changed, 20 insertions(+), 9 deletions(-)

commit daa9f3a0f6885fe0a00748b4cfad3a16951ebe8c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 15 22:47:55 2004 +0000

    fix OSS detection on NetBSD, patch from Julio M. Merino Vidal
    
    2004-07-15  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: fix OSS detection on NetBSD, patch from Julio M.
        Merino Vidal <jmmv@menta.net> (Closes: #145038)
    
    2004-07-15  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-oss.c: fix OSS compilation on NetBSD

 ChangeLog                                       | 5 +++++
 configure.in                                    | 2 ++
 gnome-settings-daemon/ChangeLog                 | 4 ++++
 gnome-settings-daemon/actions/acme-volume-oss.c | 2 ++
 4 files changed, 13 insertions(+)

commit b5699a40ce5ada0f3055765f2f6730528db4d7d2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 15 22:41:06 2004 +0000

    rework the ALSA mixer so that: - the ALSA device isn't kept open at all
    
    2004-07-15  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-alsa.c: (acme_volume_alsa_finalize),
        (acme_volume_alsa_set_mute), (acme_volume_alsa_get_mute),
        (acme_volume_alsa_get_volume), (acme_volume_alsa_set_volume),
        (acme_volume_alsa_close_real), (acme_volume_alsa_open),
        (acme_volume_alsa_close), (acme_volume_alsa_init):
        rework the ALSA mixer so that:
        - the ALSA device isn't kept open at all times, only for 4 seconds
          after the last use (Closes: #141793)
        - the hardware mute is used if it is available
          (Closes: #141404, #144489, #140937)
        - lowering the volume doesn't move the balance to the right
        - it doesn't leak alsa-lib mixers all around

 gnome-settings-daemon/ChangeLog                  |  15 +++
 gnome-settings-daemon/actions/acme-volume-alsa.c | 146 +++++++++++++++++++----
 2 files changed, 136 insertions(+), 25 deletions(-)

commit 7c244a15ff5fef2e33b5de091d6bee14aaefafee
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 15 22:29:37 2004 +0000

    fix gdk-pixbuf-csource's double identity (was not detecting
    
    2004-07-15  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: fix gdk-pixbuf-csource's double identity (was not
        detecting gdk-pixbuf-csource-32 from gtk2-devel), detect and
        substitute glib-genmarshal's binary

 ChangeLog    |  6 ++++++
 configure.in | 15 ++++++++++++++-
 2 files changed, 20 insertions(+), 1 deletion(-)

commit 05e8de7e2ad9b1ac9b15114b538866b02b7a8383
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Jul 15 20:08:50 2004 +0000

    Updated Spanish translation
    
    2004-07-15  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/ChangeLog |  4 ++++
 po/es.po     | 39 ++++++++++++++++++++-------------------
 2 files changed, 24 insertions(+), 19 deletions(-)

commit 1d59e51d470038419e4d2ead6805230cba803669
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Jul 15 14:59:35 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-07-15  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog |  4 ++++
 po/sq.po     | 36 ++++++++++++++++++++----------------
 2 files changed, 24 insertions(+), 16 deletions(-)

commit 64837f243f12b45f72bb4de1674fbf4e5569f8b7
Author: Rodney Dawes <dobey@novell.com>
Date:   Thu Jul 15 13:58:51 2004 +0000

    Check that item->fileinfo is not NULL, before trying to use a string
    
    2004-07-15  Rodney Dawes  <dobey@novell.com>
    
        * gnome-wp-item.c (gnome_wp_item_new):
        Check that item->fileinfo is not NULL, before trying to use a
        string variable inside the struct for a strncmp
    
        Fixes #147373

 capplets/background/ChangeLog       | 8 ++++++++
 capplets/background/gnome-wp-item.c | 3 ++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 2207580efacaa90715e52b21fc5cc4a0a27f7963
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Jul 14 21:19:29 2004 +0000

    Updated Czech translation.
    
    2004-07-14  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 39 ++++++++++++++++++++-------------------
 2 files changed, 24 insertions(+), 19 deletions(-)

commit 5502752b2b08c45b4f5070c310b053a6b94037b5
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jul 13 23:16:30 2004 +0000

    updating the news

 NEWS | 3 +++
 1 file changed, 3 insertions(+)

commit e90583bbf15951eb4f420f35f6f95988e95b6e1e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jul 13 23:11:34 2004 +0000

    merging the preview branch

 ChangeLog                                          |    4 +
 Makefile.am                                        |    2 +-
 capplets/keyboard/ChangeLog                        |    4 +
 capplets/keyboard/Makefile.am                      |    5 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |    2 +
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |    2 +
 .../keyboard/gnome-keyboard-properties-xkbpv.c     |   45 +
 capplets/keyboard/gnome-keyboard-properties.glade  | 1396 ++++++++++----------
 configure.in                                       |    5 +
 9 files changed, 784 insertions(+), 681 deletions(-)

commit 43be59b3f4057a21772760d02945b3247c4bde78
Author: David Sedeo <david@alderia.com>
Date:   Tue Jul 13 18:17:50 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=147244 Only put the toggles
    
    2004-07-13  David Sedeo <david@alderia.com>
    
            http://bugzilla.gnome.org/show_bug.cgi?id=147244
            * gnome-default-applications-properties.c: Only put the toggles
              inconsistent if there are not custom commands

 capplets/default-applications/ChangeLog            |  6 ++++++
 .../gnome-default-applications-properties.c        | 22 +++++++++++++++++-----
 2 files changed, 23 insertions(+), 5 deletions(-)

commit b925b93862451e09b0f6493f259727c817a4386e
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Mon Jul 12 20:43:08 2004 +0000

    Updated Spanish translation.
    
    2004-07-12  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 90 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 64 insertions(+), 30 deletions(-)

commit 6d63f435adcffd938c297ca539efa9c223f0b8b2
Author: Gustavo Maciel Dias Vieira <gustavo@sagui.org>
Date:   Mon Jul 12 20:12:56 2004 +0000

    Updated Brazilian Portuguese translation done by Guilherme de S. Pastore
    
    2004-07-12  Gustavo Maciel Dias Vieira  <gustavo@sagui.org>
    
            * pt_BR.po: Updated Brazilian Portuguese translation done by
            Guilherme de S. Pastore <gpastore@colband.com.br>.

 po/ChangeLog |   5 ++
 po/pt_BR.po  | 209 +++++++++++++++++++++++++----------------------------------
 2 files changed, 92 insertions(+), 122 deletions(-)

commit cd7d18ebbf19af24a03ddae42fddd38207ed1910
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Sat Jul 10 17:50:56 2004 +0000

    Updated Czech translation.
    
    2004-07-10  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 46 +++++++++++++++++++++++++---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit b197314273f2ed6ff1faf7b2f6cf703d9e96408d
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Sat Jul 10 08:11:23 2004 +0000

    Updated Albanian translation by Elian Myftiu.
    
    2004-07-10  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Updated Albanian translation by Elian Myftiu.

 po/ChangeLog | 4 ++++
 po/sq.po     | 8 ++++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit b6ba0f56cd60d7daa2c49ef43f77241915641eef
Author: Alexander Shopov <ash@contact.bg>
Date:   Sat Jul 10 06:52:18 2004 +0000

    Updated Bulgarian translation by Vladimir "Kaladan" Petkov
    
    2004-07-10  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir "Kaladan" Petkov <vpetkov@i-space.org>

 po/ChangeLog |    5 +
 po/bg.po     | 1026 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 549 insertions(+), 482 deletions(-)

commit 2279c2e5e7868d22f55f54c15f7e58b0b656d555
Author: David Sedeo <david@alderia.com>
Date:   Fri Jul 9 14:17:28 2004 +0000

    (http://bugzilla.gnome.org/show_bug.cgi?id=122970) If theme exists, show
    
    2004-07-09  David Sedeo <david@alderia.com>
    
            (http://bugzilla.gnome.org/show_bug.cgi?id=122970)
            * gnome-theme-save.c (setup_directory_structure):
            If theme exists, show confirmation dialog to user.

 capplets/theme-switcher/ChangeLog          |  6 ++++++
 capplets/theme-switcher/gnome-theme-save.c | 16 +++++++++++++++-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 3da235eb1e284ab30fc505d6c23e8eb47b6066ea
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Jul 7 15:19:23 2004 +0000

    Updated Spanish translation
    
    2004-07-07  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/ChangeLog |   4 ++
 po/es.po     | 155 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 92 insertions(+), 67 deletions(-)

commit 9968efd781870efa97b1e852e0a066cf75add808
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Tue Jul 6 12:36:51 2004 +0000

    Add mnemnoic widget for "Interval before raising" and add some
    
    2004-07-06  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-window-properties.glade:  Add mnemnoic widget for
        "Interval before raising" and add some label-for/labelled-by
        relations. Fixes bug #144586.

 capplets/windows/ChangeLog                     |  6 ++++++
 capplets/windows/gnome-window-properties.glade | 10 ++++++++++
 2 files changed, 16 insertions(+)

commit 6a2714a6b5956fdd320ef3bebc1dd317e729e170
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Tue Jul 6 09:49:05 2004 +0000

    Add label-for/ labelled-by relations. Fixes bug #144174.
    
    2004-07-06  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-accessibility-keyboard-properties.glade:  Add label-for/
        labelled-by relations. Fixes bug #144174.

 capplets/accessibility/keyboard/ChangeLog          |   5 +
 .../gnome-accessibility-keyboard-properties.glade  | 221 ++++++++++++++-------
 2 files changed, 151 insertions(+), 75 deletions(-)

commit 3fd0830327785a7409e4878f5646334568f61ce1
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Fri Jul 2 18:53:47 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 356 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 218 insertions(+), 142 deletions(-)

commit 2b004da133340ae5c743d8890f52230dbfbe3533
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Thu Jul 1 17:01:45 2004 +0000

    Translation updated by Elian Myftiu.
    
    2004-07-01  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Translation updated by Elian Myftiu.

 po/ChangeLog |  4 +++
 po/sq.po     | 96 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 56 insertions(+), 44 deletions(-)

commit 891658db28f1bd1983697adc3e2da8c5ee739d1d
Author: Andras Timar <timar@gnome.hu>
Date:   Wed Jun 30 14:24:11 2004 +0000

    Updated Hungarian translation.
    
    2004-06-30  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 +
 po/hu.po     | 367 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 215 insertions(+), 156 deletions(-)

commit c6581cb870b42c1b5e05dba277c538d399aa74d2
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Tue Jun 29 10:57:51 2004 +0000

    Translation updated by Elian Myftiu.
    
    2004-06-29  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Translation updated by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 149 ++++++++++++++++++++---------------------------------------
 2 files changed, 55 insertions(+), 98 deletions(-)

commit 4d87d80f3ef1b32fd5892acd91b6fa60e6c5b10e
Author: Rodney Dawes <dobey@novell.com>
Date:   Mon Jun 28 18:51:21 2004 +0000

    Update copyright info to have correct years (2003-2004)
    
    2004-06-28  Rodney Dawes  <dobey@novell.com>
    
        * *.[ch]: Update copyright info to have correct years (2003-2004)
    
        * gnome-wp-capplet.c (gnome_wp_capplet_scroll_to_item):
        Abstract this code out so that we don't have to duplicated it every
        time we want to scroll to a particular item in the list
    
        (gnome_wp_add_image): Update this to return the new item that we
        created, and don't scroll to or set as the wallpaper, every time we
        call this function
        Use the new gnome_wp_item_new () call to create items
    
        (gnome_wp_add_images): Change the API to not use the files argument
        any longer, as we don't need it without the GTK+ 2.2 compat code
        Add all the items to the list and select the last one when finished
    
        (gnome_wp_file_open_dialog): Update to not pass in the files argument
        to gnome_wp_add_images () and free the GSList of filenames
    
        (bg_add_multiple_files): merge this code into the normal callback for
        when images are dragged to the dialog
    
        (bg_properties_dragged_image): Don't check if the list is more than
        1 or not here, and always call gnome_wp_add_images () with the full
        list that we are given
        Convert the GList of GnomeVFSURIs that we get from gnome-vfs to a
        GSList of char * uris to pass into gnome_wp_add_images ()
    
        (gnome_wp_load_stuffs, gnome_wp_file_changed):
        Use the new gnome_wp_capplet_scroll_to_item () and gnome_wp_item_new ()
        API calls instead of duplicating code
    
        * gnome-wp-capplet.h: Remove the GConf key path defines from here
    
        * gnome-wp-item.[ch]: Add the gnome_wp_item_new () call to create the
        GnomeWPItem structure for storing wallpapers in
    
        * gnome-wp-utils.h: Put the GConf key path defines in here
    
        * gnome-wp-xml.c (gnome_wp_load_legacy): Use the gnome_wp_item_new ()
        call to create items from the old legacy (XD2 capplet) list file

 capplets/background/ChangeLog          |  43 ++++
 capplets/background/gnome-wp-capplet.c | 361 ++++++---------------------------
 capplets/background/gnome-wp-capplet.h |  11 +-
 capplets/background/gnome-wp-info.c    |   2 +-
 capplets/background/gnome-wp-info.h    |   2 +-
 capplets/background/gnome-wp-item.c    |  48 ++++-
 capplets/background/gnome-wp-item.h    |   5 +-
 capplets/background/gnome-wp-utils.c   |   2 +-
 capplets/background/gnome-wp-utils.h   |  11 +-
 capplets/background/gnome-wp-xml.c     |  41 +---
 capplets/background/gnome-wp-xml.h     |   2 +-
 11 files changed, 173 insertions(+), 355 deletions(-)

commit fb35d020a60251d30f54f177d38859d20f7c5590
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   Mon Jun 28 15:08:25 2004 +0000

    Translation updated by Elian Myftiu.
    
    2004-06-28  Laurent Dhima  <laurenti@alblinux.net>
    
        * sq.po: Translation updated by Elian Myftiu.

 po/ChangeLog |   4 ++
 po/sq.po     | 195 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 124 insertions(+), 75 deletions(-)

commit 331f5ad61c44e94cd7bc5880a2f645873d5eca59
Author: Rodney Dawes <dobey@novell.com>
Date:   Mon Jun 28 03:39:56 2004 +0000

    Remove all references to #ifdef HAVE_GTK_MULTIHEAD Patch from Kjartan
    
    2004-06-27  Rodney Dawes  <dobey@novell.com>
    
        * applier.c: Remove all references to #ifdef HAVE_GTK_MULTIHEAD
        Patch from Kjartan Maraas <kmaraas@gnome.org>
    
        Fixes #142749

 libbackground/ChangeLog |  7 +++++++
 libbackground/applier.c | 32 --------------------------------
 2 files changed, 7 insertions(+), 32 deletions(-)

commit 17606cbd44ac6c20de30974b96aeed23f8d7f780
Author: Muktha <muktha.narayan@wipro.com>
Date:   Sat Jun 26 09:38:26 2004 +0000

    Allow only numeric values in spin buttons. Fixes #138654.
    
    2004-06-26  Muktha <muktha.narayan@wipro.com>
    
            * gnome-network-preferences.glade: Allow only numeric values in
            spin buttons. Fixes #138654.

 capplets/network/ChangeLog                       | 5 +++++
 capplets/network/gnome-network-preferences.glade | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 7d62ce0419dc4570d9f07fcfb382a599651e9792
Author: John C Barstow <jbarstow@src.gnome.org>
Date:   Sat Jun 26 08:27:00 2004 +0000

    file mi.po was initially added on branch gnome-2-6.

commit 7e916acafcd295f870a0aad4bf9d5cc76c48b8d5
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Sat Jun 26 01:43:47 2004 +0000

    Updated British English translation

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 40 ++++++++++++++++++++--------------------
 2 files changed, 24 insertions(+), 20 deletions(-)

commit 9c026ec83c5824ad942673cad6757c7b1a2b9682
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Jun 25 20:53:58 2004 +0000

    update

 control-center/GNOME_ControlCenter.server.in | 99 ++++++++++++++--------------
 control-center/control-center.c              |  6 +-
 2 files changed, 53 insertions(+), 52 deletions(-)

commit da6f208ebb2261d5a7635b86d05b8a64491def09
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Jun 25 20:52:55 2004 +0000

    Clear out some old patches
    
    2004-06-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=143975
        * gnome-default-applications-properties-structs.c : quick fix

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../gnome-default-applications-properties-structs.c                  | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit eb1a1c3e0e44c3935e606a44fb14a31c94de4961
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Jun 25 15:48:25 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 74 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 44 insertions(+), 34 deletions(-)

commit 4d935c5867fe665ccb382dceb407ccce014c4068
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Jun 23 17:25:57 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-06-23  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 36 ++++++++++++++++++------------------
 2 files changed, 22 insertions(+), 18 deletions(-)

commit 598c28634145ccdb116c07062dc597c1a524145f
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Jun 23 09:28:54 2004 +0000

    Updated Czech translation.
    
    2004-06-23  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 38 +++++++++++++++++++-------------------
 2 files changed, 23 insertions(+), 19 deletions(-)

commit a21e1aba9d2a082e8b5908dc1cdce48f4aa82c64
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Jun 22 14:55:53 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit e4e546475cc02d578891751bdeb46c0f512005c6
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Jun 22 14:54:00 2004 +0000

    Updated

 po/sq.po | 30 +++++++++++++++++-------------
 1 file changed, 17 insertions(+), 13 deletions(-)

commit 4b5e158ec247637b2b702cd516dd526da793700e
Author: Leena Gunda <leena.gunda@wipro.com>
Date:   Tue Jun 22 09:09:19 2004 +0000

    set sensitivity of audible/visual bell options only if XKB enabled.
    
    2004-06-22  Leena Gunda  <leena.gunda@wipro.com>
    
            * sound-properties-capplet.c:
            (create_dialog): set sensitivity of audible/visual bell
            options only if XKB enabled.
            (CheckXKB): function to check if XKB support available.
            Fixes bug #144090

 capplets/sound/ChangeLog                  |  8 ++++++++
 capplets/sound/sound-properties-capplet.c | 32 +++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

commit 21dab40205f6263113c075ba23ea6d8c33170315
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jun 22 01:50:50 2004 +0000

    Set the radio group to be inconsistent if no matching modifier is found.
    
    Mon Jun 21 15:52:57 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-window-properties.c (set_alt_click_value): Set the radio
            group to be inconsistent if no matching modifier is found.
    
            * gnome-window-properties.c (reload_settings): Check for NULL,
            141453
    
    Mon Jun 21 17:41:23 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-window-manager.c (gnome_wm_settings_copy|free): add copy
            and free functions for the WM settings.

 capplets/windows/ChangeLog                 |  8 +++
 capplets/windows/gnome-window-properties.c | 92 +++++++++++++++++-------------
 libwindow-settings/ChangeLog               |  5 ++
 libwindow-settings/gnome-window-manager.c  | 37 ++++++++++++
 libwindow-settings/gnome-window-manager.h  |  3 +
 5 files changed, 104 insertions(+), 41 deletions(-)

commit fbd55c22a8a2530a85c4565841beb1e7532a7700
Author: David Sedeo <david@alderia.com>
Date:   Mon Jun 21 19:34:02 2004 +0000

    Change mnemonic for Username. Fixes bug #144333
    
    2004-06-21  David Sedeo <david@alderia.com>
    
            * gnome-network-preferences.glade: Change mnemonic for Username.
            Fixes bug #144333

 capplets/network/ChangeLog                       | 5 +++++
 capplets/network/gnome-network-preferences.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 02ec174d4e14fbe289dca2e60ce6c4eef30a7c86
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Jun 21 17:31:50 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-06-21  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 18 +++++++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

commit 49ffb4463dcaaa0f50b041e95a3867936545af46
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Mon Jun 21 15:33:36 2004 +0000

    Updated Czech translation.
    
    2004-06-21  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 30 +++++++++++++++++-------------
 2 files changed, 21 insertions(+), 13 deletions(-)

commit 17e33cff6e6861859b22452dc1a307cbc8f969ba
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Sun Jun 20 20:02:37 2004 +0000

    Updated British English translation

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 46 +++++++++++++++++++++++++++-------------------
 2 files changed, 31 insertions(+), 19 deletions(-)

commit f0a452b3f7b7c3ca369ed412fa1b1d35a12e572d
Author: David Sedeo <david@alderia.com>
Date:   Sun Jun 20 11:02:04 2004 +0000

    (http://bugzilla.gnome.org/show_bug.cgi?id=143958) Revert option added.
    
    2004-06-20  David Sedeo <david@alderia.com>
    
            (http://bugzilla.gnome.org/show_bug.cgi?id=143958)
            * gnome-theme-manager.c, theme-properties.glade: Revert option added.
            Two now gboolean global var: 'themes_loaded' to check if its the first
            time that has cold meta_theme_selection_changed. 'rervert' to known
            in the same function if the selection has change because a revert.
            (meta_theme_selection_changed):  If it's the same time, save the
            initial theme in initial_meta_theme_info. If the selection has change
            because a revert click, set the sensitive of the revert button
            to false.
            (revert_theme_clicked): callback for the revert button clicked signal.
            Set the initial_meta_theme and set sensitive to FALSE.
            (setup_dialog): Added the revert button to the gtk_size_group, connect
            the clicked callback and set sensitive initially to FALSE.

 capplets/theme-switcher/ChangeLog              | 16 +++++
 capplets/theme-switcher/gnome-theme-manager.c  | 60 +++++++++++++++++--
 capplets/theme-switcher/theme-properties.glade | 82 ++++++++++++++++++++++++--
 3 files changed, 148 insertions(+), 10 deletions(-)

commit 71d47e61057d98446ecf9d04ee1bd8f31c9ab4a0
Author: Crispin Flowerday <gnome@flowerday.cx>
Date:   Fri Jun 18 19:38:53 2004 +0000

    Translate the menus_have_icons gconf key to the MenuImages xsetting
    
    2004-06-18  Crispin Flowerday  <gnome@flowerday.cx>
    
        * gnome-settings-xsettings.c: Translate the menus_have_icons
        gconf key to the MenuImages xsetting (Closes bug #144201)

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 7 insertions(+)

commit 626c8e98db28482282f72fd77699028d34c9cd41
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Jun 18 09:35:21 2004 +0000

    make AcmeVolume descend of a GObject, not itself (spotted by Mariano
    
    2004-06-18  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume.c: make AcmeVolume descend of a GObject, not
        itself (spotted by Mariano Suárez-Alvarez <mariano@gnome.org>)

 gnome-settings-daemon/ChangeLog             | 5 +++++
 gnome-settings-daemon/actions/acme-volume.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b810ae03dd2fce216c123434d696ee50857b9fad
Author: Gustavo Maciel Dias Vieira <gustavo@sagui.org>
Date:   Thu Jun 17 20:58:39 2004 +0000

    Small translation fix.
    
    2004-06-17  Gustavo Maciel Dias Vieira  <gustavo@sagui.org>
    
            * pt_BR.po: Small translation fix.

 po/ChangeLog |   4 +
 po/pt_BR.po  | 589 +++++++++++++++++++++--------------------------------------
 2 files changed, 209 insertions(+), 384 deletions(-)

commit 79e964d2782c4408e9005b425f40e9f961972153
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Thu Jun 17 10:33:43 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-06-17  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +
 po/pl.po     | 306 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 192 insertions(+), 118 deletions(-)

commit c10d1bb943e2f62a06a7f1abd27f0da05bbf107e
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Wed Jun 16 14:50:25 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit f1fd41fb26d4be82fab0e304853810275303dff2
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Wed Jun 16 14:48:45 2004 +0000

    Updated

 po/sq.po | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

commit 6be6e425ed3cce4a9ca4b8e833074af2be0a0f6a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jun 15 15:39:36 2004 +0000

    cleanups, and warning fixes
    
    2004-06-15  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-fb-level.c: (acme_fblevel_init):
        * actions/acme-volume-alsa.c: (acme_volume_alsa_init),
        (acme_volume_alsa_class_init):
        * actions/acme-volume-gstreamer.c: (acme_volume_gstreamer_init):
        * actions/acme-volume-oss.c: (acme_volume_oss_init),
        (acme_volume_oss_class_init):
        * actions/acme-volume.c: (acme_volume_class_init),
        (acme_volume_init): cleanups, and warning fixes
    
    2004-06-15  Bastien Nocera  <hadess@hadess.net>
    
        * .cvsignore: upd

 capplets/mouse/.cvsignore                          |  2 +-
 capplets/mouse/ChangeLog                           |  4 ++
 gnome-settings-daemon/ChangeLog                    | 11 +++++
 gnome-settings-daemon/actions/acme-fb-level.c      | 24 +---------
 gnome-settings-daemon/actions/acme-volume-alsa.c   | 56 ++--------------------
 .../actions/acme-volume-gstreamer.c                | 34 +++----------
 gnome-settings-daemon/actions/acme-volume-oss.c    | 31 ++----------
 gnome-settings-daemon/actions/acme-volume.c        | 26 +---------
 8 files changed, 32 insertions(+), 156 deletions(-)

commit 081a3dd302e2b4daae43158ce71ef5c2c1a1af4e
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sat Jun 12 03:00:10 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 62335d65511e7c411bac2a4ff40ca482aab906be
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   Fri Jun 11 15:39:31 2004 +0000

    Updated Lithuanian translation.
    
    2004-06-11  Žygimantas Beručka  <uid0@akl.lt>
    
        * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   6 +-
 po/lt.po     | 351 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 220 insertions(+), 137 deletions(-)

commit 09400e18386dad1462ad18700885d8b6a7276c83
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Jun 11 01:46:20 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 44 +++++++++++++++++++++-----------------------
 2 files changed, 25 insertions(+), 23 deletions(-)

commit 6074ae0a4678aaa9071fc98ba8b95cd00dd52a37
Author: David Sedeño Fernández <davidsf@src.gnome.org>
Date:   Thu Jun 10 21:34:39 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=136483
    * main.c (run_revert_dialog, cb_dialog_response) : Hide
    the configuration dialog and center the confirmation one.

 capplets/display/ChangeLog | 6 ++++++
 capplets/display/main.c    | 3 +++
 2 files changed, 9 insertions(+)

commit 7fd856d8241296809ce63d00f7239e6b51cb5fbf
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu Jun 10 15:51:07 2004 +0000

    Updated Czech translation.
    
    2004-06-10  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 20 ++++++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

commit a5226ed52eb3f9a09aac44ef683428248e7b6f99
Author: David Sedeo <david@alderia.com>
Date:   Wed Jun 9 21:39:41 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=137579 Put title to the
    
    2004-06-09  David Sedeo <david@alderia.com>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=137579
        * main.c (main) : Put title to the confirmation dialog box

 capplets/display/ChangeLog | 5 +++++
 capplets/display/main.c    | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c42e05a7e7f9d2c0acea7132224b45c3abedebe0
Author: Kaushal Kumar <kaushal.kumar@wipro.com>
Date:   Mon Jun 7 11:41:13 2004 +0000

    Associate the help button response with the appropriate callback. Fixes
    
    2004-06-07  Kaushal Kumar  <kaushal.kumar@wipro.com>
    
            * gnome-window-properties.c (response_cb): Associate the help
            button response with the appropriate callback.
            Fixes bug #141391.

 capplets/windows/ChangeLog                 | 6 ++++++
 capplets/windows/gnome-window-properties.c | 4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit d3bca0732bcfd0d17cf8c0ff4c54157dbf9751d1
Author: Dinesh Nadarajah <dinesh_list@sbcglobal.net>
Date:   Sat Jun 5 17:40:28 2004 +0000

    Updated Tamil Translation
    
    2004-06-05  Dinesh Nadarajah <dinesh_list@sbcglobal.net>
    
            * ta.po: Updated Tamil Translation

 po/ChangeLog |    4 +
 po/ta.po     | 1354 +++++++++++++++++++---------------------------------------
 2 files changed, 444 insertions(+), 914 deletions(-)

commit 3ef1bd059dc90bb92119e3a05bbb6537604b6b6e
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Jun 5 09:32:00 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit df68acb1b75af95344e6ad167b741f1ebd3a3df9
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Jun 5 09:30:32 2004 +0000

    Updated

 po/sq.po | 342 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 185 insertions(+), 157 deletions(-)

commit 714132363e5ddb9c2ccceea6d49599ef65767d59
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Jun 4 14:59:27 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 +
 po/zh_CN.po  | 422 +++++++++++++++++++++--------------------------------------
 2 files changed, 151 insertions(+), 275 deletions(-)

commit a6d58fbd99ba3389a18e1fe129e4621a19a90ee0
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Jun 3 00:20:45 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 32 ++++++++++++++++++++++----------
 2 files changed, 26 insertions(+), 10 deletions(-)

commit d535b6fdbf1c84e79d6971e0d462a21b9ccbe04a
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Wed Jun 2 12:22:51 2004 +0000

    Updated British English translation

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 54 +++++++++++++++++++++++++++++++++---------------------
 2 files changed, 37 insertions(+), 21 deletions(-)

commit e77e5457481c6330b64ee3a56b80fd24469dc4d6
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed Jun 2 09:35:56 2004 +0000

    Updated Czech translation.
    
    2004-06-02  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 57 +++++++++++++++++++++++++++++++++------------------------
 2 files changed, 37 insertions(+), 24 deletions(-)

commit a6d057d8dbce426840d76a9ee17c67decc387703
Author: Ole Laursen <olau@hardworking.dk>
Date:   Tue Jun 1 17:24:00 2004 +0000

    Revamped the internal design and inserted headings to make the layout
    
    2004-05-30  Ole Laursen  <olau@hardworking.dk>
    
        * gnome-window-properties.glade: Revamped the internal design and
        inserted headings to make the layout cleaner.

 capplets/windows/ChangeLog                     |   5 +
 capplets/windows/gnome-window-properties.glade | 489 +++++++++++++++----------
 2 files changed, 302 insertions(+), 192 deletions(-)

commit 506b98a139cdbeb8f618682c1e674f510a0ed212
Author: Alexander Shopov <ash@contact.bg>
Date:   Tue Jun 1 16:14:16 2004 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2004-06-01  Alexander Shopov  <ash@contact.bg>
    
        * bg.po: Updated Bulgarian translation by
        Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |    5 +
 po/bg.po     | 1224 +++++++++++++++++++++++++---------------------------------
 2 files changed, 539 insertions(+), 690 deletions(-)

commit 3c41dec01cbe7c5dde416d7d8391b67864d2ec49
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jun 1 13:01:59 2004 +0000

    Move the patch into cvs for the release
    
    2004-06-01  Jody Goldberg <jody@gnome.org>
    
        * control-center.c (relayout_canvas) : minor layout tweaks
          and improved padding

 control-center/ChangeLog          |  5 ++++
 control-center/control-center.c   |  9 ++----
 control-center/ximian-shell.patch | 62 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 70 insertions(+), 6 deletions(-)

commit 80f10aac090db3a8829d21a7fd8a4977ec5dca13
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Sun May 30 21:25:35 2004 +0000

    and again

 control-center/GNOME_ControlCenter.server.in | 51 ++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

commit d7618a97399132f316f9f480db2213bb231085c1
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Sun May 30 21:24:09 2004 +0000

    add missing files

 control-center/gnomecc-rounded-rect.c | 103 ++++++++++++++++++++++++++++++++++
 control-center/gnomecc-rounded-rect.h |  39 +++++++++++++
 2 files changed, 142 insertions(+)

commit aa9978e6cace5b758c40a5b9aead907d3caf6d65
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sun May 30 10:11:45 2004 +0000

    Updated Greek translation

 po/ChangeLog |  4 ++++
 po/el.po     | 66 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 37 insertions(+), 33 deletions(-)

commit d612b21e3449b136adf9f7029b2fe3e2292513a4
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri May 28 00:36:44 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 52 ++++++++++++++++++++--------------------------------
 2 files changed, 24 insertions(+), 32 deletions(-)

commit 2e0613c383fd05253ce4118be7ba73741e4b5336
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 27 22:42:15 2004 +0000

    new canvas item to match nautilus.
    
    
    2004-05-27  Jody Goldberg <jody@gnome.org>
    
        * gnomecc-rounded-rect.c : new canvas item to match nautilus.
    
        * control-center.c (setup_entry) : add proper focus handling

 control-center/.cvsignore               |   1 +
 control-center/ChangeLog                |  11 +++
 control-center/control-center.c         | 123 ++++++++++++++++++--------------
 control-center/text-selection-frame.png | Bin 0 -> 251 bytes
 4 files changed, 81 insertions(+), 54 deletions(-)

commit 0bcf4f2771b824b93fcd20ca8eb18f99688588c9
Author: Muktha <muktha.narayan@wipro.com>
Date:   Thu May 27 09:35:24 2004 +0000

    Avoid recursive call of this function when the icon file is not found.
    
     2004-19-05  Muktha  <muktha.narayan@wipro.com>
    
           * mime-type-info.c (get_icon_pixbuf): Avoid recursive call of this
           function when the icon file is not found. Fixes file-types capplet
           hang. Bug #142894.

 capplets/file-types/ChangeLog        | 6 ++++++
 capplets/file-types/mime-type-info.c | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 9d1a12fee0c5128e5d895f167bc7231ede553fb6
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Thu May 27 06:53:48 2004 +0000

    Set accessible name for GtkTreeViews in Theme Details dialog. Fixes bug
    
    2004-05-27  Padraig O'Briain <padraig.obriain@sun.com>
    
        * theme-properties.glade: Set accessible name for GtkTreeViews
        in Theme Details dialog. Fixes bug #142402.

 capplets/theme-switcher/ChangeLog              | 5 +++++
 capplets/theme-switcher/theme-properties.glade | 9 +++++++++
 2 files changed, 14 insertions(+)

commit d90981b0a35aefefee28368562845df0d622435d
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Wed May 26 22:59:42 2004 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 329 ++++++++++++++++++++++-------------------------------------
 2 files changed, 128 insertions(+), 205 deletions(-)

commit 54ca2151ab2aea70f4ede0986dbda7968fe3877b
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Tue May 25 20:46:59 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 0a0dfc7474599c3dd2c678422277b1705045e273
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue May 25 17:36:44 2004 +0000

    Now acme can plug xmodmaping callback

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 17 ++++++++++++++++-
 gnome-settings-daemon/gnome-settings-keyboard-xkb.h |  6 ++++++
 2 files changed, 22 insertions(+), 1 deletion(-)

commit 315964c1a94ffdde2e9d53bae37cd082b007f99b
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Mon May 24 21:36:23 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 23 +++++++++--------------
 2 files changed, 13 insertions(+), 14 deletions(-)

commit 0be63769978fd59313c899ef5f6752d5575ba436
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun May 23 17:18:38 2004 +0000

    Updated Spanish translation
    
    2004-05-23  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation

 po/ChangeLog |   4 +
 po/es.po     | 302 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 161 insertions(+), 145 deletions(-)

commit 7321237c01d263a3b3989226e4cd96b45fd78ef0
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sat May 22 07:54:03 2004 +0000

    Updated Greek translation: Fix some typos

 po/ChangeLog |   4 +
 po/el.po     | 262 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 173 insertions(+), 93 deletions(-)

commit 8f8b90e21cc47555290ae8c282090b77a902f78f
Author: Alexander Winston <alexander.winston@comcast.net>
Date:   Thu May 20 20:09:29 2004 +0000

    Updated Canadian English translation.
    
    2004-05-20  Alexander Winston  <alexander.winston@comcast.net>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 229 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 138 insertions(+), 95 deletions(-)

commit dd94133c31c476c8df34dcb4d4b26aabf09b3d00
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed May 19 09:23:16 2004 +0000

    Updated Czech translation.
    
    2004-05-19  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 71 ++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 52 insertions(+), 23 deletions(-)

commit 49dff218c95277fd407d720ec3daecd2e94b7505
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Wed May 19 00:05:33 2004 +0000

    Updated British English translation

 po/ChangeLog |   4 +
 po/en_GB.po  | 248 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 154 insertions(+), 98 deletions(-)

commit 6c84203b0c0ab7ff737c44d2ad91422e5d2610e3
Author: Muktha Narayan <muktha.narayan@wipro.com>
Date:   Tue May 18 16:29:29 2004 +0000

    New (wallpaper_properties_init): Add accessible names.
    
    2004-05-14  Muktha Narayan <muktha.narayan@wipro.com>
    
        * gnome-wp-capplet.c (set_accessible_name): New
        (wallpaper_properties_init): Add accessible names.
    
        Fixes #142517

 capplets/background/ChangeLog          |  7 +++++++
 capplets/background/gnome-wp-capplet.c | 17 +++++++++++++++++
 2 files changed, 24 insertions(+)

commit f8403674b3f92701cdd0ceb612db7dced967e13c
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue May 18 14:58:20 2004 +0000

    Ensure that the selected entry is visible.
    
    
    2004-05-18  Jody Goldberg <jody@gnome.org>
    
        * control-center.c (select_entry) : Ensure that the selected
          entry is visible.
    
    2004-05-17  Jody Goldberg <jody@gnome.org>
    
        * control-center-categories.c : merge the icon theme handling from the
          existing control center into the ximian shell.

 control-center/ChangeLog                   |  10 +
 control-center/control-center-categories.c | 324 ++++++++---------------------
 control-center/control-center-categories.h |   2 +-
 control-center/control-center.c            | 261 ++++++++++++-----------
 4 files changed, 227 insertions(+), 370 deletions(-)

commit 58ab319cc7a424831ee0252ad9cf832229ab3b9a
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Tue May 18 14:44:14 2004 +0000

    Updated Czech translation.
    
    2004-05-18  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 157 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 89 insertions(+), 72 deletions(-)

commit fd088b443ac34b243940322a889ec10c1af5fc41
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Tue May 18 12:56:47 2004 +0000

    Mark accessible names for translation. Fixes bug #136291.
    
    2004-05-18  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-network-preferences.glade: Mark accessible names for
        translation. Fixes bug #136291.

 capplets/network/ChangeLog                       | 5 +++++
 capplets/network/gnome-network-preferences.glade | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 8342be7cba765eb1deb3720c91de7d6f09d2e6ce
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 17 17:03:38 2004 +0000

    check for, but do not require nautilus libs. These is necessary if we move
    
    
    2004-05-17  Jody Goldberg <jody@gnome.org>
    
        * configure.in : check for, but do not require nautilus libs.  These
          is necessary if we move to the osx/ximian style shell.

 ChangeLog                                          |    5 +
 NEWS                                               |    3 +
 configure.in                                       |    5 +
 control-center/control-center-categories.c         |  656 ++++++++++
 control-center/control-center-categories.h         |   32 +
 control-center/control-center.c                    | 1331 ++++++++++++++++++++
 control-center/gnomecc-event-box.c                 |   99 ++
 control-center/gnomecc-event-box.h                 |   75 ++
 po/ChangeLog                                       |    5 +
 po/POTFILES.in                                     |    2 +
 po/POTFILES.skip                                   |    1 +
 ...ps_gnome_settings_daemon_keybindings.schemas.in |   28 +-
 12 files changed, 2228 insertions(+), 14 deletions(-)

commit 9ed37401fb0e3ba28eb2ba9ed75ddd7efeb4a2ae
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 17 16:25:01 2004 +0000

    For : Michael Terry <mike@mterry.name>
    
    
    2004-05-09 Jody Goldberg <jody@gnome.org>
    
        For : Michael Terry <mike@mterry.name>
        http://bugzilla.gnome.org/show_bug.cgi?id=99529
        * gnome-keybinding-properties.c : remove functions dealing with
          the keyboard theme
        * gnome-keybinding-properties.glade : remove keyboard theme option
          box and keyboard shortcut label

 capplets/keybindings/ChangeLog                     |   9 ++
 capplets/keybindings/eggcellrendererkeys.c         |   2 +-
 capplets/keybindings/gnome-keybinding-properties.c | 166 ---------------------
 .../keybindings/gnome-keybinding-properties.glade  |  82 +---------
 4 files changed, 12 insertions(+), 247 deletions(-)

commit 5e25052341056d8e345707110e9c5ea80ee395a0
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 17 15:49:33 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=142190
    
    
    2004-05-17  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=142190
        http://bugzilla.gnome.org/show_bug.cgi?id=142191
        * font-properties.glade : fix conflicting mnemonics

 capplets/font/ChangeLog             | 1 +
 capplets/font/font-properties.glade | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 597b5523668d46d65bd0b021eb9fad62b3544d83
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 17 15:48:00 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=142191 fix conflicting mnemonics
    
    
    2004-05-17  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=142191
        * font-properties.glade : fix conflicting mnemonics

 capplets/font/ChangeLog             | 5 +++++
 capplets/font/font-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 8882a1cbe3dda1297e261783f1f4eb5c46a143af
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Mon May 17 12:48:52 2004 +0000

    Add some missing files

 po/POTFILES.skip | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 513acb43af3f7c87718ffb9b6eb44903f1f07752
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 17 02:49:53 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=140342 patched to use argv[0]
    
    
    2004-05-16  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=140342
        * font-view.c (main) : patched to use argv[0] rather than hard coding
          things.  Additionally marked the string for translation.

 vfs-methods/fontilus/ChangeLog   | 6 ++++++
 vfs-methods/fontilus/font-view.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit fb7556b11d5d7eba74be28e6993b35961b463f7a
Author: Alexander Winston <alexander.winston@comcast.net>
Date:   Sat May 15 17:58:44 2004 +0000

    Updated Canadian English translation.
    
    2004-05-15  Alexander Winston  <alexander.winston@comcast.net>
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 51 +++++++++++++++++++++++++++++++--------------------
 2 files changed, 35 insertions(+), 20 deletions(-)

commit 61456b5759bdca58e951d38330e31a240470c6b4
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Thu May 13 14:17:52 2004 +0000

    Updated Czech translation.
    
    2004-05-13  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 32 ++++++++++++++++++++------------
 2 files changed, 24 insertions(+), 12 deletions(-)

commit 03f712e1ead5099136e11619491654b6a653b9ee
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu May 13 10:42:47 2004 +0000

    Updated Spanish translation.
    
    2004-05-13  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 58 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 40 insertions(+), 22 deletions(-)

commit b10bc087130c11c9c8c64c104c7c753787bb16cd
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed May 12 21:54:46 2004 +0000

    now the buttons work as Jody asked

 .../gnome-settings-keyboard-xkb.c                  | 55 +++++++++++++++++-----
 1 file changed, 44 insertions(+), 11 deletions(-)

commit d5e94d3efe11eef5b8f8582a2b2fb45e9cd86936
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Wed May 12 11:30:29 2004 +0000

    Updated Czech translation.
    
    2004-05-12  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 746507f27e5d66c6a2eaf474c81e20e39fcea423
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue May 11 22:49:11 2004 +0000

    From ruben@lambda1.be
    
    
    2004-05-11  Jody Goldberg <jody@gnome.org>
    
        From ruben@lambda1.be
        https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=140047
        * main.c (main) : s/XServer/X Server/
        and a patch to use g_signal_connect to avoid a warning

 capplets/display/ChangeLog | 7 +++++++
 capplets/display/main.c    | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 85cd6e02f90d7d386bad7e85b64cf66ce0e2a625
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue May 11 22:40:34 2004 +0000

    patch warning

 typing-break/drw-monitor.c | 1 +
 1 file changed, 1 insertion(+)

commit a59511164e68334a4f273a0a4e896ba2010e83b2
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Tue May 11 11:15:27 2004 +0000

    Updated Czech translation.
    
    2004-05-11  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 30 ++++++++++++++++++------------
 2 files changed, 22 insertions(+), 12 deletions(-)

commit 51fa1f5a997e78fed395dd4890f58a8e7463e253
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon May 10 19:10:16 2004 +0000

    C comments instead of C++ ones

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1b38d80225d7f013644485fd73c9b97f9858ca21
Author: Funda Wang <fwang@src.gnome.org>
Date:   Sun May 9 17:14:07 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 34 +++++++++++++++++-----------------
 2 files changed, 21 insertions(+), 17 deletions(-)

commit c5f62ea384c4aa3b4bfce1e93fececc052db0912
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat May 8 22:57:52 2004 +0000

    The message is actually info, not error

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3a71488be7c7b947d3ae487d0ba4893bb49332b6
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat May 8 03:08:51 2004 +0000

    Now g-s-d tracks changes in the system xkb configuration

 .../gnome-settings-keyboard-xkb.c                  | 39 +++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

commit 03b0594911e71cabf6ad77a962fcf70fca24f1e2
Author: Richard Hult <richard@imendio.com>
Date:   Sun May 2 12:05:36 2004 +0000

    drw-monitor.c Raise the threshold for detecting activity, makes totem not
    
    2004-05-02  Richard Hult  <richard@imendio.com>
    
        * drw-monitor.c Raise the threshold for detecting activity, makes
        totem not trigger typing breaks. Fixes bug #121876.

 typing-break/ChangeLog     |  5 +++++
 typing-break/drw-monitor.c | 13 ++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

commit 5048e133c510324de3359c03bb8ba8eaf95814de
Author: Rodney Dawes <dobey@ximian.com>
Date:   Wed Apr 28 01:13:59 2004 +0000

    Remove the #if checks for GTK+ 2.3.0 and get rid of the compatibility code
    
    2004-04-27  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (gnome_wp_file_open_dialog):
        (wallpaper_properties_init): Remove the #if checks for GTK+ 2.3.0 and
        get rid of the compatibility code for building against 2.2

 capplets/background/ChangeLog          |  6 ++++++
 capplets/background/gnome-wp-capplet.c | 15 ---------------
 2 files changed, 6 insertions(+), 15 deletions(-)

commit 9bd7e87960ef43523e644591dc6f30d709d81aab
Author: Miloslav Trmac <mitr@volny.cz>
Date:   Mon Apr 26 13:18:43 2004 +0000

    Updated Czech translation.
    
    2004-04-26  Miloslav Trmac  <mitr@volny.cz>
    
        * cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 35c7096727c87e44de4b2186c1e87c35328b0cb1
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Mon Apr 26 03:32:20 2004 +0000

    Updated British English translation

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 23 +++++++++++++----------
 2 files changed, 17 insertions(+), 10 deletions(-)

commit 82feada42bb242d01eb49deea2c80af1c6e8e583
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Sun Apr 25 04:30:15 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 21 +++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit 151d945a549e3ee98874df6758e2595d7ad0d6af
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Apr 24 19:15:59 2004 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 35 +++++++++++++++++++----------------
 2 files changed, 23 insertions(+), 16 deletions(-)

commit 335d84f09bb9af0cb561eea75c46d0fc0f420def
Author: Rodney Dawes <dobey@ximian.com>
Date:   Sat Apr 24 17:08:09 2004 +0000

    Use the more correct "Add Wallpaper" term for the file chooser window
    
    2004-04-24  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Use the more correct
        "Add Wallpaper" term for the file chooser window title
    
        Fixes #135084

 capplets/background/ChangeLog          | 7 +++++++
 capplets/background/gnome-wp-capplet.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 247e54799238e874831e965868b6eb89e0f184ca
Author: Andras Timar <timar@gnome.hu>
Date:   Sat Apr 24 13:29:56 2004 +0000

    Updated Hungarian translation.
    
    2004-04-24  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 ++
 po/hu.po     | 148 ++++++++---------------------------------------------------
 2 files changed, 23 insertions(+), 129 deletions(-)

commit dbb7a4c04275742cac32b61465c984dad7b1d91a
Author: Shailesh Mittal <shailesh.mittal@wipro.com>
Date:   Wed Apr 21 18:18:58 2004 +0000

    Creating an IPv6 socket if AF_INET6 is defined on the system. If IPv6
    
    
    2003-06-10  Shailesh Mittal  <shailesh.mittal@wipro.com>
    
        * libuuid/gen_uuid.c (get_node_id): Creating an IPv6 socket if AF_INET6
        is defined on the system. If IPv6 socket cannot be created, then we are
        falling back to IPv4 socket creation, as was done previously.

 NEWS                                   |  7 +++++++
 capplets/file-types/ChangeLog          |  6 ++++++
 capplets/file-types/libuuid/gen_uuid.c | 14 +++++++++++---
 3 files changed, 24 insertions(+), 3 deletions(-)

commit aee28fa9022b2e6679a9d2d3a0bd5ccebe891a44
Author: Sebastien Bacher <seb128@debian.org>
Date:   Sat Apr 17 17:36:35 2004 +0000

    Typo fix.
    
    2004-04-17  Sebastien Bacher  <seb128@debian.org>
    
            * fr.po: Typo fix.

 po/ChangeLog | 4 ++++
 po/fr.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit d36585171ba71c590972f6b0dfbe47af8265e366
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Sat Apr 17 16:17:09 2004 +0000

    Updated Welsh translation from Rhys Jones.

 po/ChangeLog |  4 ++++
 po/cy.po     | 32 ++++++++++++++++----------------
 2 files changed, 20 insertions(+), 16 deletions(-)

commit d26f558a4d36ce58702310d6c706a8ace2dd1499
Author: Updated and Merged ja.po for HEAD. T.Aihana <aihana@gnome.gr.jp>
Date:   Sat Apr 17 04:11:04 2004 +0000

    2004-04-17 Updated and Merged ja.po for HEAD. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 ++
 po/ja.po     | 135 ++++++-----------------------------------------------------
 2 files changed, 17 insertions(+), 122 deletions(-)

commit d8c92944b482f288cb01f6de3d59e3f560e2f347
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Apr 16 14:44:28 2004 +0000

    post branch release bump to 2.7.0
    
    
    2004-04-16  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post branch release bump to 2.7.0
    
    2004-04-16  Jody Goldberg <jody@gnome.org>
    
        From paolo borelli :
        http://bugzilla.gnome.org/show_bug.cgi?id=139723
        * gnome-keybinding-properties.c (accel_edited_callback) : fix leak

 ChangeLog                                          |  4 ++++
 capplets/keybindings/ChangeLog                     |  6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 13 ++++++++++---
 configure.in                                       |  2 +-
 4 files changed, 21 insertions(+), 4 deletions(-)

commit d58e918c83d2832ddfe69645965f9c87a09e5f96
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Apr 16 02:32:42 2004 +0000

    Release 2.6.1
    
    
    2004-04-15  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.1

 ChangeLog                                      |   4 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/display/ChangeLog                     |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/af.po                                       | 121 +++---
 po/am.po                                       | 121 +++---
 po/ar.po                                       | 121 +++---
 po/az.po                                       |  85 ++--
 po/be.po                                       | 121 +++---
 po/bg.po                                       | 121 +++---
 po/bn.po                                       | 121 +++---
 po/ca.po                                       |  37 +-
 po/cs.po                                       |  30 +-
 po/cy.po                                       | 121 +++---
 po/da.po                                       | 121 +++---
 po/de.po                                       |  30 +-
 po/el.po                                       | 121 +++---
 po/en_CA.po                                    |  31 +-
 po/en_GB.po                                    |  30 +-
 po/es.po                                       |  30 +-
 po/et.po                                       | 121 +++---
 po/eu.po                                       | 108 +++--
 po/fa.po                                       | 121 +++---
 po/fi.po                                       | 121 +++---
 po/fr.po                                       | 121 +++---
 po/ga.po                                       | 121 +++---
 po/gl.po                                       | 121 +++---
 po/gu.po                                       |  30 +-
 po/he.po                                       | 121 +++---
 po/hi.po                                       | 121 +++---
 po/hr.po                                       | 121 +++---
 po/hu.po                                       | 532 ++++++++++++-------------
 po/id.po                                       | 105 +++--
 po/is.po                                       | 121 +++---
 po/it.po                                       |  64 +--
 po/ja.po                                       | 121 +++---
 po/ko.po                                       |  34 +-
 po/lt.po                                       | 121 +++---
 po/lv.po                                       | 121 +++---
 po/mk.po                                       | 121 +++---
 po/ml.po                                       | 121 +++---
 po/mn.po                                       | 121 +++---
 po/ms.po                                       | 121 +++---
 po/nl.po                                       |  34 +-
 po/nn.po                                       | 121 +++---
 po/no.po                                       |  59 +--
 po/pa.po                                       | 121 +++---
 po/pl.po                                       |  30 +-
 po/pt.po                                       |  36 +-
 po/pt_BR.po                                    |  30 +-
 po/ro.po                                       | 121 +++---
 po/ru.po                                       | 121 +++---
 po/sk.po                                       | 121 +++---
 po/sl.po                                       | 121 +++---
 po/sq.po                                       |  89 +++--
 po/sr.po                                       |  37 +-
 po/sr@Latn.po                                  |  78 ++--
 po/sv.po                                       |  83 ++--
 po/ta.po                                       | 121 +++---
 po/th.po                                       | 121 +++---
 po/tr.po                                       |  34 +-
 po/uk.po                                       | 125 +++---
 po/vi.po                                       | 121 +++---
 po/wa.po                                       | 121 +++---
 po/zh_CN.po                                    |  30 +-
 po/zh_TW.po                                    | 121 +++---
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 95 files changed, 3287 insertions(+), 3133 deletions(-)

commit 73bac5a0c4a5b626819758a538c3a0515eec8c5a
Author: Andras Timar <timar@gnome.hu>
Date:   Thu Apr 15 21:50:38 2004 +0000

    Updated Hungarian translation.
    
    2004-04-15  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 +
 po/hu.po     | 454 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 242 insertions(+), 216 deletions(-)

commit f13ff93f8fcda22566bc9128330bce096356c98c
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 15 21:14:50 2004 +0000

    For Alex Larsson :
    
    
    2004-04-15  Jody Goldberg <jody@gnome.org>
    
        For Alex Larsson :
        https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=119494
        * main.c : fix reverting size change

 NEWS                       |  4 +++
 capplets/display/ChangeLog |  6 +++++
 capplets/display/main.c    | 64 ++++++++++++++++++++++++++++++++++++++++++----
 control-center/ChangeLog   |  6 +++++
 4 files changed, 75 insertions(+), 5 deletions(-)

commit ee01439afa9e263bc354d9e6d3ffea167d55d2cf
Author: Mətin Əmirov <metin@karegen.com>
Date:   Thu Apr 15 19:51:31 2004 +0000

    Translation updated.
    
    2004-04-15  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |   4 +
 po/az.po     | 265 ++++++++++++++++-------------------------------------------
 2 files changed, 73 insertions(+), 196 deletions(-)

commit 8f34dac57d3aa9d1cd8aba7774e404b9a36671c2
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 15 18:32:22 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=139605 mouse buttons should not
    
    2004-04-15  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=139605
        * eggcellrendererkeys.c (grab_key_callback) : mouse buttons should not
          be valid modifiers.
    
    2004-04-15  Jody Goldberg <jody@gnome.org>
    
        * configure.in : Force libxklavier 1.0.2 so that we can work with
          x.org and xfree86

 ChangeLog                                          |  7 ++-
 NEWS                                               |  4 ++
 capplets/keybindings/ChangeLog                     |  6 ++
 capplets/keybindings/eggcellrendererkeys.c         |  8 +++
 capplets/network/gnome-network-preferences.c       |  2 +-
 .../network/gnome-network-preferences.desktop.in   |  2 +-
 configure.in                                       |  2 +-
 control-center/capplet-dir.c                       | 69 +++++++++++++++++++++-
 8 files changed, 95 insertions(+), 5 deletions(-)

commit 55972182ea85e21475771af9d500906653bc3693
Author: Theppitak Karoonboonyanan <tkaroonb@src.gnome.org>
Date:   Thu Apr 15 17:37:19 2004 +0000

    Fix spellings.

 po/ChangeLog |  4 ++++
 po/th.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 154d99faab40c14fcce97ed05c64d87215a7a783
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Apr 15 00:18:27 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 7281209734411b3f3ccf7818d125fe86b6d4fc1f
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Apr 15 00:16:23 2004 +0000

    Updated

 po/sq.po | 273 ++++++++++++++++-----------------------------------------------
 1 file changed, 70 insertions(+), 203 deletions(-)

commit 512e73eaa2fc3210c63f81590e0e1879e891eeb6
Author: Iñaki Larrañaga <dooteo@euskalgnu.org>
Date:   Wed Apr 14 10:56:01 2004 +0000

    Added "eu" (Basque) to ALL_LINGUAS.
    
    2004-04-14  Iñaki Larrañaga  <dooteo@euskalgnu.org>
    
        * configure.in: Added "eu" (Basque) to ALL_LINGUAS.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit d801a1da849f4a87fd060a5f941b4a03cec95c53
Author: Iñaki Larrañaga <dooteo@euskalgnu.org>
Date:   Wed Apr 14 10:54:49 2004 +0000

    Addded Basque translation.
    
    2004-04-14  Iñaki Larrañaga  <dooteo@euskalgnu.org>
    
            * eu.po:  Addded Basque translation.

 po/ChangeLog |    4 +
 po/eu.po     | 3441 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3445 insertions(+)

commit f93085e1b91bfec9caf1547f8032523ab5053970
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Apr 14 07:28:37 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-04-14  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +
 po/pl.po     | 237 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 122 insertions(+), 119 deletions(-)

commit 5f2bbd444ea77a04d26360fd63b8827b6b6f7121
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Apr 14 00:23:54 2004 +0000

    Updated Portuguese translation.
    
    2004-04-14  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +++
 po/pt.po     | 105 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 56 insertions(+), 53 deletions(-)

commit cd4704b4ac387343f7a59337c66f1acc5ce94766
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Apr 13 23:25:29 2004 +0000

    Translation updated by Reinout van Schouwen.
    
    2004-04-14  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +++
 po/nl.po     | 103 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 55 insertions(+), 52 deletions(-)

commit a37f1c7be5141d89206f279f77fdf74136a4f40b
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Tue Apr 13 14:51:33 2004 +0000

    Fix a typo in Serbain translation.

 po/ChangeLog  | 4 ++++
 po/sr.po      | 4 ++--
 po/sr@Latn.po | 4 ++--
 3 files changed, 8 insertions(+), 4 deletions(-)

commit 0aba2a16126919a7342a184e8fc61951c835a549
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Tue Apr 13 09:20:27 2004 +0000

    Updated German translation.

 po/ChangeLog | 4 ++++
 po/de.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit a8e6a8d3ae5aae0781ffca23f3a3eea735eb03b2
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Tue Apr 13 04:24:08 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      | 107 ++++++++++++++++++++----------------------
 po/sr@Latn.po | 148 +++++++++++++++++++++++++++-------------------------------
 3 files changed, 125 insertions(+), 134 deletions(-)

commit 928d3ba53469bb9113171b14a97471c8b184255a
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Mon Apr 12 12:06:15 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 53 ++++++++++++++++++++++++++---------------------------
 2 files changed, 30 insertions(+), 27 deletions(-)

commit f1f7ea5cd2a611e0f39055b4fc8570d62837a837
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Mon Apr 12 08:44:51 2004 +0000

    Updated Italian translation.

 po/ChangeLog |   5 ++
 po/it.po     | 240 ++++++++++++++---------------------------------------------
 2 files changed, 61 insertions(+), 184 deletions(-)

commit e55a044b541321e38f4ae3cd367eb79d856b5bb2
Author: Rodney Dawes <dobey@ximian.com>
Date:   Sat Apr 10 21:15:36 2004 +0000

    Use g_utf8_collate to sort the descriptions, rather than a strcmp, so that
    
    2004-04-10  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (gnome_wp_list_sort): Use g_utf8_collate to sort
        the descriptions, rather than a strcmp, so that we follow the locale
        settings for LC_COLLATE
    
        Fixes #139517

 capplets/background/ChangeLog          | 8 ++++++++
 capplets/background/gnome-wp-capplet.c | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit fae8d92aea972d2cda7138755e612cdcab73652b
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Sat Apr 10 02:46:02 2004 +0000

    Updated British English translation

 po/ChangeLog |   4 +++
 po/en_GB.po  | 103 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 55 insertions(+), 52 deletions(-)

commit 90845aaeeac3db84b3dc5507845bac60a31cdee2
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   Sat Apr 10 00:31:30 2004 +0000

    Updated Turkish Translation

 po/ChangeLog |   4 +++
 po/tr.po     | 108 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 57 insertions(+), 55 deletions(-)

commit a652671c529a16754aa63839c7e1c619c73b77af
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Apr 9 21:43:42 2004 +0000

    Updated Spanish translation.
    
    2004-04-09  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   6 +++-
 po/es.po     | 113 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 74 insertions(+), 45 deletions(-)

commit dc150106f6d881126d25a599b79e35836863bbc2
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Fri Apr 9 20:44:06 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 36 +++++++++++++++---------------------
 2 files changed, 19 insertions(+), 21 deletions(-)

commit c4b1ce073298b40b90e71036337b25f81cd32cad
Author: Funda Wang <fwang@src.gnome.org>
Date:   Fri Apr 9 16:06:04 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 +++
 po/zh_CN.po  | 109 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 57 insertions(+), 56 deletions(-)

commit e78b88b6a01cf2e700e209424fdd1d9c79ce1188
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Fri Apr 9 15:12:18 2004 +0000

    added gujarati translation

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/gu.po     | 3478 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3488 insertions(+), 1 deletion(-)

commit 6ecec0c9c751916d257cb6b90447d730a2267b01
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Apr 9 14:13:20 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 407 +++++++----------------------------------------------------
 2 files changed, 53 insertions(+), 358 deletions(-)

commit 3a77b0b067a4ca7e07bee64561963873365420fc
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Fri Apr 9 08:34:39 2004 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 44 ++++++++++++++++++++------------------------
 2 files changed, 24 insertions(+), 24 deletions(-)

commit 03f0922d8c942de6b78425d14d875f4b5ec109d4
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Fri Apr 9 06:08:57 2004 +0000

    Updated Brazilian Portuguese translation.
    
    2004-04-09  Evandro Fernandes Giovanini  <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 32 ++++++++++++++------------------
 2 files changed, 18 insertions(+), 18 deletions(-)

commit f60324c6fd4a64db5beced1e7afbae5cf99148da
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Thu Apr 8 21:05:21 2004 +0000

    Updated Brazilian Portuguese translation.
    
    2004-04-08  Evandro Fernandes Giovanini  <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 127 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 78 insertions(+), 53 deletions(-)

commit f8bf27b4bcc8934dda9fbe16dee8635206d8d015
Author: Rodney Dawes <dobey@ximian.com>
Date:   Thu Apr 8 20:45:21 2004 +0000

    Rever the previous patch to Fix #135084 as it breaks string freeze
    
    2004-04-08  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Rever the previous
        patch to Fix #135084 as it breaks string freeze

 capplets/background/ChangeLog          | 5 +++++
 capplets/background/gnome-wp-capplet.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 7e9ba7df7cc9ab4dbcc404f44f08ebd9c0ecd5c2
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Apr 8 20:39:56 2004 +0000

    nautilus imports this code
    nautilus uses #&@#$& -Werror

 libbackground/applier.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5a9c690452df8373fd976d02da9b1c47e8e3cf25
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Thu Apr 8 17:28:45 2004 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +++
 po/ca.po     | 106 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 55 insertions(+), 55 deletions(-)

commit 12350223af3db3b09d4079df7ce3d32bf49bc6ba
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 8 17:13:42 2004 +0000

    disable translation until after gnome-2-6 branch
    
    
    2004-04-08  Jody Goldberg <jody@gnome.org>
    
        * libbackground/applier.c (egg_pixbuf_new_from_file_at_size) :
          disable translation until after gnome-2-6 branch

 ChangeLog               | 5 +++++
 libbackground/applier.c | 6 ++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 09103e01b664eb7a8b7a9caded35cb0ad76cbb8f
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Thu Apr 8 15:07:35 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +
 po/en_CA.po  | 349 ++++++++++++++---------------------------------------------
 2 files changed, 85 insertions(+), 268 deletions(-)

commit 6d927dc28c4e1a496b7d11a3aaf70f249b563d2e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Apr 8 11:57:21 2004 +0000

    Updated Norwegian translation.
    
    2004-04-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 120 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 68 insertions(+), 56 deletions(-)

commit f4760a3557aaaa8a1a2c991a418b02f3b424eda1
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Apr 8 08:39:12 2004 +0000

    Updated Spanish translation.
    
    2004-04-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 203 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 97 insertions(+), 110 deletions(-)

commit 4c3358b882c024f53be4b64726debaf29b6bd2b0
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Wed Apr 7 16:35:19 2004 +0000

    Updated Brazilian Portuguese translation from Alex Camacho Castilho
    
    2004-07-07  Evandro Fernandes Giovanini <evandrofg@ig.com.br>
    
        * pt_BR.po: Updated Brazilian Portuguese translation
        from Alex Camacho Castilho <gnomebr@uol.com.br>.

 po/ChangeLog |   5 +++
 po/pt_BR.po  | 123 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 62 insertions(+), 66 deletions(-)

commit 20627f16983209716b0540149ff5b16ed879afc1
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 7 14:36:50 2004 +0000

    sync the icon with the desktop file
    
    
    2004-04-07  Jody Goldberg <jody@gnome.org>
    
        * gnome-network-preferences.c : sync the icon with the desktop file

 capplets/network/ChangeLog                   | 4 ++++
 capplets/network/gnome-network-preferences.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2908fb0c57d3e11ffa1f927f06b146e84cab0ed6
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Apr 7 14:33:18 2004 +0000

    Merge in some pending patches from Sun
    - correct unregistration of keybindings in a multiheaded environment
    - have top level window icons respect icon themes

 NEWS                                               |  3 +
 capplets/common/ChangeLog                          |  5 ++
 capplets/common/capplet-util.c                     | 35 ++++++++--
 gnome-settings-daemon/gnome-settings-keybindings.c | 81 ++++++++++++++++++----
 4 files changed, 107 insertions(+), 17 deletions(-)

commit e967f6c23f016858310309a0e4b54c67c43c70bf
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Apr 7 12:53:49 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 66 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 37 insertions(+), 33 deletions(-)

commit 688a7ace15842335cfc964d52e929084fd90c172
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Wed Apr 7 12:40:30 2004 +0000

    Updated Ukrainian translation.
    
    2004-04-07  Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * Updated Ukrainian translation.

 po/ChangeLog |  4 ++++
 po/uk.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 1b1c97c74d233ad8f327ecbcb60284985a4282a4
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Wed Apr 7 09:53:36 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 +++
 po/de.po     | 108 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 64 insertions(+), 48 deletions(-)

commit 18573116d9d1648cb0366f271b3a277d5be68203
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Apr 7 04:47:18 2004 +0000

    that was not supposed to go in yet

 capplets/keybindings/gnome-keybinding-properties.c | 24 ----------------------
 1 file changed, 24 deletions(-)

commit ab3bfd09ba0e9d2a65734785990d6f3b4e31f2a8
Author: Chris Lahey <clahey@rigger.boston.ximian.com>
Date:   Wed Apr 7 04:46:27 2004 +0000

    Made this delay by a tenth of a second. This seems to make it not reload
    
    
    2004-03-11  Chris Lahey  <clahey@rigger.boston.ximian.com>
    
        * gnome-settings-background.c (applier_idle): Made this delay by a
        tenth of a second.  This seems to make it not reload the
        background more than once.
    
    2004-03-12  Chris Lahey  <clahey@rigger.boston.ximian.com>
    
        * applier.c (refresh_render): Move the image reload into a separate function.
        (size_changed_cb): Handle screen resolution changes.
    
    2004-03-11  Chris Lahey  <clahey@rigger.boston.ximian.com>
    
        * applier.c (bg_applier_apply_prefs): If the image is going to be
        scaled or stretched, load it at the size it's going to be
        displayed.
        (need_wallpaper_load_p): If the wallpaper type changed, unless it
        changed between TILED and CENTERED, we need to reload the image.

 NEWS                                               |  15 ++
 capplets/keybindings/gnome-keybinding-properties.c |  24 ++
 gnome-settings-daemon/ChangeLog                    |   6 +
 gnome-settings-daemon/gnome-settings-background.c  |  26 +-
 libbackground/ChangeLog                            |  13 +
 libbackground/applier.c                            | 270 +++++++++++++++++----
 6 files changed, 305 insertions(+), 49 deletions(-)

commit 0f53df3f1d99ec16ac6c9f068be437e01e5bdd1d
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 7 04:26:49 2004 +0000

    fix the selection when not running metacity. That was damn irritating.
    
    
    2004-04-07  Jody Goldberg <jody@gnome.org>
    
        * gnome-theme-manager.c (update_settings_from_gconf_idle) : fix the
          selection when not running metacity.  That was damn irritating.
    
    2004-03-10  Chris Lahey  <clahey@ximian.com>
    
        * gnome-theme-manager.c: (pixbuf_async_func): rename function. Use
        broken_image.
        (pixbuf_async_data_free): rename function. Use PixbufAsyncData instead
        of a GList.
        (pixbuf_idle_func): rename function. Handle the case that things
        change again while we're updating.  Stop what it's doing and start
        from the beginning.
        (add_pixbuf_idle):
        (load_meta_themes): clean up. Remove model_meta_theme_info.
        (update_themes_from_disk): Remove the code to check for
        have_meta_theme here.  It works with no metathemes installed.
        (add_custom_row_to_meta_theme): handle the initial case too.
        (remove_custom_row_from_meta_theme): removed.
        (themes_equal): helper function for a fairly complicated comparison.
        (update_settings_from_gconf_idle), (update_settings_from_gconf):
        reamed. Instead of custom_theme_found to mean that there should be a
        custom theme, we use current_theme_saved.
        This means that there's a metatheme for the current theme.  Its
        meaning is almost exactly the boolean opposite of the old
        one but it's more understandable.  initial_theme_saved tells us
        whether the initial theme has a metatheme for it now.
        (theme_changed_idle), (theme_changed_func): Made this idle to reduce
        rerunning
        (setup_dialog): Load broken image.
        (gnome_theme_manager_sort_func): Make it symmetric.
        * gnome-theme-manager.h: Remove THEME_FLAG_INITIAL.

 capplets/theme-switcher/ChangeLog             |  34 ++
 capplets/theme-switcher/gnome-theme-manager.c | 485 +++++++++++++-------------
 capplets/theme-switcher/gnome-theme-manager.h |   4 +-
 3 files changed, 270 insertions(+), 253 deletions(-)

commit bdffd9b8e0e49d6f80b6756e299bba5baac9f516
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Apr 6 21:21:12 2004 +0000

    Updated Swedish translation.
    
    2004-04-06  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 +++
 po/sv.po     | 91 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 61 insertions(+), 34 deletions(-)

commit 655e199e52c3cd107e54151b3808668614c1553a
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Apr 6 16:53:42 2004 +0000

    Really fix this time to capture the vagaries of keys with and without
    
    
    2004-04-06  Jody Goldberg <jody@gnome.org>
    
        * gnome-keybinding-properties.c (cb_check_for_uniqueness) : Really fix
          this time to capture the vagaries of keys with and without names.

 capplets/keybindings/ChangeLog                     |  5 +++
 capplets/keybindings/gnome-keybinding-properties.c | 42 +++++++++++-----------
 2 files changed, 27 insertions(+), 20 deletions(-)

commit 9be842ac1b9d55c3f69090e72c192459575e47e6
Author: Andrew Sobala <aes@gnome.org>
Date:   Tue Apr 6 14:14:22 2004 +0000

    add evo 1.5 and 1.6 to the list
    
    2004-04-06  Andrew Sobala  <aes@gnome.org>
    
        * gnome-default-applications-properties-structs.c:
        add evo 1.5 and 1.6 to the list

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../gnome-default-applications-properties-structs.c                  | 2 ++
 2 files changed, 7 insertions(+)

commit fe2454b21583bef471c1d94a1a18517ae98dc358
Author: Mohammad DAMT <mdamt@bisnisweb.com>
Date:   Tue Apr 6 08:43:22 2004 +0000

    Updated Indonesian translation
    
    2004-04-06  Mohammad DAMT  <mdamt@bisnisweb.com>
    
        * id.po: Updated Indonesian translation

 po/ChangeLog |   4 +
 po/id.po     | 385 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 208 insertions(+), 181 deletions(-)

commit 3d66a947a77632c96d4e4c01288c836fa0580458
Author: Rodney Dawes <dobey@ximian.com>
Date:   Mon Apr 5 21:37:03 2004 +0000

    Change file chooser dialog title to say "Add Wallpaper" instead of "Add
    
    2004-04-05  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (wallpaper_properties_init): Change file chooser
        dialog title to say "Add Wallpaper" instead of "Add Wallpapers"
    
        Fixes #135084

 capplets/background/ChangeLog          | 7 +++++++
 capplets/background/gnome-wp-capplet.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 00006d774555468cecf1ab10150149af943e3624
Author: Rodney Dawes <dobey@ximian.com>
Date:   Mon Apr 5 21:32:02 2004 +0000

    Regenerate the thumbnail in the list when we change scaling type now
    
    2004-04-05  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (gnome_wp_scale_type_changed): Regenerate the
        thumbnail in the list when we change scaling type now
        (wallpaper_properties_init): Add GtkFileFilter support (needs love)
        TreeView is buggy, so we need to not set the vertical-separator
        style property for it
        * gnome-wp-item.c: Include <config.h> and <gnome.h> here
        (collect_save_options): Add a function to set all of the pixbuf options
        for the thumbnail pixbuf properly, so we can save them back out
        (gnome_wp_item_get_thumbnail): Fix up the code to
        generate the thumbnails for the list a bit, so that we have sexy
        thumbnails that look exactly like how the image would, on-screen
        Initialize all of the width/height variables to 0
        Add a new pixbuf variable for loading the original image to get the
        dimensions of it, so we can do thumbnailing more properly
        Use a LIST_IMAGE_WIDTH define, for the width of the images in the list
        Just return the bgpixbuf if we are creating the "No Wallpaper" thumb
        Save the thumbnail back out with the dimensions for the original image
        If our image is smaller than the list thumbnail, then just use 1.0 as
        the ratio for scaling the image for tiling/etc...
        Use the new API to do scaling inside the center/tile functions
        Reload the thumbnail pixbuf after generating it with the thumbnail
        system, so that we get all of the pixbuf options set correctly
        * gnome-wp-item.h (GnomeWPItem): store the original image's width
        and height in the item, so we can avoid reopening the original image
        every time we generate the thumbnail, on systems where the thumbnail
        doesn't contain the appropriate information
        * gnome-wp-utils.c (gnome_wp_pixbuf_tile):
        (gnome_wp_pixbuf_center): Add API to do the scaling inside these calls
    
        Fixes #136691

 capplets/background/ChangeLog          |  33 +++++++
 capplets/background/gnome-wp-capplet.c |   8 +-
 capplets/background/gnome-wp-item.c    | 174 +++++++++++++++++++++++----------
 capplets/background/gnome-wp-item.h    |   4 +
 capplets/background/gnome-wp-utils.c   |  65 +++++++++---
 capplets/background/gnome-wp-utils.h   |  11 ++-
 6 files changed, 228 insertions(+), 67 deletions(-)

commit b30e5bc57f041fe7a6e5878378d3b00e3c31bad4
Author: Samel Jn Gunnarsson <sammi@techattack.nu>
Date:   Sat Apr 3 22:43:48 2004 +0000

    Updated Icelandic translation.
    
    2004-04-03  Samel Jn Gunnarsson  <sammi@techattack.nu>
    
        * is.po: Updated Icelandic translation.

 po/ChangeLog |   4 +
 po/is.po     | 341 ++++++-----------------------------------------------------
 2 files changed, 35 insertions(+), 310 deletions(-)

commit 80924cf2f0f3cf70a81f3a7e44f2c21911972d7f
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Fri Apr 2 14:33:59 2004 +0000

    Check that cursor position has changed before calling
    
    2004-04-02  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-theme-details.c (update_list_something): Check that cursor
        position has changed before calling gtk_tree_view_set_cursor.
        * gnome-theme-manager.c (update_settings_from_gconf): Check that
        cursor position has changed before calling gtk_tree_view_set_cursor.
    
        Fixes bug #131538.

 capplets/theme-switcher/ChangeLog             |  9 +++++++++
 capplets/theme-switcher/gnome-theme-details.c | 14 +++++++++++++-
 capplets/theme-switcher/gnome-theme-manager.c | 13 ++++++++++++-
 3 files changed, 34 insertions(+), 2 deletions(-)

commit 30b3cbb6d7cc5a5939ab43e6420b03f06e57e57e
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 1 06:23:14 2004 +0000

    We'll keep bumping it until we get it right
    
    
    2004-04-01  Jody Goldberg <jody@gnome.org>
    
        * configure.in : We'll keep bumping it until we get it right

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1cc6acc2d5ee35d3615c6bc70e972fb8f513ab1e
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 1 06:21:52 2004 +0000

    Release 2.6.0.3
    
    
    2004-04-01  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.0.3

 ChangeLog                                      |   4 +
 NEWS                                           |   9 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/display/ChangeLog                     |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 configure.in                                   |   2 +-
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/af.po                                       | 346 +++++++++++-------------
 po/am.po                                       | 263 ++++++------------
 po/ar.po                                       | 340 +++++++++++------------
 po/az.po                                       | 349 +++++++++++-------------
 po/be.po                                       | 340 +++++++++++------------
 po/bg.po                                       | 337 ++++++++++-------------
 po/bn.po                                       | 347 +++++++++++-------------
 po/ca.po                                       | 357 +++++++++++--------------
 po/cs.po                                       | 340 +++++++++++------------
 po/cy.po                                       | 340 +++++++++++------------
 po/da.po                                       | 344 +++++++++++-------------
 po/de.po                                       | 346 +++++++++++-------------
 po/el.po                                       | 354 +++++++++++-------------
 po/en_CA.po                                    | 340 +++++++++++------------
 po/en_GB.po                                    | 340 +++++++++++------------
 po/es.po                                       | 347 +++++++++++-------------
 po/et.po                                       | 312 +++++++++------------
 po/fa.po                                       | 258 +++++-------------
 po/fi.po                                       | 340 +++++++++++------------
 po/fr.po                                       | 345 +++++++++++-------------
 po/ga.po                                       | 269 ++++++-------------
 po/gl.po                                       | 337 ++++++++++-------------
 po/he.po                                       | 340 +++++++++++------------
 po/hi.po                                       | 346 +++++++++++-------------
 po/hr.po                                       | 340 +++++++++++------------
 po/hu.po                                       | 344 +++++++++++-------------
 po/id.po                                       | 240 ++++-------------
 po/is.po                                       | 344 +++++++++++-------------
 po/it.po                                       | 342 +++++++++++------------
 po/ja.po                                       | 341 +++++++++++------------
 po/ko.po                                       | 340 +++++++++++------------
 po/lt.po                                       | 340 +++++++++++------------
 po/lv.po                                       | 341 +++++++++++------------
 po/mk.po                                       | 340 +++++++++++------------
 po/ml.po                                       | 324 +++++++++-------------
 po/mn.po                                       | 346 +++++++++++-------------
 po/ms.po                                       | 341 +++++++++++------------
 po/nl.po                                       | 346 +++++++++++-------------
 po/nn.po                                       | 346 +++++++++++-------------
 po/no.po                                       | 340 +++++++++++------------
 po/pa.po                                       | 340 +++++++++++------------
 po/pl.po                                       | 342 +++++++++++------------
 po/pt.po                                       | 341 +++++++++++------------
 po/pt_BR.po                                    | 347 +++++++++++-------------
 po/ro.po                                       | 340 +++++++++++------------
 po/ru.po                                       | 340 +++++++++++------------
 po/sk.po                                       | 340 +++++++++++------------
 po/sl.po                                       | 340 +++++++++++------------
 po/sq.po                                       | 340 +++++++++++------------
 po/sr.po                                       | 342 +++++++++++------------
 po/sr@Latn.po                                  | 342 +++++++++++------------
 po/sv.po                                       | 343 +++++++++++-------------
 po/ta.po                                       | 334 ++++++++++-------------
 po/th.po                                       | 343 +++++++++++-------------
 po/tr.po                                       | 345 +++++++++++-------------
 po/uk.po                                       | 340 +++++++++++------------
 po/vi.po                                       | 340 +++++++++++------------
 po/wa.po                                       | 293 ++++++++------------
 po/zh_CN.po                                    | 340 +++++++++++------------
 po/zh_TW.po                                    | 340 +++++++++++------------
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 95 files changed, 8878 insertions(+), 11369 deletions(-)

commit 18ba14502912b861789b6e1d9d9387bdd22c3135
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 1 05:59:55 2004 +0000

    Use a cancel button on the 'already used' dialog so that escape will close
    
    
    2004-04-01  Jody Goldberg <jody@gnome.org>
    
        * gnome-keybinding-properties.c (accel_edited_callback) : Use a cancel
          button on the 'already used' dialog so that escape will close it.
        (cb_check_for_uniqueness) : fix brokeness.  It is entirely possible
          for keycode on loaded keys to be '0'

 capplets/keybindings/ChangeLog                     |  7 +++++++
 capplets/keybindings/gnome-keybinding-properties.c | 10 +++++-----
 gnome-settings-daemon/eggaccelerators.c            |  2 +-
 3 files changed, 13 insertions(+), 6 deletions(-)

commit 07571373a59b9ed802a1010b1a6e18d45530e50a
Author: Sven Herzberg <herzi@gnome-de.org>
Date:   Wed Mar 31 22:29:29 2004 +0000

    Applied patch from http://bugzilla.gnome.org/show_bug.cgi?id=138502
    
    Applied patch from
    http://bugzilla.gnome.org/show_bug.cgi?id=138502
    
    2003-12-30  Sven Herzberg <herzi@gnome-de.org>
    
        * capplets/keybindings/eggcellrendererkeys.c : change the "Type a
        new accelerator..." tooltip to a shorter form "<New accelerator...>".
        * capplets/keybindings/gnome-keybindings-properties.gladei : add an
        explanation on how use the capplet.
        This is based upon the work of Emmanuel Pacaud
        <emmanuel.pacaud@univ-poitiers.fr>

 capplets/keybindings/ChangeLog                     |  9 ++++
 capplets/keybindings/eggcellrendererkeys.c         | 12 +++--
 .../keybindings/gnome-keybinding-properties.glade  | 52 ++++++++++++++++++++++
 3 files changed, 66 insertions(+), 7 deletions(-)

commit 1249bd48803a74c463008a0f8b9232b797be84db
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Mar 31 21:33:28 2004 +0000

    Start pruning unused code

 capplets/theme-switcher/control/.cvsignore         |   4 -
 .../control/GNOME_Theme_Preview.server.in          |  23 ---
 capplets/theme-switcher/control/Makefile.am        |  17 --
 capplets/theme-switcher/control/control.c          | 213 ---------------------
 4 files changed, 257 deletions(-)

commit 9a9008178d22db68a905565a6041b13bca5827e9
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Mar 31 21:30:23 2004 +0000

    merge and update patch from
    http://bugzilla.gnome.org/show_bug.cgi?id=134895

 Makefile.am                                        |  2 +-
 .../at-properties/at-startup-session.c             |  2 +-
 .../gnome-accessibility-keyboard-properties.c      |  1 +
 capplets/common/capplet-util.h                     | 14 ------
 capplets/common/gnome-theme-info.h                 |  4 +-
 capplets/file-types/Makefile.am                    |  2 +-
 capplets/file-types/mime-edit-dialog.c             |  2 +-
 capplets/font/Makefile.am                          |  4 +-
 capplets/keybindings/eggcellrendererkeys.c         | 11 ++--
 capplets/keybindings/eggcellrendererkeys.h         |  2 +-
 capplets/mouse/gnome-mouse-properties.c            |  2 +-
 capplets/sound/Makefile.am                         |  5 +-
 capplets/theme-switcher/gnome-theme-manager.c      |  4 +-
 capplets/theme-switcher/gnome-theme-manager.h      |  4 +-
 capplets/theme-switcher/gnome-theme-save.c         |  2 +-
 capplets/windows/Makefile.am                       |  2 +-
 configure.in                                       | 28 +++++++++--
 control-center/capplet-dir.c                       |  2 +-
 gnome-settings-daemon/Makefile.am                  |  6 +--
 gnome-settings-daemon/factory.c                    |  4 +-
 gnome-settings-daemon/reaper.c                     |  6 ---
 po/POTFILES.in                                     | 16 ------
 schemas/Makefile.am                                |  2 +-
 typing-break/Makefile.am                           |  2 +-
 vfs-methods/fontilus/font-method.c                 | 45 ++++++++++-------
 vfs-methods/fontilus/font-view.c                   |  1 +
 vfs-methods/themus/Makefile.am                     |  2 -
 vfs-methods/themus/theme-method.c                  | 58 ++++++++++++++--------
 vfs-methods/themus/themus-properties-view.c        |  2 +-
 29 files changed, 124 insertions(+), 113 deletions(-)

commit 46ba8cb67d819ea2ea70e0047dde7e91b8fbbdc5
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Mar 31 16:21:20 2004 +0000

    post-release bump to 2.6.1.
    
    2004-03-31  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in: post-release bump to 2.6.1.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b60f2109310751a6c785bb85518966f26dfecc70
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Mar 31 16:19:29 2004 +0000

    Version 2.6.0.2.
    
    2004-03-31  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in: Version 2.6.0.2.

 ChangeLog     | 4 ++++
 configure.in  | 2 +-
 po/af.po      | 4 ++--
 po/am.po      | 4 ++--
 po/ar.po      | 4 ++--
 po/az.po      | 4 ++--
 po/be.po      | 4 ++--
 po/bg.po      | 4 ++--
 po/bn.po      | 4 ++--
 po/ca.po      | 4 ++--
 po/cs.po      | 4 ++--
 po/cy.po      | 4 ++--
 po/da.po      | 4 ++--
 po/de.po      | 4 ++--
 po/el.po      | 4 ++--
 po/en_CA.po   | 4 ++--
 po/en_GB.po   | 4 ++--
 po/es.po      | 4 ++--
 po/et.po      | 4 ++--
 po/fa.po      | 4 ++--
 po/fi.po      | 4 ++--
 po/fr.po      | 4 ++--
 po/ga.po      | 4 ++--
 po/gl.po      | 4 ++--
 po/he.po      | 4 ++--
 po/hi.po      | 4 ++--
 po/hr.po      | 4 ++--
 po/hu.po      | 4 ++--
 po/id.po      | 4 ++--
 po/is.po      | 4 ++--
 po/it.po      | 4 ++--
 po/ja.po      | 4 ++--
 po/ko.po      | 4 ++--
 po/lt.po      | 4 ++--
 po/lv.po      | 4 ++--
 po/mk.po      | 4 ++--
 po/ml.po      | 4 ++--
 po/mn.po      | 4 ++--
 po/ms.po      | 4 ++--
 po/nl.po      | 4 ++--
 po/nn.po      | 4 ++--
 po/no.po      | 4 ++--
 po/pa.po      | 4 ++--
 po/pl.po      | 4 ++--
 po/pt.po      | 4 ++--
 po/pt_BR.po   | 4 ++--
 po/ro.po      | 4 ++--
 po/ru.po      | 4 ++--
 po/sk.po      | 4 ++--
 po/sl.po      | 4 ++--
 po/sq.po      | 4 ++--
 po/sr.po      | 4 ++--
 po/sr@Latn.po | 4 ++--
 po/sv.po      | 4 ++--
 po/ta.po      | 4 ++--
 po/th.po      | 4 ++--
 po/tr.po      | 4 ++--
 po/uk.po      | 4 ++--
 po/vi.po      | 4 ++--
 po/wa.po      | 4 ++--
 po/zh_CN.po   | 4 ++--
 po/zh_TW.po   | 4 ++--
 62 files changed, 125 insertions(+), 121 deletions(-)

commit c2256f7080b2b1a22158ffbec5b84e3ab982d306
Author: Thomas Vander Stichele <thomasvs@src.gnome.org>
Date:   Wed Mar 31 11:24:58 2004 +0000

    ignore some files

 capplets/mouse/.cvsignore         | 2 +-
 capplets/sound/.cvsignore         | 2 +-
 capplets/ui-properties/.cvsignore | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

commit 5d4c2ec3ae7b1ebe01b3d28a1626dc39cc125a84
Author: Thomas Vander Stichele <thomasvs@src.gnome.org>
Date:   Wed Mar 31 11:21:08 2004 +0000

    re-enable gstreamer since #131316 got fixed

 ChangeLog    | 1 +
 configure.in | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 690c349e08f1e7c7612ece56982d4ce1571a2a3b
Author: Thomas Vander Stichele <thomasvs@src.gnome.org>
Date:   Wed Mar 31 11:14:29 2004 +0000

    check for 0.8 of gst, not 0.7
    dist gstreamer settings daemon files properly

 ChangeLog                                 | 7 +++++++
 configure.in                              | 2 +-
 gnome-settings-daemon/actions/Makefile.am | 1 +
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 8432440bbee3f36e89aa84945cd9d62b3a361b3c
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Wed Mar 31 07:04:30 2004 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 4874c554f6e62d058ce0edd64a4036186fe75cbc
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Mar 31 03:35:12 2004 +0000

    Release 2.6.0.1
    
    
    2004-03-30  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.0.1

 ChangeLog                                      |   6 +-
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 autogen.sh                                     |   2 +-
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/display/ChangeLog                     |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 configure.in                                   |   2 +-
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/af.po                                       |   2 +-
 po/ca.po                                       |  61 +++-
 po/el.po                                       |   2 +-
 po/en_CA.po                                    |  50 ++-
 po/hr.po                                       |   2 +-
 po/pa.po                                       | 418 +++++++++++--------------
 po/pt_BR.po                                    |   3 +-
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 42 files changed, 403 insertions(+), 273 deletions(-)

commit f770dd3dfd0c023b70cded33744e752897ce2af4
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Mar 30 23:17:42 2004 +0000

    Added "af" to ALL_LINGUAS. Added Afrikaans translation by Zuza Software
    
    2004-03-31  Christian Rose  <menthos@menthos.com>
    
        * configure.in: Added "af" to ALL_LINGUAS.
        * po/af.po: Added Afrikaans translation by
        Zuza Software Foundation <info@translate.org.za>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/af.po     | 3536 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3546 insertions(+), 1 deletion(-)

commit c206a9a02340f69e287389f3ab82a6707707ecf2
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   Tue Mar 30 20:28:46 2004 +0000

    Updated Canadian English translation.
    
    
        * en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 52 ++++++++++++++++++----------------------------------
 2 files changed, 22 insertions(+), 34 deletions(-)

commit 7e9417ce64b549039c43b7a0b4ea7f59511d9595
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Tue Mar 30 15:53:24 2004 +0000

    *** empty log message ***

 po/hr.po | 310 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 195 insertions(+), 115 deletions(-)

commit 326a1e27f1530439e3aba1639c30d00731762a02
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Mon Mar 29 18:00:02 2004 +0000

    *** empty log message ***

 po/hr.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 5d8a71613c102faef0c1d1a3c3463dbb8421d3d1
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Mon Mar 29 12:06:35 2004 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 345 +++++++++++++++++++++--------------------------------------
 2 files changed, 127 insertions(+), 222 deletions(-)

commit 12731e13ae0615acf2c2ac26c506070179fe3e44
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sun Mar 28 23:03:57 2004 +0000

    Updated Greek translation (fix a typo)

 po/ChangeLog |  4 ++++
 po/el.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 426667bb31f7e913392313669eedc6649b34ec76
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Sun Mar 28 21:01:44 2004 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/hr.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 12cd475898608eb856b8d06406f980d70363365a
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Sat Mar 27 22:40:52 2004 +0000

    - fixed a small typo provávelmente->provavelmente
    
        * pt_BR.po:
        - fixed a small typo provávelmente->provavelmente

 po/ChangeLog | 5 +++++
 po/pt_BR.po  | 7 +++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 3ed5a62b6d8ae47a36c851e0a8d68e18e1f3ef8c
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Thu Mar 25 09:27:18 2004 +0000

    added punjabi translation

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/pa.po     | 3493 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3503 insertions(+), 1 deletion(-)

commit 8aa9b47a7f86a378f75f240bde219f81d5b4ff14
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Wed Mar 24 05:03:13 2004 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/hr.po     | 547 ++++++++++++++++-------------------------------------------
 2 files changed, 146 insertions(+), 405 deletions(-)

commit 5f780811f79c0ba29c1ac855c6429b2bee2e007e
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Mar 24 03:00:52 2004 +0000

    post release bump
    
    
    2004-03-23  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1df948d905c332f7a350b753d0bffdf2ab032543
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Mar 24 02:58:55 2004 +0000

    Release 2.6.0
    
    
    2004-03-23  Jody Goldberg <jody@gnome.org>
    
        * Release 2.6.0

 ChangeLog                                          |   8 +
 archiver/ChangeLog                                 |   4 +
 archiver/tests/ChangeLog                           |   4 +
 capplets/accessibility/at-properties/ChangeLog     |   4 +
 capplets/accessibility/keyboard/ChangeLog          |   4 +
 capplets/background/ChangeLog                      |   4 +
 capplets/common/ChangeLog                          |   4 +
 capplets/default-applications/ChangeLog            |   4 +
 capplets/desktop-links/ChangeLog                   |   4 +
 capplets/display/ChangeLog                         |   4 +
 capplets/file-types/ChangeLog                      |   4 +
 capplets/font/ChangeLog                            |   4 +
 capplets/keybindings/ChangeLog                     |  10 +
 capplets/keybindings/gnome-keybinding-properties.c |  29 +--
 capplets/keyboard/ChangeLog                        |   4 +
 capplets/mime-type/ChangeLog                       |   4 +
 capplets/mouse/ChangeLog                           |   4 +
 capplets/network/ChangeLog                         |   4 +
 capplets/rollback/ChangeLog                        |   4 +
 capplets/sound/ChangeLog                           |   4 +
 capplets/theme-switcher/ChangeLog                  |   4 +
 capplets/ui-properties/ChangeLog                   |   4 +
 capplets/url-properties/ChangeLog                  |   4 +
 capplets/windows/ChangeLog                         |   4 +
 capplets/wm-properties/ChangeLog                   |   4 +
 configure.in                                       |   4 +-
 control-center/ChangeLog                           |   4 +
 control-center/capplet-dir.c                       |  11 +-
 gnome-settings-daemon/ChangeLog                    |   9 +
 gnome-settings-daemon/actions/acme.h               |   2 +-
 gnome-settings-daemon/eggaccelerators.c            |   7 +-
 .../gnome-settings-multimedia-keys.c               |  86 ++++----
 help/ChangeLog                                     |   4 +
 libbackground/ChangeLog                            |   4 +
 libwindow-settings/ChangeLog                       |   4 +
 po/ChangeLog                                       | 173 +++++++--------
 po/am.po                                           |  35 +--
 po/ar.po                                           |  68 +++---
 po/az.po                                           |  35 +--
 po/be.po                                           |  35 +--
 po/bg.po                                           |  35 +--
 po/bn.po                                           |  70 +++---
 po/ca.po                                           |  35 +--
 po/cs.po                                           |  35 +--
 po/cy.po                                           |  33 +--
 po/da.po                                           |  35 +--
 po/de.po                                           |  35 +--
 po/el.po                                           |  35 +--
 po/en_CA.po                                        |  35 +--
 po/en_GB.po                                        |  35 +--
 po/es.po                                           |  35 +--
 po/et.po                                           |  35 +--
 po/fa.po                                           |  35 +--
 po/fi.po                                           |  35 +--
 po/fr.po                                           |  33 +--
 po/ga.po                                           | 240 +++++++++++----------
 po/gl.po                                           |  35 +--
 po/he.po                                           |  35 +--
 po/hi.po                                           |  35 +--
 po/hr.po                                           |  35 +--
 po/hu.po                                           | 197 +++++++++++------
 po/id.po                                           |  35 +--
 po/is.po                                           |  35 +--
 po/it.po                                           |  35 +--
 po/ja.po                                           |  35 +--
 po/ko.po                                           |  35 +--
 po/lt.po                                           |  35 +--
 po/lv.po                                           |  35 +--
 po/mk.po                                           |  35 +--
 po/ml.po                                           |  35 +--
 po/mn.po                                           |  35 +--
 po/ms.po                                           |  35 +--
 po/nl.po                                           |  35 +--
 po/nn.po                                           |  96 +++++----
 po/no.po                                           |  35 +--
 po/pl.po                                           |  35 +--
 po/pt.po                                           |  35 +--
 po/pt_BR.po                                        |  35 +--
 po/ro.po                                           |  33 +--
 po/ru.po                                           |  35 +--
 po/sk.po                                           | 157 ++++++++------
 po/sl.po                                           |  35 +--
 po/sq.po                                           |  35 +--
 po/sr.po                                           |  35 +--
 po/sr@Latn.po                                      |  35 +--
 po/sv.po                                           |  35 +--
 po/ta.po                                           |  33 +--
 po/th.po                                           |  35 +--
 po/tr.po                                           | 110 ++++++----
 po/uk.po                                           |  40 ++--
 po/vi.po                                           |  35 +--
 po/wa.po                                           |  35 +--
 po/zh_CN.po                                        |  35 +--
 po/zh_TW.po                                        |  33 +--
 typing-break/ChangeLog                             |   4 +
 vfs-methods/fontilus/ChangeLog                     |   4 +
 vfs-methods/themus/ChangeLog                       |   4 +
 97 files changed, 1765 insertions(+), 1408 deletions(-)

commit ae75d1f1c4a98a8464a098236c8ec9adba4e2bd3
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Tue Mar 23 17:19:15 2004 +0000

    Updated Slovak translation.
    
    2004-03-23  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 531 ++++++++++++++++++++---------------------------------------
 2 files changed, 182 insertions(+), 353 deletions(-)

commit 1444208f8d689ff2f87735ce3a9efa11fff65caa
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Mon Mar 22 20:16:22 2004 +0000

    Updated Norwegian Nynorsk translation.
    
    2004-03-22  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |    4 +
 po/nn.po     | 1595 ++--------------------------------------------------------
 2 files changed, 44 insertions(+), 1555 deletions(-)

commit c24f9a968fab372dd2634a5ae53283e16db3d5bd
Author: Andras Timar <timar@gnome.hu>
Date:   Sun Mar 21 22:26:43 2004 +0000

    Updated Hungarian translation.
    
    2004-03-21  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 +
 po/hu.po     | 396 +++++++++++++++++++++++++----------------------------------
 2 files changed, 170 insertions(+), 230 deletions(-)

commit 172608eb3f705a539633d145555b138d2522035c
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Sun Mar 21 21:25:31 2004 +0000

    Update Irish translation

 po/ChangeLog |   4 ++
 po/ga.po     | 213 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 110 insertions(+), 107 deletions(-)

commit e16e106a2daa5430945f9a54371bbbbf1f046fcf
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sat Mar 20 04:42:57 2004 +0000

    Updated traditional Chinese translation from Woodman Tuen
    
        * zh_TW.po: Updated traditional Chinese translation from
          Woodman Tuen <woodnman@culturecom.com.hk>.

 po/ChangeLog |   5 +
 po/zh_TW.po  | 312 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 146 insertions(+), 171 deletions(-)

commit 641730a816d9a99479a6f8a6e96aa6dbef0df37e
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Fri Mar 19 20:59:30 2004 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 4217e3715be5ea49a8e4ffde243547ae82d6f5d4
Author: Arafat Medini <lumina@silverpen.de>
Date:   Fri Mar 19 06:44:25 2004 +0000

    Updated Arabic translation.
    
    
    2004-03-19  Arafat Medini  <lumina@silverpen.de>
    
        * ar.po: Updated Arabic translation.

 po/ChangeLog |  4 ++++
 po/ar.po     | 29 +++++++++++------------------
 2 files changed, 15 insertions(+), 18 deletions(-)

commit f6db3b29106fb6aa9c9c6dcc78f17593421e2bed
Author: Arafat Medini <lumina@silverpen.de>
Date:   Thu Mar 18 21:15:35 2004 +0000

    Updated Arabic translation.
    
    
    004-03-18  Arafat Medini  <lumina@silverpen.de>
    
        * ar.po: Updated Arabic translation.

 po/ChangeLog |   4 +++
 po/ar.po     | 102 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 50 insertions(+), 56 deletions(-)

commit e935673900ca649aa4c2ebd2ce5e9b810c0e567a
Author: Mugurel Tudor <mugurelu@go.ro>
Date:   Thu Mar 18 20:58:01 2004 +0000

    Updated Romanian translation by Misu Moldovan <dumol@go.ro>
    
    2004-03-18  Mugurel Tudor  <mugurelu@go.ro>
    
        * ro.po: Updated Romanian translation by
        Misu Moldovan <dumol@go.ro>

 po/ChangeLog |   5 +
 po/ro.po     | 698 ++++++++++++++++++++++-------------------------------------
 2 files changed, 269 insertions(+), 434 deletions(-)

commit a10237a2bebbcf327301d9321af581ffa3b7310d
Author: Dinesh Nadarajah <dinesh_list@sbcglobal.net>
Date:   Thu Mar 18 03:08:40 2004 +0000

    Updated Tamil Translation
    
    
    2004-03-17  Dinesh Nadarajah <dinesh_list@sbcglobal.net>
    
            * ta.po: Updated Tamil Translation

 po/ChangeLog |   4 +
 po/ta.po     | 629 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 254 insertions(+), 379 deletions(-)

commit b6c633c7d209282ef2343fc6e613ffc736b01f0d
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Wed Mar 17 22:35:59 2004 +0000

    More fixing: sort out plural forms.

 po/cy.po | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 6e2d6b37897c8dfc7f37883c7e354a3f34cfe357
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Wed Mar 17 22:26:50 2004 +0000

    Translate a couple of messages missing from previous commit.

 po/cy.po | 44 ++++++++++++++++++++++++++++----------------
 1 file changed, 28 insertions(+), 16 deletions(-)

commit 7509792689a3ae6f39bab6f8d7ead84cda735a98
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Wed Mar 17 22:22:41 2004 +0000

    Updated Welsh translation from Dafydd Tomos.

 po/ChangeLog |   4 +
 po/cy.po     | 325 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 158 insertions(+), 171 deletions(-)

commit 294bc86508fa2667665ce75999e9b8fe27d6539d
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Wed Mar 17 17:59:39 2004 +0000

    Add the FileChooserBackend as an xsetting.
    
    Fri Mar 12 20:15:28 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-settings-xsettings.c: Add the FileChooserBackend as an
            xsetting.

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 1af33dfa8c7f1b30d7bc475ac63db98b529dd969
Author: Gareth Owen <gowen@src.gnome.org>
Date:   Wed Mar 17 03:47:39 2004 +0000

    Updated British translation

 po/ChangeLog |    4 +
 po/en_GB.po  | 1663 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 913 insertions(+), 754 deletions(-)

commit 87318a28b60fd7bfb339370be734dfa2af298c8e
Author: Sayamindu Dasgupta <sdg@src.gnome.org>
Date:   Sun Mar 14 17:45:53 2004 +0000

    Updated Bengali translations

 po/ChangeLog |   5 +
 po/bn.po     | 380 +++++++++++++++++++++++------------------------------------
 2 files changed, 152 insertions(+), 233 deletions(-)

commit 2dd7c68ddecd8a8119f3c6fa2212de7cab4cae1f
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sun Mar 14 15:40:47 2004 +0000

    Updated German translation.

 po/ChangeLog | 4 ++++
 po/de.po     | 7 +++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit f72169ba90503eb2bb83cb6368537a0dd4e2321b
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Sun Mar 14 14:25:06 2004 +0000

    Fixety fix

 po/tr.po | Bin 24839 -> 110886 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 007e28a3a5b8e020a013ac2de3c772a6ff33e13b
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Mar 14 10:32:35 2004 +0000

    Updated French translation.

 po/ChangeLog |   4 ++
 po/fr.po     | 189 +++++++++++++++++------------------------------------------
 2 files changed, 59 insertions(+), 134 deletions(-)

commit 8e563a4be6b749d387cc1325ddf9074a399abf5f
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Sat Mar 13 20:22:24 2004 +0000

    CVS_SILENT

 po/tr.po | Bin 108735 -> 24839 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 238f70506e51431ee290097667feae0122230c92
Author: Maxim Dziumanenko <mvd@mylinux.com.ua>
Date:   Sat Mar 13 13:11:43 2004 +0000

    Updated Ukrainian translation
    
    2004-03-13 Maxim Dziumanenko <mvd@mylinux.com.ua>
    
        * uk.po: Updated Ukrainian translation

 po/ChangeLog |   4 +
 po/uk.po     | 270 ++++++++++++++++++++---------------------------------------
 2 files changed, 93 insertions(+), 181 deletions(-)

commit 495fc11254c763a5bcd0f34a6254bafe8661f174
Author: Arafat Medini <lumina@silverpen.de>
Date:   Fri Mar 12 17:04:15 2004 +0000

    Updated Arabic translation.
    
    
    2004-03-12  Arafat Medini  <lumina@silverpen.de>
    
        * ar.po: Updated Arabic translation.

 po/ChangeLog |   4 +
 po/ar.po     | 429 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 221 insertions(+), 212 deletions(-)

commit d8624310faee21085b75b82bfc05688dbdbe2151
Author: Sayamindu Dasgupta <sdg@src.gnome.org>
Date:   Fri Mar 12 15:34:08 2004 +0000

    updated Bengali translation

 po/ChangeLog |    5 +
 po/bn.po     | 1358 ++++++++++++++++++++++++----------------------------------
 2 files changed, 568 insertions(+), 795 deletions(-)

commit 6ee9a7f698fa7cf5c7b1da255c8eb6894ff75cc9
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Thu Mar 11 20:44:51 2004 +0000

    CVS_SILENT

 po/tr.po | 1343 +++++++-------------------------------------------------------
 1 file changed, 133 insertions(+), 1210 deletions(-)

commit 1277e7988ec6e70f2e6970cab3020793a97471e3
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Mar 11 06:11:02 2004 +0000

    post release bump
    
    
    2004-03-11  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f4fb38359c611905e44e6fc7725c675dbce79d2c
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Mar 11 06:02:19 2004 +0000

    Release 2.5.4
    
    
    2004-03-11  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.4

 ChangeLog                                      |   4 +
 NEWS                                           |   4 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/display/ChangeLog                     |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/am.po                                       | 416 +++++++++----------
 po/ar.po                                       | 425 +++++++++----------
 po/az.po                                       |  34 +-
 po/be.po                                       |  72 ++--
 po/bg.po                                       | 460 ++++++++++-----------
 po/bn.po                                       | 428 ++++++++++----------
 po/ca.po                                       | 457 ++++++++++-----------
 po/cs.po                                       | 272 ++++++-------
 po/cy.po                                       | 427 ++++++++++----------
 po/da.po                                       | 214 +++++-----
 po/de.po                                       | 289 +++++++------
 po/el.po                                       | 288 +++++++------
 po/en_CA.po                                    |   7 +-
 po/en_GB.po                                    | 390 ++++++++----------
 po/es.po                                       |   7 +-
 po/et.po                                       | 430 ++++++++++----------
 po/fa.po                                       | 400 ++++++++----------
 po/fi.po                                       | 273 ++++++-------
 po/fr.po                                       |   2 +-
 po/ga.po                                       | 539 ++++++++++++-------------
 po/gl.po                                       | 462 ++++++++++-----------
 po/he.po                                       | 427 ++++++++++----------
 po/hi.po                                       | 286 ++++++-------
 po/hr.po                                       | 426 ++++++++++---------
 po/hu.po                                       | 458 ++++++++++-----------
 po/id.po                                       | 340 ++++++----------
 po/is.po                                       | 426 ++++++++++---------
 po/it.po                                       |   2 +-
 po/ja.po                                       |   2 +-
 po/ko.po                                       | 269 ++++++------
 po/lt.po                                       | 276 ++++++-------
 po/lv.po                                       | 448 ++++++++++----------
 po/mk.po                                       | 428 ++++++++++----------
 po/ml.po                                       | 432 ++++++++++----------
 po/mn.po                                       |  53 ++-
 po/ms.po                                       | 290 +++++++------
 po/nl.po                                       |   2 +-
 po/nn.po                                       | 426 ++++++++++---------
 po/no.po                                       | 265 ++++++------
 po/pl.po                                       | 206 +++++-----
 po/pt.po                                       | 281 ++++++-------
 po/pt_BR.po                                    |  49 ++-
 po/ro.po                                       | 428 ++++++++++----------
 po/ru.po                                       | 395 +++++++++---------
 po/sk.po                                       | 422 ++++++++++---------
 po/sl.po                                       | 428 ++++++++++----------
 po/sq.po                                       | 140 ++++---
 po/sr.po                                       | 278 ++++++-------
 po/sr@Latn.po                                  | 319 +++++++--------
 po/sv.po                                       | 273 ++++++-------
 po/ta.po                                       | 459 ++++++++++-----------
 po/th.po                                       | 369 ++++++++---------
 po/tr.po                                       | 442 ++++++++++----------
 po/uk.po                                       | 432 ++++++++++----------
 po/vi.po                                       | 457 ++++++++++-----------
 po/wa.po                                       | 425 +++++++++----------
 po/zh_CN.po                                    | 226 +++++------
 po/zh_TW.po                                    | 427 ++++++++++----------
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/fontilus/Makefile.am               |   1 +
 vfs-methods/themus/ChangeLog                   |   4 +
 vfs-methods/themus/Makefile.am                 |   3 +-
 94 files changed, 8676 insertions(+), 9468 deletions(-)

commit af94880fe9f2ce52b68d678ace13bfbbef7605f1
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Wed Mar 10 15:59:53 2004 +0000

    Updated Mongolian translation.

 po/mn.po | 36 ++++++++++++++----------------------
 1 file changed, 14 insertions(+), 22 deletions(-)

commit 82c2599d544ba03b02a17639a2eb8ff54c285e59
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Wed Mar 10 02:24:09 2004 +0000

    translation update done by Estêvão Samuel Procópio <tevaum@ig.com.br>
    
        * pt_BR.po: translation update done by
          Estêvão Samuel Procópio <tevaum@ig.com.br>

 po/ChangeLog |   5 +
 po/pt_BR.po  | 673 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 324 insertions(+), 354 deletions(-)

commit 928af6fd1f1a6231bbb43cf5cdc478e32aae94b1
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Wed Mar 10 00:30:41 2004 +0000

    Translation updated.
    
    2004-03-10  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated.

 po/ChangeLog |   4 +
 po/nl.po     | 298 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 139 insertions(+), 163 deletions(-)

commit 1c38ee78e03019016c6a8b31481530785d52680e
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Tue Mar 9 22:29:08 2004 +0000

    Updated Italian translation.

 po/ChangeLog |   5 ++
 po/it.po     | 261 ++++++++++++++++++-----------------------------------------
 2 files changed, 83 insertions(+), 183 deletions(-)

commit 150f416e1c586f74641ff7d6b60fac66cbe1f5c3
Author: Fixed any translations were lost. T.Aihana <aihana@gnome.gr.jp>
Date:   Tue Mar 9 13:47:22 2004 +0000

    2004-03-09 Fixed any translations were lost. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |  4 ++++
 po/ja.po     | 48 ++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 50 insertions(+), 2 deletions(-)

commit aeb5d9d16b8734b41b23a1f15f22b49a65afb99b
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Tue Mar 9 10:22:31 2004 +0000

    Updated Mongolian translation.

 po/ChangeLog |   3 +
 po/mn.po     | 307 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 148 insertions(+), 162 deletions(-)

commit b9ff968202d97d6d5145ae1d5cc548613a469b75
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Mar 9 00:49:47 2004 +0000

    Akoma korrigjime!

 po/sq.po | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

commit 9493cbd95624d94c9ab6819ee8dad761953e746d
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Mar 9 00:34:54 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit f5889fead99ca2aa848eafcde923ee52fca23be9
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Mar 9 00:33:10 2004 +0000

    Updated

 po/sq.po | 185 ++++++++++++++++-----------------------------------------------
 1 file changed, 45 insertions(+), 140 deletions(-)

commit efa080a724d9786aca8efd11e55f061ecf63e57f
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Mon Mar 8 21:55:59 2004 +0000

    Updated Irish translation

 po/ChangeLog |   4 ++
 po/ga.po     | 199 +++++++++++++++++------------------------------------------
 2 files changed, 59 insertions(+), 144 deletions(-)

commit e6019c40961e567752aaa992e58415c2516a81ca
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Mon Mar 8 20:45:44 2004 +0000

    Updated Spanish translation.
    
    2004-03-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 374 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 195 insertions(+), 183 deletions(-)

commit 4e0fd4d6b563d5d326121105d1b57d5c9a6d7a0d
Author: Fixed mistranslations. T.Aihana <aihana@gnome.gr.jp>
Date:   Mon Mar 8 15:28:45 2004 +0000

    2004-03-08 Fixed mistranslations. T.Aihana <aihana@gnome.gr.jp>

 po/ja.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit b855804dbce7c915e4a95b17ed46f29e0fa1d43e
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Mon Mar 8 15:23:56 2004 +0000

    2004-03-09 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 396 +++++++++++++++++++----------------------------------------
 2 files changed, 133 insertions(+), 267 deletions(-)

commit d9a85182ed8a63e16bc68facf0eddf4f9101ea35
Author: Ales Nyakhaychyk <alesnk@src.gnome.org>
Date:   Mon Mar 8 12:33:33 2004 +0000

    Updated Belarusian translation.

 po/ChangeLog |   4 +
 po/be.po     | 372 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 185 insertions(+), 191 deletions(-)

commit a4976b8ca94182820037588942cf66dc9f00283a
Author: Mətin Əmirov <metin@karegen.com>
Date:   Mon Mar 8 12:27:28 2004 +0000

    Translation updated.
    
    2004-03-08  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |   4 +
 po/az.po     | 738 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 448 insertions(+), 294 deletions(-)

commit 7f58dac13b1f592f4fd70b125d12802dbf86c87c
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Mon Mar 8 05:19:30 2004 +0000

    Updated Thai translation.
    
    2004-03-07  Paisa Seeluangsawat  <paisa@users.sf.net>
    
        * th.po: Updated Thai translation.

 po/th.po | 77 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 39 insertions(+), 38 deletions(-)

commit a37132dcdbc91f7a49a1b64bf4dd8a7248962558
Author: Alexander Winston <alexander.winston@comcast.net>
Date:   Mon Mar 8 03:10:22 2004 +0000

    Updated Canadian English translation to "740 translated messages, 3 fuzzy
    
    2004-03-07  Alexander Winston  <alexander.winston@comcast.net>
    
        * en_CA.po: Updated Canadian English translation to "740
        translated messages, 3 fuzzy translations." status.

 po/ChangeLog |   5 +
 po/en_CA.po  | 336 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 172 insertions(+), 169 deletions(-)

commit c77b53162f1b105a5807e8347273052c74574ea6
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Mar 7 14:29:09 2004 +0000

    Updated French translation.

 po/ChangeLog   |   5 ++
 po/POTFILES.in |   2 -
 po/fr.po       | 279 ++++++++++++++++++++++++++-------------------------------
 3 files changed, 131 insertions(+), 155 deletions(-)

commit e3e41e5454f69630317a6b2b8dee5ac35cfcc26d
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sat Mar 6 20:31:32 2004 +0000

    Translation updated.
    
    2004-03-06  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |  4 ++++
 po/az.po     | 49 ++++++++++++++++++++++++-------------------------
 2 files changed, 28 insertions(+), 25 deletions(-)

commit db4dbbdbeb28259c695531e8b38de4a6c6842f88
Author: Andras Timar <timar@gnome.hu>
Date:   Sat Mar 6 10:55:18 2004 +0000

    Updated Hungarian translation.
    
    2004-03-06  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 +
 po/hu.po     | 402 +++++++++++++++++++++--------------------------------------
 2 files changed, 146 insertions(+), 260 deletions(-)

commit 16ee6540d96a08fa57d7afc2388b9c4065cdd78e
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Fri Mar 5 15:48:31 2004 +0000

    Add accessible names for port entry fields. Fixes more of bug #126714.
    
    2004-03-05  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-network-preferences.glade: Add accessible names for port
        entry fields. Fixes more of bug #126714.

 capplets/network/ChangeLog                       |  5 +++++
 capplets/network/gnome-network-preferences.glade | 12 ++++++++++++
 2 files changed, 17 insertions(+)

commit 2468ddb0f7eecbcf19a9be812703544dd5ea5573
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Fri Mar 5 08:39:31 2004 +0000

    Updated Thai translation.
    
    2004-03-05  Paisa Seeluangsawat  <paisa@users.sf.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog | 4 ++++
 po/th.po     | 9 +++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 3d49040c085d45f083de2cd1a9fb425f3d36de5b
Author: Rodney Dawes <dobey@ximian.com>
Date:   Fri Mar 5 04:35:21 2004 +0000

    Removed these old files from the old background capplet
    
    2004-03-04  Rodney Dawes  <dobey@ximian.com>
    
        * background-properties-capplet.c:
        * background-properties.glade:
        * background-properties.glade1:
        * background-properties.xml: Removed these old files from the old
        background capplet

 capplets/background/ChangeLog                      |   8 +
 .../background/background-properties-capplet.c     | 619 -------------------
 capplets/background/background-properties.glade    | 678 ---------------------
 capplets/background/background-properties.glade1   | 653 --------------------
 capplets/background/background-properties.xml      |  71 ---
 5 files changed, 8 insertions(+), 2021 deletions(-)

commit 98fa7158e5f0ce7967e1dd089b1f786063db9cbd
Author: Rodney Dawes <dobey@ximian.com>
Date:   Fri Mar 5 04:27:57 2004 +0000

    Select the added image, and change the scaling type to "wallpaper" if it
    
    2004-03-04  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (gnome_wp_add_image): Select the added image, and
        change the scaling type to "wallpaper" if it is "none" (#136228)
    
        Fixes #136228

 capplets/background/ChangeLog          |  7 +++++++
 capplets/background/gnome-wp-capplet.c | 17 ++++++++++++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit dfd64c7e441347f08cc39dcc14689ccdcba2be70
Author: Funda Wang <fwang@src.gnome.org>
Date:   Thu Mar 4 13:08:17 2004 +0000

    Updated Simplified Chinese translation

 po/ChangeLog |   4 +
 po/zh_CN.po  | 671 +++++++++++++++++++++++------------------------------------
 2 files changed, 265 insertions(+), 410 deletions(-)

commit fe2cbf1632d0eb3cc49639c45b7c1e0713159ed9
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Mar 3 18:00:00 2004 +0000

    Updated Danish translation.
    
    2004-03-03  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 +++
 po/da.po     | 98 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 57 insertions(+), 45 deletions(-)

commit ef3be11eead23f56b2b79810013b467830af6c3b
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Mar 3 02:33:56 2004 +0000

    Updated Polish translation.
    
    2004-03-03  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 +++
 po/pl.po     | 99 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 59 insertions(+), 44 deletions(-)

commit 90173f988196f6956dfe22f29a166a3d1fa33192
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Tue Mar 2 19:38:40 2004 +0000

    Updated the Greek translation

 po/ChangeLog |   4 +++
 po/el.po     | 101 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 60 insertions(+), 45 deletions(-)

commit 35def988fcef5fce179ec7f2f491bfcfabaa77b1
Author: Dan T. Murphy <dtmurphy@acm.org>
Date:   Tue Mar 2 17:26:50 2004 +0000

    Added use_filechooser=true property to GnomeFileEntry widgets to make use
    
    2004-03-02  Dan T. Murphy  <dtmurphy@acm.org>
    
            * file-types-properties.glade: Added use_filechooser=true
            property to GnomeFileEntry widgets to make use of new file
            selector. Fixes bug #135791.

 capplets/file-types/ChangeLog                   | 6 ++++++
 capplets/file-types/file-types-properties.glade | 4 ++++
 2 files changed, 10 insertions(+)

commit 2e5a41037f111dc734bb253dbe57b200f416c39d
Author: Fernando Herrera de las Heras <fherrera@src.gnome.org>
Date:   Tue Mar 2 17:15:31 2004 +0000

          http://bugzilla.gnome.org/show_bug.cgi?id=125315
            * main.c: (cb_dialog_response): Point help to the right section

 capplets/display/ChangeLog | 5 +++++
 capplets/display/main.c    | 4 +---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit ed41551ac0a9d7039696ba162a2924a252572c9c
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Mar 2 17:02:08 2004 +0000

    *** empty log message ***

 capplets/display/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit a18071b458ec9074d26c75c20094d9ea29e90317
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Mar 2 17:01:47 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=135908 restart the screensaver
    
    
    2004-03-02  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=135908
        * main.c (apply_config) : restart the screensaver

 capplets/display/main.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 26139a231bbca334c6f90a3ee065c6be410a9ebb
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Mar 2 15:03:43 2004 +0000

    revert the commit on
    
    
    2004-03-02  Jody Goldberg <jody@gnome.org>
    
        * gnome-theme-manager.c (load_meta_themes) : revert the commit on
          Wed Feb  4 00:05:11 2004  Jonathan Blandford  <jrb@gnome.org>
          exit if it is a non-compliant wm (eg, anything but metacity)
    
    2004-02-25  Fernando Herrera  <fherrera@onirica.com>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=132902
        * theme-install.glade: use GtkFileChooser.

 capplets/theme-switcher/ChangeLog             | 11 +++++++++++
 capplets/theme-switcher/gnome-theme-manager.c | 19 +++++--------------
 capplets/theme-switcher/theme-install.glade   |  1 +
 3 files changed, 17 insertions(+), 14 deletions(-)

commit afc531f70d9927a44a90f29bc5c20baf53d4b16c
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Mar 2 02:30:12 2004 +0000

    Translation updated by Reinout van Schouwen.
    
    2004-03-02  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 ++
 po/nl.po     | 126 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 92 insertions(+), 38 deletions(-)

commit f3184fa6d0efaf0f4a7e648f48b33c480b97b18d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 1 16:38:33 2004 +0000

    Updated Norwegian translation.
    
    2004-03-01  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 41 +++++++++++++++++++++++++----------------
 2 files changed, 29 insertions(+), 16 deletions(-)

commit ef47825e892aed8ccba53570d7bfd41972738625
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Mon Mar 1 15:57:32 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 18 +++++++++++++-----
 2 files changed, 17 insertions(+), 5 deletions(-)

commit c1f9cb3926949d1dfc4346dfde2d4ffde1cf6db4
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Mar 1 13:38:36 2004 +0000

    initialise GStreamer if we want to use it ;) (Patch by Christophe Fergeau
    
    2004-03-01  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-gstreamer.c:
        (acme_volume_gstreamer_class_init): initialise GStreamer if we
        want to use it ;) (Patch by Christophe Fergeau
        <teuf@users.sourceforge.net>) (Closes: #131316)

 gnome-settings-daemon/ChangeLog                       | 7 +++++++
 gnome-settings-daemon/actions/acme-volume-gstreamer.c | 2 ++
 2 files changed, 9 insertions(+)

commit e7928dbfa41221d3cc2746161a6a712d2e478eea
Author: Rodney Dawes <dobey@ximian.com>
Date:   Mon Mar 1 04:09:06 2004 +0000

    Split out real image adding code into a separate call
    
    2004-02-29  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c (gnome_wp_add_image): Split out real image adding
        code into a separate call
        (gnome_wp_add_images):
        (gnome_wp_file_open_dialog):
        (gnome_wp_properties_init): Add support for GtkFileChooser (#135317)
        (bg_properties_dragged_image): Fix re-addition of deleted images
        * gnome-wp-capplet.h: Store the filesel widget in GnomeWPCapplet
        * gnome-wp-item.c: Fix warning about gnome_vfs_mime_get_description
    
        Fixes #135317

 capplets/background/ChangeLog          |  13 +++
 capplets/background/gnome-wp-capplet.c | 186 ++++++++++++++++++---------------
 capplets/background/gnome-wp-capplet.h |   3 +
 capplets/background/gnome-wp-item.c    |   1 +
 4 files changed, 121 insertions(+), 82 deletions(-)

commit d6b98e44354767947ea6f3bfb1ccdd3f1f204ba2
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sun Feb 29 23:40:17 2004 +0000

    better ALSA volume steps, using rounding up rather than normal float to
    
    2004-02-29  Bastien Nocera  <hadess@hadess.net>
    
        * actions/acme-volume-alsa.c: (acme_volume_alsa_get_volume),
        (acme_volume_alsa_set_volume): better ALSA volume steps, using
        rounding up rather than normal float to int casting
        (Closes: #124741)

 gnome-settings-daemon/ChangeLog                  |  7 ++++++
 gnome-settings-daemon/actions/acme-volume-alsa.c | 29 +++++++++++++-----------
 2 files changed, 23 insertions(+), 13 deletions(-)

commit 32625b299248f0f9ed414b4ae9082c6306f02c8c
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Sun Feb 29 18:42:03 2004 +0000

    Updated Italian translation.

 po/ChangeLog |  5 +++++
 po/it.po     | 25 ++++++++++++++++++-------
 2 files changed, 23 insertions(+), 7 deletions(-)

commit a7376db33191588486bbc6fa99e0f568fa8cdbae
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Feb 29 14:19:57 2004 +0000

    Added one entry. Updated Swedish translation.
    
    2004-02-29  Christian Rose  <menthos@menthos.com>
    
        * .cvsignore: Added one entry.
        * sv.po: Updated Swedish translation.

 po/.cvsignore |  1 +
 po/ChangeLog  |  4 ++++
 po/sv.po      | 21 ++++++++++++++++-----
 3 files changed, 21 insertions(+), 5 deletions(-)

commit cc8e73124bb8ab657fa86ec3a195eb941ba72e8f
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Feb 28 20:28:50 2004 +0000

    Updated Spanish translation Added Spanish translation (will complete in
    
    2004-02-28  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * ChangeLog po/ChangeLog po/es.po: Updated Spanish translation
        * help/es/*: Added Spanish translation (will complete in the
          following days)

 ChangeLog                                 |   4 +
 help/es/Makefile.am                       |  25 ++
 help/es/config-accessibility-keyboard.xml |   3 +
 help/es/config-background.xml             | 132 ++++++++++
 help/es/config-behavior.xml               |  54 ++++
 help/es/config-cds.xml                    |  64 +++++
 help/es/config-default-apps.xml           | 119 +++++++++
 help/es/config-file-type.xml              |   3 +
 help/es/config-hints.xml                  |  64 +++++
 help/es/config-html.xml                   | 198 ++++++++++++++
 help/es/config-kbd.xml                    | 173 +++++++++++++
 help/es/config-keybindings.xml            |  37 +++
 help/es/config-mouse.xml                  | 117 +++++++++
 help/es/config-screensaver.xml            | 254 ++++++++++++++++++
 help/es/config-sound.xml                  |  47 ++++
 help/es/config-themes.xml                 |  46 ++++
 help/es/control-center-es.omf             |  14 +
 help/es/control-center.xml                | 414 ++++++++++++++++++++++++++++++
 po/ChangeLog                              |   5 +
 po/es.po                                  | 133 ++++------
 20 files changed, 1826 insertions(+), 80 deletions(-)

commit c4ec2e32304c4f6b15f8278c06cb932dd198f35d
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sat Feb 28 19:40:54 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 18 +++++++++++++-----
 2 files changed, 17 insertions(+), 5 deletions(-)

commit 51b9ebcbb6a7e439e5315935cdf0bd7dc41a2f39
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sat Feb 28 18:00:35 2004 +0000

    Updated Finnish translation.
    
    2004-02-28  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 ++
 po/fi.po     | 222 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 125 insertions(+), 101 deletions(-)

commit f553a362312d1f8110301f2af51d04068bafacfb
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Feb 28 15:46:04 2004 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 19 +++++++++++++++----
 2 files changed, 19 insertions(+), 4 deletions(-)

commit 6fbd26427914573dc675bb9545f98e5b2db90e22
Author: Zygimantas Berucka <uid0@tuxfamily.org>
Date:   Sat Feb 28 14:28:11 2004 +0000

    Updated Lithuanian translation.
    
    2004-02-28  Zygimantas Berucka  <uid0@tuxfamily.org>
    
    * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 817 ++++++++++++++++++++---------------------------------------
 2 files changed, 283 insertions(+), 538 deletions(-)

commit ed75d250e576ab277b852bb8dfec2b3360c0cb9d
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Feb 28 14:05:41 2004 +0000

    Updated Portuguese translation.
    
    2004-02-28  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +++
 po/pt.po     | 105 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 64 insertions(+), 45 deletions(-)

commit ee71acecb2f62990713197a556dcfcc6ec521dd2
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 28 11:11:51 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 3203844d93adaeaf30f7f440f616cd8fd2863362
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 28 11:09:22 2004 +0000

    Updated

 po/sq.po | 67 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 38 insertions(+), 29 deletions(-)

commit e9a14c2d1421ed71eb92ad4524b672248d8cc525
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Sat Feb 28 04:21:38 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 22 ++++++++++++++++------
 po/sr@Latn.po | 22 ++++++++++++++++------
 3 files changed, 36 insertions(+), 12 deletions(-)

commit 8902014be688ac9480302445cad8979fe87f1d9b
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Feb 27 19:13:54 2004 +0000

    long arguing over the string breakage is over. Now gcd shows the error message to unhappy users of .xmodmap with enabled xkb

 .../gnome-settings-keyboard-xkb.c                  | 56 ++++++++++++++++++++++
 1 file changed, 56 insertions(+)

commit 4a426c7cae1827cacba35ff6461651b561c280c1
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Fri Feb 27 18:17:18 2004 +0000

    Translation updated by Tino Meinen.
    
    2004-02-27  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Tino Meinen.

 po/ChangeLog |   4 +
 po/nl.po     | 271 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 116 insertions(+), 159 deletions(-)

commit ce4976ec13ec0513d94aeda8b6831383b6198129
Author: Leonid Kanter <lkanter@src.gnome.org>
Date:   Fri Feb 27 12:35:41 2004 +0000

    update Russian translation

 po/ru.po | 821 ++++++++++++++++++++-------------------------------------------
 1 file changed, 258 insertions(+), 563 deletions(-)

commit c716b94f5ce9ea4433186314464f0644dc085f75
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Fri Feb 27 12:00:54 2004 +0000

    Updated French translation.

 po/ChangeLog |    4 +
 po/fr.po     | 1404 ++++++----------------------------------------------------
 2 files changed, 129 insertions(+), 1279 deletions(-)

commit d9e6109136ed86505859eb0e929a2afc0314fb11
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Fri Feb 27 06:34:57 2004 +0000

    Updated Thai translation.
    
    2004-02-27  Paisa Seeluangsawat  <paisa@users.sf.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |    4 +
 po/th.po     | 1120 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 562 insertions(+), 562 deletions(-)

commit 4381853500e68bd23b4a32a4e82e7a68f627caa5
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Thu Feb 26 14:30:53 2004 +0000

    Translation updated by Kees van den Broek.
    
    2004-02-26  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Kees van den Broek.

 po/ChangeLog |   4 ++
 po/nl.po     | 211 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 115 insertions(+), 100 deletions(-)

commit acfee37de598c1d14d7c5fd97036eff500e17dec
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Feb 25 23:45:49 2004 +0000

    Updated Spansih translation.
    
    2004-02-26  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spansih translation.

 po/ChangeLog |   4 ++
 po/es.po     | 137 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 88 insertions(+), 53 deletions(-)

commit e04ca47dd4d3120705308fa9d24ebf5f95676c42
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 25 18:02:29 2004 +0000

    Disable GStreamer by default until #131316 gets fixed
    
    2004-02-25  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: Disable GStreamer by default until #131316 gets
        fixed

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b87b234730bcf1342df5bb1cfe5acfce1f53b6a1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Feb 25 18:00:37 2004 +0000

    check for GStreamer, make it possible to disable ALSA support even if the
    
    2004-02-25  Bastien Nocera  <hadess@hadess.net>
    
        * configure.in: check for GStreamer, make it possible to disable
        ALSA support even if the libraries are there
    
    2004-02-25  Bastien Nocera  <hadess@hadess.net>
    
        * actions/Makefile.am:
        * actions/acme-volume-gstreamer.[ch]:
        * actions/acme-volume.c: (acme_volume_class_init),
        (acme_volume_new): add GStreamer mixer support

 ChangeLog                                          |   5 +
 configure.in                                       |  53 +++-
 gnome-settings-daemon/ChangeLog                    |   7 +
 gnome-settings-daemon/actions/Makefile.am          |  10 +-
 .../actions/acme-volume-gstreamer.c                | 279 +++++++++++++++++++++
 .../actions/acme-volume-gstreamer.h                |  49 ++++
 gnome-settings-daemon/actions/acme-volume.c        |   9 +
 7 files changed, 406 insertions(+), 6 deletions(-)

commit 3fbbd4ad1e3e7e0ccb5977dc3bf728d3b0acf289
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Tue Feb 24 23:06:06 2004 +0000

    Updated Irish translation

 po/ChangeLog |   4 ++
 po/ga.po     | 186 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 113 insertions(+), 77 deletions(-)

commit 55a2057d876d7eaff741b55e0b3175893f6d30cc
Author: Rodney Dawes <dobey@ximian.com>
Date:   Tue Feb 24 20:51:35 2004 +0000

    Escape the path for thumbnails and fileinfo (#135089)
    
    2004-02-24  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-info.c (gnome_wp_info_new):
        * gnome-wp-item.c (gnome_wp_item_get_thumbnail): Escape the path for
        thumbnails and fileinfo (#135089)
    
        Fixes #135089

 capplets/background/ChangeLog       |  8 ++++++++
 capplets/background/gnome-wp-info.c | 19 +++++++++++++------
 capplets/background/gnome-wp-item.c |  4 ++--
 3 files changed, 23 insertions(+), 8 deletions(-)

commit 19c8dc600150baacc03a7ac8c5e7c52d44a83aff
Author: Rodney Dawes <dobey@ximian.com>
Date:   Tue Feb 24 19:49:58 2004 +0000

    Check that the file exists, and continue through the loop if it doesn't
    
    2004-02-24  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-xml.c (gnome_wp_oad_legacy): Check that the file exists,
        and continue through the loop if it doesn't (#135251)
    
        Fixes #135251

 capplets/background/ChangeLog      | 7 +++++++
 capplets/background/gnome-wp-xml.c | 4 ++++
 2 files changed, 11 insertions(+)

commit 48c884fe25c4625822341d0a8eff019f6fb117d9
Author: Rodney Dawes <dobey@ximian.com>
Date:   Tue Feb 24 19:32:05 2004 +0000

    Add some explanatory comments to bits of the code Fix the ratio
    
    2004-02-24  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-item.c (gnome_wp_item_get_thumbnail): Add some explanatory
        comments to bits of the code
        Fix the ratio calculation to handle images of all sizes (#134541)
        Don't force tiling of square images
        Don't do _save_thumbnail () for the custom thumbnails
        If pixbuf is NULL, copy away bgpixbuf and return that instead
        * gnome-wp-utils.c (gnome_wp_tile_pixbuf):
        (gnome_wp_center_pixbuf): Return copied pixbufs
    
        Fixes #134541

 capplets/background/ChangeLog        | 13 ++++++
 capplets/background/gnome-wp-item.c  | 81 +++++++++++++++++++++---------------
 capplets/background/gnome-wp-utils.c |  8 ++--
 3 files changed, 64 insertions(+), 38 deletions(-)

commit cdfef1c1318856905b2fd59dee3a0aec60196bae
Author: Mariano Suárez-Alvarez <mariano@gnome.org>
Date:   Tue Feb 24 17:33:40 2004 +0000

    fix a typo in a variable name, bug #134699.
    
    2004-02-24  Mariano Suárez-Alvarez <mariano@gnome.org>
    
        * gnome-settings-daemon/gnome-settings-accessibility-keyboard.c
        (ax_slowkeys_warning_dialog_post) : fix a typo in a variable name, bug
        #134699.

 gnome-settings-daemon/ChangeLog                          |  6 ++++++
 .../gnome-settings-accessibility-keyboard.c              | 16 ++++++++--------
 2 files changed, 14 insertions(+), 8 deletions(-)

commit c31aec6e239a49ee441c20b84a1faf96eea18c75
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Feb 24 14:56:38 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 57 ++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 36 insertions(+), 25 deletions(-)

commit 02add411bf981f34906218050f1a781149f90b62
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Tue Feb 24 12:55:25 2004 +0000

    updated hindi translation

 po/ChangeLog |   4 +
 po/hi.po     | 464 ++++++++++++++---------------------------------------------
 2 files changed, 113 insertions(+), 355 deletions(-)

commit d4f23e6718a6e40a758d13c80612e56e77fd533f
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Mon Feb 23 20:52:04 2004 +0000

    Updated Italian translation.

 po/ChangeLog |   5 +
 po/it.po     | 696 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 316 insertions(+), 385 deletions(-)

commit dd5427992da33315726370eda2a98a06a11b7dfb
Author: Ole Laursen <olau@src.gnome.org>
Date:   Mon Feb 23 20:02:43 2004 +0000

    Recommitting since something went wrong under last commit

 po/da.po | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit b930003c23fbd135999799e00d5f787c8b7d8f84
Author: Ole Laursen <olau@hardworking.dk>
Date:   Mon Feb 23 19:47:46 2004 +0000

    Updated Danish translation.
    
    2004-02-23  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 318 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 168 insertions(+), 154 deletions(-)

commit 121d42eaedd04ba713ef85347842c0aa013275db
Author: Hasbullah Bin Pit <sebol@my-penguin.org>
Date:   Mon Feb 23 04:21:37 2004 +0000

    Updated Malay translation.
    
    2004-02-22  Hasbullah Bin Pit <sebol@my-penguin.org>
    
            * ms.po: Updated Malay translation.

 po/ChangeLog |   4 +
 po/ms.po     | 471 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 196 insertions(+), 279 deletions(-)

commit 39c56d29d0a48f7b9e657e6cad37ad88a06afa9d
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sun Feb 22 18:37:23 2004 +0000

    Updated Azerbaijani translation.
    
    2004-02-22  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Updated Azerbaijani translation.

 po/ChangeLog |   4 +
 po/az.po     | 251 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 134 insertions(+), 121 deletions(-)

commit 74676dcbd3b8ebdf952084713a569dc3d0c86300
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sun Feb 22 13:00:02 2004 +0000

    Updated the Greek translation

 po/el.po | 240 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 127 insertions(+), 113 deletions(-)

commit 8d0d2005e6e970d95db5dd5ac6e3d4064bddb9a2
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Feb 21 18:46:11 2004 +0000

    Added "en_CA" to ALL_LINGUAS.
    
    2004-02-21  Christian Rose  <menthos@menthos.com>
    
        * configure.in: Added "en_CA" to ALL_LINGUAS.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/en_CA.po  | 3503 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3513 insertions(+), 1 deletion(-)

commit 688fe0f470c83bb54e5877cb252b432fda99e48b
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 21 17:38:09 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 70cc5422debfbb9c18e2adb493bf09c716666d4b
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 21 17:35:59 2004 +0000

    Updated

 po/sq.po | 153 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 69 insertions(+), 84 deletions(-)

commit 5dc3dc088d1676343c60e1f1964ea5b59f79cd7b
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Feb 21 16:02:15 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 214 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 117 insertions(+), 101 deletions(-)

commit f51c9a8b87c8c798e3755bd7edae9c2a3b4a926d
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Fri Feb 20 21:43:45 2004 +0000

    Updated Mongolian translation.

 po/ChangeLog |   4 +
 po/mn.po     | 867 +++++++++++++++++++++--------------------------------------
 2 files changed, 310 insertions(+), 561 deletions(-)

commit b50f63f3a8967ab8219c34398f90ef35010c2d62
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Fri Feb 20 16:19:47 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit d1af2ffe6de50d8abbf25a21a7b18a02eeee659b
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Fri Feb 20 16:18:23 2004 +0000

    Updated

 po/sq.po | 86 ++++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 54 insertions(+), 32 deletions(-)

commit 09bf6c3d5a7efdac493ea5111e1e87cade86b18a
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Feb 20 13:57:36 2004 +0000

    Update Czech translation

 po/ChangeLog |   4 +++
 po/cs.po     | 100 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 58 insertions(+), 46 deletions(-)

commit 90b69c32ca55a99329cbb748ec89cdc3e4bba71f
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Fri Feb 20 02:34:11 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      | 209 ++++++++++++++++++++++++++++++----------------------------
 po/sr@Latn.po | 209 ++++++++++++++++++++++++++++++----------------------------
 3 files changed, 224 insertions(+), 198 deletions(-)

commit 4274019c685d16806373cda93e554b45b1947b17
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 19 18:57:29 2004 +0000

    Updated Norwegian translation.
    
    2004-02-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 50 +++++++++++++++++++++++++++-----------------------
 2 files changed, 31 insertions(+), 23 deletions(-)

commit e52d5d4f65e8094324017d47e4df56395dde322f
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Feb 19 18:09:25 2004 +0000

    Updated Swedish translation.
    
    2004-02-19  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 157 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 86 insertions(+), 75 deletions(-)

commit 2ba0b2f025b90cb983a84f5bb2b3b1f36701a44d
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Thu Feb 19 17:27:54 2004 +0000

    Updated Polish translation.
    
    2004-02-19  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 53 +++++++++++++++++++++++++++--------------------------
 2 files changed, 31 insertions(+), 26 deletions(-)

commit b1fabce5c3cf9397f4c3f0dfcf8427189aed2777
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Feb 19 17:07:01 2004 +0000

    Back out the file sel size kludges, federico has already put something similar
    into the widget directly.
    
    2004-02-07  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * capplets/display/main.c: (create_dialog): Fix alignment of Options
        category. (#133715).

 ChangeLog                                          |  5 +++
 NEWS                                               | 45 ++++++++++++++++++++++
 .../keyboard/accessibility-keyboard.c              | 15 +-------
 capplets/common/gconf-property-editor.c            | 10 -----
 capplets/display/main.c                            | 14 +++++--
 5 files changed, 61 insertions(+), 28 deletions(-)

commit f5aba66db242d4427757f25190ec1d2e9bf2e964
Author: Kaushal Kumar <kaushal.kumar@wipro.com>
Date:   Thu Feb 19 06:52:25 2004 +0000

    Added warning dialog to prompt the user before an entry is deleted
    
    2004-02-19  Kaushal Kumar  <kaushal.kumar@wipro.com>
    
            * file-types-capplet.c (remove_cb): Added warning dialog to prompt
            the user before an entry is deleted permanently. (Release team's
            approval taken regarding the string addition).
            Fix bug #109091.

 capplets/file-types/ChangeLog            |  7 +++++++
 capplets/file-types/file-types-capplet.c | 36 ++++++++++++++++++++++----------
 2 files changed, 32 insertions(+), 11 deletions(-)

commit 47311961e94f0beff4f356c12bacc68c60977e27
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Feb 19 05:44:12 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=128164 don't use get_real_model.
    
    2004-02-17  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=128164
        * gnome-keybinding-properties.c (accel_edited_callback) : don't use
          get_real_model.  The selection is based on the sorted model.
        (accel_cleared_callback) : ditto, and fix a leak while I'm in here.
    
    
    2004-02-17  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=133214
        * acinclude.m4 : quote the AC_DEFUN as per patch from
          alexander.winston@comcast.net
    
        http://bugzilla.gnome.org/show_bug.cgi?id=124064
        * configure.in : add a test for ngettext.  Used the same test as
          gnome-vfs for consitency.

 ChangeLog                                          | 10 ++++++++++
 acinclude.m4                                       |  2 +-
 capplets/keybindings/ChangeLog                     |  7 +++++++
 capplets/keybindings/gnome-keybinding-properties.c | 21 +++++++--------------
 configure.in                                       |  5 +++++
 5 files changed, 30 insertions(+), 15 deletions(-)

commit da6aa543a4422368c0362e3f6d74020d841073a7
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Feb 18 22:45:46 2004 +0000

    Updated spansih translation.
    
    2004-02-18  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated spansih translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 48 +++++++++++++++++++++++-------------------------
 2 files changed, 27 insertions(+), 25 deletions(-)

commit d55571cb389ca98e13748c5838291d6ac1fc1035
Author: Ales Nyakhaychyk <alesnk@src.gnome.org>
Date:   Wed Feb 18 18:30:27 2004 +0000

    Updated Belarusian translation.

 po/ChangeLog |   4 +
 po/be.po     | 557 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 270 insertions(+), 291 deletions(-)

commit 55e1b51ffc506bc5fe95277ab19f17aae6d600d8
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Wed Feb 18 16:16:02 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 181 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 94 insertions(+), 91 deletions(-)

commit 85845c723336d5d33ddffa712b812e7e2d43ec62
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Wed Feb 18 11:12:00 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit c1670d379c117530cda3680c99e78b1304ab32ae
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Wed Feb 18 11:09:18 2004 +0000

    Updated

 po/sq.po | 189 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 96 insertions(+), 93 deletions(-)

commit aa87a4eb281fe008ac4c4be1bc15f0ffe867a965
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 17 23:59:33 2004 +0000

    Updated Norwegian translation.
    
    2004-02-18  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 163 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 90 insertions(+), 77 deletions(-)

commit 1943e27685edb9440e1065c4c24c26008ea9408c
Author: Rodney Dawes <dobey@ximian.com>
Date:   Tue Feb 17 19:30:14 2004 +0000

    Use untranslated strings for the color picker dialog titles (glade bug set
    
    2004-02-17  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-background-properties.glade: Use untranslated strings for
        the color picker dialog titles (glade bug set them to the translated
        versions of the strings)
    
        Fixes #134171

 capplets/background/ChangeLog                         | 8 ++++++++
 capplets/background/gnome-background-properties.glade | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 0aa20d793ea9623abfc445ee2164d9c5e1fb7aca
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Feb 17 15:58:18 2004 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 158 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 82 insertions(+), 80 deletions(-)

commit 56d0f9065fc565a1279d8f38de97f157fb6d9735
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Tue Feb 17 13:01:20 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-02-17  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +
 po/pl.po     | 301 +++++++++++++++--------------------------------------------
 2 files changed, 77 insertions(+), 228 deletions(-)

commit f253d7e3c76e103a439cba5e053b4b63c784fd83
Author: Richard Hult <richard@imendio.com>
Date:   Tue Feb 17 10:04:37 2004 +0000

    Don't make the postpone button focused right away, makes the fix for
    
    2004-02-17  Richard Hult  <richard@imendio.com>
    
        * drw-break-window.c (drw_break_window_init): Don't make the
        postpone button focused right away, makes the fix for #126179 a
        lot better.
    
        * drwright.c: Don't create break window if we already have one,
        fixes bug #134455. Don't make about box modal, fixes bug #134594.
    
        * main.c (main): Remove unused variable.

 typing-break/ChangeLog          | 11 +++++++++++
 typing-break/drw-break-window.c | 38 +++++++++++++++++++++++++++++++++++---
 typing-break/drwright.c         | 25 ++++++++++++++++++++++---
 3 files changed, 68 insertions(+), 6 deletions(-)

commit 48092e01aa11488a7ab5c076a3e7405939d8ed9d
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Feb 17 09:59:09 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 12b2fd66dc78029532b49fb339f440d4a9b8016d
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Feb 17 09:57:42 2004 +0000

    Updated

 po/sq.po | 53 +++++++++++++++++++++++------------------------------
 1 file changed, 23 insertions(+), 30 deletions(-)

commit 70315f9850ff28fc0299debc41bc368bf82b94c1
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Tue Feb 17 01:19:23 2004 +0000

    Updated Portuguese translation.
    
    2004-02-17  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 381 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 191 insertions(+), 194 deletions(-)

commit 335c128c89fab00ba3ef93cbf6cd12a62a25a284
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Tue Feb 17 01:12:09 2004 +0000

    Updated Spanish translation.
    
    2004-02-17  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 219 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 105 insertions(+), 118 deletions(-)

commit b75c382462f285cab4c49c7477e8d06a203454c0
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Feb 17 00:03:59 2004 +0000

    Updated Swedish translation.
    
    2004-02-16  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 132 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 73 insertions(+), 63 deletions(-)

commit 91af082eaffef3f307478e68dd76295fd01a6e3e
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Feb 16 17:55:09 2004 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=134446 removed space
    
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=134446
        * font-properties.glade : removed space
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c
        (ax_slowkeys_warning_dialog_post) : fix cut-n-paste-o in the message

 capplets/font/ChangeLog                                  |  5 +++++
 capplets/font/font-properties.glade                      |  2 +-
 gnome-settings-daemon/ChangeLog                          |  5 +++++
 .../gnome-settings-accessibility-keyboard.c              |  4 ++--
 po/am.po                                                 |  4 ++--
 po/ar.po                                                 |  4 ++--
 po/az.po                                                 |  6 +++---
 po/be.po                                                 |  6 +++---
 po/bg.po                                                 |  6 +++---
 po/bn.po                                                 |  4 ++--
 po/ca.po                                                 |  4 ++--
 po/cs.po                                                 |  4 ++--
 po/cy.po                                                 |  4 ++--
 po/da.po                                                 |  6 +++---
 po/de.po                                                 |  4 ++--
 po/el.po                                                 |  4 ++--
 po/en_GB.po                                              |  4 ++--
 po/es.po                                                 |  4 ++--
 po/et.po                                                 |  4 ++--
 po/fa.po                                                 |  4 ++--
 po/fi.po                                                 |  4 ++--
 po/fr.po                                                 |  4 ++--
 po/ga.po                                                 |  4 ++--
 po/gl.po                                                 |  6 +++---
 po/he.po                                                 |  6 +++---
 po/hi.po                                                 | 12 ++++++------
 po/hr.po                                                 |  8 ++++----
 po/hu.po                                                 |  6 +++---
 po/id.po                                                 |  4 ++--
 po/is.po                                                 |  4 ++--
 po/it.po                                                 |  4 ++--
 po/ja.po                                                 |  4 ++--
 po/ko.po                                                 |  4 ++--
 po/lt.po                                                 |  4 ++--
 po/lv.po                                                 |  6 +++---
 po/mk.po                                                 |  6 +++---
 po/ml.po                                                 |  4 ++--
 po/mn.po                                                 |  4 ++--
 po/ms.po                                                 |  6 +++---
 po/nl.po                                                 |  4 ++--
 po/nn.po                                                 |  4 ++--
 po/no.po                                                 |  4 ++--
 po/pl.po                                                 |  6 +++---
 po/pt.po                                                 |  8 ++++----
 po/pt_BR.po                                              |  4 ++--
 po/ro.po                                                 |  4 ++--
 po/ru.po                                                 |  4 ++--
 po/sk.po                                                 |  4 ++--
 po/sl.po                                                 |  6 +++---
 po/sq.po                                                 |  6 +++---
 po/sr.po                                                 |  4 ++--
 po/sr@Latn.po                                            |  4 ++--
 po/sv.po                                                 | 10 ++--------
 po/ta.po                                                 |  6 +++---
 po/th.po                                                 | 16 ++++++++--------
 po/tr.po                                                 |  6 +++---
 po/uk.po                                                 |  6 +++---
 po/vi.po                                                 |  4 ++--
 po/wa.po                                                 |  4 ++--
 po/zh_CN.po                                              |  4 ++--
 po/zh_TW.po                                              |  4 ++--
 61 files changed, 157 insertions(+), 153 deletions(-)

commit 92bc252e78b20ee5cef1db37cb143488ca23df56
Author: Muktha <muktha.narayan@wipro.com>
Date:   Mon Feb 16 17:32:53 2004 +0000

    Do not popup the logout dialog when the close button (X) of window manager
    
    
    
    2003-11-27  Muktha <muktha.narayan@wipro.com>
    
        * main.c: Do not popup the logout dialog when the close button (X) of
        window manager is clicked. Fixes bug #124032.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c (cb_load_CDE_file) : Add a kludge to set
          the vertical size based on the monitor size until the filesel can do
          a better job of doing it itself.
    
    2003-12-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
    
        * accessibility-keyboard.c: (load_CDE_file),
        (fchooser_handle_response), (cb_load_CDE_file): replace
        GtkFileSelection with GtkFileChooser.
    
    2003-12-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
    
        * background-properties-capplet.c: remove unused
        "preview_file_selection.h" include.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * gconf-property-editor.c (peditor_image_clicked_cb) : Use the monitor
          size kludge for the vertical size of the new file selector.
    
    2003-12-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
    
        * gconf-property-editor.c: (peditor_image_set_filename),
        (peditor_image_chooser_response_cb),
        (peditor_image_chooser_update_preview_cb),
        (peditor_image_clicked_cb): replace
        PreviewFileSelection (GtkFileSelection) with GtkFileChooser, use new
        gdk_pixbuf_new_from_file_at_size method to load a scaled image.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c : include
          libgnome/gnome-help.h to avoid potential crash on 64 bit arches.
        (ax_response_callback) : actually display the error message on
          failure.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=134389
        * Makefile.am : Patch from jmmv@menta.net (Julio M. Merino Vidal)
          to honour the standard schema install flags.
          I've extended the patch to support builddir != srcdir too

 capplets/common/ChangeLog                          |  14 +
 capplets/common/gconf-property-editor.c            | 119 +++++---
 gnome-settings-daemon/ChangeLog                    |   7 +
 .../gnome-settings-accessibility-keyboard.c        |   3 +-
 libbackground/ChangeLog                            |   5 +
 libbackground/Makefile.am                          |   3 +-
 libbackground/preview-file-selection.c             | 302 ---------------------
 libbackground/preview-file-selection.h             |  63 -----
 po/POTFILES.in                                     |   1 -
 typing-break/main.c                                |   1 -
 vfs-methods/fontilus/ChangeLog                     |   7 +
 vfs-methods/fontilus/Makefile.am                   |   8 +-
 vfs-methods/themus/ChangeLog                       |   7 +
 vfs-methods/themus/Makefile.am                     |   8 +-
 14 files changed, 140 insertions(+), 408 deletions(-)

commit cdb5349d9a5b3793b47d16c11b72eb8132ed6542
Author: Muktha <muktha.narayan@wipro.com>
Date:   Mon Feb 16 17:32:32 2004 +0000

    Do not popup the logout dialog when the close button (X) of window manager
    
    
    2003-11-27  Muktha <muktha.narayan@wipro.com>
    
        * main.c: Do not popup the logout dialog when the close button (X) of
        window manager is clicked. Fixes bug #124032.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c (cb_load_CDE_file) : Add a kludge to set
          the vertical size based on the monitor size until the filesel can do
          a better job of doing it itself.
    
    2003-12-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
    
        * accessibility-keyboard.c: (load_CDE_file),
        (fchooser_handle_response), (cb_load_CDE_file): replace
        GtkFileSelection with GtkFileChooser.
    
    2003-12-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
    
        * background-properties-capplet.c: remove unused
        "preview_file_selection.h" include.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * gconf-property-editor.c (peditor_image_clicked_cb) : Use the monitor
          size kludge for the vertical size of the new file selector.
    
    2003-12-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
    
        * gconf-property-editor.c: (peditor_image_set_filename),
        (peditor_image_chooser_response_cb),
        (peditor_image_chooser_update_preview_cb),
        (peditor_image_clicked_cb): replace
        PreviewFileSelection (GtkFileSelection) with GtkFileChooser, use new
        gdk_pixbuf_new_from_file_at_size method to load a scaled image.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c : include
          libgnome/gnome-help.h to avoid potential crash on 64 bit arches.
        (ax_response_callback) : actually display the error message on
          failure.
    
    2004-02-16  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=134389
        * Makefile.am : Patch from jmmv@menta.net (Julio M. Merino Vidal)
          to honour the standard schema install flags.
          I've extended the patch to support builddir != srcdir too

 capplets/accessibility/at-properties/ChangeLog     |   5 +
 capplets/accessibility/at-properties/main.c        |   2 +-
 capplets/accessibility/keyboard/ChangeLog          |  12 ++
 .../keyboard/accessibility-keyboard.c              | 124 ++++++++-------------
 capplets/background/ChangeLog                      |   5 +
 .../background/background-properties-capplet.c     |   1 -
 6 files changed, 70 insertions(+), 79 deletions(-)

commit f2c66eb0de67eca52777ac20f8b3248e9fd2e214
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Feb 16 10:28:42 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-02-16  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 16 ++++++----------
 2 files changed, 10 insertions(+), 10 deletions(-)

commit ac65b43f4025f62be050912699b0299f46799f7a
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Mon Feb 16 10:23:24 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit f1d04b41aaa0bab2ed7cbe799d5c4c32d7609482
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Mon Feb 16 10:21:22 2004 +0000

    Updated

 po/sq.po | 77 +++++++++++++++++++++++-----------------------------------------
 1 file changed, 28 insertions(+), 49 deletions(-)

commit c22f5d690242bf4c798fc8515e658fb5b26c3da6
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Mon Feb 16 09:17:54 2004 +0000

    Remove unnecessary setting of ATK relations. The module gail will ensure
    
    2004-02-16  Padraig O'Briain <padraig.obriain@sun.com>
    
        * file-types-properties.glade: Remove unnecessary setting of ATK
        relations. The module gail will ensure that the labels are set
        correctly. Set mnemonic widget to be a GnomeFileEntry instead of
        a GtkEntry in the combo box. Fixes bug #134131.

 capplets/file-types/ChangeLog                   |  7 +++++++
 capplets/file-types/file-types-properties.glade | 22 ++--------------------
 2 files changed, 9 insertions(+), 20 deletions(-)

commit 97f0e35ced7f45a8fa0aafaa9460ff48eef1ade8
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Mon Feb 16 08:19:17 2004 +0000

    Update Czech translation

 po/ChangeLog | 4 ++++
 po/cs.po     | 9 ++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 8f243a9569a19672700e95905abcc3697bb5f823
Author: Anders Carlsson <andersca@gnome.org>
Date:   Sun Feb 15 18:32:53 2004 +0000

    Link with ALSA_LIBS.
    
    2004-02-15  Anders Carlsson  <andersca@gnome.org>
    
        * actions/Makefile.am: Link with ALSA_LIBS.

 gnome-settings-daemon/ChangeLog           | 4 ++++
 gnome-settings-daemon/actions/Makefile.am | 3 +++
 2 files changed, 7 insertions(+)

commit 0c0f9b6b0ca82a8312f172dc58eb7a79394c7ff3
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Feb 15 17:42:59 2004 +0000

    Removed non-existant files. Updated Swedish translation.
    
    2004-02-15  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.skip: Removed non-existant files.
        * sv.po: Updated Swedish translation.

 po/ChangeLog     |   5 +
 po/POTFILES.skip |   2 -
 po/sv.po         | 388 +++++++++++++++++++++++++++++++------------------------
 3 files changed, 222 insertions(+), 173 deletions(-)

commit 3658b314389bdb8cc28bda3d401dbb30cc3e675a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 15 13:24:07 2004 +0000

    Updated Norwegian translation.
    
    2004-02-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog | 4 ++++
 po/no.po     | 7 +++----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit d030d72db18254e0584d1721e3b1cdf0b45975e4
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sun Feb 15 13:18:11 2004 +0000

    Translation updated.
    
    2004-02-15  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |   4 +
 po/az.po     | 677 ++++++++++++++---------------------------------------------
 2 files changed, 159 insertions(+), 522 deletions(-)

commit beabfdc80b1d526b72becc06eca520b4fa27e484
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sun Feb 15 08:51:15 2004 +0000

    Updated the Greek translation

 po/ChangeLog |   4 ++
 po/el.po     | 146 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 69 insertions(+), 81 deletions(-)

commit 1eddd555fb0c21c91fa806f1eebc8b704e6a7620
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Sun Feb 15 00:50:27 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 15 +++++++--------
 po/sr@Latn.po | 56 ++++++++++++++++++++++++++------------------------------
 3 files changed, 37 insertions(+), 38 deletions(-)

commit daa14f62b8e90f2825bf6da2548f5d4cf8d7da8f
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Sat Feb 14 16:05:46 2004 +0000

    2004-02-14 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 ++
 po/ja.po     | 209 ++++++++++-------------------------------------------------
 2 files changed, 39 insertions(+), 174 deletions(-)

commit be2838e061ac6c7ef3149841fabaefab16bb1b36
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Feb 13 16:03:59 2004 +0000

    post release bump
    
    
    2004-02-13  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2688109c0b90a32044b76965c983c02ea1cb04b8
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Feb 13 15:56:12 2004 +0000

    Release 2.5.3
    
    
    2004-02-13  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.3

 ChangeLog                                      |    8 +
 archiver/ChangeLog                             |    4 +
 archiver/tests/ChangeLog                       |    4 +
 capplets/accessibility/at-properties/ChangeLog |    4 +
 capplets/accessibility/keyboard/ChangeLog      |    4 +
 capplets/background/ChangeLog                  |    4 +
 capplets/common/ChangeLog                      |    4 +
 capplets/default-applications/ChangeLog        |    4 +
 capplets/desktop-links/ChangeLog               |    4 +
 capplets/file-types/ChangeLog                  |    4 +
 capplets/font/ChangeLog                        |    4 +
 capplets/keybindings/ChangeLog                 |    4 +
 capplets/keyboard/ChangeLog                    |    4 +
 capplets/mime-type/ChangeLog                   |    4 +
 capplets/mouse/ChangeLog                       |    4 +
 capplets/network/ChangeLog                     |    4 +
 capplets/rollback/ChangeLog                    |    4 +
 capplets/sound/ChangeLog                       |    4 +
 capplets/theme-switcher/ChangeLog              |    4 +
 capplets/ui-properties/ChangeLog               |    4 +
 capplets/url-properties/ChangeLog              |    4 +
 capplets/windows/ChangeLog                     |    4 +
 capplets/wm-properties/ChangeLog               |    4 +
 control-center/ChangeLog                       |    4 +
 gnome-settings-daemon/ChangeLog                |    4 +
 help/ChangeLog                                 |    4 +
 libbackground/ChangeLog                        |    4 +
 libwindow-settings/ChangeLog                   |    4 +
 po/ChangeLog                                   |    4 +
 po/am.po                                       |  452 ++++-----
 po/ar.po                                       |  483 +++++-----
 po/az.po                                       |  525 +++++-----
 po/be.po                                       |  479 +++++----
 po/bg.po                                       |  484 +++++-----
 po/bn.po                                       |  474 ++++-----
 po/ca.po                                       |  484 +++++-----
 po/cs.po                                       |   62 +-
 po/cy.po                                       |  469 ++++-----
 po/da.po                                       |  392 ++++----
 po/de.po                                       |   62 +-
 po/el.po                                       |  646 +++++++++----
 po/en_GB.po                                    |  404 ++++----
 po/es.po                                       |  147 +--
 po/et.po                                       |  468 ++++-----
 po/fa.po                                       |  467 ++++-----
 po/fi.po                                       |   62 +-
 po/fr.po                                       |  574 +++++------
 po/ga.po                                       |  521 +++++-----
 po/gl.po                                       |  483 +++++-----
 po/he.po                                       |  474 ++++-----
 po/hi.po                                       |  483 +++++-----
 po/hr.po                                       |  728 +++++++-------
 po/hu.po                                       |  469 ++++-----
 po/id.po                                       |  392 +++-----
 po/is.po                                       |  471 ++++-----
 po/it.po                                       |  469 ++++-----
 po/ja.po                                       |  564 ++++++-----
 po/ko.po                                       |  118 ++-
 po/lt.po                                       |  495 +++++-----
 po/lv.po                                       |  473 ++++-----
 po/mk.po                                       |  474 ++++-----
 po/ml.po                                       |  462 ++++-----
 po/mn.po                                       |  474 ++++-----
 po/ms.po                                       |  490 +++++-----
 po/nl.po                                       |  484 +++++-----
 po/nn.po                                       |  518 +++++-----
 po/no.po                                       |   62 +-
 po/pl.po                                       |  103 +-
 po/pt.po                                       |  490 +++++-----
 po/pt_BR.po                                    |  490 +++++-----
 po/ro.po                                       |  469 ++++-----
 po/ru.po                                       |  474 ++++-----
 po/sk.po                                       |  469 ++++-----
 po/sl.po                                       | 1229 ++++++++++++++++--------
 po/sq.po                                       |  126 ++-
 po/sr.po                                       |   65 +-
 po/sr@Latn.po                                  |  106 +-
 po/sv.po                                       |  487 +++++-----
 po/ta.po                                       |  473 ++++-----
 po/th.po                                       |  466 ++++-----
 po/tr.po                                       |  242 +++--
 po/uk.po                                       |  236 +++--
 po/vi.po                                       |  483 +++++-----
 po/wa.po                                       |  467 ++++-----
 po/zh_CN.po                                    |  469 ++++-----
 po/zh_TW.po                                    |  479 +++++----
 schemas/Makefile.am                            |    2 +-
 typing-break/ChangeLog                         |    4 +
 vfs-methods/fontilus/ChangeLog                 |    4 +
 vfs-methods/themus/ChangeLog                   |    4 +
 90 files changed, 11832 insertions(+), 12363 deletions(-)

commit ed7b26ff4676245e43d8740e0178e977cda82bf3
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Feb 13 14:29:30 2004 +0000

    Unique-ify the lists so that we can handle multiple excutable names for
    
    
    2004-02-13  Jody Goldberg <jody@gnome.org>
    
        * gnome-default-applications-properties.c : Unique-ify the lists so
          that we can handle multiple excutable names for the same browser
          when the list jumps to gconf.  Remove the vile hack specifict to
          evolution.
    
        * gnome-default-applications-properties-structs.c (};) : remove the
          nremote flag and add a few new browsers.

 capplets/default-applications/ChangeLog            |  10 ++
 ...gnome-default-applications-properties-structs.c |  94 +++++++----------
 .../gnome-default-applications-properties.c        | 113 ++++++++++-----------
 3 files changed, 102 insertions(+), 115 deletions(-)

commit ff003126bb01e6cda57b233ceef7a8297177cea8
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Feb 13 14:29:11 2004 +0000

    rework to match nautilus and use icon themes somewhat. There is some
    
    
    2004-02-10  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c : rework to match nautilus and use icon themes
          somewhat.  There is some serious cruft left in here.
    
    2004-02-04  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_edit_dialog_class_init) : do not call these
          construct only properties so that the info can change later.

 capplets/file-types/ChangeLog          |  10 ++
 capplets/file-types/mime-edit-dialog.c |   4 +-
 capplets/file-types/mime-type-info.c   | 188 +++++++++++++++++----------------
 3 files changed, 109 insertions(+), 93 deletions(-)

commit a9c54dd7e92de1a7a086b4c27c9ddc5ed8540c05
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Fri Feb 13 14:12:42 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 401 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 200 insertions(+), 205 deletions(-)

commit 567a93a01869dc6995630c0e110985c997246e69
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Feb 12 17:41:25 2004 +0000

    Nje msgid ne shqip?

 po/sq.po | 69 +++++++++++++++++++++++-----------------------------------------
 1 file changed, 25 insertions(+), 44 deletions(-)

commit b93a99b2055e415ec5bf49b5e55b774445c7b5e8
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Thu Feb 12 15:10:23 2004 +0000

    Updated Spanish translation.
    
    2004-02-12  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 48 +++++++++++++++++++++++++++++++-----------------
 2 files changed, 35 insertions(+), 17 deletions(-)

commit d9885e685f2b055509becf2a7b467613efa7e1ef
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Thu Feb 12 14:23:03 2004 +0000

    update help links to point to user-guide.xml
    
    2004-02-12  Mark McLoughlin  <mark@skynet.ie>
    
            * capplets/display/main.c: (cb_dialog_response):
            * capplets/localization/gnome-localization-properties.c:
            (dialog_response): update help links to point to user-guide.xml

 ChangeLog                                                         | 6 ++++++
 capplets/accessibility/keyboard/ChangeLog                         | 5 +++++
 .../keyboard/gnome-accessibility-keyboard-properties.c            | 2 +-
 capplets/background/ChangeLog                                     | 6 ++++++
 capplets/background/background-properties-capplet.c               | 2 +-
 capplets/background/gnome-wp-capplet.c                            | 2 +-
 capplets/default-applications/ChangeLog                           | 5 +++++
 .../default-applications/gnome-default-applications-properties.c  | 2 +-
 capplets/display/main.c                                           | 2 +-
 capplets/file-types/ChangeLog                                     | 5 +++++
 capplets/file-types/file-types-capplet.c                          | 2 +-
 capplets/font/ChangeLog                                           | 5 +++++
 capplets/font/main.c                                              | 4 ++--
 capplets/keybindings/ChangeLog                                    | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c                | 2 +-
 capplets/keyboard/ChangeLog                                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c                     | 2 +-
 capplets/localization/gnome-localization-properties.c             | 2 +-
 capplets/mouse/ChangeLog                                          | 5 +++++
 capplets/mouse/gnome-mouse-properties.c                           | 2 +-
 capplets/network/ChangeLog                                        | 6 ++++++
 capplets/network/gnome-network-preferences.c                      | 4 ++--
 capplets/sound/ChangeLog                                          | 5 +++++
 capplets/sound/sound-properties-capplet.c                         | 2 +-
 capplets/theme-switcher/ChangeLog                                 | 8 ++++++++
 capplets/theme-switcher/gnome-theme-details.c                     | 2 +-
 capplets/theme-switcher/gnome-theme-installer.c                   | 2 +-
 capplets/theme-switcher/gnome-theme-manager.c                     | 2 +-
 capplets/theme-switcher/theme-switcher.c                          | 4 ++--
 capplets/ui-properties/ChangeLog                                  | 5 +++++
 capplets/ui-properties/gnome-ui-properties.c                      | 2 +-
 control-center/ChangeLog                                          | 5 +++++
 control-center/capplet-dir-view.c                                 | 2 +-
 gnome-settings-daemon/ChangeLog                                   | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c     | 2 +-
 35 files changed, 104 insertions(+), 23 deletions(-)

commit c87b47e4a4be54f5ea97a4953bcdeb2b256f8219
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Thu Feb 12 01:26:28 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 +
 po/sr.po      | 394 ++++++++++++++++++++++++++++------------------------------
 po/sr@Latn.po | 394 ++++++++++++++++++++++++++++------------------------------
 3 files changed, 382 insertions(+), 410 deletions(-)

commit 2655c484f60f9cfa42bd0ab12d45208b0ea78f4f
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Feb 11 06:11:19 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 40 ++++++++++++++++++++++++++++------------
 2 files changed, 32 insertions(+), 12 deletions(-)

commit 83b3ab41fb366fc2daee1c93029ac51a4bde46f6
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Tue Feb 10 23:13:01 2004 +0000

    Updated Finnish translation.
    
    2004-02-10  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |  4 +++
 po/fi.po     | 88 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 55 insertions(+), 37 deletions(-)

commit 4b5bc03c41484b9aa1dda1fa00a5c0f945aa1f4a
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Feb 10 21:38:13 2004 +0000

    Updated Albanian transaltion
    
    * sq.po: Updated Albanian transaltion

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 6a5efdde5c89e4f4d688de4ef8cfdd6ab898ec3e
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Feb 10 21:36:27 2004 +0000

    Updated

 po/sq.po | 66 ++++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 44 insertions(+), 22 deletions(-)

commit a1d719919eae5848d5cb6b2f77feb0cf8cd669c7
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Tue Feb 10 20:53:59 2004 +0000

    Update again

 po/no.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b75f11c631f5bcc9c9250a820d823b29832d8e74
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Feb 10 19:29:29 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 33f2620bc08eb4298b32b271bfbbee9c8fafea04
Author: James Henstridge <james@daa.com.au>
Date:   Tue Feb 10 13:17:52 2004 +0000

    clear the SYMBOLIC_LINK flag if present on the file_info struct. Since
    
    2004-02-10  James Henstridge  <james@daa.com.au>
    
        * font-method.c (fill_file_info): clear the SYMBOLIC_LINK flag if
        present on the file_info struct.  Since gnome-vfs doesn't support
        cross-vfs symlinks, the symlink would no longer resolve when
        returned by the fonts:/// method.  Fixes bug #133811.

 vfs-methods/fontilus/ChangeLog     | 7 +++++++
 vfs-methods/fontilus/font-method.c | 6 ++++++
 2 files changed, 13 insertions(+)

commit 3aa5e4ceb4d7dc132d65a496806e6e4e546bc065
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Feb 10 11:40:56 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit e0d894281e3a6f6fed214711f51821e0aa51d28f
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Feb 10 11:38:57 2004 +0000

    Updated

 po/sq.po | 67 +++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 45 insertions(+), 22 deletions(-)

commit 6641770f796cf9557ff29b25c7986f226686d0bd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 10 09:26:45 2004 +0000

    Fix some typos.
    
    2004-02-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * mime-edit-dialog.c: (mime_edit_dialog_get_app), (validate_data):
        Fix some typos.

 capplets/file-types/ChangeLog          | 5 +++++
 capplets/file-types/mime-edit-dialog.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit bde175b0cb4da5d494bd54242711213ef2ba5e32
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 10 09:24:10 2004 +0000

    Add gnome-background-properties.glade Updated Norwegian translation.
    
    2004-02-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Add gnome-background-properties.glade
        * no.po: Updated Norwegian translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   2 +
 po/no.po       | 389 ++++++++++++++++++++++++++++-----------------------------
 3 files changed, 196 insertions(+), 200 deletions(-)

commit 3c717bc628484472ee28c00b0a0289ea4325ae35
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Feb 9 12:19:49 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-02-09  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 38 +++++++++++++++++++-------------------
 2 files changed, 23 insertions(+), 19 deletions(-)

commit 3a8d5d9ad45d2198e9a09622c36d1f44cec36420
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sun Feb 8 23:03:18 2004 +0000

    Updated Greek translation (minor fixes)

 po/ChangeLog |   4 +
 po/el.po     | 853 +++++++++++++++--------------------------------------------
 2 files changed, 219 insertions(+), 638 deletions(-)

commit b53de28116e0c6cc69c8d9f28fa2b01e20b8e2d3
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Feb 8 22:10:13 2004 +0000

    Updated Spanish translation.
    
    2004-02-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 471 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 212 insertions(+), 263 deletions(-)

commit 4b1106c8548f6537d93f9bff6beaf1431c089090
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 8 09:16:22 2004 +0000

    Remove extra full stop. Closes bug #132563.
    
    2004-02-08  Kjartan Maraas  <kmaraas@gnome.org>
    
        * mime-edit-dialog.c: (validate_data): Remove extra
        full stop. Closes bug #132563.

 capplets/file-types/ChangeLog          | 5 +++++
 capplets/file-types/mime-edit-dialog.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit fd4a762d01bdc1eb9417f81b447ce4e1ae89fe9c
Author: Jacob Leach <jleach@src.gnome.org>
Date:   Sun Feb 8 08:49:33 2004 +0000

    Replace deprecated calls to g_basename and g_dirname with
    g_path_get_(basename/dirname). From a patch by Kjartan Maraas,
    a.k.a. THE MAN, bug #133174.

 capplets/file-types/ChangeLog               | 6 ++++++
 capplets/file-types/file-types-icon-entry.c | 9 ++++++---
 capplets/url-properties/ChangeLog           | 5 +++++
 capplets/url-properties/url-properties.c    | 4 +++-
 4 files changed, 20 insertions(+), 4 deletions(-)

commit b6d4dc7a764bd772d5ff0fcb667add9e4302f786
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sat Feb 7 05:39:18 2004 +0000

    fix #106424
    
    Sat Feb  7 00:34:45 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-theme-manager.c (load_meta_themes): fix #106424
    
    Fri Feb  6 20:49:25 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-theme-details.c (gnome_theme_details_init): Patch from
            Frederic Crozat to install themes in the right place.

 capplets/theme-switcher/ChangeLog             |  9 +++++++++
 capplets/theme-switcher/gnome-theme-details.c |  4 ++--
 capplets/theme-switcher/gnome-theme-manager.c | 14 +++++++++++++-
 3 files changed, 24 insertions(+), 3 deletions(-)

commit b3e8b171752cf06e4c5832a089c7c96430cfc814
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Feb 6 17:03:27 2004 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 340 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 158 insertions(+), 186 deletions(-)

commit a9789ef474672aa3d6f917d1e58416f2bc089025
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Feb 6 15:14:13 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 434 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 211 insertions(+), 227 deletions(-)

commit 1629cd70599a6d029e0a5541f0e43822d14a526e
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Fri Feb 6 13:47:56 2004 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/hr.po     | 658 +++++++++++++++++++++++++----------------------------------
 2 files changed, 284 insertions(+), 378 deletions(-)

commit 285427e21f0bc403f37b980b478a2c44cec46a55
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Fri Feb 6 10:53:58 2004 +0000

    64bits fixes.
    
            * capplets/font/main.c: (sample_expose):
            * gnome-settings-daemon/gnome-settings-gtk1theme.c:
            (apply_settings):
            * vfs-methods/themus/theme-method.c:
            64bits fixes.

 ChangeLog                                        | 8 ++++++++
 capplets/font/main.c                             | 2 +-
 gnome-settings-daemon/gnome-settings-gtk1theme.c | 2 +-
 vfs-methods/themus/theme-method.c                | 1 +
 4 files changed, 11 insertions(+), 2 deletions(-)

commit 431b1882f38308a163eed3299997c43dbe7c71a5
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Fri Feb 6 07:03:44 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-02-06  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +
 po/pl.po     | 351 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 169 insertions(+), 186 deletions(-)

commit e762414b3c057116a4815508edb92be1472fa35c
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Thu Feb 5 22:57:19 2004 +0000

    Updated Finnish translation.
    
    2004-02-05  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 706 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 348 insertions(+), 362 deletions(-)

commit 74ab69bcfcbea052a6fbf327392a673811327d21
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Feb 5 11:57:28 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit c13f25ca7d4bfb1ab41cb0b5a58963d3043a7af5
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Feb 5 11:56:06 2004 +0000

    Updated

 po/sq.po | 290 ++++++++++++++-------------------------------------------------
 1 file changed, 61 insertions(+), 229 deletions(-)

commit 035c34ab99ba79cda6be52efe41a548ca7f33bd4
Author: Rodney Dawes <dobey@ximian.com>
Date:   Thu Feb 5 00:31:48 2004 +0000

    Convert the main dialog UI to glade
    
    2004-02-04  Rodney Dawes  <dobey@ximian.com>
    
        * Makefile.am:
        * gnome-background-properties.glade:
        * gnome-wp-capplet.[ch]: Convert the main dialog UI to glade

 capplets/background/ChangeLog                      |   6 +
 capplets/background/Makefile.am                    |   6 +-
 .../background/gnome-background-properties.glade   | 483 +++++++++++++++++++++
 capplets/background/gnome-wp-capplet.c             | 208 ++-------
 capplets/background/gnome-wp-capplet.h             |   1 +
 5 files changed, 538 insertions(+), 166 deletions(-)

commit 28010e25e8e32c6fc097469684ebe3ad68b24cc6
Author: Rodney Dawes <dobey@ximian.com>
Date:   Wed Feb 4 22:04:14 2004 +0000

    Use "Desktop Background" as name and change the Comment line to a verb
    
    2004-02-04  Rodney Dawes  <dobey@ximian.com>
    
        * background.desktop.in: Use "Desktop Background" as name and change
          the Comment line to a verb phrase as per the HIG
        * gnome-wp-capplet.c (gnome_wp_load_stuffs): Fix a little bug so that
          opening the capplet with "No Wallpaper" set, actually works
          (wallpaper_properties_init): "Desktop Background Preferences"

 capplets/background/ChangeLog             |  8 ++++++++
 capplets/background/background.desktop.in |  4 ++--
 capplets/background/gnome-wp-capplet.c    | 25 ++++++++++++++++++++-----
 3 files changed, 30 insertions(+), 7 deletions(-)

commit 5601029af792b264e1b967dcaf2aabcd501b4cd4
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Wed Feb 4 18:06:54 2004 +0000

    CVS_SILENT

 po/tr.po | 1153 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 601 insertions(+), 552 deletions(-)

commit a40674d0c6c07ef70da5f1bee59fa7bc099cd1e2
Author: Maxim Dziumanneko <mvd@mylinux.com.ua>
Date:   Wed Feb 4 12:24:25 2004 +0000

    Updated Ukrainian translation
    
    2004-02-04  Maxim Dziumanneko <mvd@mylinux.com.ua>
    
                * Updated Ukrainian translation

 po/ChangeLog |    4 +
 po/uk.po     | 1380 ++++++++++++++++++++--------------------------------------
 2 files changed, 488 insertions(+), 896 deletions(-)

commit 4b2fc55b018b2462827afe1a1b00ba8d797dabeb
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Wed Feb 4 05:21:28 2004 +0000

    exit if it is a non-compliant wm (eg, anything but metacity)
    
    Wed Feb  4 00:05:11 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-theme-manager.c (load_meta_themes): exit if it is a
            non-compliant wm (eg, anything but metacity)

 capplets/theme-switcher/ChangeLog             |  5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 22 +++++++++++++++-------
 2 files changed, 20 insertions(+), 7 deletions(-)

commit 1355ee215f03da81ed626dd1ccdea5a014fda902
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Wed Feb 4 04:36:27 2004 +0000

    use g_markup_printf_escaped instead of g_strdup_printf, #110564
    
    Tue Feb  3 23:36:25 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-theme-manager.c (load_meta_themes): use
            g_markup_printf_escaped instead of g_strdup_printf, #110564

 capplets/theme-switcher/ChangeLog             |  5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 20 ++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit 091a9a6b360fe044fbca99259a4ce541ad07db96
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Tue Feb 3 20:55:44 2004 +0000

    Updated Irish translation

 po/ChangeLog |  4 ++++
 po/ga.po     | 67 +++++++++++++++++++++---------------------------------------
 2 files changed, 27 insertions(+), 44 deletions(-)

commit 337413eb5f7f82901ec4c2e9d66d7aedf345d992
Author: Carlos Perelló Marín <carlos@gnome.org>
Date:   Tue Feb 3 13:31:28 2004 +0000

    Removed the localization capplet references, it will wait until GNOME 2.7,
    
    2004-02-03  Carlos Perelló Marín <carlos@gnome.org>
    
        * configure.in, capplets/Makefile.am: Removed the localization capplet
        references, it will wait until GNOME 2.7, it's too late for GNOME 2.6.

 ChangeLog            |  5 +++++
 capplets/Makefile.am |  2 +-
 configure.in         | 17 -----------------
 3 files changed, 6 insertions(+), 18 deletions(-)

commit 0723bcdf1cfd09cda10d4a47b5181d086170501c
Author: Carlos Perelló Marín <carlos@gnome.org>
Date:   Tue Feb 3 13:30:29 2004 +0000

    Removed the localization capplet files, until GNOME 2.7
    
    2004-02-03  Carlos Perelló Marín <carlos@gnome.org>
    
        * POTFILES.in: Removed the localization capplet files, until GNOME 2.7

 po/ChangeLog     | 4 ++++
 po/POTFILES.in   | 3 ---
 po/POTFILES.skip | 5 +++++
 3 files changed, 9 insertions(+), 3 deletions(-)

commit bd898f89c439a19efc36123d21c1fab94c540541
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Mon Feb 2 18:26:19 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 57 ++++++++++++++++++++++++++++++---------------------------
 2 files changed, 34 insertions(+), 27 deletions(-)

commit 96ba2ec9f1f6ba180c4c432fa5d20c6746ae9d0f
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Feb 2 07:29:30 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-02-02  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 50 +++++++++++++++++++++++++-------------------------
 2 files changed, 29 insertions(+), 25 deletions(-)

commit bc8fe29fe919bae85187372c58afdec3ccf3e1c2
Author: Richard Hult <richard@imendio.com>
Date:   Mon Feb 2 00:26:26 2004 +0000

    Fixes bug #126179:
    
    2004-02-01  Richard Hult  <richard@imendio.com>
    
        Fixes bug #126179:
    
        * drw-break-window.c (drw_break_window_init): Add mnemonic to
        postpone button.
    
        * drwright.c (maybe_change_state): Grab keyboard so the mnemonic
        actually works.

 typing-break/ChangeLog          | 10 ++++++++++
 typing-break/drw-break-window.c |  2 +-
 typing-break/drwright.c         | 16 ++++++++++++++++
 3 files changed, 27 insertions(+), 1 deletion(-)

commit 5480b86231240b73670cdd3bb3702414c8359ae7
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sun Feb 1 22:43:46 2004 +0000

    Partially updated Danish translation.
    
    2004-02-01  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Partially updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 659 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 485 insertions(+), 178 deletions(-)

commit c30af41b1e5bdf85b797fb8b5f931fe5d50ea781
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sun Feb 1 21:43:40 2004 +0000

    Translation updated.
    
    2004-02-01  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |   4 +
 po/az.po     | 768 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 634 insertions(+), 138 deletions(-)

commit 5e266cc5327092910c024101cbc78a75ac98e4b3
Author: Rodney Dawes <dobey@ximian.com>
Date:   Sun Feb 1 20:57:47 2004 +0000

    Switch the binary name to gnome-background-properties, Based on patch from
    
    2004-02-01  Rodney Dawes  <dobey@ximian.com>
    
        * Makefile.am: Switch the binary name to gnome-background-properties,
          Based on patch from Seth Nickell
        * background.desktop.in: Use gnome-background-properties here also,
          based on patch from Seth Nickell
        * gnome-wp-capplet.c: Fix a bug where you can't re-add a wallpaper
          after you remove it
          Use the new gnome_wp_item_update_description () call
          Use a GConfChangeSet to change the gconf keys, based on a patch
          from Seth Nickell
          Select the first item in the list ("No Wallpaper") when the wallpaper
          is removed, based on a patch from Seth Nickell
          Do the rc string parsing before creating the window, and change some
          defaults so we can fix the spacing between widgets and the border
          Fix spacing between widgets and window border
        * gnome-wp-item.[ch]: Add update_description function to clean up
          code, based on patch from Seth Nickell
          Fix a crash when trying to thumbnail very wide images that are very
          short, while trying to maintain aspect ratio
        * gnome-wp-xml.c: Use backgrounds.xml instead of wp-list.xml, and
          migrate the old wp-list.xml over if backgrounds.xml doesn't exist
          yet, based on patch from Seth Nickell

 capplets/background/ChangeLog             | 24 ++++++++
 capplets/background/Makefile.am           | 12 ++--
 capplets/background/background.desktop.in |  2 +-
 capplets/background/gnome-wp-capplet.c    | 93 +++++++++++++++----------------
 capplets/background/gnome-wp-item.c       | 14 +++++
 capplets/background/gnome-wp-item.h       |  1 +
 capplets/background/gnome-wp-xml.c        | 33 +++++------
 7 files changed, 110 insertions(+), 69 deletions(-)

commit 82edf41b76b5efe0bb1784db7d0ab492eb952398
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Sun Feb 1 18:31:30 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 74 +++++++++++++++++++++++++++++++++++------------------------
 po/sr@Latn.po | 74 +++++++++++++++++++++++++++++++++++------------------------
 3 files changed, 92 insertions(+), 60 deletions(-)

commit c5d7b30f828a13bbaad7055e9c131166d83b7632
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sun Feb 1 16:50:02 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 080c78891c8d7b6eb208162eb2909158726543a5
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sun Feb 1 16:47:55 2004 +0000

    Updated

 po/sq.po | 121 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 76 insertions(+), 45 deletions(-)

commit b5bfba79afc591c56ec25c0434b9aff4eba7efcf
Author: Mətin Əmirov <metin@karegen.com>
Date:   Sat Jan 31 20:11:07 2004 +0000

    Translation updated.
    
    2004-01-31  Mətin Əmirov  <metin@karegen.com>
    
        * az.po: Translation updated.

 po/ChangeLog |   4 +
 po/az.po     | 910 +++++++++++++----------------------------------------------
 2 files changed, 196 insertions(+), 718 deletions(-)

commit 8a1695d62bf069f934d111d8a4d875b9f411b611
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Thu Jan 29 18:34:10 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 174 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 101 insertions(+), 77 deletions(-)

commit e1e279dfff6c9bd0bce9d232248b31f8ee4bcd6b
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Thu Jan 29 12:49:34 2004 +0000

    Updated Norwegian Nynorsk translation.
    
    2004-01-29  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |   4 +++
 po/nn.po     | 106 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 56 insertions(+), 54 deletions(-)

commit 0003216fb66d80bfe6bceea70db8f9ab2833dafb
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jan 29 11:28:05 2004 +0000

    Updated Norwegian translation.
    
    2004-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 31 ++++++++++++++++---------------
 2 files changed, 20 insertions(+), 15 deletions(-)

commit 0c02d350b363b8ba646e3bd8a908415cf99510eb
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Wed Jan 28 18:28:25 2004 +0000

    Updated Norwegian Nynorsk translation.
    
    2004-01-28  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |   4 +
 po/nn.po     | 381 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 195 insertions(+), 190 deletions(-)

commit c1ecba55e62261789f66c62ed1fd7f2595af66c3
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Jan 28 10:57:38 2004 +0000

    Fixed Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 133 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 67 insertions(+), 70 deletions(-)

commit 3c8a24f2608c10df6536b600298a18290a4ee55c
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Jan 28 09:21:04 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-01-28  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +++
 po/pl.po     | 105 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 75 insertions(+), 34 deletions(-)

commit de0eaea2a6923a34f8d0c80a38f2bda16626d96b
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Jan 27 20:53:41 2004 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 20d535115940545f895021bc34e48dfcfea74285
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Tue Jan 27 20:51:50 2004 +0000

    Updated

 po/sq.po | 442 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 230 insertions(+), 212 deletions(-)

commit d25e3bc71bfb447c8b444488b7df7ac53a6fc559
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Mon Jan 26 22:36:22 2004 +0000

    Updated Irish translation

 po/ChangeLog |   4 +
 po/ga.po     | 445 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 181 insertions(+), 268 deletions(-)

commit efc1f71075fc539da5cfdba59cdd0b73db5f51ba
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Mon Jan 26 20:45:32 2004 +0000

    Updated Slovenian translation

 po/sl.po | 1243 +++++++++++++++++---------------------------------------------
 1 file changed, 329 insertions(+), 914 deletions(-)

commit 5aef08220a70e6e9694ddd714643d73f2668d37d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jan 26 11:17:07 2004 +0000

    requires the latest libxklavier due to the API change

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d5f43dca5f6d31510341f28b379c31dcf1f7fdf
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jan 24 10:02:50 2004 +0000

    Updated Norwegian translation.
    
    2004-01-24  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 +++
 po/no.po     | 84 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 53 insertions(+), 35 deletions(-)

commit 70d92b9825dd5509c89f373a19e7b339a5ee9d04
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Jan 24 00:09:17 2004 +0000

    Updated Spanih translation.
    
    2004-01-24  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanih translation.

 po/ChangeLog |   4 +
 po/es.po     | 242 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 161 insertions(+), 85 deletions(-)

commit 297b2d22b97191dc2c2701003a91a988681282cf
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Fri Jan 23 22:06:14 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 +++
 po/de.po     | 116 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 70 insertions(+), 50 deletions(-)

commit 1d98c7435151605d08f2f9915d26966c5ed8f9d9
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jan 23 16:53:34 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 16 +++++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit 43b3e7f59b50793f0557450b121ed9885425b455
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Jan 23 10:36:53 2004 +0000

    two labels for each treeview pair (layouts and options) - not one

 capplets/keyboard/gnome-keyboard-properties.glade | 457 +++++++++++++---------
 1 file changed, 277 insertions(+), 180 deletions(-)

commit 77b5759d5c22fdae2f7c7006696b3adae382bcbc
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Fri Jan 23 10:20:16 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      | 147 +++++++++++++++++++++++++++++++++++-----------------------
 po/sr@Latn.po | 147 +++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 180 insertions(+), 118 deletions(-)

commit 9b1f373f3afa2432e22ea590b00d14bb0dfcdeab
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Thu Jan 22 13:04:46 2004 +0000

    Updated the Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 581 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 276 insertions(+), 309 deletions(-)

commit 31f4338428f59ccdc7bd6e2e6eb952e80d975206
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Jan 22 09:11:22 2004 +0000

    at least people should know how to report xkb initialization problems

 .../gnome-settings-keyboard-xkb.c                  | 34 ++++++++++++----------
 1 file changed, 19 insertions(+), 15 deletions(-)

commit 22ba4dff9459bde4f32f20904d3551324eacfb6f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 21 22:30:20 2004 +0000

    Updated Norwegian translation.
    
    2004-01-21  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 78 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 43 insertions(+), 39 deletions(-)

commit 65410304da9f76bae22d02de3edce3f65669f1a7
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Wed Jan 21 22:00:39 2004 +0000

    Translation updated by Kees van den Broek.
    
    2004-01-21  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Kees van den Broek.

 po/ChangeLog |  4 ++++
 po/nl.po     | 14 +++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

commit 89d41cbc462f317488f5445735e2651f2ca1d2b8
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Jan 21 17:12:59 2004 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 121 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 71 insertions(+), 54 deletions(-)

commit 56c7dc873e361975b19f267aa8537ce8550bdc51
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Jan 21 10:38:30 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-01-21  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +++
 po/pl.po     | 106 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 60 insertions(+), 50 deletions(-)

commit 26ffee4262861402cafb57b3f8e3c58117e1e30d
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jan 20 09:11:13 2004 +0000

    Well, probably the label should visible though

 capplets/keyboard/gnome-keyboard-properties.glade | 1 +
 1 file changed, 1 insertion(+)

commit fd6d162b7e550259160ef4b093b0e8884aa9b1a8
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Jan 20 08:58:53 2004 +0000

    A bit shorter tab labels, tabs 3 and 4

 capplets/keyboard/gnome-keyboard-properties.glade | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 667458e61b1c3aeacedada410013179a025c9f9c
Author: Sivaiah Nallagatla <snallagatla@novell.com>
Date:   Tue Jan 20 07:47:18 2004 +0000

    do not try to set construct only property after object is constructed.
    
    
    2004-01-20 Sivaiah Nallagatla <snallagatla@novell.com>
    
            * mime-edit-dialog.c (mime_add_dialog_new ) : do not try to set
            construct only property after object is constructed. Fixes #128374

 capplets/file-types/ChangeLog          | 5 +++++
 capplets/file-types/mime-edit-dialog.c | 6 ++----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit c57ad8cc5c07a2b907f9ba75563742361e050964
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Mon Jan 19 18:22:00 2004 +0000

    Update

 po/no.po | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit 9cb3e7515ddd71040bc9ed92f939ee3e0668e2e2
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon Jan 19 16:50:26 2004 +0000

    Set the correct default dpi.
    
    Mon Jan 19 11:49:03 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-settings-xsettings.c (gnome_xft_settings_get): Set the
            correct default dpi.

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 8d72c5858baff7dc3bd30d0ad25b7d86224c8aeb
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jan 19 09:14:43 2004 +0000

    It was agreed on IRC, g-k-p should be resizable

 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 00c538e35496a652c6a5bd3a9e3ecb2dbc7733a1
Author: Jason Leach <leach@wam.umd.edu>
Date:   Sun Jan 18 22:22:59 2004 +0000

    builddir != srcdir fix.
    
    2004-01-18  Jason Leach  <leach@wam.umd.edu>
    
        * schemas/Makefile.am (install-data-local): builddir != srcdir fix.

 ChangeLog           | 4 ++++
 schemas/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2d2222aba15d002adf89cac257e2b2ae95f4a5d9
Author: Rodney Dawes <dobey@ximian.com>
Date:   Sun Jan 18 21:11:45 2004 +0000

    Enable the Help button (#131286)
    
    2004-01-18  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-capplet.c: Enable the Help button (#131286)

 capplets/background/ChangeLog          | 4 ++++
 capplets/background/gnome-wp-capplet.c | 3 ---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit a35e16866a6c9df998713c1317e51ca6c6d07693
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Jan 18 10:36:46 2004 +0000

    Updated French translation.

 po/fr.po | 3 ---
 1 file changed, 3 deletions(-)

commit 08ee8cd585d32ca720b8782baa4bab6b20019aa4
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Jan 17 23:17:57 2004 +0000

    Updated French translation.

 po/fr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ddc30c73cdd598927313322c9408cc69d8ba9aea
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Jan 17 14:37:51 2004 +0000

    Updated French translation.

 po/ChangeLog |   6 +-
 po/fr.po     | 284 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 138 insertions(+), 152 deletions(-)

commit cc71e337c0555004fe74cc37df94c51e1a232510
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Jan 17 14:19:47 2004 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 263 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 131 insertions(+), 136 deletions(-)

commit 17388eb9bb80dd68b827ecc17c4b94d154b86caa
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jan 17 09:20:21 2004 +0000

    Add F1 as an accelerator for the Help menu. Patch by Mark Finlay. Closes
    
    2004-01-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnomecc-ui.xml: Add F1 as an accelerator for the Help menu.
        Patch by Mark Finlay. Closes bug #94265.

 control-center/ChangeLog      | 5 +++++
 control-center/gnomecc-ui.xml | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 4f23b6a087d8f3bfc937a09fd0c870c58900214b
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Fri Jan 16 12:00:37 2004 +0000

    Add DESTDIR variable.

 capplets/background/ChangeLog     | 4 ++++
 capplets/background/Makefile.am   | 2 +-
 gnome-settings-daemon/ChangeLog   | 4 ++++
 gnome-settings-daemon/Makefile.am | 4 ++--
 4 files changed, 11 insertions(+), 3 deletions(-)

commit 2119d07f8d16b35bbf036602d183988dd9cd18bf
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Fri Jan 16 08:31:40 2004 +0000

    Move some declarations so that AtkRelations are defined. Fixes bug
    
    2004-01-16  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-network-preferences.glade: Move some declarations so that
        AtkRelations are defined. Fixes bug #126714.

 capplets/network/ChangeLog                       |   5 +
 capplets/network/gnome-network-preferences.glade | 118 +++++++++++------------
 2 files changed, 64 insertions(+), 59 deletions(-)

commit 71eff1f7783a88f4be950502032160ad2321525f
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jan 15 19:38:42 2004 +0000

    fix locating the pixmaps when compiling with a prefix not ending in '/'
    
    2004-01-15  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-settings-multimedia-keys.c: fix locating the
        pixmaps when compiling with a prefix not ending in '/'

 gnome-settings-daemon/ChangeLog                        | 5 +++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit f968d7954acd99b0ac74af60812cac06fb0c33ba
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Thu Jan 15 13:21:47 2004 +0000

    2004-01-15 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 258 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 122 insertions(+), 140 deletions(-)

commit be1cdfda817cae7d1e28dac94a3318337b7b7917
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Jan 15 10:14:29 2004 +0000

    Updated Albanian file
    
    * sq.po: Updated Albanian file

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 4010f70237a0ea37ee19b726e2b67cba8cc85759
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Thu Jan 15 10:08:33 2004 +0000

    Updated

 po/sq.po | 287 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 117 insertions(+), 170 deletions(-)

commit 117e3950064e0aca748303188f93542be2c5b3eb
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Wed Jan 14 20:47:58 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 179 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 78 insertions(+), 105 deletions(-)

commit 8c2d55f3603cd88cc8e5d317a995ba22e1cd6fc1
Author: Rodney Dawes <dobey@ximian.com>
Date:   Wed Jan 14 20:15:40 2004 +0000

    Update Albanian translation
    
    2004-01-14  Rodney Dawes  <dobey@ximian.com>
    
        * sq.po: Update Albanian translation

 po/ChangeLog |  4 ++++
 po/sq.po     | 40 +++++++++++++++-------------------------
 2 files changed, 19 insertions(+), 25 deletions(-)

commit 04996e2010507f98a33ab37580b8fdd6f769f72c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Jan 14 13:19:04 2004 +0000

    fix build on Linux/PPC machines (the only ones to use the FB-Level code)
    
    2004-01-14  Bastien Nocera  <hadess@hadess.net>
    
        * Makefile.am:
        * gnome-settings-multimedia-keys.c: fix build on Linux/PPC machines
        (the only ones to use the FB-Level code)

 gnome-settings-daemon/ChangeLog                        |  6 ++++++
 gnome-settings-daemon/Makefile.am                      |  4 ----
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 12 ++++++------
 3 files changed, 12 insertions(+), 10 deletions(-)

commit f4cf3de5ba023c21170c86691827c09da28b7b7a
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Jan 14 12:21:39 2004 +0000

    Updated Spanish translation.
    
    2004-01-14  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 257 +++++++++++++++++++++++------------------------------------
 2 files changed, 105 insertions(+), 156 deletions(-)

commit f30f104ebc3b63f151f6a535bcfeb65eef4fffa6
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Jan 14 08:50:25 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-01-14  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 ++
 po/pl.po     | 165 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 80 insertions(+), 89 deletions(-)

commit f517efbb721bf94368e999fd27316b6e513be422
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Jan 14 08:42:26 2004 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 175 +++++++++++++++++++++++++----------------------------------
 2 files changed, 78 insertions(+), 101 deletions(-)

commit f883221edaa75d4aa9ed9e2040d2142b9059548b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 14 08:21:22 2004 +0000

    Updated Norwegian translation.
    
    2004-01-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 74 +++++++++++-------------------------------------------------
 2 files changed, 17 insertions(+), 61 deletions(-)

commit a9aa34b6e70e93853b167d5d8d0d3bdb82bcee0b
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Wed Jan 14 07:50:21 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      | 109 +++++++++++++++++++-----------------------
 po/sr@Latn.po | 150 ++++++++++++++++++++++++++--------------------------------
 3 files changed, 121 insertions(+), 142 deletions(-)

commit fdb8d4545a534d65c160307b7e84b0216c764047
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 14 06:45:25 2004 +0000

    post release bump
    
    
    2004-01-14  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 261b2b983860e94d7b711c9c3d2f754640aa8c72
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 14 06:41:31 2004 +0000

    Release 2.5.2
    
    
    2004-01-14  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.2

 ChangeLog                                          |   4 +
 archiver/ChangeLog                                 |   4 +
 archiver/tests/ChangeLog                           |   4 +
 capplets/accessibility/at-properties/ChangeLog     |   4 +
 capplets/accessibility/keyboard/ChangeLog          |   4 +
 capplets/background/ChangeLog                      |   4 +
 capplets/common/ChangeLog                          |   4 +
 capplets/default-applications/ChangeLog            |   4 +
 capplets/desktop-links/ChangeLog                   |   4 +
 capplets/file-types/ChangeLog                      |   4 +
 capplets/font/ChangeLog                            |   4 +
 capplets/keybindings/ChangeLog                     |   4 +
 capplets/keyboard/ChangeLog                        |   4 +
 capplets/mime-type/ChangeLog                       |   4 +
 capplets/mouse/ChangeLog                           |   4 +
 capplets/network/ChangeLog                         |   4 +
 capplets/rollback/ChangeLog                        |   4 +
 capplets/sound/ChangeLog                           |   4 +
 capplets/theme-switcher/ChangeLog                  |   4 +
 capplets/ui-properties/ChangeLog                   |   4 +
 capplets/url-properties/ChangeLog                  |   4 +
 capplets/windows/ChangeLog                         |   4 +
 capplets/wm-properties/ChangeLog                   |   4 +
 control-center/ChangeLog                           |   4 +
 gnome-settings-daemon/ChangeLog                    |   4 +
 .../gnome-settings-accessibility-keyboard.c        |   4 +-
 help/ChangeLog                                     |   4 +
 libbackground/ChangeLog                            |   4 +
 libwindow-settings/ChangeLog                       |   4 +
 po/ChangeLog                                       |   4 +
 po/POTFILES.in                                     |   1 -
 po/POTFILES.skip                                   |   1 +
 po/am.po                                           | 323 +++++++++++++++++-
 po/ar.po                                           | 347 ++++++++++++++++++-
 po/az.po                                           | 324 +++++++++++++++++-
 po/be.po                                           | 347 ++++++++++++++++++-
 po/bg.po                                           | 341 ++++++++++++++++++-
 po/bn.po                                           | 342 ++++++++++++++++++-
 po/ca.po                                           | 363 ++++++++++++++++++--
 po/cs.po                                           | 377 +++++++++++++++++++--
 po/cy.po                                           | 338 +++++++++++++++++-
 po/da.po                                           | 357 +++++++++++++++++--
 po/de.po                                           | 324 +++++++++++++++++-
 po/el.po                                           | 325 +++++++++++++++++-
 po/en_GB.po                                        | 302 ++++++++++++++++-
 po/es.po                                           | 347 ++++++++++++++++++-
 po/et.po                                           | 340 ++++++++++++++++++-
 po/fa.po                                           | 331 +++++++++++++++++-
 po/fi.po                                           | 324 +++++++++++++++++-
 po/fr.po                                           | 347 ++++++++++++++++++-
 po/ga.po                                           | 325 +++++++++++++++++-
 po/gl.po                                           | 340 ++++++++++++++++++-
 po/he.po                                           | 341 ++++++++++++++++++-
 po/hi.po                                           | 343 ++++++++++++++++++-
 po/hr.po                                           | 324 +++++++++++++++++-
 po/hu.po                                           | 324 +++++++++++++++++-
 po/id.po                                           | 300 +++++++++++++++-
 po/is.po                                           | 324 +++++++++++++++++-
 po/it.po                                           | 327 +++++++++++++++++-
 po/ja.po                                           | 324 +++++++++++++++++-
 po/ko.po                                           | 324 +++++++++++++++++-
 po/lt.po                                           | 341 ++++++++++++++++++-
 po/lv.po                                           | 337 +++++++++++++++++-
 po/mk.po                                           | 341 ++++++++++++++++++-
 po/ml.po                                           | 335 +++++++++++++++++-
 po/mn.po                                           | 341 ++++++++++++++++++-
 po/ms.po                                           | 324 +++++++++++++++++-
 po/nl.po                                           | 377 +++++++++++++++++++--
 po/nn.po                                           | 353 +++++++++++++++++--
 po/no.po                                           | 205 +++++++----
 po/pl.po                                           | 327 +++++++++++++++++-
 po/pt.po                                           | 324 +++++++++++++++++-
 po/pt_BR.po                                        | 324 +++++++++++++++++-
 po/ro.po                                           | 324 +++++++++++++++++-
 po/ru.po                                           | 341 ++++++++++++++++++-
 po/sk.po                                           | 324 +++++++++++++++++-
 po/sl.po                                           | 349 +++++++++++++++++--
 po/sq.po                                           | 324 +++++++++++++++++-
 po/sr.po                                           | 270 +++++++++++++--
 po/sr@Latn.po                                      | 311 ++++++++++++++---
 po/sv.po                                           | 353 +++++++++++++++++--
 po/ta.po                                           | 343 ++++++++++++++++++-
 po/th.po                                           | 324 +++++++++++++++++-
 po/tr.po                                           | 347 ++++++++++++++++++-
 po/uk.po                                           | 337 +++++++++++++++++-
 po/vi.po                                           | 344 ++++++++++++++++++-
 po/wa.po                                           | 335 +++++++++++++++++-
 po/zh_CN.po                                        | 327 +++++++++++++++++-
 po/zh_TW.po                                        | 347 ++++++++++++++++++-
 typing-break/ChangeLog                             |   4 +
 vfs-methods/fontilus/ChangeLog                     |   4 +
 vfs-methods/themus/ChangeLog                       |   4 +
 92 files changed, 18170 insertions(+), 888 deletions(-)

commit a634112d9998eae65e84344c54effafea749105b
Author: Bastien Nocera <hadess@src.gnome.org>
Date:   Wed Jan 14 00:22:55 2004 +0000

    - plenty of fixes for ACME integration

 ChangeLog                                          |  6 +++
 gnome-settings-daemon/ChangeLog                    |  9 +++++
 gnome-settings-daemon/Makefile.am                  |  8 +++-
 gnome-settings-daemon/actions/acme.h               |  2 +-
 .../gnome-settings-multimedia-keys.c               | 38 ++++++++++--------
 ...ps_gnome_settings_daemon_keybindings.schemas.in | 46 +++++++++++-----------
 6 files changed, 67 insertions(+), 42 deletions(-)

commit 830d7a5fe5023d586ad553963f776dc494afb50a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 13 20:38:54 2004 +0000

    Update with new files. Update this too.
    
    2004-01-13  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Update with new files.
        * no.po: Update this too.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   3 +
 po/no.po       | 314 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 3 files changed, 308 insertions(+), 14 deletions(-)

commit 144005a19bad795bfa95bf69cf8376dc33fce1df
Author: Rodney Dawes <dobey@ximian.com>
Date:   Tue Jan 13 20:17:51 2004 +0000

    Fix previous change to use gnome_wp_item_free () instead of g_free (), and
    
    2004-01-12  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-wp-xml.c (gnome_wp_load_legacy): Fix previous change to
        use gnome_wp_item_free () instead of g_free (), and fix tab width

 capplets/background/ChangeLog      | 5 +++++
 capplets/background/gnome-wp-xml.c | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit de98760fb2d4a6cd93daf05b89e3e8f19c9bc70e
Author: Bastien Nocera <hadess@hadess.net>
Date:   Tue Jan 13 16:51:27 2004 +0000

    let's simplify some code
    
    2004-01-13  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-settings-multimedia-keys.c: (acme_filter_events): let's
        simplify some code

 gnome-settings-daemon/ChangeLog                        | 5 +++++
 gnome-settings-daemon/gnome-settings-multimedia-keys.c | 8 +-------
 2 files changed, 6 insertions(+), 7 deletions(-)

commit 92999c9380e7c918927fd48a72ca58380b39d3f4
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jan 13 15:59:09 2004 +0000

    Merge in acme. We now have a variety of actions for the keybinding
    
    Tue Jan 13 10:48:57 2004  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-settings-daemon: Merge in acme.  We now have a variety of
            actions for the keybinding capplet.

 capplets/keybindings/gnome-keybinding-properties.c |  28 +
 configure.in                                       |  62 +-
 gnome-settings-daemon/ChangeLog                    |   5 +
 gnome-settings-daemon/Makefile.am                  |  14 +-
 gnome-settings-daemon/actions/.cvsignore           |   2 +
 gnome-settings-daemon/actions/Makefile.am          |  39 +
 gnome-settings-daemon/actions/acme-brightness.png  | Bin 0 -> 4377 bytes
 gnome-settings-daemon/actions/acme-eject.png       | Bin 0 -> 1624 bytes
 gnome-settings-daemon/actions/acme-fb-level.c      | 197 +++++
 gnome-settings-daemon/actions/acme-fb-level.h      |  55 ++
 gnome-settings-daemon/actions/acme-volume-alsa.c   | 261 ++++++
 gnome-settings-daemon/actions/acme-volume-alsa.h   |  47 +
 gnome-settings-daemon/actions/acme-volume-dummy.c  | 110 +++
 gnome-settings-daemon/actions/acme-volume-dummy.h  |  46 +
 gnome-settings-daemon/actions/acme-volume-oss.c    | 236 +++++
 gnome-settings-daemon/actions/acme-volume-oss.h    |  47 +
 gnome-settings-daemon/actions/acme-volume.c        | 133 +++
 gnome-settings-daemon/actions/acme-volume.h        |  61 ++
 gnome-settings-daemon/actions/acme.glade           |  66 ++
 gnome-settings-daemon/actions/acme.h               |  88 ++
 .../actions/gnome-speakernotes-muted.png           | Bin 0 -> 4445 bytes
 .../actions/gnome-speakernotes.png                 | Bin 0 -> 4655 bytes
 gnome-settings-daemon/eggaccelerators.c            | 701 +++++++++++++++
 gnome-settings-daemon/eggaccelerators.h            |  89 ++
 gnome-settings-daemon/gnome-settings-daemon.c      |   3 +
 gnome-settings-daemon/gnome-settings-keybindings.c |   7 +-
 gnome-settings-daemon/gnome-settings-keybindings.h |   2 +-
 .../gnome-settings-multimedia-keys.c               | 960 +++++++++++++++++++++
 .../gnome-settings-multimedia-keys.h               |  31 +
 po/am.po                                           | 263 ++++--
 po/ar.po                                           | 631 ++++++++++----
 po/az.po                                           | 272 ++++--
 po/be.po                                           | 290 +++++--
 po/bg.po                                           | 290 +++++--
 po/bn.po                                           | 279 ++++--
 po/ca.po                                           | 293 +++++--
 po/cy.po                                           | 272 ++++--
 po/da.po                                           | 291 +++++--
 po/de.po                                           | 240 +++++-
 po/el.po                                           | 272 ++++--
 po/en_GB.po                                        | 259 ++++--
 po/es.po                                           | 181 ++--
 po/et.po                                           | 278 ++++--
 po/fa.po                                           | 276 ++++--
 po/fi.po                                           | 272 ++++--
 po/fr.po                                           | 294 +++++--
 po/ga.po                                           | 274 ++++--
 po/gl.po                                           | 290 +++++--
 po/he.po                                           | 282 ++++--
 po/hi.po                                           | 281 ++++--
 po/hr.po                                           | 527 +++++++----
 po/hu.po                                           | 272 ++++--
 po/id.po                                           | 245 ++++--
 po/is.po                                           | 272 ++++--
 po/it.po                                           | 272 ++++--
 po/ja.po                                           | 273 ++++--
 po/ko.po                                           | 107 ++-
 po/lt.po                                           | 277 ++++--
 po/lv.po                                           | 276 ++++--
 po/mk.po                                           | 279 ++++--
 po/ml.po                                           | 274 ++++--
 po/mn.po                                           | 276 ++++--
 po/ms.po                                           | 614 ++++++++++---
 po/nn.po                                           | 386 ++++++---
 po/no.po                                           |  68 +-
 po/pl.po                                           |  38 +-
 po/pt.po                                           | 240 +++++-
 po/pt_BR.po                                        | 273 ++++--
 po/ro.po                                           | 272 ++++--
 po/ru.po                                           | 279 ++++--
 po/sk.po                                           | 272 ++++--
 po/sl.po                                           | 287 ++++--
 po/sq.po                                           | 272 ++++--
 po/sv.po                                           | 296 +++++--
 po/ta.po                                           | 280 ++++--
 po/th.po                                           | 274 ++++--
 po/tr.po                                           | 295 +++++--
 po/uk.po                                           | 276 ++++--
 po/vi.po                                           | 290 +++++--
 po/wa.po                                           | 276 ++++--
 po/zh_CN.po                                        | 272 ++++--
 po/zh_TW.po                                        | 283 ++++--
 schemas/Makefile.am                                |   5 +-
 ...ps_gnome_settings_daemon_keybindings.schemas.in | 244 ++++++
 84 files changed, 15053 insertions(+), 3459 deletions(-)

commit ac8837fadc5ad6db22a8b36cc6f77d9573be76d0
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Jan 13 15:51:06 2004 +0000

    Translation updated by Kees van den Broek.
    
    2004-01-13  Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Translation updated by Kees van den Broek.

 po/ChangeLog |   4 +
 po/nl.po     | 246 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 204 insertions(+), 46 deletions(-)

commit f9c2705a607d35b6d3a476dd8ac1b7d428f55540
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Jan 13 13:48:57 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 872f95589e346759e25df4e3aaa83089e43a4a74
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Tue Jan 13 09:18:47 2004 +0000

    Updated Serbian translation.
    
    2004-01-13  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.
    
        * POTFILES.in: Added missing files.

 po/ChangeLog   |   6 +++
 po/POTFILES.in |   3 ++
 po/sr.po       | 154 +++++++++++++++++++++++++++++++++++++++++++++++----------
 po/sr@Latn.po  | 154 +++++++++++++++++++++++++++++++++++++++++++++++----------
 4 files changed, 263 insertions(+), 54 deletions(-)

commit a3ab452d9e93ea8670e1d529b271005c7eed99af
Author: Federico Mena Quintero <federico@ximian.com>
Date:   Tue Jan 13 02:13:50 2004 +0000

    Fix ; -> , typo.
    
    2004-01-12  Federico Mena Quintero  <federico@ximian.com>
    
        * gnome-settings-accessibility-keyboard.c
        (ax_stickykeys_warning_dialog_post): Fix ; -> , typo.

 gnome-settings-daemon/ChangeLog                               | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit dcb645329877a143b054cc937a7a7515375c21f2
Author: Bill Haneman <billh@src.gnome.org>
Date:   Mon Jan 12 20:37:03 2004 +0000

    Post a warning dialog when the user enables or disables an AccessX
    feature via a keyboard shortcut.  Fixes bug #105093.

 gnome-settings-daemon/ChangeLog                    |  24 ++
 .../gnome-settings-accessibility-keyboard.c        | 255 +++++++++++++++++----
 gnome-settings-daemon/gnome-settings-keybindings.c |   2 +-
 3 files changed, 241 insertions(+), 40 deletions(-)

commit c8c2cd502377dada79364b76ac7a2d17192576f5
Author: Diego Gonzalez <diego@pemas.net>
Date:   Mon Jan 12 19:32:43 2004 +0000

    don't crash if we could not get the file information.
    
    
    2004-01-12  Diego Gonzalez <diego@pemas.net>
    
        * gnome-wp-xml.c (gnome_wp_load_legacy): don't crash if we could
          not get the file information.

 capplets/background/ChangeLog      | 5 +++++
 capplets/background/gnome-wp-xml.c | 4 ++++
 2 files changed, 9 insertions(+)

commit a603a03a237d83767e13be501d928fe01bd6e4e0
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Jan 12 14:25:57 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-01-12  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |  4 ++++
 po/pl.po     | 49 +++++++++++++++++++++++++++++--------------------
 2 files changed, 33 insertions(+), 20 deletions(-)

commit 8e4dbf21792157045417a6b089449ca421b6e359
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jan 12 13:08:34 2004 +0000

    Initial xkb configuration is cached. Should make things a bit faster

 capplets/keyboard/gnome-keyboard-properties-xkb.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit a103fa9147b8b1c33b60d07a24db02af493306c7
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jan 12 11:56:37 2004 +0000

    Now the GSwitchItXkbConfigInit function clears the memory itself.

 capplets/keyboard/gnome-keyboard-properties-xkb.c   | 2 --
 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 2 --
 2 files changed, 4 deletions(-)

commit 70dceb002fcabb10f7bb709c74ff982c46a459fa
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Mon Jan 12 09:35:31 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 40 +++++++++++++++++++++++-----------------
 2 files changed, 27 insertions(+), 17 deletions(-)

commit 55a692788a0339c3dda7dc5f432e8103bad16b7f
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Jan 12 06:35:57 2004 +0000

    As long as we're hard coding the path hard code it in only one place.
    
    
    2004-01-12  Jody Goldberg <jody@gnome.org>
    
        * Makefile.am : As long as we're hard coding the path hard code it in
          only one place.  Passing in datadir then adding the magic subdir in
          C then building in Makefile seems unnecessary.
          Use GNOMECC_CAPPLETS_*

 capplets/background/ChangeLog        |  7 +++++++
 capplets/background/Makefile.am      | 13 ++++++-------
 capplets/background/gnome-wp-item.c  |  1 +
 capplets/background/gnome-wp-utils.c |  3 +--
 capplets/background/gnome-wp-xml.c   | 10 ++++------
 5 files changed, 19 insertions(+), 15 deletions(-)

commit acdde5d39d8f70c8502f7d2c323c920cda281773
Author: Rodney Dawes <dobey@ximian.com>
Date:   Mon Jan 12 05:17:34 2004 +0000

    Add install hook to create data directory
    
    2004-01-12  Rodney Dawes  <dobey@ximian.com>
    
        * Makefile.am: Add install hook to create data directory

 capplets/background/ChangeLog   | 4 ++++
 capplets/background/Makefile.am | 3 +++
 2 files changed, 7 insertions(+)

commit 2e428e774687dda3833bcf0e894a2285f88423fa
Author: Rodney Dawes <dobey@ximian.com>
Date:   Mon Jan 12 05:10:40 2004 +0000

    Update for new capplet Update Name/Comment/Exec entries
    
    2004-01-12  Rodney Dawes  <dobey@ximian.com>
    
        * Makefile.am: Update for new capplet
        * background.desktop.in: Update Name/Comment/Exec entries
        * gnome-wp-capplet.[ch]:
        * gnome-wp-info.[ch]:
        * gnome-wp-item.[ch]:
        * gnome-wp-utils.[ch]:
        * gnome-wp-xml.[ch]: Add new capplet code to CVS

 capplets/background/.cvsignore            |    3 +
 capplets/background/ChangeLog             |   10 +
 capplets/background/Makefile.am           |   44 +-
 capplets/background/background.desktop.in |    6 +-
 capplets/background/gnome-wp-capplet.c    | 1555 +++++++++++++++++++++++++++++
 capplets/background/gnome-wp-capplet.h    |  110 ++
 capplets/background/gnome-wp-info.c       |  103 ++
 capplets/background/gnome-wp-info.h       |   47 +
 capplets/background/gnome-wp-item.c       |  134 +++
 capplets/background/gnome-wp-item.h       |   62 ++
 capplets/background/gnome-wp-utils.c      |  162 +++
 capplets/background/gnome-wp-utils.h      |   42 +
 capplets/background/gnome-wp-xml.c        |  370 +++++++
 capplets/background/gnome-wp-xml.h        |   28 +
 14 files changed, 2662 insertions(+), 14 deletions(-)

commit 2865c350b6c4b6f3064d606eb7f701b4c062620c
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Jan 12 01:49:46 2004 +0000

    Now enabling/disabling of the "Restore defaults" really works

 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 38 +++++++++++++++++++++-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  2 ++
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  1 +
 .../keyboard/gnome-keyboard-properties-xkbot.c     |  1 +
 4 files changed, 41 insertions(+), 1 deletion(-)

commit 04bb3c9a3ac86db762616c19547b4a6386affe70
Author: Richard Hult <richard@imendio.com>
Date:   Sun Jan 11 17:20:00 2004 +0000

    Enable markup for the break enabled toggle with code instead of with a
    
    2004-01-11  Richard Hult  <richard@imendio.com>
    
        * gnome-keyboard-properties.glade:
        * gnome-keyboard-properties.c (setup_dialog): Enable markup for
        the break enabled toggle with code instead of with a custom child
        for the toggle since that doesn't work with new libglade. Fixes
        bug #131122.

 capplets/keyboard/ChangeLog                       |  8 ++++++++
 capplets/keyboard/gnome-keyboard-properties.c     |  4 +++-
 capplets/keyboard/gnome-keyboard-properties.glade | 16 ----------------
 3 files changed, 11 insertions(+), 17 deletions(-)

commit db611b6b6fabdae8cd575d71b1fe8af3b0e9f442
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Sun Jan 11 15:27:51 2004 +0000

    Updated spanish translation.
    
    2004-01-11  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated spanish translation.

 po/ChangeLog |   6 +-
 po/es.po     | 307 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 216 insertions(+), 97 deletions(-)

commit 383bca8bd015c756cc56eab6f7af0131efd33fa2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jan 11 14:04:23 2004 +0000

    Updated Norwegian translation.
    
    2004-01-11  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 210 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 183 insertions(+), 31 deletions(-)

commit 9d9d09a564d969bf3193963cb606284b64c23932
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sat Jan 10 00:06:29 2004 +0000

    fixes for utf and non-utf locales

 capplets/keyboard/gnome-keyboard-properties-xkb.c  |   2 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 470 +++++++++---------
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 531 ++++++++++-----------
 3 files changed, 494 insertions(+), 509 deletions(-)

commit 4a5e4831050bf7cdec7e5296158692049b1994c5
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Fri Jan 9 23:40:17 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |   4 +
 po/sr.po      | 254 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 po/sr@Latn.po | 254 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 3 files changed, 426 insertions(+), 86 deletions(-)

commit b6e218936f6c9aaba87fa3f996f5dc69045f34b0
Author: Arafat Medini <arafatmedini@src.gnome.org>
Date:   Fri Jan 9 23:03:02 2004 +0000

    2004.01.09 Arafat Medini <lumina@silverpen.de>
    
    
    2004.01.09  Arafat Medini <lumina@silverpen.de>
    
            * ar.po: Updated Arabic translation

 po/ChangeLog |    4 +
 po/ar.po     | 1326 +++++++++++++++++++++++++---------------------------------
 2 files changed, 563 insertions(+), 767 deletions(-)

commit 2bc51a24867a1737c85f2d52bf18b90391692d89
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Fri Jan 9 20:43:59 2004 +0000

    now gnome-settings-daemon resets the configuration is asked by gconf flag overrideSettings

 capplets/keyboard/.cvsignore                       |   1 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 271 ++++++++++-----------
 capplets/keyboard/gnome-keyboard-properties.glade  |  88 +++++--
 gnome-settings-daemon/.indent.pro                  |   2 +
 .../gnome-settings-keyboard-xkb.c                  |  22 +-
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in |   6 +-
 6 files changed, 223 insertions(+), 167 deletions(-)

commit 12fdfa64848edc0956b5d71f8449efca71c78cda
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jan 9 17:28:36 2004 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 151 insertions(+), 11 deletions(-)

commit f0417016bd063d4ccfd54320fb7bccc0c4c067c1
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Jan 9 16:58:44 2004 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 434 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 276 insertions(+), 162 deletions(-)

commit 718275a65da9fb2739647838e293535565919923
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Fri Jan 9 14:53:58 2004 +0000

    Add accessible relations so accessible names are correctly reported. Fixes
    
    2004-01-09  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-default-applications-properties.glade: Add accessible
        relations so accessible names are correctly reported.
        Fixes bug #127302.

 capplets/default-applications/ChangeLog            |  6 ++++
 .../gnome-default-applications-properties.glade    | 38 +++++++++++++++++++++-
 2 files changed, 43 insertions(+), 1 deletion(-)

commit a903f755a8892fe04ff304d88cd9e799377d8a89
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Fri Jan 9 12:49:50 2004 +0000

    Updated Polish translation by GNOME PL Team.
    
    2004-01-09  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation by GNOME PL Team.

 po/ChangeLog |   4 +
 po/pl.po     | 336 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 188 insertions(+), 152 deletions(-)

commit 71a35716bd06c3b300eb843dde875ddff149f4b1
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Jan 9 07:41:19 2004 +0000

    simplify and generate the file at the last possible instant. CLickety
    
    
    2004-01-09  Jody Goldberg <jody@gnome.org>
    
        * Makefile.am : simplify and generate the file at the last possible
          instant.  CLickety Click, no mor eworries about tmp files.
        * GNOME_SettingsDaemon.server.in: restore
        * GNOME_SettingsDaemon.server.in.in: remove

 gnome-settings-daemon/ChangeLog                    |  7 +++++++
 .../GNOME_SettingsDaemon.server.in                 |  9 ++++++++
 .../GNOME_SettingsDaemon.server.in.in              |  9 --------
 gnome-settings-daemon/Makefile.am                  | 24 ++++++++--------------
 4 files changed, 24 insertions(+), 25 deletions(-)

commit 749a17a4005991a099ef267e52ac5fecc09a43cd
Author: Carlos Perelló Marín <carlos@gnome.org>
Date:   Fri Jan 9 02:02:29 2004 +0000

    The localization capplet is disabled until we remove the libicu
    
    2004-01-08  Carlos Perelló Marín <carlos@gnome.org>
    
        * configure.in: The localization capplet is disabled until we remove
        the libicu dependency.
    
    2004-01-05  Carlos Perelló Marín <carlos@gnome.org>
    
        * configure.in: Added a check for libicu and the needed lines to add
        the localization capplet.
        * capplets/Makefile.am: Added the localization dir.
        * capplets/localization: Added the localization capplet to change
        the locales.
        * po/POTFILES.in: Added new files from localization capplet.

 ChangeLog                                          |   14 +
 capplets/Makefile.am                               |    2 +-
 capplets/localization/.cvsignore                   |    3 +
 capplets/localization/Makefile.am                  |   25 +
 .../localization/gnome-localization-properties.c   | 1105 ++++++++++++++++++++
 .../gnome-localization-properties.glade            | 1024 ++++++++++++++++++
 capplets/localization/localization-capplet.png     |  Bin 0 -> 1384 bytes
 capplets/localization/localization.desktop.in      |   12 +
 configure.in                                       |   22 +-
 po/POTFILES.in                                     |    3 +
 10 files changed, 2207 insertions(+), 3 deletions(-)

commit f30ca64d66d5b6e070bcdeaebdac882debd9c8d0
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Jan 8 21:18:02 2004 +0000

    Damn, forgot to bump the version after to point release.
    
    
    2004-01-08  Jody Goldberg <jody@gnome.org>
    
        * configure.in : Damn, forgot to bump the version after to point release.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6d730e101f61d2dd1693c9a970ae867e042dad02
Author: Glynn Foster <glynn.foster@sun.com>
Date:   Wed Jan 7 21:59:49 2004 +0000

    Remove from CVS since it's a generated file.
    
    2004-01-08  Glynn Foster  <glynn.foster@sun.com>
    
        * GNOME_SettingsDaemon.server.in: Remove from CVS since it's
        a generated file.

 gnome-settings-daemon/ChangeLog                      | 5 +++++
 gnome-settings-daemon/GNOME_SettingsDaemon.server.in | 9 ---------
 2 files changed, 5 insertions(+), 9 deletions(-)

commit 777ac6fd50b407e9be0fa7dda3e68472c17a7236
Author: Alex Duggan <aldug@astrolinux.com>
Date:   Wed Jan 7 18:08:24 2004 +0000

    Remove #define _(s) and replaced with #include <glib/gi18n.h> which fixes
    
    2004-01-07  Alex Duggan  <aldug@astrolinux.com>
    
        * theme-method.c:
        Remove #define _(s) and replaced with #include <glib/gi18n.h>
        which fixes bug #130757.  Add a function prototype
        (copied from font-method.c) to fix compiler warning.
    
        * themus-properties-view.c:
        Remove unused variable to fix compiler warning.

 vfs-methods/themus/ChangeLog                | 10 ++++++++++
 vfs-methods/themus/theme-method.c           |  7 ++++++-
 vfs-methods/themus/themus-properties-view.c |  2 --
 3 files changed, 16 insertions(+), 3 deletions(-)

commit 702b10ad0bf948a78ffe3daad85e77c8221af6c4
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Jan 7 01:40:25 2004 +0000

    Updated and revised Portuguese translation.
    
    2004-01-07  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Updated and revised Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 1809 ++++++++++------------------------------------------------
 2 files changed, 320 insertions(+), 1493 deletions(-)

commit 23e170511b6fa300f6f3287cebe56714b41a86a8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 6 18:34:29 2004 +0000

    Updated Norwegian translation.
    
    2004-01-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 54 ++++++++++++++++++++++++++----------------------------
 2 files changed, 30 insertions(+), 28 deletions(-)

commit 2ea1b0212f349a2b4d6f773bd355a4c5747b9fff
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Jan 6 16:25:08 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 53 +++++++++++++++++++++++++++++------------------------
 2 files changed, 33 insertions(+), 24 deletions(-)

commit 354ec81d0451239333a467ed0f4fa7f2239345eb
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Tue Jan 6 09:49:22 2004 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 42 +++++++++++++++++++++++++-----------------
 2 files changed, 29 insertions(+), 17 deletions(-)

commit cf9275bcfe9be9f076a15d720e4acc78ab30b61c
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Tue Jan 6 01:09:26 2004 +0000

    Updated Spanish translation.
    
    2004-01-06  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 58 ++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 42 insertions(+), 20 deletions(-)

commit 265865865b3d0510299da7593430d0c200050891
Author: Muktha <muktha.narayan@wipro.com>
Date:   Mon Jan 5 13:56:21 2004 +0000

    Add accessible name and description. Fixes bug #128377.
    
    2004-01-05  Muktha <muktha.narayan@wipro.com>
    
            * theme-properties.glade: Add accessible name and description.
              Fixes bug #128377.

 capplets/theme-switcher/ChangeLog              | 5 +++++
 capplets/theme-switcher/theme-properties.glade | 4 ++++
 2 files changed, 9 insertions(+)

commit 0de4f5eda9a996426f5aa8e31ada332e6396a6ec
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sun Jan 4 17:30:08 2004 +0000

    Updated Malay translation.
    
    2004-01-04  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay translation.

 po/ChangeLog |   6 +-
 po/ms.po     | 449 +++++++++++++++++------------------------------------------
 2 files changed, 132 insertions(+), 323 deletions(-)

commit 1450a62f22cb6cce055ce2debd77229f29864c72
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Sun Jan 4 13:30:47 2004 +0000

    Updated Norwegian Nynorsk translation.
    
    2004-01-04  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |  4 +++
 po/nn.po     | 82 ++++++++++++++++++++++++------------------------------------
 2 files changed, 37 insertions(+), 49 deletions(-)

commit ee97d42929ef38ca0badbe71e7f61823bf2d456f
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Sun Jan 4 07:58:02 2004 +0000

    *** empty log message ***

 po/hr.po | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit b7f41865aa560e9d7f276799377914bb244db4f7
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Sat Jan 3 19:07:12 2004 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/hr.po     | 329 +++++++++++++++++++++++------------------------------------
 2 files changed, 132 insertions(+), 201 deletions(-)

commit 1b38d169b6a97cb507378320a27869fb64ceb5b7
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Jan 3 16:02:23 2004 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 64 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 42 insertions(+), 26 deletions(-)

commit ddc61dd9b561d842a96aac70478d5faf77a5aff4
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Jan 2 23:51:06 2004 +0000

    missed commit

 po/am.po    |  26 ++-
 po/ar.po    |  26 ++-
 po/az.po    |  30 +++-
 po/be.po    |  30 +++-
 po/bg.po    |  26 ++-
 po/bn.po    |  30 +++-
 po/ca.po    |  39 ++++-
 po/cy.po    |  30 +++-
 po/da.po    |  38 ++++-
 po/de.po    |   2 +-
 po/el.po    |  40 ++++-
 po/en_GB.po |  26 ++-
 po/et.po    |  30 +++-
 po/fa.po    |  26 ++-
 po/fi.po    |  30 +++-
 po/fr.po    |  40 ++++-
 po/ga.po    |  26 ++-
 po/gl.po    |  26 ++-
 po/he.po    |  29 +++-
 po/hi.po    |  26 ++-
 po/hr.po    | 545 +++++++++++++++++++++++++++++++++++++++---------------------
 po/hu.po    |  30 +++-
 po/id.po    |  26 ++-
 po/is.po    |  30 +++-
 po/it.po    |  30 +++-
 po/ko.po    |  30 +++-
 po/lt.po    |  47 +++++-
 po/lv.po    |  26 ++-
 po/mk.po    |  30 +++-
 po/ml.po    |  26 ++-
 po/mn.po    |  30 +++-
 po/ms.po    |  30 +++-
 po/nl.po    |  30 +++-
 po/no.po    |  38 ++++-
 po/pl.po    |  51 +++++-
 po/pt.po    |  30 +++-
 po/pt_BR.po |  40 ++++-
 po/ro.po    |  30 +++-
 po/ru.po    |  47 +++++-
 po/sk.po    |  30 +++-
 po/sl.po    |  30 +++-
 po/sq.po    |  30 +++-
 po/sv.po    |  40 ++++-
 po/ta.po    |  26 ++-
 po/th.po    |  27 ++-
 po/tr.po    |  30 +++-
 po/uk.po    |  26 ++-
 po/vi.po    |  26 ++-
 po/wa.po    |  26 ++-
 po/zh_CN.po |  28 +++-
 po/zh_TW.po |  29 +++-
 51 files changed, 1526 insertions(+), 544 deletions(-)

commit 3cda4ff2b7ebe659fd0225b01b988a4a475644f7
Author: Danilo Šegan <danilo@src.gnome.org>
Date:   Fri Jan 2 21:32:33 2004 +0000

    Updated Serbian translation.

 po/ChangeLog  |  4 +++
 po/sr.po      | 39 ++++++++++++++++++-----------
 po/sr@Latn.po | 80 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 71 insertions(+), 52 deletions(-)

commit c949aac8a29e46480f2f7a1a5d759cbf1dc56b0b
Author: Andrew Sobala <aes@gnome.org>
Date:   Fri Jan 2 19:11:57 2004 +0000

    use GNOMECC_GLADE_DIR. Patch from Marcin Krzyzanowski. Fixes: Bug 126545.
    
    2004-01-02  Andrew Sobala  <aes@gnome.org>
    
        * Makefile.am:
        * themus-theme-applier.c: (main): use GNOMECC_GLADE_DIR. Patch from
        Marcin Krzyzanowski. Fixes: Bug 126545.

 vfs-methods/themus/ChangeLog              | 6 ++++++
 vfs-methods/themus/Makefile.am            | 5 ++++-
 vfs-methods/themus/themus-theme-applier.c | 2 +-
 3 files changed, 11 insertions(+), 2 deletions(-)

commit 012b1218a445fabd63efcd7eaacc4f8f20cac936
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   Fri Jan 2 17:09:03 2004 +0000

    Updated Spanish translation.
    
    2004-01-02  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 36 +++++++++++++++++++++++-------------
 2 files changed, 27 insertions(+), 13 deletions(-)

commit 3263b33e0d99e004cf00608a385335362a0b5469
Author: Updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Fri Jan 2 03:15:40 2004 +0000

    2004-01-02 Updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 ++
 po/ja.po     | 132 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 65 insertions(+), 71 deletions(-)

commit f88b24cdfb788395f2862f29e28b0a6054f7f9ea
Author: Rodney Dawes <dobey@ximian.com>
Date:   Thu Jan 1 22:35:16 2004 +0000

    Require GTK+ 2.3.0 Fix --disable-vfs-methods to work
    
    2004-01-01  Rodney Dawes  <dobey@ximian.com>
    
        * configure.in: Require GTK+ 2.3.0
          Fix --disable-vfs-methods to work

 ChangeLog    | 5 +++++
 configure.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 05b030f47307a5b47d3ebdb721c24d0ff909f828
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Thu Jan 1 12:59:20 2004 +0000

    Updated Norwegian Nynorsk translation.
    
    2004-01-01  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |  4 ++++
 po/nn.po     | 22 +++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 5eab6975fb711160aa549256873b6afa53e35f9c
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu Jan 1 02:20:51 2004 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 41 +++++++++++++++++++++++++++++++++++------
 2 files changed, 39 insertions(+), 6 deletions(-)

commit 156cabf24f223d10be2cd6da90daaa00090e5753
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Dec 31 17:11:31 2003 +0000

    Release 2.5.1.1
    
    
    2003-12-30  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.1.1

 ChangeLog                                      | 4 ++++
 archiver/ChangeLog                             | 4 ++++
 archiver/tests/ChangeLog                       | 4 ++++
 capplets/accessibility/at-properties/ChangeLog | 4 ++++
 capplets/accessibility/keyboard/ChangeLog      | 4 ++++
 capplets/background/ChangeLog                  | 4 ++++
 capplets/common/ChangeLog                      | 4 ++++
 capplets/default-applications/ChangeLog        | 4 ++++
 capplets/desktop-links/ChangeLog               | 4 ++++
 capplets/file-types/ChangeLog                  | 4 ++++
 capplets/font/ChangeLog                        | 4 ++++
 capplets/keybindings/ChangeLog                 | 4 ++++
 capplets/keyboard/ChangeLog                    | 4 ++++
 capplets/mime-type/ChangeLog                   | 4 ++++
 capplets/mouse/ChangeLog                       | 4 ++++
 capplets/network/ChangeLog                     | 4 ++++
 capplets/rollback/ChangeLog                    | 4 ++++
 capplets/sound/ChangeLog                       | 4 ++++
 capplets/theme-switcher/ChangeLog              | 4 ++++
 capplets/ui-properties/ChangeLog               | 4 ++++
 capplets/url-properties/ChangeLog              | 4 ++++
 capplets/windows/ChangeLog                     | 4 ++++
 capplets/wm-properties/ChangeLog               | 4 ++++
 configure.in                                   | 2 +-
 control-center/ChangeLog                       | 4 ++++
 help/ChangeLog                                 | 4 ++++
 libbackground/ChangeLog                        | 4 ++++
 libwindow-settings/ChangeLog                   | 4 ++++
 po/ChangeLog                                   | 4 ++++
 typing-break/ChangeLog                         | 4 ++++
 vfs-methods/fontilus/ChangeLog                 | 4 ++++
 vfs-methods/themus/ChangeLog                   | 4 ++++
 32 files changed, 125 insertions(+), 1 deletion(-)

commit 696b281735168d002e154b78b4431cccc81ef445
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Dec 31 17:02:58 2003 +0000

    don't ship the generated files
    
    
    2003-12-30  Jody Goldberg <jody@gnome.org>
    
        * Makefile.am (EXTRA_DIST) : don't ship the generated files

 gnome-settings-daemon/ChangeLog   | 8 ++++++++
 gnome-settings-daemon/Makefile.am | 6 +++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 561e0962986fc53669dfba4a16ffb18580b631fd
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Tue Dec 30 19:52:45 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 38 ++++++++++++++++++++++++++++++--------
 2 files changed, 34 insertions(+), 8 deletions(-)

commit 425ced6c30d93eadd48b194ee3349a12ef0e4936
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Tue Dec 30 19:51:09 2003 +0000

    Use ngettext for plurals (#125175).

 ChangeLog               | 6 ++++++
 capplets/display/main.c | 2 +-
 capplets/font/main.c    | 8 ++++++--
 3 files changed, 13 insertions(+), 3 deletions(-)

commit cc5e089b88dea1862efd5219b9ec8b9c4b82d55d
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Tue Dec 30 19:49:31 2003 +0000

    croatian translations updated

 po/hr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ef28b02dc31e4d0bad6c5d808298f5365911eebe
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Tue Dec 30 19:38:38 2003 +0000

    croatian translations updated

 po/hr.po | 525 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 195 insertions(+), 330 deletions(-)

commit d18e358c336f8bf6af3545e7b0961ea35e75b1d0
Author: Rodney Dawes <dobey@ximian.com>
Date:   Tue Dec 30 19:28:00 2003 +0000

    Fix border width of example toolbar, fixes #130064
    
    2003-12-30  Rodney Dawes  <dobey@ximian.com>
    
        * gnome-ui-properties.glade: Fix border width of example toolbar,
        fixes #130064

 capplets/ui-properties/ChangeLog                 | 5 +++++
 capplets/ui-properties/gnome-ui-properties.glade | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ca2877bd780f086b60368f975d11d72f71b02b23
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Dec 30 19:12:14 2003 +0000

    post release version bump
    
    
    2003-12-30  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit e5f68bb5bdd954b7d6bd2a96c3bc0712a285a301
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Dec 30 18:30:46 2003 +0000

    Release 2.5.1
    
    
    2003-12-30  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.1

 ChangeLog                                      |   4 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/am.po                                       | 302 ++++++++-----
 po/ar.po                                       | 309 ++++++++-----
 po/az.po                                       | 300 ++++++++-----
 po/be.po                                       | 303 ++++++++-----
 po/bg.po                                       | 304 ++++++++-----
 po/bn.po                                       | 303 ++++++++-----
 po/ca.po                                       | 248 +++++++----
 po/cs.po                                       |   6 +-
 po/cy.po                                       | 303 ++++++++-----
 po/da.po                                       | 122 ++++--
 po/de.po                                       |   3 +-
 po/el.po                                       | 309 ++++++++-----
 po/en_GB.po                                    | 269 +++++++-----
 po/es.po                                       |  49 ++-
 po/et.po                                       | 298 ++++++++-----
 po/fa.po                                       | 308 ++++++++-----
 po/fi.po                                       | 300 ++++++++-----
 po/fr.po                                       | 137 ++++--
 po/ga.po                                       | 296 ++++++++-----
 po/gl.po                                       | 314 ++++++++-----
 po/he.po                                       | 303 ++++++++-----
 po/hi.po                                       | 303 ++++++++-----
 po/hr.po                                       | 301 ++++++++-----
 po/hu.po                                       | 302 ++++++++-----
 po/id.po                                       | 267 ++++++-----
 po/is.po                                       | 300 ++++++++-----
 po/it.po                                       | 302 ++++++++-----
 po/ja.po                                       | 300 ++++++++-----
 po/ko.po                                       | 300 ++++++++-----
 po/lt.po                                       |  66 +--
 po/lv.po                                       | 311 ++++++++-----
 po/mk.po                                       | 305 ++++++++-----
 po/ml.po                                       | 286 +++++++-----
 po/mn.po                                       | 555 ++++++++++++++---------
 po/ms.po                                       | 300 ++++++++-----
 po/nl.po                                       | 304 ++++++++-----
 po/nn.po                                       | 108 +++--
 po/no.po                                       |  51 +--
 po/pl.po                                       |   2 +-
 po/pt.po                                       | 303 ++++++++-----
 po/pt_BR.po                                    |  59 ++-
 po/ro.po                                       | 301 ++++++++-----
 po/ru.po                                       | 584 +++++++++++++++----------
 po/sk.po                                       | 301 ++++++++-----
 po/sl.po                                       | 305 ++++++++-----
 po/sq.po                                       | 300 ++++++++-----
 po/sr.po                                       |  48 +-
 po/sr@Latn.po                                  |  85 ++--
 po/sv.po                                       | 306 ++++++++-----
 po/ta.po                                       | 311 ++++++++-----
 po/th.po                                       | 299 ++++++++-----
 po/tr.po                                       |  12 +-
 po/uk.po                                       | 311 ++++++++-----
 po/vi.po                                       | 301 ++++++++-----
 po/wa.po                                       | 285 +++++++-----
 po/zh_CN.po                                    | 300 ++++++++-----
 po/zh_TW.po                                    | 303 ++++++++-----
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 89 files changed, 9349 insertions(+), 5242 deletions(-)

commit 51aa315c03390f9133fe9a590439b0ba94a13a6d
Author: Diego Gonzalez Gonzalez <diego@pemas.net>
Date:   Tue Dec 30 17:59:41 2003 +0000

    install gnome-settings-daemon in the libexec directory new file that
    
    
    2003-12-19  Diego Gonzalez Gonzalez  <diego@pemas.net>
    
        * Makefile.am: install gnome-settings-daemon in the libexec
          directory
        * GNOME_SettingsDaemon.server.in.in: new file that contains
          the new locations where the gnome-settings-daemon is to be
          found.

 control-center/capplet-dir.c                       |  2 +
 control-center/icon-view.xpm                       | 86 ----------------------
 gnome-settings-daemon/ChangeLog                    |  8 ++
 .../GNOME_SettingsDaemon.server.in                 |  2 +-
 .../GNOME_SettingsDaemon.server.in.in              |  9 +++
 gnome-settings-daemon/Makefile.am                  |  7 +-
 6 files changed, 25 insertions(+), 89 deletions(-)

commit b180972b219b39da44fe865adae48d4f75a6d937
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Dec 29 17:38:01 2003 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 326 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 203 insertions(+), 127 deletions(-)

commit 0ff37530e67705db1af5b8aa28090c9a4b1c7733
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Dec 29 10:05:21 2003 +0000

    Updated Polish translation.
    
    2003-12-29  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |   4 +
 po/pl.po     | 238 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 159 insertions(+), 83 deletions(-)

commit 113e6a3fd70cc6e3a4570e27011369ef9fac0e3d
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Sun Dec 28 23:23:06 2003 +0000

    Some modifications...

 po/tr.po | 60 ++++++++++++++++++++++++------------------------------------
 1 file changed, 24 insertions(+), 36 deletions(-)

commit 33ad2876f48d81e0f33b0b82081b1d541bd6aed3
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Sun Dec 28 21:02:26 2003 +0000

    CVS_SILENT

 po/tr.po | 303 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 195 insertions(+), 108 deletions(-)

commit d8a09c53be09fd59063024435b121af75af8e945
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Fri Dec 26 22:53:14 2003 +0000

    Updated Norwegian Nynorsk translation.
    
    2003-12-27  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |   4 +
 po/nn.po     | 556 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 331 insertions(+), 229 deletions(-)

commit e4adf035f0e8be2d6b9d7524606371714e374c7b
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Dec 23 20:33:53 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 62 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 42 insertions(+), 24 deletions(-)

commit f90e83e05320513e61fde4f238a3d169755adaa0
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Sun Dec 21 22:00:00 2003 +0000

    Synced with recent name changes.
    
    2003-12-21  Danilo Šegan  <dsegan@gmx.net>
    
        * POTFILES.in: Synced with recent name changes.

 po/ChangeLog   |  4 ++++
 po/POTFILES.in | 11 +++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 78bb0f52cd323aa3a75ef23c15f18751060e61ea
Author: Arafat Medini <lumina@silverpen.de>
Date:   Sat Dec 20 13:26:08 2003 +0000

    Updated Arabic translation
    
    
    2003-12-20  Arafat Medini <lumina@silverpen.de>
    
            * ar.po: Updated Arabic translation

 po/ChangeLog |    4 +
 po/ar.po     | 1281 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 591 insertions(+), 694 deletions(-)

commit ee2dc3c919154e27d06b68f4b1ee87ebe592ee20
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Dec 17 16:27:14 2003 +0000

    Use gtk_icon_theme_get_default
    
    
    2003-12-17  Jody Goldberg <jody@gnome.org>
    
        * capplet-dir.c (find_icon) : Use gtk_icon_theme_get_default

 control-center/ChangeLog     | 4 ++++
 control-center/capplet-dir.c | 5 +----
 2 files changed, 5 insertions(+), 4 deletions(-)

commit 77529051edaf8a1b65ba80170a1ac6c6d6503108
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Dec 16 22:07:05 2003 +0000

    Use GtkIconTheme rather than GnomeIconTheme, and return a Pixbuf directly.
    
    
    2003-12-16  Jody Goldberg <jody@gnome.org>
    
        * capplet-dir.c (find_icon) : Use GtkIconTheme rather than
          GnomeIconTheme, and return a Pixbuf directly.
    
        * capplet-dir-view-list.c (sidebar_populate) : Just use the icon
          directly.
        (list_populate) : ditto.
        * capplet-dir-view.c (capplet_dir_view_load_dir) : ditto.
    
    2003-12-15  Jody Goldberg <jody@gnome.org>
    
        * gnomecc.desktop.in : Use themed icon
        * capplet-dir.c (find_icon) : Support icon themes
        * capplet-dir-view-list.c (list_create) : make icons wider and less
        ugly.

 control-center/ChangeLog               | 10 +++++++++
 control-center/capplet-dir-view-list.c | 13 ++++--------
 control-center/capplet-dir-view.c      |  8 +++----
 control-center/capplet-dir.c           | 38 +++++++++-------------------------
 control-center/capplet-dir.h           |  3 +--
 5 files changed, 28 insertions(+), 44 deletions(-)

commit 95c11682927c34ac2ff8856131fd4cfcf2affdb0
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Dec 16 21:38:53 2003 +0000

    remove the png so that it can theme.
    
    
    2003-12-16  Jody Goldberg <jody@gnome.org>
    
        * capplets/file-types/file-types.desktop.in : remove the png so that
          it can theme.
    
        * capplets/desktop-links/Makefile.am : remove .in.in path kludge.
        * capplets/desktop-links/Accessibility.directory.in :
        * capplets/desktop-links/Advanced.directory.in : ditto.
    
        * capplets/background/Makefile.am : no need to install capplet icon
          anymore its part of the theme.
        * capplets/default-applications/Makefile.am :
        * capplets/font/Makefile.am  :
        * capplets/keybindings/Makefile.am :
        * capplets/keyboard/Makefile.am :
        * capplets/mouse/Makefile.am :
        * capplets/network/Makefile.am :
        * capplets/sound/Makefile.am :
        * capplets/theme-switcher/Makefile.am :
        * capplets/ui-properties/Makefile.am :
        * capplets/windows/Makefile.am :
    
        * capplets/accessibility/at-properties/Makefile.am :
        * capplets/accessibility/keyboard/Makefile.am :
    
        * capplets/background/background.desktop.in : Use the themed icon.
        * capplets/default-applications/default-applications.desktop.in :
        * capplets/font/font-properties.desktop.in :
        * capplets/keybindings/keybinding.desktop.in :
        * capplets/keyboard/keyboard.desktop.in :
        * capplets/mouse/gnome-settings-mouse.desktop.in :
        * capplets/network/gnome-network-preferences.desktop.in :
        * capplets/sound/gnome-settings-sound.desktop.in :
        * capplets/theme-switcher/gtk-theme-selector.desktop.in :
        * capplets/ui-properties/gnome-ui-properties.desktop.in :
        * capplets/windows/window-properties.desktop.in :
        * capplets/accessibility/at-properties/at-properties.desktop.in :
        * capplets/accessibility/keyboard/accessibility-keyboard.desktop.in :

 ChangeLog                                          |  39 ++++++++++++++
 NEWS                                               |   4 ++
 README                                             |  22 +-------
 capplets/accessibility/at-properties/Makefile.am   |   9 +---
 .../at-properties/at-properties.desktop.in         |   2 +-
 capplets/accessibility/keyboard/Makefile.am        |   8 +--
 .../keyboard/accessibility-keyboard.desktop.in     |   2 +-
 capplets/background/Makefile.am                    |   8 +--
 capplets/background/background-capplet.png         | Bin 3977 -> 0 bytes
 capplets/background/background.desktop.in          |   2 +-
 capplets/default-applications/Makefile.am          |   8 +--
 .../default-applications.desktop.in                |   2 +-
 capplets/desktop-links/Accessibility.directory.in  |   5 ++
 .../desktop-links/Accessibility.directory.in.in    |   5 --
 capplets/desktop-links/Advanced.directory.in       |   5 ++
 capplets/desktop-links/Advanced.directory.in.in    |   5 --
 capplets/desktop-links/Makefile.am                 |  21 +-------
 capplets/file-types/file-types.desktop.in          |   2 +-
 capplets/font/Makefile.am                          |   8 +--
 capplets/font/font-capplet.png                     | Bin 646 -> 0 bytes
 capplets/font/font-properties.desktop.in           |   2 +-
 capplets/keybindings/Makefile.am                   |   6 +--
 capplets/keybindings/keybinding.desktop.in         |   2 +-
 capplets/keybindings/keyboard-shortcut.png         | Bin 1492 -> 0 bytes
 capplets/keyboard/Makefile.am                      |   9 ++--
 capplets/keyboard/keyboard-capplet.png             | Bin 3385 -> 0 bytes
 capplets/keyboard/keyboard.desktop.in              |   2 +-
 capplets/mouse/.cvsignore                          |   2 +-
 capplets/mouse/Makefile.am                         |  10 +---
 capplets/mouse/gnome-settings-mouse.desktop.in     |  13 +++++
 capplets/mouse/mouse-capplet.png                   | Bin 3047 -> 0 bytes
 capplets/mouse/mouse.desktop.in                    |  13 -----
 capplets/network/Makefile.am                       |   5 +-
 capplets/network/gnome-network-capplet.png         | Bin 4118 -> 0 bytes
 .../network/gnome-network-preferences.desktop.in   |   2 +-
 capplets/sound/.cvsignore                          |   2 +-
 capplets/sound/Makefile.am                         |   8 +--
 capplets/sound/gnome-settings-sound.desktop.in     |  13 +++++
 capplets/sound/sound-capplet.png                   | Bin 4655 -> 0 bytes
 capplets/sound/sound.desktop.in                    |  13 -----
 capplets/theme-switcher/Makefile.am                |   5 +-
 .../theme-switcher/gtk-theme-selector.desktop.in   |   2 +-
 capplets/ui-properties/.cvsignore                  |   2 +-
 capplets/ui-properties/Makefile.am                 |  12 ++---
 capplets/ui-properties/behavior-capplet.png        | Bin 2227 -> 0 bytes
 capplets/ui-properties/behavior.desktop.in         |  13 -----
 capplets/ui-properties/behavior.desktop.in.in      |   7 ---
 .../ui-properties/gnome-ui-properties.desktop.in   |  13 +++++
 capplets/windows/Makefile.am                       |  11 +---
 capplets/windows/window-capplet.png                | Bin 3047 -> 0 bytes
 capplets/windows/window-properties.desktop.in      |   2 +-
 control-center/.cvsignore                          |   2 +
 control-center/ChangeLog                           |  11 ++++
 control-center/capplet-dir-view-list.c             |   2 +-
 control-center/capplet-dir.c                       |  58 ++++++++-------------
 control-center/gnomecc.desktop.in                  |   2 +-
 56 files changed, 168 insertions(+), 233 deletions(-)

commit 89f733397508588b40b3cba84c8b8da04fcb1b66
Author: Francisco F. Serrador <serrador@cvs.gnome.org>
Date:   Mon Dec 15 09:57:08 2003 +0000

    Updated Spanish translation.
    
    2003-12-15  Francisco F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 27 ++++++++++++++++++++++-----
 2 files changed, 26 insertions(+), 5 deletions(-)

commit 239261a75c590cb52c3bd9fd35cf2a72e6286abc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Dec 14 19:08:37 2003 +0000

    Updated Norwegian translation.
    
    2003-12-14  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 +
 po/no.po     | 261 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 170 insertions(+), 95 deletions(-)

commit 6aeb9700306f8ccd68ce429cf5dc2ce360b50d5f
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Sun Dec 14 11:04:50 2003 +0000

    Updated Serbian translation.
    
    2003-12-14  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.
    
        * POTFILES.in: Added capplets/theme-switcher/gnome-theme-installer.c.

 po/ChangeLog   |  6 ++++++
 po/POTFILES.in |  1 +
 po/sr.po       | 23 +++++++++++++++++++----
 po/sr@Latn.po  | 23 +++++++++++++++++++----
 4 files changed, 45 insertions(+), 8 deletions(-)

commit 924cfef3d2eb21596de56c9ed2a6155ca2a1ec33
Author: Francisco F. Serrador <serrador@cvs.gnome.org>
Date:   Sat Dec 13 01:02:14 2003 +0000

    es.po: Updated Spanish translation
    
    2003-12-13  Francisco F. Serrador <serrador@cvs.gnome.org>
    
        es.po: Updated Spanish translation

 po/ChangeLog |   4 +
 po/es.po     | 388 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 224 insertions(+), 168 deletions(-)

commit 91ec32a29459f290ea06937ddf29da8a44885bdc
Author: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>
Date:   Fri Dec 12 16:59:09 2003 +0000

    Updated Brazilian Portuguese translation done by Tiago Cardoso Menezes
    
    2003-12-12  Gustavo Maciel Dias Vieira  <gdvieira@zaz.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation done by Tiago
            Cardoso Menezes <zion@via-rs.net>.

 po/ChangeLog |   7 +-
 po/pt_BR.po  | 266 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 169 insertions(+), 104 deletions(-)

commit c344b19e4907bcc44790ab20cb405e058076fa32
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Dec 12 16:57:19 2003 +0000

    Update Czech translation

 po/ChangeLog | 4 ++++
 po/cs.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 9d1a824b3bc8e6275855a9aa11bc7b4aa57cdcfd
Author: Kaushal Kumar <kaushal.kumar@wipro.com>
Date:   Thu Dec 11 09:47:55 2003 +0000

    Fixed conflict in Alt-C mnemonic. Bugzilla bug #125719.
    
    2003-12-09  Kaushal Kumar  <kaushal.kumar@wipro.com>
    
            * capplets/display/main.c (create_dialog):
              Fixed conflict in Alt-C mnemonic.
              Bugzilla bug #125719.

 ChangeLog               | 6 ++++++
 capplets/display/main.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 501c6feb44941db960fbf177f0776994787a0ed3
Author: Francisco F. Serrador <serrador@cvs.gnome.org>
Date:   Wed Dec 10 22:17:23 2003 +0000

    Updated Spanish (es) translation
    
    2003-12-10  Francisco F. Serrador  <serrador@cvs.gnome.org>
    
        * es.po: Updated Spanish (es) translation

 po/ChangeLog |   4 ++
 po/es.po     | 159 +++++++++++++++++++++++++----------------------------------
 2 files changed, 72 insertions(+), 91 deletions(-)

commit e19006c7cc784b4a0fff4192a96f5c80b5f1b08a
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Mon Dec 8 11:29:35 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 156 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 82 insertions(+), 78 deletions(-)

commit 3a16f7d030008e7874f5e446fd8e36643366a1f5
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Sat Dec 6 00:39:25 2003 +0000

    Updated Thai (th) translation.
    
    2003-12-05  Paisa Seeluangsawat  <paisa@users.sf.net>
    
            * th.po: Updated Thai (th) translation.

 po/ChangeLog |   4 ++
 po/th.po     | 215 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 105 insertions(+), 114 deletions(-)

commit 9b3dcfc82819d2d2528f7f4baa9d674360542eb7
Author: Srinivasa Ragavan <sragavan@src.gnome.org>
Date:   Fri Dec 5 05:20:39 2003 +0000

    Fix for #127371, reporting invalid and null file locations

 capplets/theme-switcher/ChangeLog               |  5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 28 ++++++++++++++++++++++---
 2 files changed, 30 insertions(+), 3 deletions(-)

commit f24fdfa8e831b9ba9a85bbb5074413760f499a93
Author: Srinivasa Ragavan <sragavan@src.gnome.org>
Date:   Fri Dec 5 04:35:15 2003 +0000

    Fix for bug #116224, infinite loop when installing themes from ~/.themes.

 capplets/theme-switcher/ChangeLog               |  5 +++++
 capplets/theme-switcher/gnome-theme-installer.c | 28 +++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

commit 5f6ff6ffcf439352303989036afaedc3658826f8
Author: Zygimantas Berucka <uid0@tuxfamily.org>
Date:   Thu Dec 4 15:49:55 2003 +0000

    Updated Lithuanian translation.
    
    2003-12-04  Zygimantas Berucka  <uid0@tuxfamily.org>
    
    * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 289 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 186 insertions(+), 107 deletions(-)

commit d3869750c92f882ce7c6a6abd5e3ecd86ea57e0f
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Wed Dec 3 10:46:29 2003 +0000

    Updated Mongolian translation

 po/ChangeLog |   4 +
 po/mn.po     | 792 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 321 insertions(+), 475 deletions(-)

commit d263a970dca607716ce49c53e1c7311b902c1ec1
Author: Muktha <muktha.narayan@wipro.com>
Date:   Wed Dec 3 05:00:26 2003 +0000

    Added the label-for/by relation. Fixes #127304.
    
    2003-12-03  Muktha  <muktha.narayan@wipro.com>
    
            * file-types-properties.glade: Added the label-for/by relation.
            Fixes #127304.

 capplets/file-types/ChangeLog                   |  5 +++++
 capplets/file-types/file-types-properties.glade | 18 ++++++++++++++++++
 2 files changed, 23 insertions(+)

commit acd03142702b596262f0cd61b0792f5e1de6f184
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Wed Dec 3 03:50:09 2003 +0000

    Updated Serbian translation.
    
    2003-12-03  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 20 ++++++++++++++++++--
 po/sr@Latn.po | 20 ++++++++++++++++++--
 3 files changed, 40 insertions(+), 4 deletions(-)

commit 679591993389a38ab7be5e7bce522c95adf0f559
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Tue Dec 2 00:15:27 2003 +0000

    We should use libraries from the build directory, not from any place ldconfig knows of - otherwise we get troubles if control-center is already installed on the build system

 gnome-settings-daemon/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bc626cf6c6baa49abd444745cf01f597a5d1d280
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Dec 1 22:07:07 2003 +0000

    No complains on virtual modules

 .cvsignore | 2 ++
 1 file changed, 2 insertions(+)

commit c5eee418ef2e03edd603b7ef23460750070c2694
Author: Sivaiah Nallagatla <snallagatla@novell.com>
Date:   Mon Dec 1 04:13:22 2003 +0000

    Patch to remeber custome program configured for Internet Services. #123976
    
    
    2003-12-01  Sivaiah Nallagatla  <snallagatla@novell.com>
    
            * service-info.c (service_info_save): Patch to remeber
            custome program configured for Internet Services. #123976 in b.g.o

 capplets/file-types/ChangeLog      | 5 +++++
 capplets/file-types/service-info.c | 1 +
 2 files changed, 6 insertions(+)

commit 5bbcfcb60646cde6b20cbfb6aa56c428ec5903a1
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Nov 30 01:52:28 2003 +0000

    desktop_gnome_peripherals_keyboard_xkb.schemas.in added

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit a1ebf641823fe8b5f01c377183914d424625d5ca
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Nov 30 01:48:04 2003 +0000

    Registering xkb-related GConf keys gives some advantages. The main one is the default configuration - so users wont start with nasty dialog boxes.

 schemas/Makefile.am                                |  3 +-
 ...sktop_gnome_peripherals_keyboard_xkb.schemas.in | 76 ++++++++++++++++++++++
 2 files changed, 78 insertions(+), 1 deletion(-)

commit 8ec1ffec3d879555e34292f17eac13a3e00770bf
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sat Nov 29 17:43:59 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 422 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 240 insertions(+), 186 deletions(-)

commit 5ced7f4fb46504fe0455bed1d8626dd2f6dc8759
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Thu Nov 27 05:27:52 2003 +0000

    Updated Serbian translation.
    
    2003-11-27  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 17 ++++++++++-------
 po/sr@Latn.po | 17 ++++++++++-------
 3 files changed, 24 insertions(+), 14 deletions(-)

commit 629e978e47dcb30fd31c6ec23de4b24ac9ebb31c
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Thu Nov 27 04:03:36 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |   5 ++
 po/ru.po     | 258 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 140 insertions(+), 123 deletions(-)

commit 453277eede9a2f357003e01d046c5d2e354a3071
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Thu Nov 27 00:26:17 2003 +0000

    Now all trees are sorted. It really looks much better

 capplets/keyboard/gnome-keyboard-properties-xkb.h   |  8 ++++----
 capplets/keyboard/gnome-keyboard-properties-xkblt.c | 19 +++++++++++++++++--
 capplets/keyboard/gnome-keyboard-properties-xkbot.c |  2 ++
 3 files changed, 23 insertions(+), 6 deletions(-)

commit faa09735fdf76bc521dd5e34b920e3a61176a61c
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Nov 26 23:19:45 2003 +0000

    A bit more correct behaviour during the first launch

 capplets/keyboard/gnome-keyboard-properties-xkb.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 49557bf90893baf8da8186ad85e0eb67e91dcd8f
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Nov 26 22:48:59 2003 +0000

    Probably a bit less of troubles. At least we do the proper properties backup now.

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 66cb02bd8c29836627ab71efb6899715d17e86f1
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Nov 26 10:15:04 2003 +0000

    a bit better messaging

 gnome-settings-daemon/gnome-settings-keyboard-xkb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9e9c48427d6df3696ec1742e4d9078177aff47f1
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Mon Nov 24 01:51:04 2003 +0000

    Updated Serbian translation.
    
    2003-11-24  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 68 ++++++++++++++++++++++++++++++++++++++++-------------------
 po/sr@Latn.po | 68 ++++++++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 96 insertions(+), 44 deletions(-)

commit e883ff44db445a6732cf67cae27960c62b8d8087
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Nov 23 23:59:08 2003 +0000

    models now are kind of sorted

 capplets/keyboard/gnome-keyboard-properties-xkb.c | 29 ++++++++++++++++++-----
 1 file changed, 23 insertions(+), 6 deletions(-)

commit bdd53c2a95ad0d2de042a3e7e84266c55d0ebfb6
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Nov 23 02:50:42 2003 +0000

    adding  gnome-settings-daemon/gnome-settings-keyboard-xkb.c

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 11f723907c381c2da5acdb6452ee396ec6906f3e
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Sun Nov 23 02:44:21 2003 +0000

    Daemon probably should not show popups - but I see no choice

 .../gnome-settings-keyboard-xkb.c                  | 36 ++++++++++++++++++++--
 1 file changed, 34 insertions(+), 2 deletions(-)

commit 5e4334174602918ae293caf6c1e50f351a7c8b3f
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Fri Nov 21 14:48:47 2003 +0000

    Remove translatable radiobutton strings, #119288
    
    Fri Nov 21 09:42:19 2003  Jonathan Blandford  <jrb@gnome.org>
    
            * background-properties.glade: Remove translatable radiobutton
            strings, #119288

 capplets/background/ChangeLog                   |  5 +++++
 capplets/background/background-properties.glade | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 788ac25c719c0b32cab137c16c9da849b638c497
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Thu Nov 20 23:38:27 2003 +0000

    Updated French translation.

 po/ChangeLog |   5 ++
 po/fr.po     | 203 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 124 insertions(+), 84 deletions(-)

commit d5eeadd0cb57c6d5b4d774062b46875bb848896e
Author: Ole Laursen <olau@hardworking.dk>
Date:   Thu Nov 20 19:58:39 2003 +0000

    Updated Danish translation.
    
    2003-11-20  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 176 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 107 insertions(+), 73 deletions(-)

commit 93e4f8e2493e4cee6faf4f9d02f3ee140dca1cf8
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Thu Nov 20 05:27:44 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |   5 +
 po/ru.po     | 752 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 309 insertions(+), 448 deletions(-)

commit c44483b2e4f716e06a9c6a5343268b07f2911516
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Wed Nov 19 17:25:47 2003 +0000

    Updated Serbian translation.
    
    2003-11-19  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 +++
 po/sr.po      | 90 +++++++++++++++++++++++++++++++++--------------------------
 po/sr@Latn.po | 90 +++++++++++++++++++++++++++++++++--------------------------
 3 files changed, 106 insertions(+), 78 deletions(-)

commit e477e1c2b0146bedcebe0e4bfa39e4a13126d70a
Author: Sivaiah Nallagatla <snallagatla@novell.com>
Date:   Wed Nov 19 06:00:45 2003 +0000

    gnome-mouse-properties.c (delay_value_changed_cb) (setup_dialog): patch
    
     2003-11-19 Sivaiah Nallagatla <snallagatla@novell.com>
     gnome-mouse-properties.c
     (delay_value_changed_cb)
     (setup_dialog): patch for fixing showing double click time out value initially. #119859 in bugzilla.gnome.org

 capplets/mouse/gnome-mouse-properties.c | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

commit 5f2e3042d908d98fe3f35fb5ef1e519846bdbcb4
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Nov 18 17:23:06 2003 +0000

    Patch from Bastien Nocera to to handle keycodes as well as keysyms.
    
    Tue Nov 18 12:23:26 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * eggcellrendererkeys.[ch]: Patch from Bastien Nocera to to handle
        keycodes as well as keysyms.
    
        * eggaccelerators.[ch]: handle keycodes.
    
        * gnome-keybinding-properties.c: handle keycodes.

 capplets/keybindings/ChangeLog                     |  9 +++
 capplets/keybindings/eggaccelerators.c             | 58 +++++++++++++--
 capplets/keybindings/eggaccelerators.h             |  2 +
 capplets/keybindings/eggcellrendererkeys.c         | 75 +++++++++++++++----
 capplets/keybindings/eggcellrendererkeys.h         | 15 ++--
 capplets/keybindings/gnome-keybinding-properties.c | 86 +++++++++++++++++++---
 6 files changed, 207 insertions(+), 38 deletions(-)

commit ec488e37c08c7e783a11b8d556c0389b58fd204d
Author: Padraig O'Briain <padraigo@src.gnome.org>
Date:   Tue Nov 18 16:54:53 2003 +0000

    Fix typo in previous commit. label76 should be label78.
    
        * gnome-accessibility-keyboard-properties.glade:  Fix typo in previous
        commit. label76 should be label78.

 .../keyboard/gnome-accessibility-keyboard-properties.glade            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d54bcdbb5c152f586dbe367f47ae9abbe2a04643
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Tue Nov 18 16:45:27 2003 +0000

    Add atk relations. Fixes bug #126718
    
    2003-11-18  Padraig O'Briain <padraig.obriain@sun.com>
    
        * gnome-accessibility-keyboard-properties.glade:  Add atk relations.
        Fixes bug #126718

 capplets/accessibility/keyboard/ChangeLog          |  5 +++
 .../gnome-accessibility-keyboard-properties.glade  | 40 ++++++++++++++++++++++
 2 files changed, 45 insertions(+)

commit 6fe992467f672d118b86fc9c16409d865fbc9cee
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Mon Nov 17 13:34:30 2003 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 ++
 po/ca.po     | 139 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 82 insertions(+), 61 deletions(-)

commit 86ebff6da29e2804d93144dbcce5b97bf7c5375c
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon Nov 17 05:16:41 2003 +0000

    Patch from snallagatla@novell.com to fix a crash.
    
    Mon Nov 17 00:13:07 2003  Jonathan Blandford  <jrb@gnome.org>
    
            * service-edit-dialog.c (populate_app_list): Patch from
            snallagatla@novell.com to fix a crash.

 capplets/file-types/ChangeLog             | 5 +++++
 capplets/file-types/service-edit-dialog.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 09054ab196353b96b5e7700e3530557b0207f4c9
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Mon Nov 17 01:46:57 2003 +0000

    I would mark it as first fully functional version of the capplet (well, without preview - which is another story

 capplets/keyboard/Makefile.am                      |   1 +
 capplets/keyboard/gnome-keyboard-properties-xkb.c  |  14 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  22 +-
 .../keyboard/gnome-keyboard-properties-xkblt.c     |  47 ++-
 .../keyboard/gnome-keyboard-properties-xkbot.c     | 388 +++++++++++++++++++++
 capplets/keyboard/gnome-keyboard-properties.glade  |   8 +-
 6 files changed, 443 insertions(+), 37 deletions(-)

commit 78c5037f8673e45bb05fa74e41ea13e58d21ce54
Author: Artur Flinta <aflinta@src.gnome.org>
Date:   Sat Nov 15 15:58:19 2003 +0000

    Updated Polish translation

 po/pl.po | 113 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 68 insertions(+), 45 deletions(-)

commit b8076aaa7ed0c894977e90c45538b621b12e6e67
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Fri Nov 14 00:11:03 2003 +0000

    Updated Serbian translation.
    
    2003-11-14  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      |  79 ++++++++++++++++++++++++---------------
 po/sr@Latn.po | 116 +++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 121 insertions(+), 78 deletions(-)

commit bf55e346924c8c0192787f082b614394e52feb68
Author: Marco Pesenti Gritti <marco@gnome.org>
Date:   Thu Nov 13 09:27:15 2003 +0000

    Add a setting for gtk icon theme.
    
    2003-11-13  Marco Pesenti Gritti  <marco@gnome.org>
    
            * gnome-settings-xsettings.c:
    
            Add a setting for gtk icon theme.

 gnome-settings-daemon/ChangeLog                  | 6 ++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 8 insertions(+)

commit 3cd10b9aa047af827cf4fb958cd7f856f496bad0
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Nov 12 22:00:55 2003 +0000

    First working elements of the xkb layout configuration in the keyboard capplet

 capplets/keyboard/Makefile.am                      |   9 +-
 capplets/keyboard/gnome-keyboard-properties-xkb.c  | 188 ++++++++
 capplets/keyboard/gnome-keyboard-properties-xkb.h  |  46 ++
 .../keyboard/gnome-keyboard-properties-xkblt.c     | 371 ++++++++++++++++
 capplets/keyboard/gnome-keyboard-properties.c      |   4 +
 capplets/keyboard/gnome-keyboard-properties.glade  | 473 +++++++++++++++++++++
 6 files changed, 1088 insertions(+), 3 deletions(-)

commit 2c669cae7e7f0af43e4d899022851bbccd591d25
Author: Sergey V. Udaltsov <svu@src.gnome.org>
Date:   Wed Nov 12 21:58:51 2003 +0000

    now g-s-d knows how to configure XKB

 gnome-settings-daemon/Makefile.am                  |  6 +-
 gnome-settings-daemon/gnome-settings-daemon.c      |  7 ++
 .../gnome-settings-keyboard-xkb.c                  | 82 ++++++++++++++++++++++
 .../gnome-settings-keyboard-xkb.h                  | 34 +++++++++
 4 files changed, 128 insertions(+), 1 deletion(-)

commit 66b0089fce521894da5f8439536e6b9e5fe90752
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Nov 12 21:12:39 2003 +0000

    always dist gswitchit.pc.in to keep automake happy. There is no
    
    2003-11-12  Jody Goldberg <jody@gnome.org>
    
        * Makefile.am (EXTRA_DIST) : always dist gswitchit.pc.in to keep
          automake happy.  There is no significant downside to it.
    
    2003-11-12  Jody Goldberg <jody@gnome.org>
    
        * Makefile.am : add a libgswitchit subdir
    
        * configure.in : Add a test to ensure the new virtual include of
          libgswitchit is in place
        * configure.in : define LIBXKLAVIER_*
        * configure.in : include libgswitchit in SUBDIRS

 ChangeLog                         |   9 ++
 Makefile.am                       |   2 +-
 configure.in                      |  20 ++++
 gnome-settings-daemon/Makefile.am |   3 +-
 po/am.po                          |   4 +-
 po/ar.po                          |   4 +-
 po/az.po                          |   4 +-
 po/be.po                          |   4 +-
 po/bg.po                          |   4 +-
 po/bn.po                          |   4 +-
 po/ca.po                          |   4 +-
 po/cs.po                          |   4 +-
 po/cy.po                          |   4 +-
 po/da.po                          |   4 +-
 po/de.po                          |   4 +-
 po/el.po                          |  87 ++++++++++------
 po/en_GB.po                       |   4 +-
 po/es.po                          |   4 +-
 po/et.po                          |   4 +-
 po/fa.po                          |   4 +-
 po/fi.po                          |   4 +-
 po/fr.po                          |   4 +-
 po/ga.po                          |   4 +-
 po/gl.po                          |   4 +-
 po/he.po                          |   4 +-
 po/hi.po                          |   4 +-
 po/hr.po                          | 208 +++++++++++++++++++++++---------------
 po/hu.po                          |   4 +-
 po/id.po                          |   4 +-
 po/is.po                          |   4 +-
 po/it.po                          |   4 +-
 po/ja.po                          |   4 +-
 po/ko.po                          |   4 +-
 po/lt.po                          |   4 +-
 po/lv.po                          |   4 +-
 po/mk.po                          |   4 +-
 po/ml.po                          |   4 +-
 po/mn.po                          |   4 +-
 po/ms.po                          |   4 +-
 po/nl.po                          |   4 +-
 po/nn.po                          |  51 ++++++----
 po/no.po                          |   4 +-
 po/pl.po                          |   4 +-
 po/pt.po                          |   4 +-
 po/pt_BR.po                       |   4 +-
 po/ro.po                          |   4 +-
 po/ru.po                          |   4 +-
 po/sk.po                          |   4 +-
 po/sl.po                          |   4 +-
 po/sq.po                          |   4 +-
 po/sr.po                          |   4 +-
 po/sr@Latn.po                     |  41 ++++----
 po/sv.po                          |   4 +-
 po/ta.po                          |   4 +-
 po/th.po                          |   4 +-
 po/tr.po                          |   4 +-
 po/uk.po                          |   4 +-
 po/vi.po                          |   4 +-
 po/wa.po                          |   4 +-
 po/zh_CN.po                       |   4 +-
 po/zh_TW.po                       |   2 +-
 61 files changed, 372 insertions(+), 259 deletions(-)

commit 12da38c18687ce481c9f746dd41a7cd806872d99
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Wed Nov 12 12:28:52 2003 +0000

    Updated the Greek translation

 po/ChangeLog |   4 ++
 po/el.po     | 165 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 77 insertions(+), 92 deletions(-)

commit 476ac6aba153047cfae139813d632bf220e54e93
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   Mon Nov 10 18:00:05 2003 +0000

    croatian translations updated

 po/hr.po | 2573 ++++++++++++++++++--------------------------------------------
 1 file changed, 728 insertions(+), 1845 deletions(-)

commit ee8f142248428aea4cd356fd8bd804f90cbaec70
Author: Åsmund Skjæveland <aasmunds@fys.uio.no>
Date:   Mon Nov 10 13:29:34 2003 +0000

    Updated Norwegian Nynorsk translation.
    
    2003-11-10  Åsmund Skjæveland  <aasmunds@fys.uio.no>
    
        * nn.po: Updated Norwegian Nynorsk translation.

 po/ChangeLog |    4 +
 po/nn.po     | 1359 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 616 insertions(+), 747 deletions(-)

commit 44b039bea1d804713ecd74b8c7a3411a2b52dabc
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri Nov 7 19:25:27 2003 +0000

    Updated traditional Chinese translation. Mark wrong entry as fuzzy (msgfmt
    
        * zh_TW.po: Updated traditional Chinese translation.
        * is.po: Mark wrong entry as fuzzy (msgfmt check failed).

 po/ChangeLog |  5 +++++
 po/is.po     |  2 +-
 po/zh_TW.po  | 46 ++++++++++++++++++++--------------------------
 3 files changed, 26 insertions(+), 27 deletions(-)

commit 6499391e0c4a604bd2338552549abbd69cd8b9af
Author: Padraig O'Briain <padraig.obriain@sun.com>
Date:   Thu Nov 6 08:48:11 2003 +0000

    Correct mnemonic widget for Window title font. Move declaration of
    
    2003-11-06  Padraig O'Briain <padraig.obriain@sun.com>
    
        * font-properties.glade: Correct mnemonic widget for Window title font.
        Move declaration of GnomeFontPicker for applications to immediately
        after declaration of the label. This fixes bug #125689.

 capplets/font/ChangeLog             |  6 ++++++
 capplets/font/font-properties.glade | 40 ++++++++++++++++++-------------------
 2 files changed, 26 insertions(+), 20 deletions(-)

commit ebb3a64d2028918d30848e18d4b082da34cd3f71
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Nov 5 17:29:16 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=125970 make x extension check
    
    
    2003-11-05  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=125970
        * configure.in : make x extension check more robust
    
    2003-11-03  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=120842
        * gnome-accessibility-keyboard-properties.c : older xservers require
          X11/Xlib.h too, its not sun specific.

 ChangeLog                                                         | 5 +++++
 NEWS                                                              | 8 ++++++++
 capplets/accessibility/keyboard/ChangeLog                         | 6 ++++++
 .../keyboard/gnome-accessibility-keyboard-properties.c            | 4 +---
 configure.in                                                      | 7 ++++++-
 5 files changed, 26 insertions(+), 4 deletions(-)

commit 03fb1e0f27ae05754e8aa1b00929ede817f36540
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   Tue Nov 4 00:47:53 2003 +0000

    Dutch translation updated by Vincent van Adrighem.
    
    2003-11-04   Vincent van Adrighem  <adrighem@gnome.org>
    
        * nl.po: Dutch translation updated by Vincent van Adrighem.

 po/ChangeLog |  4 ++++
 po/nl.po     | 26 ++++++++++++--------------
 2 files changed, 16 insertions(+), 14 deletions(-)

commit e9ade8dc579be5374d8a01d17068887ce29cbf81
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Sat Nov 1 19:09:36 2003 +0000

    Fixed formatting errors. Submitted by David O'Callaghan
    
    2003-11-01  Paul Duffy <dubhthach@frink.nuigalway.ie>
    
            * ga.po: Fixed formatting errors. Submitted by
                     David O'Callaghan <david.ocallaghan@cs.tcd.ie>

 po/ChangeLog |   5 ++
 po/ga.po     | 255 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 132 insertions(+), 128 deletions(-)

commit dcaf797fd29900ee10ce88170ce2f3c547c958e7
Author: KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>
Date:   Sat Nov 1 07:59:30 2003 +0000

    Updated Japanese translation.
    
    2003-11-01  KAMAGASAKO Masatoshi  <emerald@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation.

 po/ChangeLog |  4 ++++
 po/ja.po     | 36 +++++++++++++++++-------------------
 2 files changed, 21 insertions(+), 19 deletions(-)

commit 62cf392281a7cb0ee84d8a4637b04f06d831ef48
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Thu Oct 30 02:50:43 2003 +0000

    Updated Serbian translation.
    
    2003-10-30  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 22 ++++++++--------------
 po/sr@Latn.po | 59 +++++++++++++++++++++++++----------------------------------
 3 files changed, 37 insertions(+), 48 deletions(-)

commit 7d58709d6243d25ff8286ccccf15d269a346a842
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 23:36:40 2003 +0000

    post release bump
    
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f5ba169611addb6c1387a49777465bece57024db
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 22:32:08 2003 +0000

    Release 2.5.0
    
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        * Release 2.5.0

 ChangeLog                                      |   8 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 configure.in                                   |   2 +-
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/am.po                                       | 215 ++++++++++++----------
 po/ar.po                                       | 219 ++++++++++++----------
 po/az.po                                       | 189 +++++++++++--------
 po/be.po                                       | 224 +++++++++++++----------
 po/bg.po                                       | 219 ++++++++++++----------
 po/bn.po                                       | 224 +++++++++++++----------
 po/ca.po                                       | 230 +++++++++++++----------
 po/cs.po                                       | 224 +++++++++++++----------
 po/cy.po                                       | 223 ++++++++++++----------
 po/da.po                                       |  92 ++++++----
 po/de.po                                       | 224 +++++++++++++----------
 po/el.po                                       | 223 ++++++++++++----------
 po/en_GB.po                                    | 202 +++++++++++---------
 po/es.po                                       | 224 +++++++++++++----------
 po/et.po                                       | 231 +++++++++++++----------
 po/fa.po                                       | 216 ++++++++++++----------
 po/fi.po                                       | 224 +++++++++++++----------
 po/fr.po                                       | 224 +++++++++++++----------
 po/ga.po                                       | 234 +++++++++++++-----------
 po/gl.po                                       | 219 ++++++++++++----------
 po/he.po                                       | 224 +++++++++++++----------
 po/hi.po                                       | 218 ++++++++++++----------
 po/hr.po                                       | 213 +++++++++++----------
 po/hu.po                                       | 110 ++++++-----
 po/id.po                                       | 196 +++++++++++---------
 po/is.po                                       | 223 ++++++++++++----------
 po/it.po                                       | 224 +++++++++++++----------
 po/ja.po                                       | 224 +++++++++++++----------
 po/ko.po                                       | 224 +++++++++++++----------
 po/lt.po                                       | 223 ++++++++++++----------
 po/lv.po                                       | 218 ++++++++++++----------
 po/mk.po                                       | 224 +++++++++++++----------
 po/ml.po                                       | 216 ++++++++++++----------
 po/mn.po                                       | 218 ++++++++++++----------
 po/ms.po                                       | 223 ++++++++++++----------
 po/nl.po                                       | 224 +++++++++++++----------
 po/nn.po                                       | 219 ++++++++++++----------
 po/no.po                                       | 116 ++++++------
 po/pl.po                                       | 232 +++++++++++++----------
 po/pt.po                                       | 224 +++++++++++++----------
 po/pt_BR.po                                    | 224 +++++++++++++----------
 po/ro.po                                       | 224 +++++++++++++----------
 po/ru.po                                       | 219 ++++++++++++----------
 po/sk.po                                       | 224 +++++++++++++----------
 po/sl.po                                       | 224 +++++++++++++----------
 po/sq.po                                       | 146 +++++++++------
 po/sr.po                                       | 116 ++++++------
 po/sr@Latn.po                                  | 153 +++++++++-------
 po/sv.po                                       | 113 ++++++------
 po/ta.po                                       | 217 ++++++++++++----------
 po/th.po                                       | 227 +++++++++++++----------
 po/tr.po                                       | 224 +++++++++++++----------
 po/uk.po                                       | 218 ++++++++++++----------
 po/vi.po                                       | 218 ++++++++++++----------
 po/wa.po                                       | 218 ++++++++++++----------
 po/zh_CN.po                                    | 224 +++++++++++++----------
 po/zh_TW.po                                    | 244 +++++++++++++------------
 typing-break/ChangeLog                         |   4 +
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 90 files changed, 6990 insertions(+), 5050 deletions(-)

commit 6442bbf96620ee3355ec658167d44405f3928e57
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Oct 28 21:58:16 2003 +0000

    update

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit 00c200258d2c52c8fbd89dedbc0b89c3b74ef3d4
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 21:58:08 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=116710 be smarter about
    
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=116710
        * main.c (cb_show_details) : be smarter about selecting a maximum

 capplets/font/ChangeLog |  3 +++
 capplets/font/main.c    | 12 ++++++++++++
 2 files changed, 15 insertions(+)

commit 6abafab8552ce47d070c077c9c0b75b0701cd951
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 21:35:17 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=115435 some of the UI review
    
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=115435
        * font-properties.glade : some of the UI review changes.

 capplets/font/ChangeLog             |  5 ++++-
 capplets/font/font-properties.glade | 37 +++++++++++++++++++++++++++++--------
 2 files changed, 33 insertions(+), 9 deletions(-)

commit 6d257e030ea9720342c16ebf35b2e779d4f075b0
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 20:46:08 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=124513 merge in patch to
    
    
    2003-10-24  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=124513
        * main.c (setup_font_sample) : merge in patch to allocate black and
          white correctly on TruColor displays.

 NEWS                    |  1 +
 capplets/font/ChangeLog |  6 ++++++
 capplets/font/main.c    | 15 +++++++++++++--
 3 files changed, 20 insertions(+), 2 deletions(-)

commit 3c9f4ea6ed42148cde787a52a0122fd91635ba81
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Oct 28 20:38:38 2003 +0000

    update

 NEWS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f916e2f01ca1b1b30288b35264733786df67430b
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 20:38:11 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=106489 add some protection again
    
    
    2003-10-23  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=106489
        * main.c (dpi_load) : add some protection again invalid dpi in the
          case of gconf failure.

 capplets/font/ChangeLog | 6 ++++++
 capplets/font/main.c    | 3 +++
 2 files changed, 9 insertions(+)

commit de50972bb26991cbcb595ec068a355b4d557c978
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 20:24:02 2003 +0000

    Add libxklavier as a build requirement to prep people
    
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        * configure.in : Add libxklavier as a build requirement to prep people

 ChangeLog    | 4 ++++
 NEWS         | 9 +++++++++
 configure.in | 3 +++
 3 files changed, 16 insertions(+)

commit 1e2bc8576b629db34365a525349f1075a7ddfca4
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 28 15:17:21 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=120842 Remove bone headed
    
    
    2003-10-28  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=120842
        * gnome-accessibility-keyboard-properties.glade : Remove bone headed
          spitting of checkbox and label.
        * accessibility-keyboard.c (setup_toggles) : It was probably done so
          that the headers could be made bold.

 capplets/accessibility/keyboard/ChangeLog          |  10 +-
 .../keyboard/accessibility-keyboard.c              |   5 +
 .../gnome-accessibility-keyboard-properties.glade  | 291 ++++-----------------
 3 files changed, 67 insertions(+), 239 deletions(-)

commit 8d3997deff14e536d5b48f69733c5d9ebc5079f0
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Oct 25 12:11:33 2003 +0000

    Fixed a string in Danish translation.
    
    2003-10-25  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Fixed a string in Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 154 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 94 insertions(+), 64 deletions(-)

commit eeea58e50b49f2bb40fdeabc7e17ff2d253dabb5
Author: Metin Amiroff <metin@karegen.com>
Date:   Sat Oct 25 12:04:17 2003 +0000

    Updated Azerbaijani translation.
    
    2003-10-25  Metin Amiroff  <metin@karegen.com>
    
        * az.po: Updated Azerbaijani translation.

 po/ChangeLog |   4 ++
 po/az.po     | 124 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 63 insertions(+), 65 deletions(-)

commit f6ebb39b301ed2e00a7b1240bb7ab5cea2f6d001
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Oct 24 15:42:55 2003 +0000

    Merge fix for bug #125403 from stable.
    
    2003-10-24  Kjartan Maraas  <kmaraas@gnome.org>
    
        * capplets/display/main.c: (create_screen_widgets): Merge
        fix for bug #125403 from stable.

 ChangeLog               | 5 +++++
 capplets/display/main.c | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 6e33aefa39362f0b7ae89614d4f0f5c6fa0145be
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Fri Oct 24 15:41:49 2003 +0000

    Updated Serbian translation.
    
    2003-10-22  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/no.po | 123 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 73 insertions(+), 50 deletions(-)

commit 5ccdc509024b000c5c7e1502fe60a4d5fe0e4565
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Wed Oct 22 03:52:28 2003 +0000

    Updated Serbian translation.
    
    2003-10-22  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 +++
 po/sr.po      | 82 ++++++++++++++++++++++++++++++++++++++++++-----------------
 po/sr@Latn.po | 82 ++++++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 120 insertions(+), 48 deletions(-)

commit dc81b474817898002b7ea43d3a032d26562b4fed
Author: Andras Timar <timar@gnome.hu>
Date:   Mon Oct 20 09:58:43 2003 +0000

    Updated Hungarian translation.
    
    2003-10-20  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 ++
 po/hu.po     | 155 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 97 insertions(+), 62 deletions(-)

commit d1a3e3d7159d86e2e50bd06a601044ffcdb751a8
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Oct 19 09:56:56 2003 +0000

    Sorted and added missing file. Updated Swedish translation.
    
    2003-10-19  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Sorted and added missing file.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |  5 +++++
 po/POTFILES.in |  5 +++--
 po/sv.po       | 62 +++++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 52 insertions(+), 20 deletions(-)

commit 64237f26ee8918a146ca6341326bc81de09bfb36
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Tue Oct 14 12:26:30 2003 +0000

    Cleaned-up Serbian translation.
    
    2003-10-14  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Cleaned-up Serbian translation.

 po/ChangeLog  |   4 ++
 po/sr.po      | 139 ++++++++++++++++++++++++++--------------------------------
 po/sr@Latn.po | 139 ++++++++++++++++++++++++++--------------------------------
 3 files changed, 130 insertions(+), 152 deletions(-)

commit cda09abc081d5cb20951641e5a46adbd0f4e75ed
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Fri Oct 10 15:03:49 2003 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit b02a12822ebc62f5031ced7cf6982c54a2411c2a
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Fri Oct 10 15:01:42 2003 +0000

    Updated

 po/sq.po | 89 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 48 insertions(+), 41 deletions(-)

commit 2e486ac9d3be6819defeeaa8ced132898ff8ad93
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Oct 9 16:25:34 2003 +0000

    Fixed one more embarassing typo.
    
    2003-10-09  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixed one more embarassing typo.

 po/ChangeLog |  4 +++
 po/sv.po     | 82 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 48 insertions(+), 38 deletions(-)

commit 7fc37944d19792da14fddcf1efdf47e3eeda6970
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Tue Oct 7 13:29:09 2003 +0000

    Updated Serbian translation.
    
    2003-10-07  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      | 50 +++++++++++++++++++++++++++-----------------------
 po/sr@Latn.po | 50 +++++++++++++++++++++++++++-----------------------
 3 files changed, 58 insertions(+), 46 deletions(-)

commit c851c3b859c74d7a62c3299afa0dfcc144b0ec0e
Author: Andras Timar <timar@gnome.hu>
Date:   Tue Oct 7 12:02:30 2003 +0000

    Updated Hungarian translation.
    
    2003-10-07  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog | 4 ++++
 po/hu.po     | 5 +++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 413ef150024f2767e7b3bea33b19f98500760d0f
Author: Muktha <muktha.narayan@wipro.com>
Date:   Tue Oct 7 05:28:43 2003 +0000

    Added title to the icon entry browse dialog. Fixes #122394.
    
     2003-10-07  Muktha  <muktha.narayan@wipro.com>
    
           * file-types-properties.glade: Added title to the icon entry browse
           dialog. Fixes #122394.

 capplets/file-types/ChangeLog                   | 5 +++++
 capplets/file-types/file-types-properties.glade | 1 +
 2 files changed, 6 insertions(+)

commit 7fedb45905699d60794bab4ecd8648eda70d17ea
Author: Andras Timar <timar@gnome.hu>
Date:   Sat Oct 4 21:34:44 2003 +0000

    Updated Hungarian translation.
    
    2003-10-04  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 ++
 po/hu.po     | 166 +++++++++++++++++++++++++----------------------------------
 2 files changed, 73 insertions(+), 97 deletions(-)

commit e94e195baac2e5dc8d0f835def0ccbbabbec654f
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sat Oct 4 14:32:18 2003 +0000

    Fix Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 10 ++++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit 8e1633256aca86eee931eeb5671240399dec93a5
Author: Andras Timar <timar@gnome.hu>
Date:   Fri Oct 3 21:52:24 2003 +0000

    Updated Hungarian translation.
    
    2003-10-03  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |   4 +
 po/hu.po     | 453 +++++++++++++----------------------------------------------
 2 files changed, 99 insertions(+), 358 deletions(-)

commit ea86018ca9ee051fa6e28153d57fcc9ef96bdd9c
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Tue Sep 30 15:05:29 2003 +0000

    Updated Serbian translation.
    
    2003-09-30  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 +++
 po/sr.po      | 38 ++++++++++++++--------------
 po/sr@Latn.po | 79 +++++++++++++++++++++++++++++------------------------------
 3 files changed, 63 insertions(+), 58 deletions(-)

commit 6113b2a91349b6c99a471c73f5c0f2c87d1d6a6a
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Tue Sep 30 14:59:54 2003 +0000

    Use ngettext for plural-forms, fixes bug #117997.
    
    2003-09-30  Danilo Šegan  <dsegan@gmx.net>
    
        * drwright.c (update_tooltip): Use ngettext for plural-forms,
        fixes bug #117997.

 typing-break/ChangeLog  | 5 +++++
 typing-break/drwright.c | 9 ++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 05303f1bfb64106577faacf239002e946c3dadee
Author: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>
Date:   Mon Sep 29 21:21:08 2003 +0000

    Applied revision by Augusta Marques da Silva <augusta.marques@gmx.net>.
    
    2003-09-29  Gustavo Maciel Dias Vieira  <gdvieira@zaz.com.br>
    
            * pt_BR.po: Applied revision by Augusta Marques da Silva
            <augusta.marques@gmx.net>.

 po/ChangeLog |    5 +
 po/pt_BR.po  | 1699 ++--------------------------------------------------------
 2 files changed, 59 insertions(+), 1645 deletions(-)

commit 7876b0fae1c78d051fbb22c2a9ba62a37fbd04b5
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Sep 23 07:03:25 2003 +0000

    Fixed some embarassing typos.
    
    2003-09-23  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixed some embarassing typos.

 po/ChangeLog |  4 ++++
 po/sv.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit a0e276ef1adb2ab4c31bcd893b64d51301691842
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Fri Sep 19 18:18:51 2003 +0000

    Updated Estonian translation.
    
    2003-09-19  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 +
 po/et.po     | 390 +++++++++++++++++++++--------------------------------------
 2 files changed, 145 insertions(+), 249 deletions(-)

commit 72e7cce259b8df2b81110eac79feccd5611608df
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Wed Sep 17 12:10:06 2003 +0000

    Updated Lithuanian translation by Zygimantas Berucka.
    
    2003-09-17  Gediminas Paulauskas  <menesis@delfi.lt>
    
        * lt.po: Updated Lithuanian translation by Zygimantas Berucka.

 po/ChangeLog |   4 +
 po/lt.po     | 839 +++++++++++++++++++++++++----------------------------------
 2 files changed, 361 insertions(+), 482 deletions(-)

commit 2ecf1aa6e645feb942eb2192702a4db43c25c8e9
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Sep 8 19:14:20 2003 +0000

    2.4.0

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/bn.po     |    4 +-
 po/el.po     |  449 +++--
 po/fi.po     |    4 +-
 po/ga.po     | 6219 +++++++++++++++++++++++++++++-----------------------------
 po/hi.po     |   45 +-
 po/mk.po     |   86 +-
 po/ms.po     |  359 ++--
 po/no.po     |   30 +-
 po/pt_BR.po  |   28 +-
 po/ro.po     |  107 +-
 po/sk.po     |  122 +-
 po/sq.po     |  359 +++-
 14 files changed, 4193 insertions(+), 3625 deletions(-)

commit 2205a17b089935bc335af1f323a15665310f7b32
Author: Mugurel Tudor <mugurelu@src.gnome.org>
Date:   Mon Sep 8 07:21:42 2003 +0000

    *** empty log message ***

 po/ChangeLog |    5 +
 po/ro.po     | 1098 +++++++++++++++++++++-------------------------------------
 2 files changed, 392 insertions(+), 711 deletions(-)

commit a30cc3d960059fe32b05c137deec95955421ce3a
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Sun Sep 7 14:17:19 2003 +0000

    updated translation.
    
    
        * pt_BR.po: updated translation.

 po/ChangeLog |  4 +++
 po/pt_BR.po  | 89 ++++++++++++++++++++++++------------------------------------
 2 files changed, 40 insertions(+), 53 deletions(-)

commit 8c7a625b4da20b98b25646c01897ab768e95cd1e
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Sat Sep 6 15:52:17 2003 +0000

    Review of Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 549 +++++++++++++++++++----------------------------------------
 2 files changed, 175 insertions(+), 378 deletions(-)

commit 0a21ab00f40de232546678b79b8cf522fc0115aa
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Sep 5 21:12:12 2003 +0000

    Updated Norwegian translation.
    
    2003-09-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 8c9c8981f7d30cbd370f334ecea5173be046fa2c
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Fri Sep 5 16:56:21 2003 +0000

    Updated Malay translation.
    
    2002-09-05  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay translation.

 po/ChangeLog |   4 +
 po/ms.po     | 379 +++++++++++++++++++++++------------------------------------
 2 files changed, 151 insertions(+), 232 deletions(-)

commit 6734dce9cda405d9f9610c2dca337a1c414c50f9
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Fri Sep 5 13:10:10 2003 +0000

    Updated Hindi translation

 po/ChangeLog |   4 +
 po/hi.po     | 462 +++++++++++++++++++++--------------------------------------
 2 files changed, 167 insertions(+), 299 deletions(-)

commit 48b47b837f0bd6dbb121a03d2dd28ccb86c21522
Author: Taneem Ahmed <taneem@bengalinux.org>
Date:   Fri Sep 5 09:00:27 2003 +0000

    Updated Bangla (Bengali) translation.
    
    2003-09-05  Taneem Ahmed  <taneem@bengalinux.org>
    
        * bn.po: Updated Bangla (Bengali) translation.

 po/ChangeLog |   4 +
 po/bn.po     | 678 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 317 insertions(+), 365 deletions(-)

commit 5765926e10f25d8936fb6b90493a1e6dc1c7f0a4
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Thu Sep 4 14:03:39 2003 +0000

    Updated Slovak translation.
    
    2003-09-04  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 778 +++++++++++++++++++----------------------------------------
 2 files changed, 250 insertions(+), 532 deletions(-)

commit 6a95fdc5fea131cb6bbfddf0b697c3f70bd224ac
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Thu Sep 4 12:44:33 2003 +0000

    updated macedonian translation

 po/ChangeLog |   4 +
 po/mk.po     | 527 +++++++++++++++++++++++++----------------------------------
 2 files changed, 227 insertions(+), 304 deletions(-)

commit d15fcb4194271c49dd9a2c531f88e72a4194c09c
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Wed Sep 3 17:44:05 2003 +0000

    Fixes to Finnish translation.
    
    2003-09-03  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Fixes to Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 421f89e7f118a3ca28f08c24bf15d3ef83778629
Author: Paul Duffy <dubhthach@src.gnome.org>
Date:   Wed Sep 3 09:42:41 2003 +0000

    updated irish translation

 po/ChangeLog |    4 +
 po/ga.po     | 6298 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 3114 insertions(+), 3188 deletions(-)

commit 22bdccf7bfb35788b3a1d39f9293f71da2b51062
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Wed Sep 3 00:05:03 2003 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 84e8c4e4044c6be9891fb1814338e753cbe66629
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Wed Sep 3 00:03:15 2003 +0000

    Updated

 po/sq.po | 572 +++++++++++++--------------------------------------------------
 1 file changed, 115 insertions(+), 457 deletions(-)

commit 7cf28c368a326d203cd2643044684d16f91f7b5d
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Sep 2 20:43:52 2003 +0000

    make dist made me change these

 po/am.po                       |  32 +--
 po/ar.po                       |  32 +--
 po/az.po                       | 446 ++++++++++++++++++++++++++++-------------
 po/be.po                       | 146 ++++++++------
 po/bg.po                       |  32 +--
 po/bn.po                       |  32 +--
 po/ca.po                       |  87 +++++---
 po/cs.po                       |  32 +--
 po/cy.po                       |  32 +--
 po/da.po                       |  39 ++--
 po/de.po                       |  32 +--
 po/el.po                       | 446 ++++++++++++++++++++++++++++++-----------
 po/en_GB.po                    |  32 +--
 po/es.po                       |  95 +++++----
 po/et.po                       |  32 +--
 po/fa.po                       |  32 +--
 po/fi.po                       |  34 ++--
 po/fr.po                       |  34 ++--
 po/ga.po                       |  32 +--
 po/gl.po                       |  32 +--
 po/he.po                       |  32 +--
 po/hi.po                       |  35 ++--
 po/hr.po                       |  32 +--
 po/hu.po                       |  32 +--
 po/id.po                       |  32 +--
 po/is.po                       | 357 +++++++++++++++++++++++----------
 po/it.po                       |  11 +-
 po/ja.po                       |  34 ++--
 po/ko.po                       |  34 ++--
 po/lt.po                       |  32 +--
 po/lv.po                       |  32 +--
 po/mk.po                       |  32 +--
 po/ml.po                       |  32 +--
 po/mn.po                       |  32 +--
 po/ms.po                       |  32 +--
 po/nl.po                       |   4 +-
 po/nn.po                       |  32 +--
 po/no.po                       |  13 +-
 po/pl.po                       |  32 +--
 po/pt.po                       |   4 +-
 po/pt_BR.po                    |  62 +++---
 po/ro.po                       |  96 +++++----
 po/ru.po                       |  32 +--
 po/sk.po                       |  32 +--
 po/sl.po                       | 136 ++++++-------
 po/sq.po                       | 134 +++++++------
 po/sr.po                       |  32 +--
 po/sr@Latn.po                  |  73 +++----
 po/sv.po                       |  32 +--
 po/ta.po                       |  32 +--
 po/th.po                       |  91 ++++-----
 po/tr.po                       |  94 +++++----
 po/uk.po                       |  32 +--
 po/vi.po                       |  32 +--
 po/wa.po                       |  32 +--
 po/zh_CN.po                    |  32 +--
 po/zh_TW.po                    | 100 +++++----
 vfs-methods/themus/Makefile.am |   2 +-
 58 files changed, 2159 insertions(+), 1504 deletions(-)

commit c27b7803d6801ad4c90a6ac59920c0443ac22dec
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Sep 2 20:37:34 2003 +0000

    2.3.6

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 33c820a83a9ac7a0635ba8581bb9c7aaa60d7b95
Author: Mugurel Tudor <mugurelu@src.gnome.org>
Date:   Tue Sep 2 19:43:49 2003 +0000

    *** empty log message ***

 po/ChangeLog |   4 +
 po/ro.po     | 652 +++++++++++++++++++++++++----------------------------------
 2 files changed, 279 insertions(+), 377 deletions(-)

commit 287b2c1490bddf942a0f6d2255991c002d661e93
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Sep 2 14:13:15 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-09-02  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog | 140 ++++++++++++++++++++++++++++++-----------------------------
 po/nl.po     |  17 ++++----
 2 files changed, 80 insertions(+), 77 deletions(-)

commit 6b545a3276462162ff361c5b456afb5005a6b9a4
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Tue Sep 2 08:29:05 2003 +0000

    Updated Italian translation.

 po/ChangeLog |   5 +
 po/it.po     | 640 +++++++++++++++++++++--------------------------------------
 2 files changed, 228 insertions(+), 417 deletions(-)

commit c621f373943654cd9fcd9226f56fc7b497852329
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Sep 1 06:51:48 2003 +0000

    Updated Norwegian translation.
    
    2003-08-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 166 ++++++++++++-----------------------------------------------
 2 files changed, 38 insertions(+), 132 deletions(-)

commit 34d0cf3a258a30982a8c3a5602d5310bd4e9e0e4
Author: Jeff Waugh <jdub@perkypants.org>
Date:   Sun Aug 31 05:34:19 2003 +0000

    Not an apple.
    
    2003-08-31  Jeff Waugh  <jdub@perkypants.org>
    
        * capplets/display/display-capplet.png: Not an apple.

 ChangeLog                            |   4 ++++
 capplets/display/display-capplet.png | Bin 4353 -> 2824 bytes
 2 files changed, 4 insertions(+)

commit 1f022f38a997f7043d91e61f59a347b94f66663c
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Thu Aug 28 22:32:16 2003 +0000

    Review of Greek translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit e702a063bb58d63d61e868cdf8a23c4146d29584
Author: Nikos Charonitakis <frolix68@src.gnome.org>
Date:   Thu Aug 28 22:31:29 2003 +0000

    Review of Greek translation

 po/el.po | 837 ++++++++++++---------------------------------------------------
 1 file changed, 161 insertions(+), 676 deletions(-)

commit bb7eeb49c8a78c9409f76dca606cdeda9e53e96b
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Wed Aug 27 20:06:46 2003 +0000

    Revision of Spanish translation by Francisco Javier F. Serrador
    
    2003-08-27  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Revision of Spanish translation by
                     Francisco Javier F. Serrador <serrador@arrakis.es>.

 po/ChangeLog |   5 ++
 po/es.po     | 265 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 126 insertions(+), 144 deletions(-)

commit ee02657f622bfcfdb334337f542ea21926b2a1a5
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Aug 27 18:50:43 2003 +0000

    Work around peditor bug that resets the port when we start up for the
    
    Tue Aug 26 15:00:34 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-network-preferences.c (setup_dialog): Work around peditor
            bug that resets the port when we start up for the first time,
            #120111

 capplets/network/ChangeLog                       |  6 ++++++
 capplets/network/gnome-network-preferences.c     | 14 ++++++++++++++
 capplets/network/gnome-network-preferences.glade |  2 +-
 3 files changed, 21 insertions(+), 1 deletion(-)

commit c147f80298c49c9f077b370ef2fa85d830fea9c0
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Wed Aug 27 11:38:18 2003 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bda73a499edeaf050ba786c326c2b2aff7118316
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Tue Aug 26 23:32:24 2003 +0000

    Updated Welsh translation.

 po/ChangeLog |  4 ++++
 po/cy.po     | 54 +++++++++++++++++++++++++++++-------------------------
 2 files changed, 33 insertions(+), 25 deletions(-)

commit 9ea538179ae6e0948ab3ed14cac3492ee5bdf602
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Aug 26 22:55:28 2003 +0000

    Dutch translation updated by Kees van den Broek.
    
    2003-08-27  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Kees van den Broek.

 po/ChangeLog |  4 ++++
 po/nl.po     | 42 +++++++++++++++++++++---------------------
 2 files changed, 25 insertions(+), 21 deletions(-)

commit f48465217064411897bc988b864ea776333c659b
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Aug 25 00:27:46 2003 +0000

    Fixed missing accel in Portuguese translation.
    
    2003-08-25  Duarte Loreto <happyguy_pt@hotmail.com>
    
        * pt.po: Fixed missing accel in Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 40 ++++++++++++++++++++--------------------
 2 files changed, 24 insertions(+), 20 deletions(-)

commit 518c5b30d4179c894a3a9ac33c938f4d220fe092
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Sun Aug 24 18:39:18 2003 +0000

    Updated Brazilian Portuguese translation.
    
    2003-08-24  Evandro Fernandes Giovanini  <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 52 ++++++++++++++++++++++++++--------------------------
 2 files changed, 30 insertions(+), 26 deletions(-)

commit a38f5d8f3ee526b0c3c4792a4eb5703a8767fa63
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sun Aug 24 17:11:58 2003 +0000

    Updated Finnish translation.
    
    2003-08-24  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 77 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 45 insertions(+), 36 deletions(-)

commit 05294ea9340370ade57d1766cfa75f81b868359d
Author: Richard Hult <richard@imendio.com>
Date:   Sun Aug 24 16:29:20 2003 +0000

    Multihead support, fixes bug #119827.
    
    2003-08-24  Richard Hult  <richard@imendio.com>
    
        * Makefile.am:
        * drw-break-window.c:
        * drwright.c: Multihead support, fixes bug #119827.

 typing-break/ChangeLog          |   6 +
 typing-break/Makefile.am        |   8 +-
 typing-break/drw-break-window.c | 175 ++++----------------
 typing-break/drw-utils.c        | 173 ++++++++++++++++++++
 typing-break/drw-utils.h        |  27 +++
 typing-break/drwright.c         | 154 ++++++++++-------
 typing-break/egg-spawn.c        | 355 ++++++++++++++++++++++++++++++++++++++++
 typing-break/egg-spawn.h        |  81 +++++++++
 8 files changed, 777 insertions(+), 202 deletions(-)

commit 916e9dbc7598919e6c67c40f3f6e9dd57ae5bd21
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Aug 23 18:02:04 2003 +0000

    Fixed a few strings in the Danish translation.
    
    2003-08-23  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Fixed a few strings in the Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 13 +++++--------
 2 files changed, 9 insertions(+), 8 deletions(-)

commit f3017444b7cc420cf38019abf338eaca2c2440a3
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Sat Aug 23 16:19:14 2003 +0000

    Updated Serbian translation.
    
    2003-08-23  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |  4 ++++
 po/sr.po      |  8 ++++----
 po/sr@Latn.po | 49 +++++++++++++++++++++++--------------------------
 3 files changed, 31 insertions(+), 30 deletions(-)

commit 328293e809ed9fea13f33cab97e994aaf0e7c6e8
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Aug 23 13:04:32 2003 +0000

    Updated Slovenian translation

 po/sl.po | 648 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 270 insertions(+), 378 deletions(-)

commit 69be112961f7e905ede4c0ef526a8b3c8f647113
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Aug 22 18:25:29 2003 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 26 ++++++++++++--------------
 2 files changed, 16 insertions(+), 14 deletions(-)

commit 729236343ef9d822ab9f02c99016c0033e4798c1
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Thu Aug 21 13:25:43 2003 +0000

    Updated turkish translation

 po/ChangeLog |   4 +
 po/tr.po     | 494 ++++++++++++++++++++++-------------------------------------
 2 files changed, 183 insertions(+), 315 deletions(-)

commit e404481dceb9d0d64cb4957022c40b2004efd426
Author: Samel Jn Gunnarsson <sammi@techattack.nu>
Date:   Wed Aug 20 15:03:34 2003 +0000

    Added Icelandic translation by ki G. Karlsson <aki@akademia.is>
    
    2003-08-20  Samel Jn Gunnarsson  <sammi@techattack.nu>
    
        * is.po: Added Icelandic translation by
        ki G. Karlsson <aki@akademia.is>

 ChangeLog    |    8 +-
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/is.po     | 2882 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2894 insertions(+), 3 deletions(-)

commit af6df6ea3efbcfd43edae7b5b0b5bafc8cb24df7
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Aug 19 12:58:46 2003 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 333 ++++++++++++++++++++++-------------------------------------
 2 files changed, 127 insertions(+), 210 deletions(-)

commit fb5f3b6f3bf1ce638c831370b5af10eaeb3866e1
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Tue Aug 19 04:29:49 2003 +0000

    Updated Welsh translation.

 po/ChangeLog |  4 ++++
 po/cy.po     | 32 ++++++++++++++++----------------
 2 files changed, 20 insertions(+), 16 deletions(-)

commit a9f1e78e43efb59f98ed5f4f3111f05c258a06c2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Aug 18 22:09:01 2003 +0000

    Update Norwegian translation.
    
    2003-08-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Update Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 230 +++++++++++++++++++----------------------------------------
 2 files changed, 79 insertions(+), 155 deletions(-)

commit 3de941b00455f48e3021108e9e1f8fcc41502646
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Mon Aug 18 12:59:58 2003 +0000

    Added Hindi translation

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/hi.po     | 3339 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3348 insertions(+), 1 deletion(-)

commit 0961221bb3434549c124d129c4e4d197d291ba53
Author: Metin Amiroff <metin@karegen.com>
Date:   Mon Aug 18 10:29:05 2003 +0000

    Updated Azerbaijani translation.
    
    2003-08-18  Metin Amiroff <metin@karegen.com>
    
        * az.po: Updated Azerbaijani translation.

 po/ChangeLog |    4 +
 po/az.po     | 1020 +++++++++++++++++++++++-----------------------------------
 2 files changed, 406 insertions(+), 618 deletions(-)

commit 2cd9e4927cc6371bb59475dd799d30171615f21a
Author: Evandro Fernandes Giovanini <evandrofg@ig.com.br>
Date:   Mon Aug 18 01:05:31 2003 +0000

    Updated Brazilian Portuguese translation.
    
    2003-08-17  Evandro Fernandes Giovanini  <evandrofg@ig.com.br>
    
            * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |   4 +
 po/pt_BR.po  | 765 ++++++++++-------------------------------------------------
 2 files changed, 132 insertions(+), 637 deletions(-)

commit 44bafa3af174fee40f5367edba0dac1ab0127cf1
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Aug 17 13:41:35 2003 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 260 +++++++++++++++++++++++------------------------------------
 2 files changed, 105 insertions(+), 159 deletions(-)

commit bf7a769e0ea8f490dd5243d67bd188b6652bd84a
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Aug 16 22:16:39 2003 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 522134e14286a29927c7ac6c1090e5ac4de31166
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Aug 16 22:15:08 2003 +0000

    Updated

 po/sq.po | 564 ++++++++++++++++++++++++---------------------------------------
 1 file changed, 215 insertions(+), 349 deletions(-)

commit 0d71d81a1988ed6f23f346d99834ca2720663fcf
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sat Aug 16 16:47:58 2003 +0000

    Updated Finnish translation.
    
    2003-08-16  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 751 +++++++++++++++++++----------------------------------------
 2 files changed, 241 insertions(+), 514 deletions(-)

commit 72765828fb961a4569e64dc49628206404d3b077
Author: fixed mis-translations. T.Aihana <aihana@gnome.gr.jp>
Date:   Sat Aug 16 07:15:12 2003 +0000

    2003-08-16 fixed mis-translations. T.Aihana <aihana@gnome.gr.jp>

 po/ja.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit a65f51e2e5917500302391ae4a15e8df383f470d
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Thu Aug 14 12:27:51 2003 +0000

    Updated traditional Chinese translation.
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 464 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 213 insertions(+), 255 deletions(-)

commit 6da3dccc910ec69c441f3ab13aed399caae4da38
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Thu Aug 14 10:16:22 2003 +0000

    Updated Belarusian translation by Ales Nyakhaychyk <nab@mail.by>.
    
    2003-08-14  Danilo Šegan  <dsegan@gmx.net>
    
        * be.po: Updated Belarusian translation by Ales Nyakhaychyk
        <nab@mail.by>.

 po/ChangeLog |   5 +
 po/be.po     | 717 +++++++++++++++++++++++++----------------------------------
 2 files changed, 310 insertions(+), 412 deletions(-)

commit 9cc4d5bfb163c67c5ab3f3566045370e7c0f76bb
Author: Malcolm Tredinnick <malcolm@src.gnome.org>
Date:   Wed Aug 13 05:35:03 2003 +0000

    Allow ports up to 65535 to be specified in the proxy dialog box. Fixes bug
    
        * gnome-network-preferences.glade: Allow ports up to 65535 to be
        specified in the proxy dialog box. Fixes bug #108930.

 ChangeLog                                        | 5 +++++
 capplets/network/gnome-network-preferences.glade | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit e27047e4d5ff43e5d3c8b1316bd90bd94af36cde
Author: updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Tue Aug 12 16:22:23 2003 +0000

    2003-08-12 updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 511 +++++++++++++++++++----------------------------------------
 2 files changed, 164 insertions(+), 351 deletions(-)

commit 5b9169f00e6955da031952402ec1e9dd34252ca1
Author: Paisa Seeluangsawat <paisa@users.sf.net>
Date:   Tue Aug 12 02:38:38 2003 +0000

    Updated Thai translation.
    
    2003-08-11  Paisa Seeluangsawat <paisa@users.sf.net>
    
        * th.po: Updated Thai translation.

 po/ChangeLog |    4 +
 po/th.po     | 1222 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 638 insertions(+), 588 deletions(-)

commit 4c52543d7e36a577a64e3f0ea8d26354ebe471cc
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Aug 11 18:06:04 2003 +0000

    2.3.5

 po/am.po      |  959 ++++++++++++++++++++++++++------------------
 po/ar.po      | 1075 +++++++++++++++++++++++++++++--------------------
 po/az.po      | 1235 ++++++++++++++++++++++++++++++++++++---------------------
 po/be.po      | 1063 ++++++++++++++++++++++++++++++-------------------
 po/bg.po      | 1080 +++++++++++++++++++++++++++++--------------------
 po/bn.po      | 1048 +++++++++++++++++++++++++++++-------------------
 po/ca.po      | 1133 +++++++++++++++++++++++++++++++---------------------
 po/cs.po      |   78 ++--
 po/cy.po      |   65 +--
 po/da.po      |   63 +--
 po/de.po      |   63 +--
 po/el.po      |  141 ++++---
 po/en_GB.po   |  865 ++++++++++++++++++++++------------------
 po/es.po      |  147 ++++---
 po/et.po      | 1039 +++++++++++++++++++++++++++++-------------------
 po/fa.po      |  968 ++++++++++++++++++++++++++------------------
 po/fi.po      | 1054 +++++++++++++++++++++++++++++-------------------
 po/fr.po      |  542 ++++++++++++++-----------
 po/ga.po      |  977 ++++++++++++++++++++++++++-------------------
 po/gl.po      | 1063 +++++++++++++++++++++++++++++--------------------
 po/he.po      |  125 +++---
 po/hr.po      | 1014 +++++++++++++++++++++++++---------------------
 po/hu.po      | 1071 ++++++++++++++++++++++++++++++-------------------
 po/id.po      |  828 +++++++++++++++++++++-----------------
 po/it.po      | 1070 ++++++++++++++++++++++++++++++-------------------
 po/ja.po      | 1065 ++++++++++++++++++++++++++++++-------------------
 po/ko.po      |  101 ++---
 po/lt.po      | 1054 +++++++++++++++++++++++++++++-------------------
 po/lv.po      | 1054 +++++++++++++++++++++++++++++-------------------
 po/mk.po      | 1065 ++++++++++++++++++++++++++++++-------------------
 po/ml.po      | 1186 ++++++++++++++++++++++++++++++++++++------------------
 po/mn.po      | 1054 +++++++++++++++++++++++++++++-------------------
 po/ms.po      |   61 +--
 po/nl.po      |  107 ++---
 po/nn.po      |  989 +++++++++++++++++++++++++--------------------
 po/no.po      | 1072 ++++++++++++++++++++++++++++++-------------------
 po/pl.po      |   63 +--
 po/pt.po      |   61 +--
 po/pt_BR.po   | 1139 ++++++++++++++++++++++++++++++----------------------
 po/ro.po      | 1062 ++++++++++++++++++++++++++++++-------------------
 po/ru.po      | 1055 +++++++++++++++++++++++++++++-------------------
 po/sk.po      | 1054 +++++++++++++++++++++++++++++-------------------
 po/sl.po      | 1079 +++++++++++++++++++++++++++++--------------------
 po/sq.po      | 1071 ++++++++++++++++++++++++++++++-------------------
 po/sr.po      |   61 +--
 po/sr@Latn.po |  102 ++---
 po/sv.po      |   61 +--
 po/ta.po      | 1053 +++++++++++++++++++++++++++++-------------------
 po/th.po      |  827 +++++++++++++++++++++-----------------
 po/tr.po      | 1086 ++++++++++++++++++++++++++++++--------------------
 po/uk.po      | 1054 +++++++++++++++++++++++++++++-------------------
 po/vi.po      | 1080 +++++++++++++++++++++++++++++--------------------
 po/wa.po      | 1010 +++++++++++++++++++++++++++-------------------
 po/zh_CN.po   |   83 ++--
 po/zh_TW.po   | 1068 ++++++++++++++++++++++++++++++-------------------
 55 files changed, 25081 insertions(+), 16562 deletions(-)

commit e33890f1be985d427ea329843b6841658b80deca
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Aug 11 17:55:34 2003 +0000

    fix the double click peditor.
    
    Mon Aug 11 13:53:23 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-mouse-properties.c (delay_value_changed_cb): fix the
        double click peditor.
    
    Mon Aug 11 11:50:36 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.glade: Patch from Elijah Newren
        <newren@math.utah.edu> to bring the possible repeat range in sync
        with the a11y capplet.
    
        * gnome-keyboard-properties.c: Patch from Elijah Newren to deal
        with the change in the peditor code.
    
    Mon Aug 11 11:55:49 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-accessibility-keyboard-properties.glade: Patch from Elijah
        Newren <newren@math.utah.edu> to bring the possible repeat range
        in sync with the keyboard capplet.

 capplets/accessibility/keyboard/ChangeLog          |  6 +++++
 .../keyboard/accessibility-keyboard.c              |  4 +---
 capplets/keyboard/ChangeLog                        |  9 +++++++
 capplets/keyboard/gnome-keyboard-properties.c      | 10 +++-----
 capplets/keyboard/gnome-keyboard-properties.glade  |  2 +-
 capplets/mouse/ChangeLog                           |  5 ++++
 capplets/mouse/gnome-mouse-properties.c            | 28 ++++++++++------------
 capplets/mouse/gnome-mouse-properties.glade        |  6 ++---
 8 files changed, 41 insertions(+), 29 deletions(-)

commit 0e3a015c0454221e65856fef7f83051a6f95025e
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Aug 11 15:37:34 2003 +0000

    I don't know how this got removed.  readding it

 capplets/theme-switcher/gnome-theme-manager.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 559a29ab0556967a35b94cf6d134e104b0861ee3
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Aug 11 10:34:46 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 54 +++++++++++++++++++++++++++---------------------------
 2 files changed, 31 insertions(+), 27 deletions(-)

commit 00154ffbd336ca2dd4b5d7f2f27c58a29b00641b
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sun Aug 10 07:44:24 2003 +0000

    Updated the Greek translation

 po/ChangeLog | 130 +++++++-------
 po/el.po     | 572 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 408 insertions(+), 294 deletions(-)

commit 89b22f4a2cb1f24ce23b10d73c1f3c1fcd80a773
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sat Aug 9 13:18:06 2003 +0000

    Updated Malay translation.
    
    2002-08-09  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay translation.

 po/ChangeLog |   4 +
 po/ms.po     | 555 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 308 insertions(+), 251 deletions(-)

commit 97386436012ce237232189a8602499ac10fd027b
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Aug 9 11:13:58 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 132 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 68 insertions(+), 64 deletions(-)

commit 5f215a1424dacba1a4a5489c8b8f9f932a5f06c2
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Aug 9 11:10:30 2003 +0000

    Updated Hebrew translation.

 po/he.po | 577 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 340 insertions(+), 237 deletions(-)

commit 74937c2c48d765671b6de9e0c742194c6e68f5ad
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sat Aug 9 11:07:00 2003 +0000

    Terminology fixes

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b6f6882a2d21931790b374b7600489f259e09fcb
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Fri Aug 8 15:04:02 2003 +0000

    Updated Serbian translation.
    
    2003-08-08  Danilo Šegan  <dsegan@gmx.net>
    
        * sr.po, sr@Latn.po: Updated Serbian translation.

 po/ChangeLog  |    4 +
 po/sr.po      | 1398 +++++++++++++++++++++++++++++++------------------------
 po/sr@Latn.po | 1439 ++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 1597 insertions(+), 1244 deletions(-)

commit 905f84265cc65e4c2514249eabe81cad30bc3c93
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Fri Aug 8 12:47:19 2003 +0000

    Updated Welsh translation.

 po/ChangeLog |   4 +
 po/cy.po     | 570 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 341 insertions(+), 233 deletions(-)

commit 909c3626fc7d9034554b9958fe7228e167c547d5
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Aug 7 19:22:51 2003 +0000

    damn it Jonathan. Save the @#*&$@# file before committing.
    
    Thu Aug  7 15:23:08 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gconf-property-editor.c (gconf_property_editor_set_prop): damn
        it Jonathan.  Save the @#*&$@# file before committing.

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 73db5adbbeb6564552c6937fc041927ac760d561
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu Aug 7 16:35:03 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 452 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 260 insertions(+), 196 deletions(-)

commit 68e5f8679b055aef5da55ae272e66fcb7ebe1107
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Thu Aug 7 13:31:28 2003 +0000

    Updated Spanish translation.
    
    2003-08-07  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 78 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 43 insertions(+), 39 deletions(-)

commit 1b2cf1df4dd43ff5431c85f630b3540a5703f1c3
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Aug 6 21:52:31 2003 +0000

    Updated Portuguese translation.
    
    2003-08-06  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 48 ++++++++++++++++++++++++------------------------
 2 files changed, 28 insertions(+), 24 deletions(-)

commit 3546eca253c1a1384edee0e4969c58f7eed7e452
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Aug 6 21:13:13 2003 +0000

    Updated Danish translation.
    
    2003-08-06  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |    4 +
 po/da.po     | 1147 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 653 insertions(+), 498 deletions(-)

commit 4400d4eab71f70f46eab346f819eb3895ebcd8c5
Author: Metin Amiroff <metin@karegen.com>
Date:   Wed Aug 6 16:33:16 2003 +0000

    Updated Azerbaijani translation.
    
    2003-08-06  Metin Amiroff  <metin@karegen.com>
    
            * az.po: Updated Azerbaijani translation.

 po/ChangeLog |   4 +
 po/az.po     | 605 ++++++++++++++++++-----------------------------------------
 2 files changed, 189 insertions(+), 420 deletions(-)

commit e30db0d14bdecff92397215953d59e936e90f982
Author: Wang Jian <lark@src.gnome.org>
Date:   Wed Aug 6 14:48:35 2003 +0000

    *** empty log message ***

 po/ChangeLog |    5 +
 po/zh_CN.po  | 1136 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 622 insertions(+), 519 deletions(-)

commit 9c85c7609ef53290cf59fd666f65f34729e14823
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Wed Aug 6 05:04:38 2003 +0000

    Updated Polish translation.
    
    2003-08-06  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 44 ++++++++++++++++++++++----------------------
 2 files changed, 26 insertions(+), 22 deletions(-)

commit 93aca0d7e9f4664c9bf97f7e01f0bbc0ee08cb34
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Aug 5 22:50:04 2003 +0000

    Updated Swedish translation.
    
    2003-08-06  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 57 ++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 36 insertions(+), 25 deletions(-)

commit 1080ad32273e2bf3249be155f87c1678b55c13ed
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Aug 5 22:47:57 2003 +0000

    spelling fix

 capplets/display/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fe218f6cd172caf38658aba7c430ffce72bd9e6b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Aug 5 21:54:30 2003 +0000

    Patch from James T. Richardson, Jr <james@richardsons.us> to clean up the
    
    Tue Aug  5 17:51:13 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/display/main.c: Patch from James T. Richardson, Jr
        <james@richardsons.us> to clean up the R and R capplet a little,
        #115629

 ChangeLog                         |   6 ++
 capplets/display/main.c           | 131 ++++++++++++++++----------------------
 capplets/theme-switcher/ChangeLog |   2 +-
 3 files changed, 62 insertions(+), 77 deletions(-)

commit f52f7feb3265369e7cb36418c8bc3cd60ad1666c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Aug 5 19:38:39 2003 +0000

    Fix from Christian Neumair to fix default and focus, #116892
    
    Tue Aug  5 15:38:31 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * theme-properties.glade: Fix from Christian Neumair to fix
        default and focus, #116892
    
        * theme-install.glade: ditto

 capplets/theme-switcher/ChangeLog              | 7 +++++++
 capplets/theme-switcher/theme-install.glade    | 2 ++
 capplets/theme-switcher/theme-properties.glade | 8 +++-----
 3 files changed, 12 insertions(+), 5 deletions(-)

commit 77dd8c6dfa4dfbdc5c75ec24540e0fc6c5e20d89
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Aug 5 18:34:13 2003 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 656 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 321 insertions(+), 339 deletions(-)

commit d109e43a1985f7d3eafc7ecf5db8640c32251cc1
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Aug 4 21:59:46 2003 +0000

    Updated Portuguese translation.
    
    2003-08-04  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 530 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 320 insertions(+), 214 deletions(-)

commit cb60c6e3eabed44ae681cd17d86016b11df45be6
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Aug 4 21:42:22 2003 +0000

    Updated Polish translation.
    
    2003-08-04  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |   4 +
 po/pl.po     | 431 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 265 insertions(+), 170 deletions(-)

commit 3acc178b314656f4560168322583b433e9545c11
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Aug 4 18:35:05 2003 +0000

    Reset the old connection when setting a new one, #116232
    
    Mon Aug  4 14:35:22 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gconf-property-editor.c (gconf_property_editor_init): Reset the
        old connection when setting a new one, #116232

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 88ef9e0820b10f267299e10276543818a6741252
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Aug 4 18:15:32 2003 +0000

    make sure that we have a valid theme_id, #104824
    
    Mon Aug  4 14:14:53 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-manager.c (idle_async_func): make sure that we have
        a valid theme_id, #104824

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d4118b245853f83557c223eebc864dbea4130bf0
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Mon Aug 4 15:47:55 2003 +0000

    Updated Spanish translation.
    
    2003-08-04  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 544 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 326 insertions(+), 222 deletions(-)

commit 6968831e5a914ac1b0207959a0e747d9436d703f
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Mon Aug 4 13:19:00 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-08-04  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 528 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 320 insertions(+), 212 deletions(-)

commit a7d7bf0bbc65d3c3ac2ef40e8ffcfffc88f5872a
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 06:14:18 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * background-properties-capplet.c, background-properties.glade:
        Patch to fix spacing between action area and vbox of preferences
        dialog.

 capplets/background/ChangeLog                       | 6 ++++++
 capplets/background/background-properties-capplet.c | 3 ++-
 capplets/background/background-properties.glade     | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit e6e45955af249b2ec252afa4ba07367979c11faf
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:55:39 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * gnome-window-properties.glade: Patch to fix spacing between
        action area and vbox of preferences dialog.

 capplets/windows/ChangeLog                     |  5 +++++
 capplets/windows/gnome-window-properties.glade | 22 +---------------------
 2 files changed, 6 insertions(+), 21 deletions(-)

commit 3e89c70361854fb93ff4938240261a747fcc3ffa
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:53:29 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * gnome-ui-properties.glade: Patch to fix spacing between action
        area and vbox of preferences dialog.

 capplets/ui-properties/ChangeLog                 | 5 +++++
 capplets/ui-properties/gnome-ui-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b9926a913078abbe0214ac1734dfe6ab1224d2f9
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:51:52 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * sound-properties-capplet.c: Patch to fix spacing between action
        area and vbox of preferences dialog.

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 1 +
 2 files changed, 6 insertions(+)

commit bab79fda82ccda175a089a7c49055628666de8e5
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:51:00 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * gnome-mouse-properties.glade: Patch to fix spacing between action
            area and vbox of preferences dialog.

 capplets/mouse/ChangeLog                    | 5 +++++
 capplets/mouse/gnome-mouse-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 429743d0ec25d147a333a24cf4165d98a09ea5bb
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:48:32 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * gnome-keybinding-properties.glade: Patch to fix spacing between
        action area and vbox of preferences dialog.

 capplets/keybindings/ChangeLog                         | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f6293ce67ac762576b2fa42a019c9cd7c83e0512
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:46:31 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * font-properties.glade: Patch to fix spacing between action
        area and vbox of preferences dialog.

 capplets/font/ChangeLog             | 5 +++++
 capplets/font/font-properties.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 4456ba2a395f5f8106cedd82cf8bf78565879edb
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:44:51 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * file-types-properties.glade: Patch to fix spacing between action
        area and vbox of preferences dialog.

 capplets/file-types/ChangeLog                   | 5 +++++
 capplets/file-types/file-types-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 9f3acb68cd742ab164dec7e7fc4724eeecfeef6f
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:42:10 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * main.c: Patch to fix spacing
        between action area and vbox of preferences dialog.

 capplets/display/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f5cbf86a13a8f97fc8850b9038c74f21c0c4ce1
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:39:45 2003 +0000

    Patch to fix spacing between action area and vbox of preferences dialog.
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * gnome-default-applications-properties.glade: Patch to fix spacing
        between action area and vbox of preferences dialog.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 8a7450c666349e2d1b366817a033fe82dc8d114a
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:34:35 2003 +0000

    Patch to add two more pixels of spacing between action area and vbox of
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * at-enable-dialog.glade: Patch to add two more pixels of spacing
        between action area and vbox of preferences dialog.

 capplets/accessibility/at-properties/ChangeLog              | 5 +++++
 capplets/accessibility/at-properties/at-enable-dialog.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 92dd6bdd9c1db466514e27ee8271e1c04fcf2c9f
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Mon Aug 4 05:31:14 2003 +0000

    Patch to add two more pixels of spacing between action area and vbox of
    
    
    2003-08-01  Dennis Cranston  <dennis_cranston at yahoo com>
    
        * gnome-accessibility-keyboard-properties.glade: Patch to add
        two more pixels of spacing between action area and vbox of
        preferences dialog.

 capplets/accessibility/keyboard/ChangeLog                           | 6 ++++++
 .../keyboard/gnome-accessibility-keyboard-properties.glade          | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 5c65a38da50dcaabf31f8af9bd47d338a799c1d0
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sun Aug 3 10:11:14 2003 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 491 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 272 insertions(+), 223 deletions(-)

commit e7d99d6ea86c55b90da85ddae7c6aa4e99e61c7e
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Aug 2 22:44:47 2003 +0000

    Updated Swedish translation.
    
    2003-08-03  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 22 ++++++++++++++++------
 2 files changed, 20 insertions(+), 6 deletions(-)

commit 532a9fae6a2c7e445a590c71d82cba42890561e8
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sat Aug 2 15:52:24 2003 +0000

    Warn when a font larger than 31 points is selected, #97653. Caring
    
    Sat Aug  2 01:16:16 2003  Jonathan Blandford  <jrb@gnome.org>
    
            * main.c (application_font_to_gconf): Warn when a font larger than
            31 points is selected, #97653.
    Caring Desktop++

 capplets/common/gconf-property-editor.c |   6 ++
 capplets/common/gconf-property-editor.h |   3 +-
 capplets/font/ChangeLog                 |   5 +
 capplets/font/font-properties.glade     | 162 ++++++++++++++++++++++++++++
 capplets/font/main.c                    | 186 ++++++++++++++++++++++++--------
 5 files changed, 317 insertions(+), 45 deletions(-)

commit 170ffa5325246823903474dbd1e47e44eb61e91a
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Aug 1 23:34:02 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 +++
 po/cs.po     | 99 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 59 insertions(+), 44 deletions(-)

commit 8b610b512cab186d683b621cc81552f3d6954dcc
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Aug 1 21:47:42 2003 +0000

    Updated Swedish translation.
    
    2003-08-01  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 511 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 297 insertions(+), 218 deletions(-)

commit d0935e22dba2aed7ac8b689e199155c691521a92
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Aug 1 19:52:19 2003 +0000

    Add N_() calls to all the human readable strings. Based on a patch from
    
    Fri Aug  1 15:49:03 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-default-applications-properties-structs.c
        (possible_terminals): Add N_() calls to all the human readable
        strings.  Based on a patch from Christophe Fergeau
        <teuf@users.sourceforge.net>, #117085

 capplets/default-applications/ChangeLog            |  11 +
 ...gnome-default-applications-properties-structs.c |  45 ++--
 .../gnome-default-applications-properties.c        | 131 +---------
 .../gnome-default-applications-properties.glade    | 285 ---------------------
 po/POTFILES.in                                     |   1 +
 5 files changed, 35 insertions(+), 438 deletions(-)

commit 8f1008f48d36aaa51298cd538c79b8a87812e880
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Aug 1 19:05:02 2003 +0000

    Patch from Dennis Cranston <dennis_cranston@yahoo.com> to add two more
    
    Fri Aug  1 15:04:39 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.glade: Patch from Dennis Cranston
        <dennis_cranston@yahoo.com> to add two more pixels of spacing
        between action area and vbox of prefrences dialog.

 capplets/keyboard/ChangeLog                       | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 39b82671126df70b73f3389e492cce03bdb1bd4c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Aug 1 18:59:43 2003 +0000

    move declarations around. Patch from Damien Carbery
    
    Fri Aug  1 14:51:02 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-settings-mouse.c (set_locate_pointer): move declarations
            around.  Patch from Damien Carbery <damien.carbery@sun.com>,
            #118860

 gnome-settings-daemon/ChangeLog              | 6 ++++++
 gnome-settings-daemon/gnome-settings-mouse.c | 5 ++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit a3fbc72ef31138ef8e85f86038dcd659e61146ce
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Aug 1 18:43:43 2003 +0000

    remove markup tags from translated strings, #118801.
    
    Fri Aug  1 14:28:52 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * main.c (init_startup_state): remove markup tags from translated
        strings, #118801.

 capplets/accessibility/at-properties/ChangeLog |  5 +++++
 capplets/accessibility/at-properties/main.c    | 13 ++++++------
 capplets/mouse/ChangeLog                       |  5 +++++
 capplets/mouse/gnome-mouse-properties.c        | 28 +++++++++++++++-----------
 4 files changed, 33 insertions(+), 18 deletions(-)

commit 22e9266f7840a7cde2b26f6bf02a99c25c3db574
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Aug 1 17:36:57 2003 +0000

    add support for Xcursors.
    
    Fri Aug  1 13:06:04 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-mouse-properties.c (create_dialog): add support for
        Xcursors.

 capplets/mouse/ChangeLog                    |   5 ++
 capplets/mouse/gnome-mouse-properties.c     | 106 +++++++++++++++++++++++++---
 capplets/mouse/gnome-mouse-properties.glade | 106 ++++++++++++++++++++++------
 configure.in                                |  11 +++
 4 files changed, 197 insertions(+), 31 deletions(-)

commit 2e32bbe92055053e68666066f7bbc3aca6a9df96
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Aug 1 11:11:05 2003 +0000

    Updated Swedish translation.
    
    2003-08-01  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 70 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 43 insertions(+), 31 deletions(-)

commit 6dc20cd44c13b2a4e2bfde6343ce7aef0f9de167
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Fri Aug 1 08:05:51 2003 +0000

    Updated Polish translation.
    
    2003-08-01  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 68 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 42 insertions(+), 30 deletions(-)

commit 15636387f4452498b60656dcedffb940d5c1589c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jul 31 21:44:45 2003 +0000

    add properties dialog, #118323 =
    
    Thu Jul 31 17:41:45 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * drwright.c (popup_preferences_cb): add properties dialog,
            #118323
    =

 typing-break/ChangeLog  | 13 +++++++++
 typing-break/drwright.c | 75 ++++++++++++-------------------------------------
 2 files changed, 31 insertions(+), 57 deletions(-)

commit 0e60a77a53d3adbc4256c4548ec3e31a6ec41f16
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jul 31 21:44:05 2003 +0000

    Add typing-break properties, #118323
    
    Thu Jul 31 17:42:13 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-keyboard-properties.c (main): Add typing-break properties,
            #118323

 capplets/keyboard/ChangeLog                       |  5 +++++
 capplets/keyboard/gnome-keyboard-properties.c     | 14 ++++++++++----
 capplets/keyboard/gnome-keyboard-properties.glade |  2 +-
 3 files changed, 16 insertions(+), 5 deletions(-)

commit aa54b2de8237e8dc353fe6745a4c59a7b251602d
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Thu Jul 31 21:27:27 2003 +0000

    Updated Polish translation.
    
    2003-07-31  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 25 +++++++++++++++----------
 2 files changed, 19 insertions(+), 10 deletions(-)

commit 7b51690a086d992ca03fa7bb207ca7631f9f9061
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Jul 31 21:14:27 2003 +0000

    Updated Swedish translation.
    
    2003-07-31  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 559 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 347 insertions(+), 216 deletions(-)

commit b45d5e1d630caad676ffc8169c39b0f774dd0055
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jul 31 18:49:12 2003 +0000

    remove unneeded #include <sys/vt.h> as it doesn't exist on Solaris.
    
    Thu Jul 31 14:43:16 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * typing-break/drw-monitor.c: remove unneeded #include <sys/vt.h>
        as it doesn't exist on Solaris.

 ChangeLog                  | 5 +++++
 typing-break/drw-monitor.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 09a24e9d5daf312969f669caf874a75660ec9c94
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jul 31 18:27:44 2003 +0000

    Patch from Anders Carlsson to special case "both-horiz".
    
    Thu Jul 31 14:22:38 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-settings-xsettings.c (translate_string_string_toolbar):
            Patch from Anders Carlsson to special case "both-horiz".
    
    Thu Jul 31 14:06:51 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-settings-mouse.c: Patch from Satyajit Kanungo
            <satyajit.kanungo@wipro.com> to make locate pointer work in
            a multi-screen environment.

 gnome-settings-daemon/ChangeLog                    | 11 +++
 .../gnome-settings-locate-pointer.c                | 19 +++--
 .../gnome-settings-locate-pointer.h                |  2 +-
 gnome-settings-daemon/gnome-settings-mouse.c       | 92 +++++++++++++++-------
 gnome-settings-daemon/gnome-settings-xsettings.c   | 24 +++++-
 5 files changed, 110 insertions(+), 38 deletions(-)

commit 5e23d111860bd6c697f1e68eae86b05b63b3685e
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Thu Jul 31 12:57:28 2003 +0000

    Updated Spanish translation.
    
    2003-07-31  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 76 insertions(+), 13 deletions(-)

commit e83c0a9bab1c03fedfd36991859120befbe3231f
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Wed Jul 30 15:19:02 2003 +0000

    fix comment for at-properties.desktop
    
        * fr.po: fix comment for at-properties.desktop

 po/ChangeLog | 4 ++++
 po/fr.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1c979bbd821437a3f19d235b07197d4ca9dc17b5
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Tue Jul 29 13:55:56 2003 +0000

    Use gnome-audio.png, not gnome-audio2.png for icon.
    
            * capplets/sound/sound.desktop.in:
            Use gnome-audio.png, not gnome-audio2.png for icon.

 ChangeLog                       | 5 +++++
 capplets/sound/sound.desktop.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 419732753c8927552d07206f9d5ef04eeb2fc820
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Tue Jul 29 09:22:29 2003 +0000

    Quiet CVS.
    
            * capplets/accessibility/at-properties/.cvsignore:
            * vfs-methods/themus/.cvsignore:
            Quiet CVS.
    
            * vfs-methods/themus/Makefile.am:
            Add missing files to EXTRA_DIST. Fix distcheck.
    
            * gnome-settings-daemon/Makefile.am:
            Really don't ship generated files in tarball.

 ChangeLog                                       | 12 ++++++++++++
 capplets/accessibility/at-properties/.cvsignore |  4 ++++
 gnome-settings-daemon/Makefile.am               |  2 --
 vfs-methods/themus/.cvsignore                   |  1 +
 vfs-methods/themus/Makefile.am                  |  2 ++
 5 files changed, 19 insertions(+), 2 deletions(-)

commit 16f0581f5651d5287fa666acf037e383528ebcc9
Author: Christophe Fergeau <teuf@gnome.org>
Date:   Mon Jul 28 21:19:07 2003 +0000

    fixed a few typos, a few consistency fixes for menu entries
    
    2003-07-28  Christophe Fergeau  <teuf@gnome.org>
    
        * fr.po: fixed a few typos, a few consistency fixes for menu entries

 po/ChangeLog |   4 +
 po/fr.po     | 684 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 419 insertions(+), 269 deletions(-)

commit efebed9226abdd86ff226ea0cebac2783c083c80
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Mon Jul 28 05:49:16 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-07-28  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 26 +++++++++++++-------------
 2 files changed, 17 insertions(+), 13 deletions(-)

commit d8be1f76ea81c6a28eb4e9b2999bf7934ecaa359
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sun Jul 27 22:16:38 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 48 ++++++++++++++++++++++++++++++++++++++++++------
 2 files changed, 46 insertions(+), 6 deletions(-)

commit 4564094d800dbf4f81c2208a19636ea31d254451
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sun Jul 27 16:03:54 2003 +0000

    Updated the Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 623 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 365 insertions(+), 262 deletions(-)

commit 1d7aae5758dad969600b7356009437a5e8e0fa2d
Author: Sajith VK <sajith_vk@src.gnome.org>
Date:   Sun Jul 27 11:11:27 2003 +0000

    ok

 po/ml.po | 604 +++++++++++++++++----------------------------------------------
 1 file changed, 160 insertions(+), 444 deletions(-)

commit 3f502cc9e3f32d69ce89b718debc4327f0195171
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sun Jul 27 04:21:13 2003 +0000

    Updated Malay translation.
    
    2002-07-26  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay translation.

 po/ChangeLog |   4 +
 po/ms.po     | 795 +++++++++++++++++++++++++----------------------------------
 2 files changed, 346 insertions(+), 453 deletions(-)

commit 9b7c859aa8408eda159db7f8e6b6b1dc48f614af
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Sat Jul 26 21:22:34 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-07-26  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog | 130 +++++++------
 po/nl.po     | 620 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 420 insertions(+), 330 deletions(-)

commit 4a67acda4dbc66884a31446265dea7b35d6f0d72
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Jul 26 15:30:49 2003 +0000

    Updated Portuguese translation.
    
    2003-07-26  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 +++
 po/pt.po     | 98 +++++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 82 insertions(+), 20 deletions(-)

commit eb2b6941bb34bb038fd00c79b53c008e8f5c2032
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Jul 26 09:26:49 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 130 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 67 insertions(+), 63 deletions(-)

commit 117377d7350d8dfef89a51fdb3c20090e52038b9
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Jul 26 09:23:17 2003 +0000

    Updated Hebrew translation.

 po/he.po | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 70 insertions(+), 13 deletions(-)

commit 47e9a3a05fed0911065d027dd40094c8f888ab84
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jul 25 20:51:47 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 49 ++++++++++++++++++++++++++++++++++---------------
 2 files changed, 38 insertions(+), 15 deletions(-)

commit 15148dc0a887492af8cfc441fe5785dc9db204da
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Jul 25 20:37:59 2003 +0000

    Patch from Ghee Teo to move the key bindings to the right place.
    
    Fri Jul 25 16:29:29 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-keybinding-properties.c (desktop_key_list): Patch from
            Ghee Teo to move the key bindings to the right place.

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 3f9b59a4c6f076f50542d0e7339df728f436ccd8
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Fri Jul 25 17:32:40 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 +++
 po/de.po     | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 76 insertions(+), 14 deletions(-)

commit 26fe3338bb83bc62534e0a4627099609f6382e90
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Fri Jul 25 05:50:01 2003 +0000

    Updated Polish translation.
    
    2003-07-25  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 46 +++++++++++++++++++++++++++++++++++-----------
 2 files changed, 39 insertions(+), 11 deletions(-)

commit daf94fcdf9892b9c9c09bceee60939cf1962215b
Author: Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
Date:   Fri Jul 25 05:14:25 2003 +0000

    Allow only numeric values in spinbutton. Fixes bugzilla bug# 118175
    
    2003-07-24  Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
    
            * gnome-accessibility-keyboard-properties.glade:
            Allow only numeric values in spinbutton.
            Fixes bugzilla bug# 118175

 capplets/accessibility/keyboard/ChangeLog                         | 6 ++++++
 .../keyboard/gnome-accessibility-keyboard-properties.glade        | 8 ++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit d458a0a8b184d7c92075db4775887e5101019ee4
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Fri Jul 25 01:11:33 2003 +0000

    Updated Welsh translation.

 po/ChangeLog |   4 ++
 po/cy.po     | 118 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 82 insertions(+), 40 deletions(-)

commit 0384b385bc6ef574d1625197b81b003fd0b21b7e
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jul 24 21:14:33 2003 +0000

    remove the float_to_int conversion as the peditor already does that.
    
    Thu Jul 24 16:14:33 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-mouse-properties.c (setup_dialog): remove the float_to_int
            conversion as the peditor already does that.

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit c54973f9b2ed2dcbd54a2010e12fc13b07e625f9
Author: Andrew Sobala <aes@gnome.org>
Date:   Thu Jul 24 19:37:24 2003 +0000

    P
    
    2003-07-24  Andrew Sobala  <aes@gnome.org>
    
        * wooooops, forgot to commit POTFILES.in :P

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 2d9c0e2298ffddd7e5ceaca4591f838b09164b58
Author: Andrew Sobala <aes@gnome.org>
Date:   Thu Jul 24 19:35:08 2003 +0000

    added GUI to ask if a font should be applied
    
    2003-07-24  Andrew Sobala  <aes@gnome.org>
    
        * added GUI to ask if a font should be applied

 ChangeLog                                 |   4 +
 configure.in                              |   2 +-
 po/ChangeLog                              |   4 +
 vfs-methods/themus/ChangeLog              |   5 +
 vfs-methods/themus/Makefile.am            |   6 +-
 vfs-methods/themus/apply-font.glade       | 233 ++++++++++++++++++++++++++++++
 vfs-methods/themus/themus-theme-applier.c |  38 ++++-
 7 files changed, 287 insertions(+), 5 deletions(-)

commit e840580a1eedb21f8eec1d2abc690a1f52d56bbf
Author: Andrew Sobala <aes@gnome.org>
Date:   Wed Jul 23 16:27:23 2003 +0000

    s/themus-component.c/themus-theme-applier.c/
    
    2003-07-23  Andrew Sobala <aes@gnome.org>
    
        * POTFILES.in: s/themus-component.c/themus-theme-applier.c/

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit dcb7837d2e91fff186b148fda355f477c9a16fa0
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Tue Jul 22 15:30:13 2003 +0000

    Updated the Greek translation

 po/ChangeLog |   4 ++
 po/el.po     | 217 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 98 insertions(+), 123 deletions(-)

commit 147ec6386ec6bb66e5e7e53cb878db66aea6f66d
Author: Andrew Sobala <aes@gnome.org>
Date:   Mon Jul 21 21:35:24 2003 +0000

    As per comments on Usability@gnome.org: Removed "Apply theme" context menu
    
    2003-07-21  Andrew Sobala  <aes@gnome.org>
    
            As per comments on Usability@gnome.org:
            * Removed "Apply theme" context menu item
            * Made themes apply when you click on them instead

 vfs-methods/themus/ChangeLog                     |  6 ++
 vfs-methods/themus/Makefile.am                   | 27 ++++---
 vfs-methods/themus/Themus_Component.server.in.in | 19 -----
 vfs-methods/themus/themus-component-main.c       | 54 --------------
 vfs-methods/themus/themus-component.c            | 93 ------------------------
 vfs-methods/themus/themus-component.h            | 47 ------------
 vfs-methods/themus/themus-theme-applier.c        | 73 +++++++++++++++++++
 vfs-methods/themus/themus.applications           |  8 ++
 vfs-methods/themus/themus.keys                   |  6 ++
 vfs-methods/themus/themus.mime                   |  2 -
 10 files changed, 106 insertions(+), 229 deletions(-)

commit 07d57fc02a1400854b84a4734d98c1427539dd1c
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Mon Jul 21 19:55:47 2003 +0000

    Updated Polish translation.
    
    2003-07-21  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 36 ++++++++++++++++++++++++++++++++++--
 2 files changed, 38 insertions(+), 2 deletions(-)

commit 28a92e5b59dd7e961ad2b1546da3b9224e15da21
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Mon Jul 21 17:35:41 2003 +0000

    Updated Spanish translation.
    
    2003-07-21  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog | 130 +++++++------
 po/es.po     | 626 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 377 insertions(+), 379 deletions(-)

commit e7a8bd6acf332b7f541a33f8081cf348d5ec121b
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Mon Jul 21 12:43:10 2003 +0000

    Add capplets/accessibility/at-properties/main.c
    
    2003-07-21  Abel Cheung  <maddog@linux.org.hk>
    
        * POTFILES.in: Add capplets/accessibility/at-properties/main.c

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 68995d29bf3fc75ec0f6448dbf41feb868e6e683
Author: Andrew Sobala <aes@gnome.org>
Date:   Sun Jul 20 22:31:17 2003 +0000

    apply fonts (fixes: #109543)
    
    2003-07-20  Andrew Sobala  <aes@gnome.org>
    
            * themus-component.c: (impl_Bonobo_Listener_event): apply
            fonts (fixes: #109543)

 vfs-methods/themus/ChangeLog          |  5 +++++
 vfs-methods/themus/themus-component.c | 19 ++++++++++++-------
 2 files changed, 17 insertions(+), 7 deletions(-)

commit f30370b0d428b899f270828fa380382244359078
Author: Dafydd Harries <daf@src.gnome.org>
Date:   Sun Jul 20 08:27:43 2003 +0000

    Updated Welsh translation.

 po/ChangeLog |    5 +
 po/cy.po     | 1212 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 627 insertions(+), 590 deletions(-)

commit 5b57000e91f067a6cfe77e51c7a3e4ddd75b890f
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Sun Jul 20 06:25:44 2003 +0000

    Added a window icon to the capplet.
    
    
    2003-07-19  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-default-applications-properties.c:  Added a window icon
        to the capplet.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.c     | 1 +
 2 files changed, 6 insertions(+)

commit a08b199662ba14815ba9b4362dcc85a3325adcee
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun Jul 20 01:57:36 2003 +0000

    Updated Portuguese translation.
    
    2003-07-20  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 751 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 374 insertions(+), 381 deletions(-)

commit 486a61649fe1f2b42be1630a9be0548effee5edd
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Sun Jul 20 00:44:41 2003 +0000

    New file.
    
    
    2003-07-18  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-network-capplet.png:  New file.
    
        * Makefile.am, gnome-network-preferences.c:  Add the missing
        window icon.

 capplets/network/ChangeLog                   |   7 +++++++
 capplets/network/Makefile.am                 |   5 ++++-
 capplets/network/gnome-network-capplet.png   | Bin 0 -> 4118 bytes
 capplets/network/gnome-network-preferences.c |   4 ++--
 4 files changed, 13 insertions(+), 3 deletions(-)

commit a73d7769f2543c60c712a0645e5a3f2b21f34eb1
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Jul 19 16:09:40 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 130 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 67 insertions(+), 63 deletions(-)

commit 053280c317947d1ee9008c75b6b94815494e9eea
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Jul 19 16:08:07 2003 +0000

    Updated Hebrew translation.

 po/he.po | 475 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 252 insertions(+), 223 deletions(-)

commit 4102d9f100d7b4ec70dc62520d24a968f5a2bfca
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Jul 19 11:30:11 2003 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 448 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 224 insertions(+), 228 deletions(-)

commit c8673ce68fd6a55015bfd6752c636e6fd7df3ea5
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Jul 19 11:05:42 2003 +0000

    gnome-network-preferences.glade: Padding fixes.

 capplets/network/ChangeLog                       |  4 ++++
 capplets/network/gnome-network-preferences.glade | 11 ++++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 21e0566da94409373c45777c656059364d8009d6
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Jul 19 07:45:57 2003 +0000

    Updated Korean translation.
    
    2003-07-19  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 753 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 376 insertions(+), 381 deletions(-)

commit 9d4e2fa2ea610fb5a71670bc27ceff670907bf62
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jul 18 23:21:48 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 376 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 201 insertions(+), 179 deletions(-)

commit 28982389a21adcd30bab51c9eb66ac716485f059
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Fri Jul 18 22:22:38 2003 +0000

    Add a check to confirm that the AT's are installed. Add a warning message
    
    2003-07-18  Jonathan Blandford  <jrb@gnome.org>
    
            * main.c: Add a check to confirm that the AT's are installed.  Add
            a warning message if they are not.  Change widget naming scheme.
    
            * at-enable-dialog.glade: Change widget naming scheme.

 capplets/accessibility/at-properties/ChangeLog     |  7 ++
 .../at-properties/at-enable-dialog.glade           | 63 +++++++++++++----
 .../at-properties/at-startup-session.c             | 21 ++++++
 .../at-properties/at-startup-session.h             |  3 +
 capplets/accessibility/at-properties/main.c        | 80 ++++++++++++++--------
 5 files changed, 132 insertions(+), 42 deletions(-)

commit ecf1151922e14825c28109aa344a39a02bcc0385
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 14:53:12 2003 +0000

    Apply patch from Christian - Manny Calavera - Neumair <chris@gnome-de.org>
    
    
    2003-07-18  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-ui-properties.c, gnome-ui-properties.glade:
        Apply patch from Christian - Manny Calavera - Neumair
        <chris@gnome-de.org> for ui-review bug # 99537.

 capplets/ui-properties/ChangeLog                 |  6 ++++++
 capplets/ui-properties/gnome-ui-properties.c     | 12 ++++++------
 capplets/ui-properties/gnome-ui-properties.glade | 11 ++++++-----
 3 files changed, 18 insertions(+), 11 deletions(-)

commit 5ead39304d8476dbcef1a3a393985cbb34937199
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Fri Jul 18 09:50:52 2003 +0000

    Updated Polish translation.
    
    2003-07-18  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |   4 +
 po/pl.po     | 324 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 177 insertions(+), 151 deletions(-)

commit 58aaf938e6193a70701bd78a0cbb75532a2ebe31
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 05:52:00 2003 +0000

    Very minor HIGification of widget padding.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-default-applications-properties.glade:  Very minor
        HIGification of widget padding.

 capplets/default-applications/ChangeLog            |  5 ++++
 .../gnome-default-applications-properties.glade    | 29 ++++++++++++----------
 2 files changed, 21 insertions(+), 13 deletions(-)

commit 1e029296ca7e4a3cc6a1bf2da6bc67accc569b51
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 05:39:06 2003 +0000

    Minor HIG widget padding adjustments.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * file-types-properties.glade:  Minor HIG widget padding adjustments.

 capplets/file-types/ChangeLog                   |  4 ++++
 capplets/file-types/file-types-properties.glade | 21 ++++++++++++---------
 2 files changed, 16 insertions(+), 9 deletions(-)

commit 4cff6dd00df041c31de60f22dc1b2e02547e84a7
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 05:08:03 2003 +0000

    Make close the default button.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-window-properties.glade:  Make close the default
        button.

 capplets/windows/ChangeLog                     | 5 +++++
 capplets/windows/gnome-window-properties.glade | 1 +
 2 files changed, 6 insertions(+)

commit 70ef29abc29b311e3cf91e8435255a3c37121136
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 04:59:02 2003 +0000

    Some HIGification of the dialog. Fixes some of ui-review bug #98922.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * font-properties.glade:  Some HIGification of the dialog.
        Fixes some of ui-review bug #98922.

 capplets/font/ChangeLog             |   5 +
 capplets/font/font-properties.glade | 818 +++++++++++++++++++-----------------
 2 files changed, 436 insertions(+), 387 deletions(-)

commit ab2569b4fbe2ef1e6d90ef2046b5686ed11b95ef
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 04:28:56 2003 +0000

    *main.c: Minor adjustment of widget padding per HIG. Also, added missing
    
    
    07-17-2003 Dennis Cranston <dennis_cranston at yahoo com>
    
        *main.c:  Minor adjustment of widget padding per HIG.
         Also, added missing mnemonics.

 capplets/display/main.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit fe9fa233cf9cb030adec5c5b4d4ce8589d120316
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 04:14:54 2003 +0000

    Minor HIG widget padding adjustments.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-window-properties.glade:  Minor HIG widget padding
        adjustments.

 capplets/windows/ChangeLog                     |   5 +
 capplets/windows/gnome-window-properties.glade | 492 +++++++++++++------------
 2 files changed, 258 insertions(+), 239 deletions(-)

commit 657a442078055c77a5fd066823e6de710a497f71
Author: Dennis Cranston <dcransto@src.gnome.org>
Date:   Fri Jul 18 04:13:53 2003 +0000

    *** empty log message ***

 capplets/network/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1264267117643e3073950affff8858c6c910469b
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 04:01:20 2003 +0000

    Minor HIG widget padding adjustments. Fix a mnemonic conflict.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-keybinding-properties.glade:  Minor HIG widget padding
        adjustments.  Fix a mnemonic conflict.

 capplets/network/ChangeLog                       |  5 +++++
 capplets/network/gnome-network-preferences.glade | 11 +++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit d62b1f1fd49ce10a7c754d9c5f614f4d5cd78428
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 03:52:17 2003 +0000

    Minor HIG widget padding adjustments.
    
    
    2003-07-11  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-keybinding-properties.glade:  Minor HIG widget padding
        adjustments.

 capplets/keybindings/ChangeLog                         | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.glade | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 451d5070c58809ffa61391868c7c9198c8dec9ab
Author: Dennis Cranston <dcransto@src.gnome.org>
Date:   Fri Jul 18 01:50:05 2003 +0000

    *** empty log message ***

 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.glade | 1 -
 1 file changed, 1 deletion(-)

commit b69649ec52d92dc9224586e1179319e9c951af8d
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Fri Jul 18 01:42:32 2003 +0000

    Fixes for ui-review bug report #99531 and fixes for duplicate mnemonics.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-keyboard-properties.glade,
          gnome-keyboard-properties.c:  Fixes for ui-review
          bug report #99531 and fixes for duplicate mnemonics.

 capplets/keyboard/ChangeLog                       |    6 +
 capplets/keyboard/gnome-keyboard-properties.c     |    2 -
 capplets/keyboard/gnome-keyboard-properties.glade | 1112 +++++++++++----------
 3 files changed, 613 insertions(+), 507 deletions(-)

commit 005dc9fff2196a14968bd3dfdc5b94c2799061e2
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Jul 17 23:38:55 2003 +0000

    Fixes for ui-review bug report #98916 and duplicate mnemonic fixes.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * background-properties.glade,
          background-properties-capplet.c:  Fixes for ui-review
          bug report #98916 and duplicate mnemonic fixes.

 capplets/background/ChangeLog                      |   6 +
 .../background/background-properties-capplet.c     |  23 +--
 capplets/background/background-properties.glade    | 183 ++++++++++++---------
 3 files changed, 116 insertions(+), 96 deletions(-)

commit a2291c375c6db94b6f5e9cb922060d4a16e54bfb
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Thu Jul 17 22:23:52 2003 +0000

    Updated Polish translation.
    
    2003-07-18  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |  4 ++++
 po/pl.po     | 52 +++++++++++++++++++++++++++++-----------------------
 2 files changed, 33 insertions(+), 23 deletions(-)

commit 0b748c4145fc21275cdb90601814400843da0529
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Jul 17 22:16:37 2003 +0000

    HIG fixes for ui-review bug report #98915.
    
    
    2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-accessibility-keyboard-properties.glade,
          accessibility-keyboard.c:  HIG fixes for ui-review bug
          report #98915.

 capplets/accessibility/keyboard/ChangeLog          |    6 +
 .../keyboard/accessibility-keyboard.c              |    2 +-
 .../gnome-accessibility-keyboard-properties.glade  | 2913 ++++++++++----------
 3 files changed, 1479 insertions(+), 1442 deletions(-)

commit c37f13d8442463891a223a697ccecd1cc6573453
Author: Richard Hult <rhult@src.gnome.org>
Date:   Thu Jul 17 21:31:57 2003 +0000

    Broken pipe again.

 typing-break/main.c | 52 ----------------------------------------------------
 1 file changed, 52 deletions(-)

commit ac4257326c9fd476d11538619752254037c02e27
Author: Richard Hult <richard@imendio.com>
Date:   Thu Jul 17 21:28:41 2003 +0000

    Remove session stuff since g-s-d handles lifetime the cycle now.
    
    2003-07-17  Richard Hult  <richard@imendio.com>
    
        * typing-break/main.c (main): Remove session stuff since g-s-d
        handles lifetime the cycle now.
    
    2003-07-17  Richard Hult  <richard@imendio.com>
    
        * gnome-settings-typing-break.c (setup_typing_break): Start with
        -n to avoid the warning about notification area.
        (gnome_settings_typing_break_init): Fix a warning.

 ChangeLog                                           | 5 +++++
 gnome-settings-daemon/ChangeLog                     | 6 ++++++
 gnome-settings-daemon/gnome-settings-typing-break.c | 4 ++--
 3 files changed, 13 insertions(+), 2 deletions(-)

commit 6e9abea7148baf2a9922ed50c48baed94da3cc53
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Thu Jul 17 21:22:53 2003 +0000

    Updated Polish translation.
    
    2003-07-17  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |   4 +++
 po/pl.po     | 106 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 58 insertions(+), 52 deletions(-)

commit a1b20f29e039004fdd346dab0f41dcd705adfd80
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Jul 17 21:21:22 2003 +0000

    Updated Swedish translation.
    
    2003-07-17  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 133 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 75 insertions(+), 62 deletions(-)

commit b96451a92826aaaa56f02d6273a816c1fc0bb464
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu Jul 17 20:02:03 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 +++
 po/cs.po     | 100 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 49 insertions(+), 55 deletions(-)

commit a11df1b95ad8e7a1f82e996fefadf77eef522300
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Thu Jul 17 15:46:15 2003 +0000

    Dutch translation updated by Kees van den Broek.
    
    2003-07-17  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Kees van den Broek.

 po/ChangeLog | 130 ++++++++++++++++++++++++++++++-----------------------------
 po/nl.po     |  75 ++++++++++++++++++++--------------
 2 files changed, 112 insertions(+), 93 deletions(-)

commit 704513aef8e4f53409662bb46d3ff5fb52c226b2
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Jul 17 06:47:54 2003 +0000

    Make close the default button.
    
    
    2003-07-16  Dennis Cranston <dennis_cranston at yahoo com>
    
        * at-enable-dialog.glade:  Make close the default button.

 capplets/accessibility/at-properties/ChangeLog              | 4 ++++
 capplets/accessibility/at-properties/at-enable-dialog.glade | 1 +
 2 files changed, 5 insertions(+)

commit e091d4facdb2c37e296c8a78a6381e6ba95eca1e
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Jul 17 06:27:37 2003 +0000

    UI-Review fixes for bug report #99537.
    
    
    2003-07-11  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-ui-properties.glade:  UI-Review fixes for bug
        report #99537.

 capplets/ui-properties/ChangeLog                 |   5 +
 capplets/ui-properties/gnome-ui-properties.glade | 460 ++++++++++++-----------
 2 files changed, 245 insertions(+), 220 deletions(-)

commit 209db7cd51914f4719cc6d8443606fa441b23919
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Jul 17 04:52:01 2003 +0000

    Adjust widget padding to make dialog a little more HIG compliant.
    
    
    2003-07-16  Dennis Cranston <dennis_cranston at yahoo com>
    
        * gnome-accessibility-keyboard-properties.glade:  Adjust widget
        padding to make dialog a little more HIG compliant.

 capplets/accessibility/keyboard/ChangeLog              |  5 +++++
 .../gnome-accessibility-keyboard-properties.glade      | 18 +++++++++---------
 2 files changed, 14 insertions(+), 9 deletions(-)

commit ccd096fc0c99a65a9803cd0c9f5146478116e7f2
Author: Dennis Cranston <dcransto@src.gnome.org>
Date:   Thu Jul 17 04:18:43 2003 +0000

    *** empty log message ***

 capplets/accessibility/at-properties/at-enable-dialog.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aaa60b7f2dc9f5acd5da8e4471717562ca965c50
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Thu Jul 17 01:25:26 2003 +0000

    Adjust widget padding and remove separator per HIG.
    
    
    2003-07-16  Dennis Cranston <dennis_cranston at yahoo com>
    
        * at-enable-dialog.glade:  Adjust widget padding and remove
        separator per HIG.

 capplets/accessibility/at-properties/ChangeLog     |   5 +
 .../at-properties/at-enable-dialog.glade           | 474 ++++++++++++---------
 2 files changed, 266 insertions(+), 213 deletions(-)

commit d1556d58189ab9cbeb3bbe53a391100b84a51eaf
Author: Artur Flinta <aflinta@cvs.gnome.org>
Date:   Tue Jul 15 22:33:45 2003 +0000

    Updated Polish translation.
    
    2003-07-16  Artur Flinta  <aflinta@cvs.gnome.org>
    
        * pl.po: Updated Polish translation.

 po/ChangeLog |   4 +
 po/pl.po     | 610 ++++++++++++++++++++---------------------------------------
 2 files changed, 212 insertions(+), 402 deletions(-)

commit 06057a70500696a19a562da484817ab004bb1c78
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Tue Jul 15 21:34:28 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 130 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 67 insertions(+), 63 deletions(-)

commit 08c74082fa3217a196e76355abdd265cc9e9bbac
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Tue Jul 15 21:33:22 2003 +0000

    Updated Hebrew translation.

 po/he.po | 95 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 45 insertions(+), 50 deletions(-)

commit 3e5263673b685493531dbe0ab4752add65220955
Author: Christophe Fergeau <teuf@gnome.org>
Date:   Mon Jul 14 20:34:33 2003 +0000

    added a few more mailers only display Evolution once when both evo<=1.2
    
    2003-07-14  Christophe Fergeau  <teuf@gnome.org>
    
        * gnome-default-applications-properties-structs.c: added a few more
          mailers
        * gnome-default-applications-properties.c:
        (initialize_default_applications): only display Evolution once when
          both evo<=1.2 and evo>=1.4 are installed

 capplets/default-applications/ChangeLog            |  8 ++++++++
 ...gnome-default-applications-properties-structs.c |  7 ++++++-
 .../gnome-default-applications-properties.c        | 23 +++++++++++++++++++---
 3 files changed, 34 insertions(+), 4 deletions(-)

commit ccc1ce1c4c66bb949b7a1e97b5a39b985b5b236f
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sun Jul 13 23:20:56 2003 +0000

    Unification of terminology and hotkeys

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ea66fc5be0b340fa47185c041fb934be3195b6c5
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sun Jul 13 13:47:06 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 50 +++++++++++++++++++++++++++-----------------------
 2 files changed, 31 insertions(+), 23 deletions(-)

commit 12da22e4f8e10d45bf64b2d202d94c42fd09892d
Author: Telsa Gwynne <telsa@src.gnome.org>
Date:   Sun Jul 13 11:03:51 2003 +0000

    Edited my ChangeLog entry for 2003-07-11 to credit Owain Green, Gareth
    Williams and Steve Griffiths properly.

 po/ChangeLog | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit e682505c2c9f97738a0d5738eeef5df2cf0e6b40
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sat Jul 12 21:27:02 2003 +0000

    Unification of terminology and hotkeys

 po/hu.po | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 7775acb1c7a05e44763b0827bc8f1d382cfb4eb9
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Jul 12 12:47:51 2003 +0000

    Updated Swedish translation.
    
    2003-07-12  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 64 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 41 insertions(+), 27 deletions(-)

commit 37110c1328fd7860a0cde760b50f01306e2cef33
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Jul 12 12:27:14 2003 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 721 +++++++++++++++++++++++++----------------------------------
 2 files changed, 307 insertions(+), 418 deletions(-)

commit e55c1c47ff10dade54112a60d20d781cc82decd6
Author: Dennis Cranston <dcransto@src.gnome.org>
Date:   Sat Jul 12 08:10:06 2003 +0000

    Remove indentation on general tab.
    
    
    Remove indentation on general tab.

 capplets/sound/sound-properties.glade | 22 +---------------------
 1 file changed, 1 insertion(+), 21 deletions(-)

commit 1a9c18bab7f7cc2fcb78355d19169d874403a480
Author: Dennis Cranston <dennis_cranston at yahoo com>
Date:   Sat Jul 12 02:05:17 2003 +0000

    More fixes for ui-review bug number 99533.
    
    
    2003-07-11  Dennis Cranston <dennis_cranston at yahoo com>
    
        * sound-properties.glade, sound-properties-capplet.c:
        More fixes for ui-review bug number 99533.

 capplets/sound/ChangeLog                  |   5 ++
 capplets/sound/sound-properties-capplet.c |   8 +-
 capplets/sound/sound-properties.glade     | 120 +++++++++++++++++++++---------
 3 files changed, 93 insertions(+), 40 deletions(-)

commit adc897614a63fa13a6a1a229973f527d7a85940c
Author: Telsa Gwynne <telsa@src.gnome.org>
Date:   Fri Jul 11 09:01:51 2003 +0000

    Start of Welsh translation from http://www.kyfieithu.co.uk/

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/cy.po     | 3048 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3058 insertions(+), 1 deletion(-)

commit 54442746509cec76bece48e44637c09d15300b27
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Thu Jul 10 12:24:11 2003 +0000

    hotkey fixes

 po/hu.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f5972bb1d03e9f6b74ba7de7513cd634d4e3ccd
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Tue Jul 8 21:38:04 2003 +0000

    Merged drwright translation.

 po/ChangeLog |  4 +++
 po/it.po     | 86 +++++++++++++++++++++++-------------------------------------
 2 files changed, 37 insertions(+), 53 deletions(-)

commit 84832a147677c75266c4c7d8b517d9699ec2b149
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Mon Jul 7 15:21:03 2003 +0000

    Dutch translation updated by Kees van den Broek.
    
    2003-07-07  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Kees van den Broek.

 po/ChangeLog |  4 ++++
 po/nl.po     | 23 ++++++++++-------------
 2 files changed, 14 insertions(+), 13 deletions(-)

commit 05ba21bc1eb8837ea0b1a35d8039664a6813b756
Author: Andras Timar <timar@gnome.hu>
Date:   Mon Jul 7 13:41:49 2003 +0000

    Updated Hungarian translation.
    
    2003-07-07  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit a779f9abdce5614e0a51ccd2576a3de9c9fab538
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Mon Jul 7 13:41:49 2003 +0000

    terminology unification

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e49fcbd4d2a05f38012a2f9a660dcf17c58483ba
Author: Andras Timar <timar@gnome.hu>
Date:   Mon Jul 7 13:41:49 2003 +0000

    Updated Hungarian translation.
    
    2003-07-07  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/hu.po | 72 +++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 32 insertions(+), 40 deletions(-)

commit 67d58686365e38f32c49b61591dd682e22ec0e63
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Jul 7 04:59:13 2003 +0000

    post release version bump
    
    
    2003-07-07  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c5b7285caa84f697e04eb9c43d657fe841d44d14
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Jul 7 04:57:46 2003 +0000

    Release 2.3.4
    
    
    2003-07-07  Jody Goldberg <jody@gnome.org>
    
        * Release 2.3.4

 ChangeLog                                      |   4 +
 archiver/ChangeLog                             |   4 +
 archiver/tests/ChangeLog                       |   4 +
 capplets/accessibility/at-properties/ChangeLog |   4 +
 capplets/accessibility/keyboard/ChangeLog      |   4 +
 capplets/background/ChangeLog                  |   4 +
 capplets/common/ChangeLog                      |   4 +
 capplets/default-applications/ChangeLog        |   4 +
 capplets/desktop-links/ChangeLog               |   4 +
 capplets/file-types/ChangeLog                  |   4 +
 capplets/font/ChangeLog                        |   4 +
 capplets/keybindings/ChangeLog                 |   4 +
 capplets/keyboard/ChangeLog                    |   4 +
 capplets/mime-type/ChangeLog                   |   4 +
 capplets/mouse/ChangeLog                       |   4 +
 capplets/network/ChangeLog                     |   4 +
 capplets/rollback/ChangeLog                    |   4 +
 capplets/sound/ChangeLog                       |   4 +
 capplets/theme-switcher/ChangeLog              |   4 +
 capplets/ui-properties/ChangeLog               |   4 +
 capplets/url-properties/ChangeLog              |   4 +
 capplets/windows/ChangeLog                     |   4 +
 capplets/wm-properties/ChangeLog               |   4 +
 control-center/ChangeLog                       |   4 +
 gnome-settings-daemon/ChangeLog                |   4 +
 help/ChangeLog                                 |   4 +
 libbackground/ChangeLog                        |   4 +
 libwindow-settings/ChangeLog                   |   4 +
 po/ChangeLog                                   |   4 +
 po/am.po                                       | 355 +++++++++++++++------
 po/ar.po                                       | 377 ++++++++++++++++------
 po/az.po                                       | 400 +++++++++++++++++------
 po/be.po                                       | 404 +++++++++++++++++------
 po/bg.po                                       | 379 ++++++++++++++++------
 po/bn.po                                       | 400 +++++++++++++++++------
 po/ca.po                                       | 416 ++++++++++++++++++------
 po/cs.po                                       |   2 +-
 po/da.po                                       | 235 +++++++++++---
 po/de.po                                       | 400 +++++++++++++++++------
 po/el.po                                       | 407 ++++++++++++++++++------
 po/en_GB.po                                    | 329 ++++++++++++++-----
 po/es.po                                       | 134 +++++---
 po/et.po                                       | 403 +++++++++++++++++------
 po/fa.po                                       | 375 ++++++++++++++++------
 po/fi.po                                       | 406 ++++++++++++++++++------
 po/fr.po                                       |   2 +-
 po/ga.po                                       | 383 ++++++++++++++++------
 po/gl.po                                       | 377 ++++++++++++++++------
 po/he.po                                       |  42 ++-
 po/hr.po                                       | 381 ++++++++++++++++------
 po/hu.po                                       | 400 +++++++++++++++++------
 po/id.po                                       | 328 ++++++++++++++-----
 po/it.po                                       | 400 +++++++++++++++++------
 po/ja.po                                       |  41 +--
 po/ko.po                                       | 400 +++++++++++++++++------
 po/lt.po                                       | 400 +++++++++++++++++------
 po/lv.po                                       | 400 +++++++++++++++++------
 po/mk.po                                       | 403 +++++++++++++++++------
 po/ml.po                                       | 384 ++++++++++++++++------
 po/mn.po                                       | 400 +++++++++++++++++------
 po/ms.po                                       | 400 +++++++++++++++++------
 po/nl.po                                       |   2 +-
 po/nn.po                                       | 390 +++++++++++++++++------
 po/no.po                                       | 182 +++++++----
 po/pl.po                                       | 404 +++++++++++++++++------
 po/pt.po                                       | 407 ++++++++++++++++++------
 po/pt_BR.po                                    | 422 ++++++++++++++++++-------
 po/ro.po                                       | 404 +++++++++++++++++------
 po/ru.po                                       | 403 +++++++++++++++++------
 po/sk.po                                       | 400 +++++++++++++++++------
 po/sl.po                                       | 404 +++++++++++++++++------
 po/sq.po                                       | 400 +++++++++++++++++------
 po/sr.po                                       | 403 +++++++++++++++++------
 po/sr@Latn.po                                  | 403 +++++++++++++++++------
 po/sv.po                                       |   4 +-
 po/ta.po                                       | 403 +++++++++++++++++------
 po/th.po                                       | 327 ++++++++++++++-----
 po/tr.po                                       | 400 +++++++++++++++++------
 po/uk.po                                       | 400 +++++++++++++++++------
 po/vi.po                                       | 400 +++++++++++++++++------
 po/wa.po                                       | 379 ++++++++++++++++------
 po/zh_CN.po                                    | 402 +++++++++++++++++------
 po/zh_TW.po                                    | 402 +++++++++++++++++------
 vfs-methods/fontilus/ChangeLog                 |   4 +
 vfs-methods/themus/ChangeLog                   |   4 +
 85 files changed, 13853 insertions(+), 4575 deletions(-)

commit 089ed52f130a352b49a4a68a998c92d96150485a
Author: Calum Benson <calum@src.gnome.org>
Date:   Mon Jul 7 00:32:03 2003 +0000

    Replace Bill's placeholder icon before the UI freeze :)

 capplets/sound/ChangeLog       |   5 +++++
 capplets/sound/visual-bell.png | Bin 3735 -> 2357 bytes
 2 files changed, 5 insertions(+)

commit d347ab8649fd722218781a04e3dba6785b30c649
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Jul 6 17:54:25 2003 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 430 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 318 insertions(+), 116 deletions(-)

commit 037f0d844a72a547df49c1852e63a3b7450eee18
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Fri Jul 4 20:41:52 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-07-04  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog | 130 ++++++++++---------
 po/nl.po     | 409 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 373 insertions(+), 166 deletions(-)

commit 760676ec3c69bc82d5e48dc006dc953b659ac0c0
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Jul 4 19:43:21 2003 +0000

    Updated Swedish translation.
    
    2003-07-04  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 50 ++++++++++++++++++++++++++++----------------------
 2 files changed, 32 insertions(+), 22 deletions(-)

commit 328ce70359ed5410c6bf273d26a5f73f086548ce
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Fri Jul 4 18:00:04 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 130 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 67 insertions(+), 63 deletions(-)

commit 058d6558f447afbbc44035322d4aa681a48d30ad
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Fri Jul 4 17:59:22 2003 +0000

    Updated Hebrew translation.

 po/he.po | 49 +++++++++++++++++++++++++++----------------------
 1 file changed, 27 insertions(+), 22 deletions(-)

commit 81a79959bb1c8ab9b504b3978aec4ea2d502a3d5
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jul 4 07:27:20 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 41 +++++++++++++++++++++++------------------
 2 files changed, 27 insertions(+), 18 deletions(-)

commit 6b1e429fcd1178ca7b5667ad77fa33d9b103c366
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Jul 3 21:39:23 2003 +0000

    grab keys on all the screens for the current display
    
    2003-07-03  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-settings-keybindings.c: (get_screens_list),
        (screen_exec_display_string), (grab_key), (do_grab),
        (gnome_settings_keybindings_load): grab keys on all the screens for the
        current display

 gnome-settings-daemon/ChangeLog                    |  7 +++
 gnome-settings-daemon/gnome-settings-keybindings.c | 61 +++++++++++++++++-----
 2 files changed, 56 insertions(+), 12 deletions(-)

commit 73930e8c2ad3b5e28df53c328d00581f99a5ced8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jul 3 13:56:37 2003 +0000

    Merge Anders' fix from stable.
    
    2003-07-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gconf-property-editor.c: (gconf_property_editor_finalize):
        Merge Anders' fix from stable.

 capplets/common/ChangeLog               |  5 +++++
 capplets/common/gconf-property-editor.c | 10 +++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit 018c1f79966a82fff8a61600cf4c1cdd8ad2daf1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jul 3 13:34:01 2003 +0000

    Merge leak fix from stable.
    
    2003-07-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * eggcellrendererkeys.c: (egg_cell_renderer_keys_set_accelerator):
        Merge leak fix from stable.

 capplets/keybindings/ChangeLog             | 5 +++++
 capplets/keybindings/eggcellrendererkeys.c | 1 +
 2 files changed, 6 insertions(+)

commit deac1194de3ad7ca3e709ff8051e113a78fdb255
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 2 21:31:06 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=116568 generate values in locale
    
    
    2003-07-02  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=116568
        * gnome-settings-daemon/gnome-settings-xsettings.c
        (gnome_xft_settings_set_xresources) : generate values in locale C

 ChangeLog                                        | 6 ++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 5 +++++
 2 files changed, 11 insertions(+)

commit 1e8849a9ddc31fa9b011b7cb96408f2d241ca5f8
Author: Calum Benson <calum@src.gnome.org>
Date:   Wed Jul 2 18:49:27 2003 +0000

    Tweaked icons.

 .../accessibility/at-properties/at-enable-capplet.png | Bin 3688 -> 2879 bytes
 capplets/accessibility/at-properties/at-startup.png   | Bin 2879 -> 2879 bytes
 capplets/accessibility/at-properties/at-support.png   | Bin 1562 -> 2991 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

commit fd3467540700676cd85d9c101da2ae356f2748bf
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Jul 2 11:14:02 2003 +0000

    use the default image if the thumbnailer fails.
    
    2003-07-02  Mark McLoughlin  <mark@skynet.ie>
    
            * gnome-theme-manager.c: (idle_async_func), (load_meta_themes):
            use the default image if the thumbnailer fails.

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 7 +++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 356420a10e2da70d70e0cd34aad8ea5c459be569
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Jul 2 11:12:35 2003 +0000

    Handle crashes of the thumbnailer child process a little more gracefully.
    
    2003-07-02  Mark McLoughlin  <mark@skynet.ie>
    
            Handle crashes of the thumbnailer child process a
            little more gracefully.
    
            * theme-thumbnail.c:
            (generate_theme_thumbnail): if we get an EOF from
            the child close the pipe, return NULL and return
            NULL from any subsequent calls.
            (generate_theme_thumbnail_async): return NULL if
            the pipe has been closed.
            (theme_thumbnail_factory_init): set pipe descriptos
            to zero after closing them.

 capplets/common/ChangeLog         | 14 ++++++++++++++
 capplets/common/theme-thumbnail.c | 30 ++++++++++++++++++++++++++++--
 2 files changed, 42 insertions(+), 2 deletions(-)

commit a607bb1fc7f73111163cc343c0e5ff2a47ab09ae
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Jul 2 08:16:08 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 12 +++---------
 2 files changed, 7 insertions(+), 9 deletions(-)

commit 4ba86d6c9e2d56c219a4f859f394f4f2b3cf3ec6
Author: Daniel Baeyens <daniel.baeyens@hispalinux.es>
Date:   Tue Jul 1 19:55:09 2003 +0000

    "Assistive" is misspelled.
    
    
    2003-07-01  Daniel Baeyens <daniel.baeyens@hispalinux.es>
        * capplets/accessibility/at-properties/at-enable-dialog.glade:
        "Assistive" is misspelled.

 capplets/accessibility/at-properties/ChangeLog              | 3 +++
 capplets/accessibility/at-properties/at-enable-dialog.glade | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit de47f1f9732982a06f8ae90182da06ede52696d6
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Mon Jun 30 18:58:00 2003 +0000

    Set translator_credits.
    
    2003-06-30  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Set translator_credits.

 po/ChangeLog | 4 ++++
 po/fi.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7f08be7058677ebbbaf21ab6600160fc52716cd4
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Mon Jun 30 15:56:26 2003 +0000

    Updated Spanish translation.
    
    2003-06-30  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog | 130 +++++++++---------
 po/es.po     | 442 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 373 insertions(+), 199 deletions(-)

commit 841bdcf0743db221ef633ab5c5698c6d3b7e31d1
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Jun 30 12:54:02 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 267f91f49f0256d7f22d7b0a8a09b0f254f2a552
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Jun 30 12:49:25 2003 +0000

    Updated Hebrew translation.

 po/he.po | 130 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 66 insertions(+), 64 deletions(-)

commit 97c377ffbdf14a75a1ba0a42882ca27f70d70170
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jun 29 09:53:54 2003 +0000

    Update Norwegian translation.
    
    2003-06-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Update Norwegian translation.

 po/ChangeLog |    4 +
 po/no.po     | 1501 +++++++++++++---------------------------------------------
 2 files changed, 326 insertions(+), 1179 deletions(-)

commit 474ce4db2da218a38fb3913273d0b817e845c1a6
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Jun 28 15:47:30 2003 +0000

    Updated Swedish translation.
    
    2003-06-28  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 467 +++++++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 375 insertions(+), 96 deletions(-)

commit 12e1884655ee2775bed89f3938281e479fd9d4ae
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sat Jun 28 15:32:27 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 123 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 69 insertions(+), 58 deletions(-)

commit dd790cacb985a9ced501c522f8de723e5ead053a
Author: updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Sat Jun 28 06:20:06 2003 +0000

    2003-06-28 updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 437 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 309 insertions(+), 132 deletions(-)

commit 21b3695ca17f872200e3e2f34c7b775eb3372f10
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jun 27 22:34:19 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 285 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 235 insertions(+), 54 deletions(-)

commit 9ef0cbd5545877c61fe6dd0c6984649dff7cfe5e
Author: Richard Hult <richard@imendio.com>
Date:   Fri Jun 27 15:48:15 2003 +0000

    Use the right gconf key for allow_postpone preference.
    
    2003-06-27  Richard Hult  <richard@imendio.com>
    
        * gnome-keyboard-properties.c (setup_dialog): Use the right gconf
        key for allow_postpone preference.
    
        * gnome-keyboard-properties.glade: Remove warn time preference,
        it's not used in the code.

 capplets/keyboard/ChangeLog                       |  8 ++
 capplets/keyboard/gnome-keyboard-properties.c     |  4 +-
 capplets/keyboard/gnome-keyboard-properties.glade | 89 +++--------------------
 3 files changed, 18 insertions(+), 83 deletions(-)

commit f39c8ca37239ec796fb5cb4d096901da18b07659
Author: Richard Hult <richard@imendio.com>
Date:   Fri Jun 27 15:47:32 2003 +0000

    Remove this and use gnome-i18n.h instead.
    
    2003-06-27  Richard Hult  <richard@imendio.com>
    
        * typing-break/drw-intl.h: Remove this and use gnome-i18n.h
        instead.
    
        * typing-break/Makefile.am: Remove drw-intl.h
    
        * typing-break/drwright.c:
        * typing-break/drwright.h:
        * typing-break/drw-break-window.c: Merge in changes from drwright.

 ChangeLog                       |  11 +++++
 typing-break/Makefile.am        |   1 -
 typing-break/drw-break-window.c | 106 ++++++++++++++++++++--------------------
 typing-break/drw-break-window.h |   2 +-
 typing-break/drw-intl.h         |  43 ----------------
 typing-break/drw-monitor.c      |   2 +-
 typing-break/drw-monitor.h      |   2 +-
 typing-break/drwright.c         |  73 +++++++++++++++++----------
 typing-break/drwright.h         |   6 ++-
 typing-break/main.c             |   4 +-
 10 files changed, 119 insertions(+), 131 deletions(-)

commit 168f178ceaeade05087691e88755f6a1f80b4230
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Fri Jun 27 07:43:39 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 3a271b97ccdb963221621221f9262ffeedfd5cb1
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Fri Jun 27 07:42:24 2003 +0000

    Updated Hebrew translation.

 po/he.po | 320 +++++++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 249 insertions(+), 71 deletions(-)

commit 4c7cfec9216a52f6879b165ebb57c77ed58dd017
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Jun 26 23:56:52 2003 +0000

    Added missing files.
    
    2003-06-27  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing files.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 6 ++++++
 2 files changed, 10 insertions(+)

commit ed52f57b24bb9af085483f11aeea5aedde8ee935
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jun 26 20:44:46 2003 +0000

    use the correct schemas.
    
    Thu Jun 26 16:31:41 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (setup_dialog): use the correct
        schemas.
    
    Thu Jun 26 16:37:50 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * Makefile.am (SUBDIRS): add typing-break to subdirs.

 ChangeLog                                     |  4 ++++
 Makefile.am                                   |  2 +-
 capplets/keyboard/ChangeLog                   |  5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 10 +++++-----
 4 files changed, 15 insertions(+), 6 deletions(-)

commit 2f0f595dfe465e37af636388be49316dc68c5683
Author: Ole Laursen <olau@hardworking.dk>
Date:   Thu Jun 26 14:45:41 2003 +0000

    Updated Danish translation.
    
    2003-06-26  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   6 +-
 po/da.po     | 272 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 145 insertions(+), 133 deletions(-)

commit cda2d8c0a08136fdc8663d523ca08e9b84eecc49
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu Jun 26 12:15:45 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 +++
 po/cs.po     | 84 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 54 insertions(+), 34 deletions(-)

commit 56057239d528687acf95ad294d6872ab6437f1d5
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Jun 26 11:40:10 2003 +0000

    added the typing break to CVS from drwright.
    
    Thu Jun 26 07:38:45 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * typing-break/drwright.c: added the typing break to CVS from
        drwright.

 ChangeLog                                          |   5 +
 capplets/common/gconf-property-editor.c            |  55 +-
 capplets/keyboard/ChangeLog                        |   5 +
 capplets/keyboard/gnome-keyboard-properties.c      |  87 +-
 capplets/keyboard/gnome-keyboard-properties.glade  | 554 ++++++------
 configure.in                                       |   4 +
 gnome-settings-daemon/ChangeLog                    |   5 +
 gnome-settings-daemon/Makefile.am                  |   4 +
 gnome-settings-daemon/gnome-settings-daemon.c      |   3 +
 .../gnome-settings-typing-break.c                  |  97 +++
 .../gnome-settings-typing-break.h                  |  25 +
 gnome-settings-daemon/reaper.c                     | 305 +++++++
 gnome-settings-daemon/reaper.h                     |  64 ++
 typing-break/.cvsignore                            |   3 +
 typing-break/Makefile.am                           |  28 +
 typing-break/bar-disabled.png                      | Bin 0 -> 473 bytes
 typing-break/bar-green.png                         | Bin 0 -> 253 bytes
 typing-break/bar-red.png                           | Bin 0 -> 258 bytes
 typing-break/bar.png                               | Bin 0 -> 331 bytes
 typing-break/drw-break-window.c                    | 689 +++++++++++++++
 typing-break/drw-break-window.h                    |  52 ++
 typing-break/drw-intl.h                            |  43 +
 typing-break/drw-monitor.c                         | 182 ++++
 typing-break/drw-monitor.h                         |  51 ++
 typing-break/drw-selection.c                       | 190 +++++
 typing-break/drw-selection.h                       |  33 +
 typing-break/drwright.c                            | 947 +++++++++++++++++++++
 typing-break/drwright.h                            |  28 +
 typing-break/eggtrayicon.c                         | 341 ++++++++
 typing-break/eggtrayicon.h                         |  76 ++
 typing-break/main.c                                | 174 ++++
 typing-break/ocean-stripes.png                     | Bin 0 -> 274 bytes
 typing-break/stock_stop.png                        | Bin 0 -> 1451 bytes
 typing-break/stop.png                              | Bin 0 -> 2248 bytes
 34 files changed, 3660 insertions(+), 390 deletions(-)

commit 3ed3f34c81497b7fb09194e0610ffdb677c823be
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Thu Jun 26 10:54:17 2003 +0000

    *he.po: Updated Hebrew translation.
    
    
    *he.po: Updated Hebrew translation.

 po/ChangeLog | 134 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 69 insertions(+), 65 deletions(-)

commit c6537372c2fc6f318561355591ee4fa9d9fa348c
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Thu Jun 26 10:53:11 2003 +0000

    Updated Hebrew translation.

 po/he.po | 432 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 201 insertions(+), 231 deletions(-)

commit 75b822d52f7a5de8e876fd647ff32de65bb5660a
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Thu Jun 26 00:39:11 2003 +0000

    Add stuff under capplets/accessibility/at-properties/ .
    
    2003-06-26  Abel Cheung  <maddog@linux.org.hk>
    
        * POTFILES.in: Add stuff under capplets/accessibility/at-properties/ .

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit f4e17b14f9f6cefe4717fe040b1da4d8072d9a8f
Author: Christophe Fergeau <teuf@users.sourceforge.net>
Date:   Wed Jun 25 21:49:01 2003 +0000

    capplets/default-applications/gnome-default-applications-properties-struct
    
    2003-06-25  Christophe Fergeau <teuf@users.sourceforge.net>
    
        * capplets/default-applications/gnome-default-applications-properties-structs.c
        * capplets/default-applications/gnome-default-applications-properties.c
        * capplets/default-applications/gnome-default-applications-properties.glade
        Added a tab to choose the preferred mailer, added epiphany to the list
        known browsers, don't select any checkbox there is no default browser
        or mailer
    
    2003-06-24  Jody Goldberg <jody@gnome.org>

 capplets/default-applications/ChangeLog            |   9 +
 ...gnome-default-applications-properties-structs.c |  30 ++-
 .../gnome-default-applications-properties.c        | 142 +++++++++--
 .../gnome-default-applications-properties.glade    | 281 ++++++++++++++++++++-
 4 files changed, 433 insertions(+), 29 deletions(-)

commit 4e66e604e9ff53ca0c749d3a275467f35893b01f
Author: Bill Haneman <billh@src.gnome.org>
Date:   Wed Jun 25 17:37:32 2003 +0000

    Include revised AT startup dialog as per discussions with JRB and Jody.

 capplets/Makefile.am                               |   2 +-
 capplets/accessibility/Makefile.am                 |   2 +-
 capplets/accessibility/at-properties/Makefile.am   |  36 ++
 .../at-properties/at-enable-capplet.png            | Bin 0 -> 3688 bytes
 .../at-properties/at-enable-dialog.glade           | 383 +++++++++++++++++++++
 .../at-properties/at-properties.desktop.in         |  13 +
 .../at-properties/at-startup-session.c             | 139 ++++++++
 .../at-properties/at-startup-session.h             |  16 +
 .../accessibility/at-properties/at-startup.png     | Bin 0 -> 2879 bytes
 .../accessibility/at-properties/at-support.png     | Bin 0 -> 1562 bytes
 capplets/accessibility/at-properties/main.c        | 269 +++++++++++++++
 configure.in                                       |   6 +
 12 files changed, 864 insertions(+), 2 deletions(-)

commit 9a9dd67234b521812acf5da218e7e964f44e6281
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jun 24 21:06:09 2003 +0000

    post release version bump
    
    
    2003-06-24  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 07421f4a300b284b15f83406e6462d9d619ed0f9
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jun 24 21:04:07 2003 +0000

    Release 2.3.3
    
    
    2003-06-24  Jody Goldberg <jody@gnome.org>
    
        * Release 2.3.3

 ChangeLog                                 |   4 +
 archiver/ChangeLog                        |   4 +
 archiver/tests/ChangeLog                  |   4 +
 capplets/accessibility/keyboard/ChangeLog |   4 +
 capplets/background/ChangeLog             |   4 +
 capplets/common/ChangeLog                 |   4 +
 capplets/default-applications/ChangeLog   |   4 +
 capplets/desktop-links/ChangeLog          |   4 +
 capplets/file-types/ChangeLog             |   4 +
 capplets/font/ChangeLog                   |   4 +
 capplets/keybindings/ChangeLog            |   4 +
 capplets/keyboard/ChangeLog               |   4 +
 capplets/mime-type/ChangeLog              |   4 +
 capplets/mouse/ChangeLog                  |   4 +
 capplets/network/ChangeLog                |   4 +
 capplets/rollback/ChangeLog               |   4 +
 capplets/sound/ChangeLog                  |   4 +
 capplets/theme-switcher/ChangeLog         |   4 +
 capplets/ui-properties/ChangeLog          |   4 +
 capplets/url-properties/ChangeLog         |   4 +
 capplets/windows/ChangeLog                |   4 +
 capplets/wm-properties/ChangeLog          |   4 +
 configure.in                              |   2 +-
 control-center/ChangeLog                  |   4 +
 gnome-settings-daemon/ChangeLog           |   4 +
 help/ChangeLog                            |   4 +
 libbackground/ChangeLog                   |   4 +
 libwindow-settings/ChangeLog              |   4 +
 po/ChangeLog                              |   4 +
 po/am.po                                  | 145 +++++++-----
 po/ar.po                                  | 329 +++++++++++++++++++--------
 po/az.po                                  | 343 +++++++++++++++++++++++------
 po/be.po                                  | 166 +++++++++-----
 po/bg.po                                  | 329 +++++++++++++++++++--------
 po/bn.po                                  |   3 +-
 po/ca.po                                  |  41 +++-
 po/cs.po                                  |   2 +-
 po/da.po                                  | 167 +++++++++-----
 po/de.po                                  | 161 +++++++++-----
 po/el.po                                  | 145 +++++++-----
 po/en_GB.po                               | 294 +++++++++++++++++++------
 po/es.po                                  |  82 ++++---
 po/et.po                                  | 327 ++++++++++++++++++++-------
 po/fa.po                                  | 154 ++++++++-----
 po/fi.po                                  | 325 +++++++++++++++++++++------
 po/fr.po                                  |   2 +-
 po/ga.po                                  | 143 +++++++-----
 po/gl.po                                  | 323 ++++++++++++++++++++-------
 po/he.po                                  | 162 +++++++++-----
 po/hr.po                                  | 336 ++++++++++++++++++++--------
 po/hu.po                                  | 325 +++++++++++++++++++++------
 po/id.po                                  | 119 ++++++----
 po/it.po                                  |   2 +-
 po/ja.po                                  | 161 +++++++++-----
 po/ko.po                                  | 160 +++++++++-----
 po/lt.po                                  | 325 +++++++++++++++++++++------
 po/lv.po                                  | 160 +++++++++-----
 po/mk.po                                  | 146 +++++++-----
 po/ml.po                                  | 322 +++++++++++++++++++++------
 po/mn.po                                  | 161 +++++++++-----
 po/ms.po                                  | 161 +++++++++-----
 po/nl.po                                  |   2 +-
 po/nn.po                                  | 325 +++++++++++++++++++--------
 po/no.po                                  | 166 +++++++++-----
 po/pl.po                                  | 156 ++++++++-----
 po/pt.po                                  | 167 +++++++++-----
 po/pt_BR.po                               | 170 ++++++++------
 po/ro.po                                  | 327 ++++++++++++++++++++-------
 po/ru.po                                  | 355 ++++++++++++++++++++++++------
 po/sk.po                                  | 323 +++++++++++++++++++++------
 po/sl.po                                  | 340 ++++++++++++++++++++--------
 po/sq.po                                  | 347 +++++++++++++++++++++++------
 po/sr.po                                  |   4 +-
 po/sr@Latn.po                             |   4 +-
 po/sv.po                                  |  17 +-
 po/ta.po                                  | 326 ++++++++++++++++++++-------
 po/th.po                                  | 119 ++++++----
 po/tr.po                                  | 338 +++++++++++++++++++++-------
 po/uk.po                                  | 160 +++++++++-----
 po/vi.po                                  | 166 +++++++++-----
 po/wa.po                                  | 312 ++++++++++++++++++++------
 po/zh_CN.po                               |  12 +-
 po/zh_TW.po                               |   3 +-
 vfs-methods/fontilus/ChangeLog            |   4 +
 vfs-methods/themus/ChangeLog              |   4 +
 vfs-methods/themus/Makefile.am            |   4 +-
 86 files changed, 7460 insertions(+), 2826 deletions(-)

commit 383fc380a90e8f6644bfe706715050280ef215b9
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Jun 24 10:55:34 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-06-24  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 242 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 202 insertions(+), 44 deletions(-)

commit 755b0c10960afa1e25345dbfec271e9bfada9a4b
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Mon Jun 23 13:48:39 2003 +0000

    Updated Serbian translation by Serbian team (Prevod.org).
    
    2003-06-23  Danilo Šegan  <dsegan@gmx.net>
    
        * po/sr.po, po/sr@Latn.po: Updated Serbian translation by Serbian
        team (Prevod.org).

 po/ChangeLog  |   7 +-
 po/sr.po      | 246 ++++++++++++++++++++++++++-------------------------------
 po/sr@Latn.po | 250 ++++++++++++++++++++++++++--------------------------------
 3 files changed, 228 insertions(+), 275 deletions(-)

commit 58e911e5384ae9446f021fe297e029e7709d342d
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Sun Jun 22 22:55:59 2003 +0000

    Dutch translation updated by Kees van den Broek.
    
    2003-06-23  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Kees van den Broek.

 po/ChangeLog | 132 +++++++++++++++++++++---------------------
 po/nl.po     | 185 ++---------------------------------------------------------
 2 files changed, 73 insertions(+), 244 deletions(-)

commit 9054881716816a4609d4d41324b93feb146b2f6e
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Thu Jun 19 10:40:07 2003 +0000

    added Macedonian translation

 po/mk.po | 970 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 582 insertions(+), 388 deletions(-)

commit fb40e0d117834c59a2988d837710c0a3e84ccb1f
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Jun 18 13:50:11 2003 +0000

    add $(desktop_icons_DATA)
    
    
            * Makefile.am (EXTRA_DIST): add $(desktop_icons_DATA)

 capplets/theme-switcher/ChangeLog   | 4 ++++
 capplets/theme-switcher/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 986736c19ad284209f889ae5cdf2b2a719a98274
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Jun 17 17:49:55 2003 +0000

    Minor fixes to Czech translation

 po/ChangeLog | 4 ++++
 po/cs.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 19a21f795f58a0c2648dc861f03bcf4d180a16e0
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Jun 17 17:27:54 2003 +0000

    Minor fixes to Czech translation

 po/cs.po | 66 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 33 insertions(+), 33 deletions(-)

commit ad5874f41f6d0143de213187f863485ade381b5f
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Tue Jun 17 12:12:59 2003 +0000

    Updated Italian translation by Alessio Dessi`.

 po/ChangeLog |    5 +
 po/it.po     | 3004 ++++++++++++++--------------------------------------------
 2 files changed, 699 insertions(+), 2310 deletions(-)

commit ee26a906ebb45ae931fd2eda8eea912331d7e157
Author: Taneem Ahmed <taneem@eyetap.org>
Date:   Mon Jun 16 00:22:40 2003 +0000

    Added "bn" to ALL_LINGUAS. Added Bengali translation by Progga of Ankur
    
    2003-06-15  Taneem Ahmed  <taneem@eyetap.org>
    
        * configure.in: Added "bn" to ALL_LINGUAS.
        * po/bn.po: Added Bengali translation by Progga
        of Ankur group <gnome-translation@bengalinux.org>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/bn.po     | 2808 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2818 insertions(+), 1 deletion(-)

commit 0275842248a06346d98032e648ee0925fafb879e
Author: Wang Jian <lark@src.gnome.org>
Date:   Sun Jun 15 15:36:04 2003 +0000

    *** empty log message ***

 po/ChangeLog |    5 +
 po/zh_CN.po  | 1441 ++++++++++++----------------------------------------------
 2 files changed, 290 insertions(+), 1156 deletions(-)

commit dbb1f6dbdde0173078e474ddf9d35cfe0c311b86
Author: Andrew Sobala <aes@src.gnome.org>
Date:   Sat Jun 14 23:58:25 2003 +0000

    Fix Makefile.am brokenness that was causing property pages not to be shown
    due to incorrectly generated .server files.
    
    This makes the property page visible again, which is cool, which will make
    everyone file bug reports about how bad it is, which is ... less cool.
    
    Check bugzilla first. I know.

 vfs-methods/themus/ChangeLog   | 4 ++++
 vfs-methods/themus/Makefile.am | 8 ++++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit a7d0a26d9aca5eee32d382369042614e35d9306a
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Sat Jun 14 22:09:01 2003 +0000

    Dutch translation updated by Vincent van Adrighem.
    
    2003-06-15  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Vincent van Adrighem.

 po/ChangeLog |   4 ++
 po/nl.po     | 165 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 111 insertions(+), 58 deletions(-)

commit 59c0497ae32603c4d9bd156041452069675eaedb
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Jun 13 15:09:50 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 61 +++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 44 insertions(+), 21 deletions(-)

commit b8eb0e4ddb900c0a1566ee6afd93b19d96725544
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Fri Jun 13 10:47:30 2003 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 ++
 po/ca.po     | 134 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 88 insertions(+), 50 deletions(-)

commit 9601bdd6bf5002ef76cee6ce11426d169eaa0a8c
Author: Michael Meeks <michael@ximian.com>
Date:   Thu Jun 12 09:10:36 2003 +0000

    Make IDL compile depend on compiler too.
    
    2003-06-12  Michael Meeks  <michael@ximian.com>
    
        * Makefile.am: Make IDL compile depend on compiler too.

 gnome-settings-daemon/ChangeLog   | 4 ++++
 gnome-settings-daemon/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4dcbc60c4bffe970076534f7a61530fdb038123b
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Wed Jun 11 19:52:46 2003 +0000

    Updated Spanish translation.
    
    2003-06-11  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 263 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 134 insertions(+), 133 deletions(-)

commit c760c6a5d68f55619e051ce44511acb2a2f4b95e
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue Jun 10 00:23:48 2003 +0000

    Updated traditional Chinese translation.
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |  4 +++
 po/zh_TW.po  | 83 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 56 insertions(+), 31 deletions(-)

commit cbe15e0033a01442e4ea880db089b7f60af4ec39
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Jun 9 04:48:06 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |   5 +
 po/ru.po     | 312 ++++++++++++++++-------------------------------------------
 2 files changed, 89 insertions(+), 228 deletions(-)

commit c0c1686493c7c24b5b27608521983014f0da8857
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Jun 8 17:57:02 2003 +0000

    Updated French translation.

 po/ChangeLog |   4 ++
 po/fr.po     | 222 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 122 insertions(+), 104 deletions(-)

commit 3e1e1adaa3e9432fa88a5368449f33dda157a432
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Jun 7 13:43:15 2003 +0000

    be careful about menu sensitivity, the order is important. Setting the
    
    
    2003-06-06  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (populate_component_list) : be careful about menu
          sensitivity, the order is important.  Setting the menu of an option
          menu makes it sensitive even if the menu is empty).  However, if the
          option menu is initially insensitive then the first item in the menu
          gets marked insensitive when the menu is reparented.  Once one item
          is in the option menu becomes sensitive and the rest are ok.

 capplets/file-types/ChangeLog          |  9 +++++++++
 capplets/file-types/mime-edit-dialog.c | 19 ++++++++-----------
 2 files changed, 17 insertions(+), 11 deletions(-)

commit 727efc22638510e6378168fbc58ff1fd8821cda1
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Jun 7 07:01:44 2003 +0000

    Updated Swedish translation.
    
    2003-06-04  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 52 ++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 46 insertions(+), 10 deletions(-)

commit 68645bd58adf39a90f7fe9bc58e328fd593396b4
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Jun 6 23:21:55 2003 +0000

    Forgot to add this file

 capplets/sound/visual-bell.png | Bin 0 -> 3735 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit be432c9acb542263f6a16da9e40e31ba59f9315c
Author: Bill Haneman <bill.haneman@sun.com>
Date:   Fri Jun 6 23:20:37 2003 +0000

    Use a peditor for the visual bell instead.
    
    Fri Jun  6 19:16:43 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * sound-properties-capplet.c (bell_flash_to_widget),
        (bell_flash_from_widget): Use a peditor for the visual bell
        instead.
    
    2003-06-06  Bill Haneman <bill.haneman@sun.com>
    
        * sound-properties.glade:
        Added page tab and UI from "visual bell" capplet
        (UI originally from Calum, except for ugly icon)
    
        * visual-bell.png:
        Ugly new icon which needs TLC from Calum.
    
        * sound-properties-capplet.c:
        Added gconf keys for visual bell feature and control of
        audio bell.
        (visual_bell_type_changed): New, called when visual bell radiobuttons
        are toggled.
        (create_dialog):
        Set the image on the "System Bell" notebook tab.
        (setup_dialog):
        Added peditors for visual-bell and audio-bell checkboxes/gconf keys.
        Added guards for the visual-bell type buttons, controlled by
        the visual-bell-enabling checkbox.
        Connected visual_bell_type_changed to "toggled" signal on radiobuttons.

 capplets/sound/ChangeLog                  |  28 ++++
 capplets/sound/Makefile.am                |   6 +-
 capplets/sound/sound-properties-capplet.c |  84 ++++++++++--
 capplets/sound/sound-properties.glade     | 209 +++++++++++++++++++++++++++++-
 4 files changed, 311 insertions(+), 16 deletions(-)

commit 27cd2a87b04a49809ddbcf37e349ac7c655f8d3d
Author: Mark Finlay <sisob@src.gnome.org>
Date:   Fri Jun 6 20:17:48 2003 +0000

    adding icon for the theme applet

 capplets/theme-switcher/ChangeLog          |   7 +++++++
 capplets/theme-switcher/Makefile.am        |   3 +++
 capplets/theme-switcher/gnome-ccthemes.png | Bin 0 -> 2826 bytes
 3 files changed, 10 insertions(+)

commit 079e8f507dd21ef477ef7c03cc0e6eabf9b0c568
Author: Andrew Sobala <aes@src.gnome.org>
Date:   Fri Jun 6 15:05:13 2003 +0000

    Fix from Rajkumar Sivasamy for extracting themes under Solaris due to not using
    GNU tar.
    
    cinnamon-control-center relies on the tar/gzip/bzip2 *binaries* to extract themes.
    Subsequently it can't tell if things go wrong. This is one very good reason why
    fixing the tar/gz/bz2 vfs methods would be a very good thing.

 vfs-methods/themus/ChangeLog      | 6 ++++++
 vfs-methods/themus/theme-method.c | 8 ++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit f6b8d18eea347c9a960683bc7d0e9a55ef54c3ef
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Wed Jun 4 19:44:08 2003 +0000

    Global fix of tamil translation encoding

 po/ChangeLog |   4 +
 po/ta.po     | 934 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 471 insertions(+), 467 deletions(-)

commit 7d43d3fc741cbb888a551efbd637ca8c32653879
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Wed Jun 4 13:58:01 2003 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 352 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 159 insertions(+), 197 deletions(-)

commit 3604b0a5ee9e54f791aa07763b655db0bc42fcd0
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Jun 4 13:22:23 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 27 ++++++++++++++-------------
 2 files changed, 18 insertions(+), 13 deletions(-)

commit e3d66e926898f4c9e40a63ded9435f8cae4de1de
Author: Andrew Sobala <aes@gnome.org>
Date:   Tue Jun 3 22:32:37 2003 +0000

    HELLO #COMMITS!!!
    
    2003-06-03  Andrew Sobala  <aes@gnome.org>
    
        * themus-properties-view.c: fix description word wrapping
        * theme-method.c: gcc 2.x compile

 vfs-methods/themus/ChangeLog                | 5 +++++
 vfs-methods/themus/theme-method.c           | 2 +-
 vfs-methods/themus/themus-properties-view.c | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 4cd7796a0aa8104db10776c3e66dee830a45eed3
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Tue Jun 3 16:42:01 2003 +0000

    Quiet cvs.
    
    
            * .cvsignore:
            * capplets/common/.cvsignore:
            * schemas/.cvsignore:
            * vfs-methods/.cvsignore: Quiet cvs.
    
            * capplets/common/Makefile.am: fix parallel build.
    
            * capplets/common/gnome-theme-apply.c: add missing header.

 .cvsignore                          |  1 +
 ChangeLog                           | 11 +++++++++++
 capplets/common/.cvsignore          |  3 ++-
 capplets/common/Makefile.am         |  1 +
 capplets/common/gnome-theme-apply.c |  1 +
 schemas/.cvsignore                  |  1 +
 vfs-methods/.cvsignore              |  2 ++
 7 files changed, 19 insertions(+), 1 deletion(-)

commit f5c8c732d37fafda052c0d17ef9daee5cc7ecf94
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jun 2 18:23:04 2003 +0000

    forgot to save this before committing

 libbackground/ChangeLog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 82251e42f2cdd1d3066e07c9d8693554e6e826b3
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Jun 2 18:10:43 2003 +0000

    Updated Swedish translation.
    
    2003-06-02  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 28 ++++++++++++++++------------
 2 files changed, 20 insertions(+), 12 deletions(-)

commit 38716479b99c2f2869364915f94c5a757b16f3bc
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Jun 2 17:35:40 2003 +0000

    scaling fix. Patch from Marcus Matèrn <marcus.matern@safecareab.com>,
    
    Mon Jun  2 13:35:49 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * preview-file-selection.c
        (preview_file_selection_intelligent_scale): scaling fix.  Patch
        from Marcus Matèrn <marcus.matern@safecareab.com>, #113816

 libbackground/ChangeLog                | 6 ++++++
 libbackground/preview-file-selection.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 5e9c5a6e859ad749d392b1608676e1227aa23772
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Jun 2 17:23:25 2003 +0000

    Patch from Jens Granseuer <jensgr@gmx.net> to fix on non-C99 compilers.
    
    Mon Jun  2 13:23:25 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-xrdb.c (append_xresources): Patch from Jens
        Granseuer <jensgr@gmx.net> to fix on non-C99 compilers.

 gnome-settings-daemon/ChangeLog             | 5 +++++
 gnome-settings-daemon/gnome-settings-xrdb.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 8696d98d2f8aad98e3f38d4eb1a0106d0a2f7355
Author: Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
Date:   Mon Jun 2 12:54:18 2003 +0000

    Give an error dialog if the users clicks on OK button when the MIME type
    
    2003-06-02  Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
    
            * mime-edit-dialog.c: (validate_data): Give an error dialog if the
            users clicks on OK button when the MIME type is not entered
            Fixes bug #113963

 capplets/file-types/ChangeLog          | 6 ++++++
 capplets/file-types/mime-edit-dialog.c | 7 +++++++
 2 files changed, 13 insertions(+)

commit 1a7b7bf1d6e18dda79c3d78521398ed23496c32e
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jun 2 02:59:28 2003 +0000

    minor string change from zana

 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d1406b89c471245bb30187c98ab91be2168ade6a
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Sun Jun 1 01:45:12 2003 +0000

    Updated Serbian translation by Serbian team (Prevod.org).
    
    2003-06-01  Danilo Šegan  <dsegan@gmx.net>
    
        * po/sr.po, po/sr@Latn.po: Updated Serbian translation by Serbian
        team (Prevod.org).

 po/ChangeLog  |   5 +
 po/sr.po      | 650 +++++++++++++++++++++++++++++++++++++--------------------
 po/sr@Latn.po | 651 ++++++++++++++++++++++++++++++++++++++--------------------
 3 files changed, 850 insertions(+), 456 deletions(-)

commit 58166d516cfa08e5ae8d77ea0a57794fabdc33e1
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri May 30 16:28:41 2003 +0000

    Updated traditional Chinese translation.
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 ++
 po/zh_TW.po  | 161 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 77 insertions(+), 88 deletions(-)

commit bffbda95b2ded523ceb2f0ee312c747c3c6b857f
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Thu May 29 16:15:48 2003 +0000

    Updated the Greek translation

 po/ChangeLog |   4 +
 po/el.po     | 277 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 131 insertions(+), 150 deletions(-)

commit dc668823456fac822b3f590ee184d57027038941
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu May 29 12:26:02 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 126 +++++++++++++++++++----------------------------------------
 2 files changed, 44 insertions(+), 86 deletions(-)

commit 1ce2ef530cd64855809463c39a11edbf1e3a62f8
Author: Christian Rose <menthos@menthos.com>
Date:   Thu May 29 08:49:00 2003 +0000

    Updated Swedish translation.
    
    2003-05-29  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 149 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 98 insertions(+), 55 deletions(-)

commit 0dc2ad9415b28f6f6c8e83e1eb24b3e35368be87
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Wed May 28 16:23:07 2003 +0000

    theme-install.glade
    
        * theme-install.glade
        * theme-properties.glade:
    
        HIGified (#105004).

 capplets/theme-switcher/ChangeLog              |    7 +
 capplets/theme-switcher/theme-install.glade    |   84 +-
 capplets/theme-switcher/theme-properties.glade | 1284 ++++++++++++++----------
 3 files changed, 834 insertions(+), 541 deletions(-)

commit 5370f2dafca07384235b8450c38b28d90da894e3
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Mon May 26 11:38:03 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-05-26  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +++
 po/nl.po     | 110 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 55 insertions(+), 59 deletions(-)

commit 53821c7a4709a5f8e63c6bd832230110e317c5b6
Author: updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Fri May 23 17:20:03 2003 +0000

    2003-05-24 updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |  4 +++
 po/ja.po     | 81 +++++++++++-------------------------------------------------
 2 files changed, 19 insertions(+), 66 deletions(-)

commit f46e90027bc71f9170f47b24643d9b0e0efb0ebf
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Fri May 23 13:46:04 2003 +0000

    Updated Irish Translation
    
    2003-05-23  Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation

 po/ChangeLog |  4 ++++
 po/ga.po     | 36 +++++++++++++++---------------------
 2 files changed, 19 insertions(+), 21 deletions(-)

commit 59ae274c51737d64cbd14e5847dcaba191a00954
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Fri May 23 04:54:05 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog | 5 +++++
 po/ru.po     | 9 ++++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit a16db7b1c462ff89c4d69e4032c2c078d9e36f36
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Fri May 23 00:57:35 2003 +0000

    Added "id" "th" to ALL_LINGUAS.
    
    2003-05-23  Abel Cheung  <maddog@linux.org.hk>
    
        * configure.in: Added "id" "th" to ALL_LINGUAS.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 94d753cadb08750b344b628b373eb598e206b309
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Fri May 23 00:34:43 2003 +0000

    Merged with fontilus translation, except sv.po. New files.
    
    2003-05-23  Abel Cheung  <maddog@linux.org.hk>
    
        * *.po: Merged with fontilus translation, except sv.po.
        * id.po, th.po: New files.

 po/ChangeLog  |    5 +
 po/am.po      |  166 +++-
 po/be.po      |  180 +++-
 po/ca.po      |  185 +++-
 po/cs.po      |  171 +++-
 po/da.po      |  183 +++-
 po/de.po      |  175 +++-
 po/el.po      |  181 +++-
 po/es.po      |  182 +++-
 po/fa.po      |  170 +++-
 po/fr.po      |  182 +++-
 po/ga.po      |  164 +++-
 po/he.po      |  168 +++-
 po/id.po      | 2663 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/it.po      |  196 ++++-
 po/ja.po      |  171 +++-
 po/ko.po      |  168 +++-
 po/lv.po      |  177 +++-
 po/mn.po      |  175 +++-
 po/ms.po      |  164 +++-
 po/nl.po      |  172 +++-
 po/no.po      |  175 +++-
 po/pl.po      |  176 +++-
 po/pt.po      |  177 +++-
 po/pt_BR.po   |  177 +++-
 po/ru.po      |  184 +++-
 po/sr.po      |  186 +++-
 po/sr@Latn.po |  198 ++++-
 po/th.po      | 2645 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/uk.po      |  186 +++-
 po/vi.po      |  171 +++-
 po/zh_TW.po   |  167 +++-
 32 files changed, 9742 insertions(+), 698 deletions(-)

commit d49cfd02e053fe39125a168ba5ce38e504caeea4
Author: Christian Rose <menthos@menthos.com>
Date:   Thu May 22 22:05:16 2003 +0000

    Added missing files. Updated Swedish translation.
    
    2003-05-23  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing files.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |   5 ++
 po/POTFILES.in |  12 ++--
 po/sv.po       | 203 +++++++++++++++++++++++++++++++++++++++++++++------------
 3 files changed, 176 insertions(+), 44 deletions(-)

commit 6dd40821d6af374dfe295044e7e0fba6c091a520
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Wed May 21 22:11:08 2003 +0000

    Added Serbian translation by Serbian team (Prevod.org).
    
    2003-05-22  Danilo Šegan  <dsegan@gmx.net>
    
        * po/sr.po, po/sr@Latn.po: Added Serbian translation by Serbian
        team (Prevod.org).

 po/ChangeLog  |   5 +
 po/sr.po      | 685 ++++++++++++++++++++++++++++++---------------------------
 po/sr@Latn.po | 697 +++++++++++++++++++++++++++++++---------------------------
 3 files changed, 737 insertions(+), 650 deletions(-)

commit ed905fefb676c73f05247347f324e094472088aa
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed May 21 03:47:39 2003 +0000

    <yosh> shut up cvs </yosh>
    
    <yosh>
    shut up cvs
    </yosh>

 vfs-methods/themus/.cvsignore | 9 +++++++++
 1 file changed, 9 insertions(+)

commit b721ad6879abf2ab66b4b34d58a6807bf891de4b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed May 21 03:42:38 2003 +0000

    2.3.2 released.
    
    Tue May 20 19:14:19 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * configure.in: 2.3.2 released.

 ChangeLog     |   4 +
 configure.in  |   2 +-
 po/am.po      | 293 +++++++++++++++++++++++--------------
 po/ar.po      | 353 +++++++++++++++++++++++++++++---------------
 po/az.po      | 152 ++++++++++---------
 po/be.po      | 370 ++++++++++++++++++++++++++++++----------------
 po/bg.po      | 363 +++++++++++++++++++++++++++++----------------
 po/ca.po      | 376 ++++++++++++++++++++++++++++++-----------------
 po/cs.po      |   2 +-
 po/da.po      |   2 +-
 po/de.po      | 182 +++++++++++++----------
 po/el.po      | 182 +++++++++++++----------
 po/en_GB.po   | 255 ++++++++++++++++++++------------
 po/es.po      | 259 +++++++++++++++++++-------------
 po/et.po      | 338 +++++++++++++++++++++++++++---------------
 po/fa.po      | 296 +++++++++++++++++++++++--------------
 po/fi.po      | 370 ++++++++++++++++++++++++++++++----------------
 po/fr.po      | 182 +++++++++++++----------
 po/ga.po      | 121 +++++++--------
 po/gl.po      | 361 +++++++++++++++++++++++++++++----------------
 po/he.po      | 355 +++++++++++++++++++++++++++++---------------
 po/hr.po      | 298 ++++++++++++++++++++++---------------
 po/hu.po      | 362 +++++++++++++++++++++++++++++----------------
 po/it.po      | 309 ++++++++++++++++++++++++---------------
 po/ja.po      | 175 +++++++++++++---------
 po/ko.po      | 172 +++++++++++++---------
 po/lt.po      | 363 +++++++++++++++++++++++++++++----------------
 po/lv.po      | 177 +++++++++++++---------
 po/mk.po      | 253 ++++++++++++++++++++------------
 po/ml.po      | 315 ++++++++++++++++++++++++---------------
 po/mn.po      | 359 ++++++++++++++++++++++++++++++---------------
 po/ms.po      | 463 +++++++++++++++++++++++++++++++++++-----------------------
 po/nl.po      | 182 +++++++++++++----------
 po/nn.po      | 297 ++++++++++++++++++++++---------------
 po/no.po      | 174 +++++++++++++---------
 po/pl.po      | 182 +++++++++++++----------
 po/pt.po      |   5 +-
 po/pt_BR.po   | 212 +++++++++++++++------------
 po/ro.po      | 365 +++++++++++++++++++++++++++++----------------
 po/ru.po      | 362 +++++++++++++++++++++++++++++----------------
 po/sk.po      | 362 +++++++++++++++++++++++++++++----------------
 po/sl.po      | 371 +++++++++++++++++++++++++++++-----------------
 po/sq.po      | 238 ++++++++++++++++++------------
 po/sr.po      |  83 +++++------
 po/sr@Latn.po |  83 +++++------
 po/sv.po      |   2 +-
 po/ta.po      | 347 ++++++++++++++++++++++++++++---------------
 po/tr.po      | 375 ++++++++++++++++++++++++++++++-----------------
 po/uk.po      | 361 ++++++++++++++++++++++++++++++---------------
 po/vi.po      | 168 ++++++++++++---------
 po/wa.po      | 314 ++++++++++++++++++++++++---------------
 po/zh_CN.po   | 357 ++++++++++++++++++++++++++++----------------
 po/zh_TW.po   | 163 ++++++++++++---------
 53 files changed, 8222 insertions(+), 4845 deletions(-)

commit 52fcd102dff96dcde4d940a7b4a3fc6f424405b0
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue May 20 16:46:02 2003 +0000

    add fontilus support. add fontilus support. add fontilus support.
    
    Tue May 20 12:43:59 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in (FONTILUS): add fontilus support.
        * vfs-methods/Makefile.am: add fontilus support.
        * vfs-methods/fontilus/Makefile.am: add fontilus support.

 ChangeLog                        |  6 ++++
 configure.in                     | 74 +++++++++++++++++++++++++++++++++-------
 vfs-methods/Makefile.am          |  2 +-
 vfs-methods/fontilus/Makefile.am |  8 ++---
 4 files changed, 73 insertions(+), 17 deletions(-)

commit 58e641a8704832c823664651ee3faa18722a2006
Author: Christian Rose <menthos@menthos.com>
Date:   Tue May 20 10:24:15 2003 +0000

    Updated Swedish translation.
    
    2003-05-20  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 226 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 152 insertions(+), 78 deletions(-)

commit 57db67cb350fb41bca5793637e5fa345da37009b
Author: Ole Laursen <olau@hardworking.dk>
Date:   Mon May 19 19:14:35 2003 +0000

    Updated Danish translation.
    
    2003-05-19  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 260 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 136 insertions(+), 128 deletions(-)

commit 45b7f71591c44242a96cf0d3211550c49a6fcda3
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon May 19 04:18:48 2003 +0000

    configure.in: Added Russian to ALL_LINGUAS.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit bb13c847536d3fba2e3e1c91cba4fd3ee2c6e4a7
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sun May 18 23:45:14 2003 +0000

    Updated Portuguese translation.
    
    2003-05-19  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 ++
 po/pt.po     | 215 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 124 insertions(+), 95 deletions(-)

commit e2db9ad1da857d75fd708de595413d2b6a75e169
Author: Michal Bukovjan <mbukovjan@src.gnome.org>
Date:   Sun May 18 08:01:13 2003 +0000

    Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 204 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 119 insertions(+), 89 deletions(-)

commit dfc8589c81c1f2ba10213e8e9fbf4dfc35732b11
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Sat May 17 17:42:10 2003 +0000

    HIGify dialog and fix ui-review bug 99532: remove help text from the
    
    
    2003-05-17  Dennis Cranston <dennis_cranston@yahoo.com>
    
        * gnome-mouse-properties.glade:  HIGify dialog and fix
        ui-review bug 99532: remove help text from the dialog;
        s/Delay/Timeout; remove frames and use HIGified categories;
        change check box text to "Highlight the pointer when you
        press Ctrl"; change the cursor theme's note to "<i><small><b>
        Note:</b> Changes to theis setting will not take effect until
        you next log in.</small><i>"; and fix widget padding.

 capplets/mouse/ChangeLog                    |   10 +
 capplets/mouse/gnome-mouse-properties.glade | 1489 +++++++++++++++------------
 2 files changed, 816 insertions(+), 683 deletions(-)

commit 6f00d6f287b736236396ffe8549ab3f0561dca59
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri May 16 16:06:05 2003 +0000

    Updated traditional Chinese translation.
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 ++
 po/zh_TW.po  | 123 ++++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 100 insertions(+), 27 deletions(-)

commit 92b0b936e0dd5043b6a11cd6c022cca020611dd7
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Fri May 16 10:24:20 2003 +0000

    Updated Albanian translation
    
    * sq.po: Updated Albanian translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit f64b555c871bc58cf456a929a70e1bf27e1e4d33
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri May 16 10:20:01 2003 +0000

    Fix typo in Czech translation

 po/ChangeLog | 1 +
 po/cs.po     | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 2aa74809729c8d85958dd63c7861cd7a38e3b3ca
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Fri May 16 10:19:58 2003 +0000

    Updated

 po/sq.po | 326 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 193 insertions(+), 133 deletions(-)

commit 7afe540d1f435ec9337e8d70cf95719e772fe513
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri May 16 09:53:59 2003 +0000

    Update Czech translation

 po/ChangeLog | 4 ++++
 po/cs.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 13f82eac81da4e6a560abd106ed0b30f952d3e4a
Author: J.H.M. Dassen (Ray) <jdassen@src.gnome.org>
Date:   Fri May 16 05:12:36 2003 +0000

    Added libgnome_window_settings_la_LIBADD to get complete inter-library dependency information into the library.

 libwindow-settings/ChangeLog   | 5 +++++
 libwindow-settings/Makefile.am | 2 ++
 2 files changed, 7 insertions(+)

commit 9c8efe2733d45ae061ac0df3242002c76072338a
Author: Christian Rose <menthos@menthos.com>
Date:   Thu May 15 20:34:41 2003 +0000

    Updated Swedish translation.
    
    2003-05-15  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 49 ++++++++++++++++++++++++++-----------------------
 2 files changed, 30 insertions(+), 23 deletions(-)

commit 1607ff72c2b1bb8cbeec7ac283d02e95ef6b9a4b
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu May 15 09:43:08 2003 +0000

    Update Czech translation

 po/ChangeLog | 4 ++++
 po/cs.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit feb2e43c76141174e61ee3546edbfb0cf5abb40f
Author: Malcolm Tredinnick <malcolm@src.gnome.org>
Date:   Thu May 15 03:33:58 2003 +0000

    Use Header capitalisation for menu items. Fixes bug #112939.
    
        * gnome-network-preferences.desktop.in: Use Header
        capitalisation for menu items. Fixes bug #112939.

 capplets/network/ChangeLog                            | 5 +++++
 capplets/network/gnome-network-preferences.desktop.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1042002639a55dea0ce6a4eed2e23d0ffc21aac9
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Thu May 15 01:16:05 2003 +0000

    Updated traditional Chinese translation.
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 349 +++++++++++++++++++----------------------------------------
 2 files changed, 117 insertions(+), 236 deletions(-)

commit d72ad5331933371cf15fa73ec92f2138a4acfc78
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Wed May 14 16:00:43 2003 +0000

    Updated Spanish translation.
    
    2003-05-14  Pablo Gonzalo del Campo <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 162 +++++++++++++++++++++++++----------------------------------
 2 files changed, 73 insertions(+), 93 deletions(-)

commit b6786f4556406458abfce19f34bf2a47f13c72b7
Author: KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>
Date:   Wed May 14 14:29:26 2003 +0000

    Updated Japanese translation.
    
    2003-05-14  KAMAGASAKO Masatoshi  <emerald@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation.

 po/ChangeLog |  4 ++++
 po/ja.po     | 37 +++++++++++++++++++++----------------
 2 files changed, 25 insertions(+), 16 deletions(-)

commit c8bff269e967660fcd452f8521395716eab2212d
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Wed May 14 03:45:31 2003 +0000

    Updated Malay translation. Thanks Abel Cheung for merging my themus
    
    2002-05-14  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay translation.
    Thanks Abel Cheung for merging my themus translation with control panel....

 po/ChangeLog |   4 +
 po/ms.po     | 391 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 174 insertions(+), 221 deletions(-)

commit ed8894ed3436b7c31a1e33805b15688d02434d2f
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Wed May 14 02:52:32 2003 +0000

    Added "sr" "sr@Latn" to ALL_LINGUAS.
    
    2003-05-14  Abel Cheung  <maddog@linux.org.hk>
    
        * configure.in: Added "sr" "sr@Latn" to ALL_LINGUAS.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3c255ac3b111b8670d495e20c237c3c71cad7a5a
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Wed May 14 02:51:15 2003 +0000

    Merged with themus translations. New files.
    
    2003-05-14  Abel Cheung  <maddog@linux.org.hk>
    
        * cs.po, da.po, de.po, el.po, es.po, fr.po, ga.po, ja.po,
          ko.po, lv.po, ms.po, nl.po, no.po, pl.po, pt.po, pt_BR.po,
          vi.po, zh_TW.po: Merged with themus translations.
        * sr.po, sr@Latn.po: New files.

 po/ChangeLog  |    7 +
 po/az.po      |  180 ++--
 po/cs.po      |  191 +++--
 po/da.po      |  188 +++--
 po/de.po      |  193 +++--
 po/el.po      |  189 +++--
 po/es.po      |  189 +++--
 po/fr.po      |  208 +++--
 po/ga.po      |  185 +++--
 po/ja.po      |  197 +++--
 po/ko.po      |  186 +++--
 po/lv.po      |  187 +++--
 po/ms.po      |  180 ++--
 po/nl.po      |  185 +++--
 po/no.po      |  188 +++--
 po/pl.po      |  184 +++--
 po/pt.po      |  194 +++--
 po/pt_BR.po   |  188 +++--
 po/sr.po      | 2557 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sr@Latn.po | 2557 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/vi.po      |  184 +++--
 po/zh_TW.po   |  183 +++--
 22 files changed, 7705 insertions(+), 995 deletions(-)

commit b722a95dc9fe2de922c25580cf7d65f92be0bc25
Author: Andrew Sobala <aes@gnome.org>
Date:   Tue May 13 20:58:13 2003 +0000

    added themus files
    
    2003-05-13  Andrew Sobala  <aes@gnome.org>
    
        * POTFILES.in: added themus files

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 6 ++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit ffd50e5a0ee2be9e086401d3d0e0721f937d7259
Author: Christian Rose <menthos@menthos.com>
Date:   Tue May 13 20:40:17 2003 +0000

    Added missing files. Updated Swedish translation.
    
    2003-05-13  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing files.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |  16 ++-
 po/sv.po       | 317 ++++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 239 insertions(+), 99 deletions(-)

commit 128bcd8d807865207099365baa07586174bdbace
Author: Andrew Sobala <aes@src.gnome.org>
Date:   Tue May 13 18:37:05 2003 +0000

    Andrew Sobala <aes@gnome.org>
    
    The grand "themus->control-center" merge. See individual ChangeLogs for
    details.

 ChangeLog                                          |   6 +
 Makefile.am                                        |   2 +-
 capplets/common/ChangeLog                          |   8 +
 capplets/common/Makefile.am                        |  17 +-
 capplets/common/gnome-theme-apply.c                |  63 ++
 capplets/common/gnome-theme-apply.h                |  33 +
 capplets/common/theme-thumbnail.c                  | 597 ++++++++++++++++++
 capplets/common/theme-thumbnail.h                  |  24 +
 capplets/theme-switcher/ChangeLog                  |   9 +
 capplets/theme-switcher/Makefile.am                |   5 +-
 capplets/theme-switcher/gnome-theme-manager.c      |  42 +-
 capplets/theme-switcher/theme-thumbnail.c          | 597 ------------------
 capplets/theme-switcher/theme-thumbnail.h          |  24 -
 configure.in                                       |  30 +
 vfs-methods/Makefile.am                            |   1 +
 vfs-methods/themus/ChangeLog                       | 168 +++++
 vfs-methods/themus/Makefile.am                     |  83 +++
 vfs-methods/themus/Themus_Component.server.in.in   |  19 +
 .../themus/Themus_Properties_View.server.in.in     |  19 +
 vfs-methods/themus/theme-method.c                  | 699 +++++++++++++++++++++
 vfs-methods/themus/theme-method.conf               |   2 +
 vfs-methods/themus/theme-method.directory.in       |   5 +
 vfs-methods/themus/theme-thumbnailer.c             | 150 +++++
 vfs-methods/themus/themus-component-main.c         |  54 ++
 vfs-methods/themus/themus-component.c              |  88 +++
 vfs-methods/themus/themus-component.h              |  47 ++
 vfs-methods/themus/themus-properties-main.c        |  54 ++
 vfs-methods/themus/themus-properties-view.c        | 223 +++++++
 vfs-methods/themus/themus-properties-view.h        |  44 ++
 vfs-methods/themus/themus.mime                     |   2 +
 vfs-methods/themus/themus.schemas.in               |  57 ++
 31 files changed, 2503 insertions(+), 669 deletions(-)

commit 95ff4d6a25979c16db4a5bef01a4780b44e9ecaf
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon May 12 23:25:40 2003 +0000

    Updated Portuguese translation.
    
    2003-05-12  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 +++
 po/pt.po     | 83 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 44 insertions(+), 43 deletions(-)

commit 466017cc4e2f6f5146b632a009fe0f1a64d8658f
Author: Marco Pesenti Gritti <marco@it.gnome.org>
Date:   Mon May 12 19:30:28 2003 +0000

    Set the enabled key for new services and unset it on delete
    
    2003-05-12  Marco Pesenti Gritti  <marco@it.gnome.org>
    
        * capplets/file-types/service-info.c: (service_info_save),
        (service_info_delete):
    
        Set the enabled key for new services and unset it on delete

 ChangeLog                          | 7 +++++++
 capplets/file-types/service-info.c | 5 +++++
 2 files changed, 12 insertions(+)

commit cf191563c65327f441833951a429113207bab2f0
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun May 11 22:23:54 2003 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 75 +++++++++++++++++++++++++++---------------------------------
 2 files changed, 38 insertions(+), 41 deletions(-)

commit 77ba97e29d49de193679bf25d59d822f30b4da24
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Fri May 9 08:55:52 2003 +0000

    Updated Irish translation.
    
    2003-05-07  Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish translation.

 po/ChangeLog |  3 +++
 po/ga.po     | 72 ++++++++++++++++++++++++------------------------------------
 2 files changed, 32 insertions(+), 43 deletions(-)

commit b7a5917b6a68a54a735dfeb9a18c6d44f7381706
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed May 7 18:55:08 2003 +0000

    update

 configure.in               |  7 +------
 control-center/Makefile.am | 20 +++++++-------------
 2 files changed, 8 insertions(+), 19 deletions(-)

commit cee7d84639744c45431c8c6675a9d3ef8b452176
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 7 18:36:55 2003 +0000

    post release version bump
    
    
    2003-05-07  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 04f119abaed6e3a1d2b1ae396037ad3a17368d9c
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 7 18:25:21 2003 +0000

    Release 2.3.1
    
    
    2003-05-07  Jody Goldberg <jody@gnome.org>
    
        * Release 2.3.1

 ChangeLog                                 |   4 +
 archiver/ChangeLog                        |   4 +
 archiver/tests/ChangeLog                  |   4 +
 capplets/accessibility/keyboard/ChangeLog |   4 +
 capplets/background/ChangeLog             |   4 +
 capplets/common/ChangeLog                 |   4 +
 capplets/default-applications/ChangeLog   |   4 +
 capplets/desktop-links/ChangeLog          |   4 +
 capplets/file-types/ChangeLog             |   4 +
 capplets/font/ChangeLog                   |   4 +
 capplets/keybindings/ChangeLog            |   4 +
 capplets/keyboard/ChangeLog               |   4 +
 capplets/mime-type/ChangeLog              |   4 +
 capplets/mouse/ChangeLog                  |   4 +
 capplets/network/ChangeLog                |   4 +
 capplets/rollback/ChangeLog               |   4 +
 capplets/sound/ChangeLog                  |   4 +
 capplets/theme-switcher/ChangeLog         |   4 +
 capplets/ui-properties/ChangeLog          |   4 +
 capplets/url-properties/ChangeLog         |   4 +
 capplets/windows/ChangeLog                |   4 +
 capplets/wm-properties/ChangeLog          |   4 +
 configure.in                              |   7 +-
 control-center/ChangeLog                  |   4 +
 control-center/Makefile.am                |  20 +-
 gnome-settings-daemon/ChangeLog           |   8 +
 gnome-settings-daemon/xrdb/Makefile.am    |   2 +
 help/ChangeLog                            |   4 +
 libbackground/ChangeLog                   |   4 +
 libwindow-settings/ChangeLog              |   4 +
 po/ChangeLog                              |   4 +
 po/am.po                                  | 349 +++++++++------
 po/ar.po                                  | 391 +++++++++++------
 po/az.po                                  | 534 +++++++++++++++--------
 po/be.po                                  | 361 ++++++++++------
 po/bg.po                                  | 391 +++++++++++------
 po/ca.po                                  | 393 +++++++++++------
 po/cs.po                                  |   2 +-
 po/da.po                                  | 389 +++++++++++------
 po/de.po                                  | 383 +++++++++++------
 po/el.po                                  | 383 +++++++++++------
 po/en_GB.po                               | 339 +++++++++------
 po/es.po                                  | 387 +++++++++++------
 po/et.po                                  | 383 +++++++++++------
 po/fa.po                                  | 357 +++++++++------
 po/fi.po                                  | 383 +++++++++++------
 po/fr.po                                  | 336 ++++++++++-----
 po/ga.po                                  | 146 +++++--
 po/gl.po                                  | 393 +++++++++++------
 po/he.po                                  | 383 +++++++++++------
 po/hr.po                                  | 374 ++++++++++------
 po/hu.po                                  | 383 +++++++++++------
 po/it.po                                  | 366 ++++++++++------
 po/ja.po                                  |   2 +-
 po/ko.po                                  |  25 +-
 po/lt.po                                  | 692 ++++++++++++++++++++----------
 po/lv.po                                  | 383 +++++++++++------
 po/mk.po                                  | 381 ++++++++++------
 po/ml.po                                  | 143 ++++--
 po/mn.po                                  | 383 +++++++++++------
 po/ms.po                                  | 383 +++++++++++------
 po/nl.po                                  | 383 +++++++++++------
 po/nn.po                                  | 369 ++++++++++------
 po/no.po                                  |  55 ++-
 po/pl.po                                  | 382 +++++++++++------
 po/pt.po                                  | 387 +++++++++++------
 po/pt_BR.po                               | 403 ++++++++++-------
 po/ro.po                                  | 383 +++++++++++------
 po/ru.po                                  | 383 +++++++++++------
 po/sk.po                                  | 383 +++++++++++------
 po/sl.po                                  | 387 +++++++++++------
 po/sq.po                                  | 519 ++++++++++++++--------
 po/sv.po                                  | 390 +++++++++++------
 po/ta.po                                  | 388 +++++++++++------
 po/tr.po                                  | 387 +++++++++++------
 po/uk.po                                  | 383 +++++++++++------
 po/vi.po                                  | 387 +++++++++++------
 po/wa.po                                  | 373 ++++++++++------
 po/zh_CN.po                               | 383 +++++++++++------
 po/zh_TW.po                               | 393 ++++++++++-------
 80 files changed, 11385 insertions(+), 6076 deletions(-)

commit 052aa3e665f7b7c660cff4ffd152984d868bb4bc
Author: fixed mis-translations. T.Aihana <aihana@gnome.gr.jp>
Date:   Tue May 6 11:59:43 2003 +0000

    2003-05-06 fixed mis-translations. T.Aihana <aihana@gnome.gr.jp>

 po/ja.po | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

commit 7efdfdf974dabcb124c20197b40bf5150a005e49
Author: Danilo Šegan <dsegan@gmx.net>
Date:   Tue May 6 02:57:30 2003 +0000

    Added "sr" and "sr@Latn" to ALL_LINGUAS.
    
    2003-05-05  Danilo Šegan  <dsegan@gmx.net>
    
        * configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
    
        * po/sr.po, po/sr@Latn.po: Added Serbian translation by
        http://Prevod.org/.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit c63ba0fd4176ea62ced7b78bc426d97b507e3694
Author: updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Tue May 6 02:10:03 2003 +0000

    2003-05-06 updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |   4 +
 po/ja.po     | 393 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 254 insertions(+), 143 deletions(-)

commit fcae020bac7b85d49e5ceca2d7c7e4b1aebc6388
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon May 5 04:12:10 2003 +0000

    be.po: Updated Belarusian translation from Belarusian team <i18n@mova.org>.

 po/ChangeLog |   5 +++
 po/be.po     | 106 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 62 insertions(+), 49 deletions(-)

commit 1ef4020f9d5f902ff59225e08d8b4151a0c993e5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun May 4 23:14:05 2003 +0000

    Fix for both-horiz property with eggtoolbar and bonobo. Fixes bug #104979.
    
    2003-05-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-ui-properties.c: Fix for both-horiz property
        with eggtoolbar and bonobo. Fixes bug #104979.

 capplets/ui-properties/ChangeLog             | 5 +++++
 capplets/ui-properties/gnome-ui-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 135e3fe70c3bb9baeac9c8eb2be67a52fe3355f8
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun May 4 22:49:13 2003 +0000

    Merge fix for bug #110266.
    
    2003-05-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-accessibility-keyboard-properties.c: Merge fix
        for bug #110266.

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit acadf6a8268c600c5fd946cd68a9a9dd6fd1c999
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sat May 3 17:04:28 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 07514ea76c3599b6f998b0da9e203dc4c26756c5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat May 3 09:35:03 2003 +0000

    Unref the icon_theme after using it.
    
    2003-05-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * theme-thumbnail.c: (create_image): Unref the
        icon_theme after using it.

 capplets/theme-switcher/ChangeLog         | 5 +++++
 capplets/theme-switcher/theme-thumbnail.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit b3ac06e5d1673b6211c77dcb0c873ba0cf10b57e
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Fri May 2 23:14:41 2003 +0000

    Merge fix for --disable-schemas-install

 schemas/Makefile.am | 4 ++++
 1 file changed, 4 insertions(+)

commit 6288c148b31833214e8aec76521d8550e6b3d2f9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri May 2 22:49:57 2003 +0000

    Add a colon for consistency. Fixes bug #103923.
    
    2003-05-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * theme-properties.glade: Add a colon for consistency.
        Fixes bug #103923.

 capplets/theme-switcher/ChangeLog              | 5 +++++
 capplets/theme-switcher/theme-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 6051d4d57b862a509d84c9d49abc6ca07ad07bd3
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri May 2 21:50:48 2003 +0000

    better error checking.
    
    Fri May  2 17:48:07 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * metacity-window-manager.c (add_themes_from_dir): better error
        checking.

 libwindow-settings/ChangeLog                 | 5 +++++
 libwindow-settings/metacity-window-manager.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 557bde96ba89f166f77c12edc3287401b46bc54e
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri May 2 17:00:13 2003 +0000

    fixed trivial PO file format errors

 po/ko.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 6897d4c2eb2a6d1d1e4452e3f1ee4226d0843983
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Fri May 2 16:58:06 2003 +0000

    Updated Korean translation.
    
    2003-05-03  Changwoo Ryu  <cwryu@debian.org>
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 375 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 242 insertions(+), 137 deletions(-)

commit 0db3796eee169c3cfd1d916ecc8869d0dd960c36
Author: Ross Burton <rburton@src.gnome.org>
Date:   Fri May 2 14:22:32 2003 +0000

    Don't break if ~/.gnome2/xrdb doesn't exist, and add .cvsignore

 gnome-settings-daemon/ChangeLog             |  8 ++++++++
 gnome-settings-daemon/gnome-settings-xrdb.c | 15 +++++++++------
 gnome-settings-daemon/xrdb/.cvsignore       |  2 ++
 3 files changed, 19 insertions(+), 6 deletions(-)

commit dace5bb4a707b663349f94b084d1c958675d3be5
Author: Ross Burton <rburton@src.gnome.org>
Date:   Fri May 2 13:43:03 2003 +0000

    , not ...

 gnome-settings-daemon/ChangeLog        | 5 +++++
 gnome-settings-daemon/xrdb/Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit de28d407a4d9988cd09d4a63d243a204cc73b4df
Author: Ross Burton <rburton@src.gnome.org>
Date:   Fri May 2 13:36:24 2003 +0000

    Build a new makefile I added last night

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit 2d4ca4efe09018b4a1b8fb60fb6bc862cb8b9559
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Fri May 2 13:29:25 2003 +0000

    Updated Irish Translation2003-05-02 Paul Duffy
    
    2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation2003-05-02 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish Translation

 po/ChangeLog |  4 ++++
 po/ga.po     | 62 ++++++++++++++++++++++++------------------------------------
 2 files changed, 29 insertions(+), 37 deletions(-)

commit 73a3be85bdf65f0bc3b613aba54e687b873d2e7f
Author: Ross Burton <rburton@src.gnome.org>
Date:   Thu May 1 16:08:26 2003 +0000

    L33t X property setting based upon GTK to theme legacy apps

 gnome-settings-daemon/ChangeLog               |  10 +
 gnome-settings-daemon/Makefile.am             |   4 +
 gnome-settings-daemon/gnome-settings-daemon.c |   3 +
 gnome-settings-daemon/gnome-settings-xrdb.c   | 333 ++++++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-xrdb.h   |  33 +++
 gnome-settings-daemon/xrdb/Editres.ad         |   6 +
 gnome-settings-daemon/xrdb/Emacs.ad           |  24 ++
 gnome-settings-daemon/xrdb/General.ad         |   5 +
 gnome-settings-daemon/xrdb/Makefile.am        |   8 +
 gnome-settings-daemon/xrdb/Motif.ad           |  81 +++++++
 gnome-settings-daemon/xrdb/Tk.ad              | 107 +++++++++
 gnome-settings-daemon/xrdb/Xaw.ad             |  41 ++++
 12 files changed, 655 insertions(+)

commit 99955d6bab0cb324fd8bc807f45ecb4d96203582
Author: Ross Burton <rburton@src.gnome.org>
Date:   Thu May 1 14:31:33 2003 +0000

    Handle theme directories which are symlinks, fixing #111990

 capplets/common/ChangeLog          | 6 ++++++
 capplets/common/gnome-theme-info.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 5fa760ae4490f1d7da924ee69523e7b0849d602c
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu May 1 13:38:42 2003 +0000

    Update Czech translation

 po/ChangeLog |  3 +++
 po/cs.po     | 23 ++++++++++++++---------
 2 files changed, 17 insertions(+), 9 deletions(-)

commit b885a19c9a77615baf1f01a81a0929ac9e852295
Author: Alex Duggan <aldug@astrolinux.com>
Date:   Thu May 1 05:32:13 2003 +0000

    use appropriate window border icon.
    
    2003-04-30  Alex Duggan  <aldug@astrolinux.com>
    
        * gnome-window-properties.c: use appropriate
        window border icon.

 capplets/windows/ChangeLog                 | 5 +++++
 capplets/windows/gnome-window-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit 21e7d16ff8ae28955eaad693bacaa6b518b251e6
Author: Alex Duggan <aldug@astrolinux.com>
Date:   Thu May 1 05:31:42 2003 +0000

    use appropriate window border icon.
    
    2003-04-30  Alex Duggan  <aldug@astrolinux.com>
    
        * sound-properties-capplet.c: use appropriate
        window border icon.

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 6 +-----
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 968f3b6e1aeae3b6adc72ec7bfc623535f144aa6
Author: Alex Duggan <aldug@astrolinux.com>
Date:   Thu May 1 05:31:12 2003 +0000

    use appropriate window border icon.
    
    2003-04-30  Alex Duggan  <aldug@astrolinux.com>
    
        * gnome-accessibility-keyboard-properties.c: use appropriate
        window border icon.

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit 75e2207bbe5534f7e938cd3506ed8d5ee232659e
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Wed Apr 30 20:36:00 2003 +0000

    updated irish translation
    
    2003-04-30 Paul Duffy <dubhthach@frink.nuigalway.ie>
    updated irish translation

 po/ChangeLog |  8 ++++++++
 po/ga.po     | 27 +++++++++------------------
 2 files changed, 17 insertions(+), 18 deletions(-)

commit 2397c54574251c1154d223054787a6159df575f2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Apr 30 20:07:00 2003 +0000

    Require 2.2.0 or newer of libgnomeui and gnome-desktop for the icon theme
    
    2003-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * configure.in: Require 2.2.0 or newer of libgnomeui
        and gnome-desktop for the icon theme stuff. Fix from Spider and
        aes. Fixes bug #104907.

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 3f7f20f58851ebbc0cf7eb4aee97b9ac388dc57c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Apr 30 19:40:03 2003 +0000

    Fix build on Solaris. Fixes bug #106196.
    
    2003-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-accessibility-keyboard-properties.c: Fix build
        on Solaris. Fixes bug #106196.

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 3 +++
 2 files changed, 8 insertions(+)

commit dd1dab2165635a90abbaf4f36c41c9d8574c8e38
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Apr 30 19:36:07 2003 +0000

    Translate the url descriptions too. Merged from head.
    
    2003-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * service-info.c: (service_info_get_description): Translate
        the url descriptions too. Merged from head.

 capplets/file-types/ChangeLog      | 5 +++++
 capplets/file-types/service-info.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 8a6414c5f1b330cb10e61e8be7207306b264b78d
Author: Andrew Sobala <aes@gnome.org>
Date:   Wed Apr 30 19:20:52 2003 +0000

    s/-lwindow-settings/-lgnome-window-settings/
    
    2003-03-30  Andrew Sobala  <aes@gnome.org>
    
        * gnome-window-settings-2.0.pc.in:
        s/-lwindow-settings/-lgnome-window-settings/

 libwindow-settings/ChangeLog                       | 5 +++++
 libwindow-settings/gnome-window-settings-2.0.pc.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 169ea697b32583b2e0adc4ffd4bb6070bcc024d1
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Wed Apr 30 19:06:37 2003 +0000

    Fix mail address

 capplets/file-types/ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 529a6ec2a64129afbea4301e897cfac4e4718121
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Apr 30 19:04:12 2003 +0000

    Fix i18n problems. Patch from Mike Lei at Sun.
    
    2003-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * mime-type-info.c: (mime_type_get_pretty_name_for_server),
        (get_lang_list): Fix i18n problems. Patch from Mike Lei at Sun.

 capplets/file-types/ChangeLog        |  6 ++++++
 capplets/file-types/mime-type-info.c | 21 ++++-----------------
 2 files changed, 10 insertions(+), 17 deletions(-)

commit 000ab469eaaa9f4757a8e7cea136d58a50ee98e7
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Apr 30 13:33:07 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 126 +++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 109 insertions(+), 21 deletions(-)

commit 33881e468848192bc9405b4c3b8f74c8bba3664d
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 30 04:06:12 2003 +0000

    make the repeat bounds more reasonable.
    
    
    2003-04-30  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : make the repeat bounds more
          reasonable.

 capplets/keyboard/ChangeLog                       | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f742128d26ea1b3ca06b67609b446920f636bd76
Author: Kjartan Maraas <set EMAIL_ADDRESS environment variable>
Date:   Tue Apr 29 22:37:40 2003 +0000

    Mark string for translation. Patch from Hidetoshi Tajima. Fixes bug
    
    2003-04-30  Kjartan Maraas  <set EMAIL_ADDRESS environment variable>
    
        * gnome-keybinding-properties.c: (make_key_theme_menu_item): Mark
        string for translation. Patch from Hidetoshi Tajima.
        Fixes bug #106560.

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b86989525e3c01c53176be64e9fe627ba777a5a0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 29 21:46:04 2003 +0000

    Fix a typo. Adapted version of a patch from <mitr@volny.cz>. Fixes bug
    
    2003-04-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-manager.c: (main): Fix a typo. Adapted version
        of a patch from <mitr@volny.cz>. Fixes bug #111849.

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3fb5f240ae071273d663d830d4a07f6511931fbd
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Tue Apr 29 19:37:34 2003 +0000

    Hmm? Broken pipe?

 capplets/theme-switcher/ChangeLog         | 6 ++++++
 capplets/theme-switcher/theme-thumbnail.c | 7 ++++---
 control-center/ChangeLog                  | 4 ++++
 control-center/capplet-dir.c              | 7 +++++--
 4 files changed, 19 insertions(+), 5 deletions(-)

commit a3e69e90793987185f824555e04ed965967bb84d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 29 18:39:13 2003 +0000

    Add missing files. Update this.
    
    2003-04-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Add missing files.
        * no.po: Update this.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   2 +
 po/no.po       | 347 ++++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 225 insertions(+), 129 deletions(-)

commit 60980d0fe5ea2075a082a1f8cfcae4000f325822
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Tue Apr 29 17:52:40 2003 +0000

    Merge from stable branch

 capplets/common/ChangeLog                 | 7 +++++++
 capplets/common/gconf-property-editor.c   | 3 ++-
 capplets/common/gnome-theme-info.c        | 8 ++++----
 capplets/file-types/ChangeLog             | 6 ++++++
 capplets/file-types/mime-type-info.c      | 4 ++--
 capplets/mouse/ChangeLog                  | 5 +++++
 capplets/mouse/gnome-mouse-properties.c   | 4 +++-
 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/sound-properties-capplet.c | 3 ++-
 9 files changed, 35 insertions(+), 9 deletions(-)

commit e3e9279f0c702ed5a7cff197476faf17f3d95799
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Apr 29 16:49:07 2003 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 384 ++++++++++++++++++++++-------------------------------------
 2 files changed, 148 insertions(+), 240 deletions(-)

commit b9870547edcfc16e29b6f79f9606780a739c135e
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Tue Apr 29 13:20:26 2003 +0000

    Updated Irish translation
    
    2003-04-29 Paul Duffy <dubhthach@frink.nuigalway.ie>
    Updated Irish translation

 po/ChangeLog |    3 +
 po/ga.po     | 1147 ++++++++--------------------------------------------------
 2 files changed, 152 insertions(+), 998 deletions(-)

commit 2ff82733227428136ed9d8978ab54cf2e0a5a235
Author: Alexander Larsson <alexl@redhat.com>
Date:   Wed Apr 23 15:01:16 2003 +0000

    Initial import. UI not fully polished yet.
    
    2003-04-23  Alexander Larsson  <alexl@redhat.com>
    
        * .cvsignore:
        * display-capplet.png:
        * display-properties.desktop.in:
        * main.c:
        * Makefile.am:
        Initial import. UI not fully polished yet.
    
    2003-04-23  Alexander Larsson  <alexl@redhat.com>
    
        * capplets/Makefile.am:
        * configure.in:
        * capplets/display/*
        Check for XRandR support.
        Add display capplet.

 ChangeLog                                      |   8 +
 capplets/Makefile.am                           |  12 +-
 capplets/display/.cvsignore                    |   6 +
 capplets/display/Makefile.am                   |  26 +
 capplets/display/display-capplet.png           | Bin 0 -> 4353 bytes
 capplets/display/display-properties.desktop.in |  13 +
 capplets/display/main.c                        | 778 +++++++++++++++++++++++++
 configure.in                                   |  26 +-
 8 files changed, 865 insertions(+), 4 deletions(-)

commit 826fd514fc4c7c764063392e833a0eec5f6cc47b
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sun Apr 20 10:49:06 2003 +0000

    Added "ms".
    
    2003-04-19  Hasbullah Bin Pit  <sebol@ikhlas.com>
    
            * configure.in(ALL_LINGUAS): Added "ms".

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7b87b54c2c0132943673faf4fe06f259775a98ac
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Thu Apr 17 20:32:59 2003 +0000

    Added "ca" (Catalan) to ALL_LINGUAS.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit e80943c46d899358dcfc3209039300730a0b7584
Author: Paul Duffy <dubhthach@frink.nuigalway.ie>
Date:   Thu Apr 10 18:55:06 2003 +0000

    Added Irish Translation (ga)
    
    2003-04-10 Paul Duffy <dubhthach@frink.nuigalway.ie>
          Added Irish Translation (ga)

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit da086569841b1496a9b319aa1033a2c278dceb57
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Thu Apr 10 14:32:40 2003 +0000

    *** empty log message ***

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 5d62e0441bac216a34dca011c0ac032bb2701ab1
Author: Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
Date:   Mon Apr 7 05:55:13 2003 +0000

    Fixes bogus GC creation. patch from Anders Carlsson <andersca@gnu.org>
    
    2003-04-07  Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
    
            * applier.c (set_root_pixmap): Fixes bogus GC creation.
            patch from Anders Carlsson <andersca@gnu.org>

 libbackground/ChangeLog | 5 +++++
 libbackground/applier.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 44966951d18779e3769b577e0d86e125d3f2a7c1
Author: Andrew Sobala <aes@gnome.org>
Date:   Thu Mar 27 20:51:43 2003 +0000

    s/read_meta_theme/gnome_theme_read_meta_theme/; enable the reading of
    
    2003-03-27  Andrew Sobala  <aes@gnome.org>
    
            * gnome-theme-info.c: (gnome_theme_read_meta_theme),
            (update_common_theme_dir_index):
            s/read_meta_theme/gnome_theme_read_meta_theme/; enable the reading of
            themes that just use [X-GNOME-Metatheme] without pretending to be a
            .desktop file
            * gnome-theme-info.h: exposed gnome_theme_read_meta_theme

 capplets/common/ChangeLog          |  9 +++++++++
 capplets/common/gnome-theme-info.c | 33 +++++++++++++++++++++------------
 capplets/common/gnome-theme-info.h |  3 ++-
 3 files changed, 32 insertions(+), 13 deletions(-)

commit fca5c0b43bc464d300735e95c5329bcccb52e0af
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Wed Mar 26 17:13:41 2003 +0000

    Added "he" (Hebrew) to ALL_LINGUAS.
    
    
    * configure.in: Added "he" (Hebrew) to ALL_LINGUAS.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 6fcbaa525b82d0b82da5af4a4c23bf11dc0442ed
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   Fri Mar 21 10:39:29 2003 +0000

    Added Malayalam translation

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/ml.po     | 2473 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2483 insertions(+), 1 deletion(-)

commit ee6ae8acceced635b41cdfa2977ab7d33db548d7
Author: Metin Amiroff <metin@karegen.com>
Date:   Tue Mar 18 18:49:25 2003 +0000

    Updated Azerbaijani translation.
    
    2003-03-18  Metin Amiroff  <metin@karegen.com>
    
        * az.po: Updated Azerbaijani translation.

 po/ChangeLog |    4 +
 po/az.po     | 3680 ++++++++--------------------------------------------------
 2 files changed, 463 insertions(+), 3221 deletions(-)

commit 61a024c7bd20eaa4c22c43df53884dc32ee21771
Author: Roozbeh Pournader <roozbeh@sharif.edu>
Date:   Thu Mar 13 15:29:06 2003 +0000

    Added "fa" to ALL_LINGUAS. Added Persian translation.
    
    2003-03-13  Roozbeh Pournader  <roozbeh@sharif.edu>
    
        * configure.in: Added "fa" to ALL_LINGUAS.
        * po/fa.po: Added Persian translation.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 76e4eb80001ee1ad5926b8c8f5bfcc71ddaca838
Author: Roozbeh Pournader <roozbeh@sharif.edu>
Date:   Mon Mar 10 11:00:19 2003 +0000

    Added "fa" to ALL_LINGUAS. Added Persian translation.
    
    2003-03-10  Roozbeh Pournader  <roozbeh@sharif.edu>
    
        * configure.in: Added "fa" to ALL_LINGUAS.
        * po/fa.po: Added Persian translation.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/fa.po     | 2343 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2352 insertions(+), 1 deletion(-)

commit 484fa60e4cb6ab1f44911d30b2b1cfdc33019bcd
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Tue Mar 4 16:13:43 2003 +0000

    Set "system/proxy/use_http_proxy" GConf key when Manual or Auto is
    
    * capplets/network/gnome-network-preferences.c:
    (proxy_mode_radiobutton_clicked_cb):
    Set "system/proxy/use_http_proxy" GConf key when Manual or
    Auto is selected.

 ChangeLog                                    | 9 +++++++++
 capplets/network/gnome-network-preferences.c | 5 +++++
 2 files changed, 14 insertions(+)

commit d4fc8cbb147787441d409f6921698774ebbf17b0
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Mar 3 05:29:30 2003 +0000

    configure.in: Added Belarusian to ALL_LINGUAS.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 608ffc0afa74cdba2b394bd45180b114fbfa8b32
Author: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>
Date:   Sat Feb 22 21:49:26 2003 +0000

    Added pt_BR to ALL_LINGUAS.
    
    2003-02-22  Gustavo Maciel Dias Vieira  <gdvieira@zaz.com.br>
    
            * configure.in: Added pt_BR to ALL_LINGUAS.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 5ec2a643c95aa1cfd1a7d49f20ad8106b82d5971
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 22 18:18:42 2003 +0000

    Added 'sq' to ALL_LINGUAS
    
    * configure.in: Added 'sq' to ALL_LINGUAS

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ddbb993ff47132b6b2a910737c0e79141e3ab37a
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 22 18:14:25 2003 +0000

    Added Albanian translation
    
    * sq.po: Added Albanian translation

 po/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 19dae26bebe89ce0cf7c079b9def6393c7a4740f
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   Sat Feb 22 18:11:04 2003 +0000

    Added Albanian file
    
    * sq.po: Added Albanian file

 po/sq.po | 2418 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 2418 insertions(+)

commit 8fa3717fb519c4c00db54e397773ae3cf88c2f53
Author: Calum Benson <calum@src.gnome.org>
Date:   Fri Feb 21 17:25:46 2003 +0000

    HIG-ified frames and labels.

 capplets/accessibility/keyboard/ChangeLog          |   5 +
 .../gnome-accessibility-keyboard-properties.glade  | 303 +++++++++++++++++----
 2 files changed, 250 insertions(+), 58 deletions(-)

commit 581aed27cb0ac3f3f2269bf382eaedd60404e113
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Fri Feb 21 11:58:22 2003 +0000

    be.po: Updated Belarusian translation from Belarusian team <i18n@mova.org>.

 po/ChangeLog |    5 +
 po/be.po     | 1310 +++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 883 insertions(+), 432 deletions(-)

commit 7d5b5f5f5962dd012748e9acc84ebcce5479bb1d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 18 22:34:46 2003 +0000

    Fix a double free poop that I made while fixing leaks. Spotted by jrb.
    
    2003-02-18  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-default-application-properties.c: Fix a double free poop
        that I made while fixing leaks. Spotted by jrb.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.c     | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit f3517c9712e8cd84b54bc4d67568c899efe2eda2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 16 16:07:45 2003 +0000

    Fix a typo in a comment.
    
    2003-02-16  Kjartan Maraas  <kmaraas@gnome.org>
    
        * applier.c: Fix a typo in a comment.

 libbackground/ChangeLog | 4 ++++
 libbackground/applier.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 8d2be618f7e6b7e3a829dfdc087aafcc88ab28b7
Author: added ja into ALL_LINGUAS. T.Aihana <aihana@gnome.gr.jp>
Date:   Sun Feb 16 10:45:45 2003 +0000

    2003-02-16 added ja into ALL_LINGUAS. T.Aihana <aihana@gnome.gr.jp>

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit b8d875ab3a1f7ad55b5b84db907a5d0b9531cfe2
Author: James Henstridge <james@daa.com.au>
Date:   Sat Feb 15 11:17:33 2003 +0000

    update version number.
    
    2003-02-15  James Henstridge  <james@daa.com.au>
    
        * configure.in: update version number.
    
        * NEWS: update news file for 0.4 release.

 vfs-methods/fontilus/ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit bd160edddfa0331a8f4f5f79db6d86aae3bcd04d
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Feb 14 00:02:50 2003 +0000

    Patch from Kjartan Maraas to fix a bunch of leaks.
    
    Thu Feb 13 18:51:37 2003  Jonathan Blandford  <jrb@redhat.com>
    
            * capplets/common/gconf-property-editor.c: (gconf_peditor_new):
            * capplets/common/gnome-theme-info.c: (read_meta_theme),
            (update_theme_index), (update_common_theme_dir_index),
            (top_theme_dir_changed), (top_icon_theme_dir_changed),
            (add_common_theme_dir_monitor), (real_add_top_theme_dir_monitor):
            * capplets/default-applications/gnome-default-applications-properti
            es.c: (initialize_default_applications), (read_editor),
            (read_terminal):
            * capplets/file-types/mime-edit-dialog.c: (fill_dialog):
            * capplets/file-types/mime-type-info.c: (load_all_mime_types):
            * capplets/file-types/mime-types-model.c:
            (mime_types_model_get_value):
            * capplets/font/main.c: (font_render_get_gconf), (enum_group_load):
            * capplets/mouse/gnome-mouse-properties.c: (read_cursor_font),
            (cursor_changed):
            * capplets/theme-switcher/gnome-theme-details.c:
            (window_theme_selection_changed):
            * capplets/theme-switcher/gnome-theme-manager.c:
            (meta_theme_selection_changed):
            * capplets/theme-switcher/theme-thumbnail.c:
            (generate_theme_thumbnail):
            * libsounds/sound-properties.c: (sound_properties_add_directory),
            (sound_properties_add_file):
            * libsounds/sound-view.c: (compare_func):
            * libwindow-settings/gnome-window-manager.c:
            (gnome_window_manager_new): Patch from Kjartan Maraas to fix a
            bunch of leaks.

 ChangeLog                                          | 30 ++++++++
 capplets/common/gconf-property-editor.c            |  3 +-
 capplets/common/gnome-theme-info.c                 | 86 ++++++++++++++--------
 .../gnome-default-applications-properties.c        | 20 ++++-
 capplets/file-types/mime-edit-dialog.c             |  9 ++-
 capplets/file-types/mime-type-info.c               |  1 +
 capplets/file-types/mime-types-model.c             |  7 +-
 capplets/font/main.c                               | 10 ++-
 capplets/mouse/gnome-mouse-properties.c            |  8 +-
 capplets/theme-switcher/gnome-theme-details.c      |  2 +-
 capplets/theme-switcher/gnome-theme-manager.c      |  1 +
 capplets/theme-switcher/theme-thumbnail.c          |  3 +-
 libwindow-settings/gnome-window-manager.c          |  4 +
 13 files changed, 138 insertions(+), 46 deletions(-)

commit 81e38ad5b24fce0010a3c653284d5d77807c0468
Author: Zbigniew Chyla <cyba@gnome.pl>
Date:   Thu Feb 13 22:55:53 2003 +0000

    Added pl (Polish).
    
    
    2003-02-13  Zbigniew Chyla  <cyba@gnome.pl>
    
        * configure.in (ALL_LINGUAS): Added pl (Polish).

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit ba9e32d46bc7a5106c7aed028fb904571d064461
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Thu Feb 13 09:09:47 2003 +0000

    be.po: Updated Belarusian translation from Belarusian team <i18n@mova.org>.

 po/ChangeLog |    5 +
 po/be.po     | 1099 ++++++++++++++++------------------------------------------
 2 files changed, 303 insertions(+), 801 deletions(-)

commit 4d96875f84f9ea18c470fd3346e5bef3a9e28646
Author: Gediminas Paulauaskas <menesis@delfi.lt>
Date:   Thu Feb 13 01:57:25 2003 +0000

    Updated Lithuanian translation by Vaidotas Zemlys.
    
    2003-02-13  Gediminas Paulauaskas  <menesis@delfi.lt>
    
        * lt.po: Updated Lithuanian translation by Vaidotas Zemlys.

 po/ChangeLog |    4 +
 po/lt.po     | 1253 +++++++++++++++++++---------------------------------------
 2 files changed, 404 insertions(+), 853 deletions(-)

commit e37262bd2a1c42c8d99067cbbf3d8f81a8fbe8e4
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Feb 11 00:16:26 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-02-11  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog | 4 ++++
 po/nl.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit cf31b4b25646dd29a006bad625f78ffdbe8bd926
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Feb 10 15:04:24 2003 +0000

    Updated French translation.

 po/ChangeLog |  4 +++
 po/fr.po     | 98 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 60 insertions(+), 42 deletions(-)

commit 725ac548ef325908964cc40947ee630b414d3b0d
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Mon Feb 10 09:18:27 2003 +0000

    Added Ukrainian translation

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit e1606104ff5f18ac57e8d93f42113afd1705e198
Author: Mohammad DAMT <mdamt@bisnisweb.com>
Date:   Sun Feb 9 14:26:27 2003 +0000

    Added Indonesian translation Added "id" to ALL_LINGUAS
    
    2003-02-09  Mohammad DAMT  <mdamt@bisnisweb.com>
    
        * po/id.po: Added Indonesian translation
        * configure.in: Added "id" to ALL_LINGUAS

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 1f239d9a037641897c589a5e545b4ca7b0ab6355
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Feb 6 21:47:00 2003 +0000

    handle xcursor so that we support Xcursor files.
    
    Thu Feb  6 16:43:33 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-font.c (load_xcursor_theme): handle xcursor so
        that we support Xcursor files.
    
        * gnome-settings-daemon.c: move
        gnome_settings_daemon_spawn_with_input here so multiple modules
        can use it.

 gnome-settings-daemon/ChangeLog                  |   9 ++
 gnome-settings-daemon/gnome-settings-daemon.c    | 123 +++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-daemon.h    |   6 +-
 gnome-settings-daemon/gnome-settings-font.c      |  35 ++++++-
 gnome-settings-daemon/gnome-settings-xsettings.c | 119 +---------------------
 5 files changed, 170 insertions(+), 122 deletions(-)

commit e3dd60098a35788d8ac38ff7bee5e63945cc2264
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Thu Feb 6 03:08:37 2003 +0000

    Added "pt" to ALL_LINGUAS.
    
    2003-02-06  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * configure.in: Added "pt" to ALL_LINGUAS.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7da25293455073749488a5f5b1dc5929ae24b6d2
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Wed Feb 5 22:20:09 2003 +0000

    get the default from the schema and always sort it at the top.
    
    Wed Feb  5 17:03:26 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.[ch] (get_default_string_from_key): get the
        default from the schema and always sort it at the top.
    
        * gnome-theme-details.c: ditto

 capplets/theme-switcher/ChangeLog             |  7 +++
 capplets/theme-switcher/gnome-theme-details.c | 12 ++--
 capplets/theme-switcher/gnome-theme-manager.c | 89 +++++++++++++++++++++++----
 capplets/theme-switcher/gnome-theme-manager.h |  9 ++-
 4 files changed, 94 insertions(+), 23 deletions(-)

commit 37731852a0fcdcfa07b3f34143d8ba9f143033fa
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Feb 5 21:45:38 2003 +0000

    run "nautilus --no-desktop fonts:///" if button pressed.
    
    Wed Jan 15 12:50:34 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * main.c (cb_details_response): run "nautilus --no-desktop
        fonts:///" if button pressed.
    
        (cb_show_details): show a 'Go to font folder' button if fonts:///
        exists.

 capplets/font/ChangeLog             |  8 ++++++++
 capplets/font/font-properties.glade | 14 +++++++++++++-
 capplets/font/main.c                | 15 +++++++++++++--
 3 files changed, 34 insertions(+), 3 deletions(-)

commit d660af7b7a46a73b40d0f3a43398b7a80c131995
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Feb 5 15:45:30 2003 +0000

    2.2.0.1 forgot to commit this last night.
    
    2.2.0.1
    forgot to commit this last night.

 capplets/keyboard/ChangeLog       |    4 +
 capplets/mime-type/ChangeLog      |    4 +
 capplets/mouse/ChangeLog          |    4 +
 capplets/network/ChangeLog        |    4 +
 capplets/rollback/ChangeLog       |    4 +
 capplets/sound/ChangeLog          |    4 +
 capplets/theme-switcher/ChangeLog |    4 +
 capplets/ui-properties/ChangeLog  |    4 +
 capplets/url-properties/ChangeLog |    4 +
 capplets/windows/ChangeLog        |    4 +
 capplets/wm-properties/ChangeLog  |    4 +
 control-center/ChangeLog          |    4 +
 gnome-settings-daemon/ChangeLog   |    4 +
 help/ChangeLog                    |    4 +
 libbackground/ChangeLog           |    4 +
 libwindow-settings/ChangeLog      |    4 +
 po/ChangeLog                      |    4 +
 po/am.po                          |   71 +--
 po/ar.po                          |   27 +-
 po/az.po                          |   27 +-
 po/be.po                          |   27 +-
 po/bg.po                          |   27 +-
 po/ca.po                          |    2 +-
 po/cs.po                          |    2 +-
 po/da.po                          |    2 +-
 po/de.po                          |   14 +-
 po/el.po                          |   54 +-
 po/en_GB.po                       |   27 +-
 po/es.po                          |   64 ++-
 po/et.po                          |    2 +-
 po/fi.po                          |    2 +-
 po/fr.po                          |   96 ++--
 po/ga.po                          |   27 +-
 po/gl.po                          |   27 +-
 po/he.po                          |   27 +-
 po/hr.po                          |   27 +-
 po/hu.po                          |    2 +-
 po/it.po                          |   27 +-
 po/ja.po                          |    2 +-
 po/ko.po                          |    2 +-
 po/lt.po                          |   27 +-
 po/lv.po                          |  321 +++++++----
 po/mk.po                          |   27 +-
 po/mn.po                          |   39 +-
 po/ms.po                          |   27 +-
 po/nl.po                          |    2 +-
 po/nn.po                          |   27 +-
 po/no.po                          |    4 +-
 po/pl.po                          | 1092 ++++++++++++++++++-------------------
 po/pt.po                          |   34 +-
 po/pt_BR.po                       |    2 +-
 po/ro.po                          |   98 ++--
 po/ru.po                          |    2 +-
 po/sk.po                          |   39 +-
 po/sl.po                          |    2 +-
 po/sv.po                          |    2 +-
 po/ta.po                          |   27 +-
 po/tr.po                          |   59 +-
 po/uk.po                          |  331 +++++++----
 po/vi.po                          |   40 +-
 po/wa.po                          |   27 +-
 po/zh_CN.po                       |   15 +-
 po/zh_TW.po                       |    2 +-
 63 files changed, 1765 insertions(+), 1134 deletions(-)

commit 3a19c40f951b46a072762dfc2b5bc393ba4b5193
Author: Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
Date:   Wed Feb 5 07:04:56 2003 +0000

    Added "/system/proxy" and "/system/http_proxy" to the list of directories
    
    2003-02-05 Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
    
            * gnome-network-preferences.c: Added "/system/proxy" and
            "/system/http_proxy" to the list of directories GConfClient
            will watch. Fixes #98596

 capplets/network/ChangeLog                   | 6 ++++++
 capplets/network/gnome-network-preferences.c | 4 ++++
 2 files changed, 10 insertions(+)

commit e4d106c33c475589d113f5738aebec89d7029a48
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Wed Feb 5 00:23:24 2003 +0000

    New traditional Chinese translation.
    
    2003-02-05  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: New traditional Chinese translation.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 2b46f7e0bcfc4a5d71ebaa9f006513158a4d40b2
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Feb 4 23:53:43 2003 +0000

    2.2.0.1

 ChangeLog                                 | 5 +++++
 archiver/ChangeLog                        | 4 ++++
 archiver/tests/ChangeLog                  | 4 ++++
 capplets/accessibility/keyboard/ChangeLog | 4 ++++
 capplets/background/ChangeLog             | 4 ++++
 capplets/common/ChangeLog                 | 4 ++++
 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/desktop-links/ChangeLog          | 4 ++++
 capplets/file-types/ChangeLog             | 4 ++++
 capplets/font/ChangeLog                   | 4 ++++
 capplets/keybindings/ChangeLog            | 4 ++++
 configure.in                              | 2 +-
 12 files changed, 46 insertions(+), 1 deletion(-)

commit 94943e6f165749222d3b8922fd1aedaddf2884bf
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Tue Feb 4 18:59:10 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 21 +++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit b9724b54d68e604ff68ef5bd036801805470e51e
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Tue Feb 4 17:15:04 2003 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 ++++
 po/pl.po     | 94 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 61 insertions(+), 38 deletions(-)

commit d795f5b45cf69793f7b0c8c429acd40f179ee6ab
Author: James Henstridge <james@daa.com.au>
Date:   Tue Feb 4 13:13:30 2003 +0000

    change verb name and menu item label.
    
    2003-02-04  James Henstridge  <james@daa.com.au>
    
        * src/fontilus.server.in.in: change verb name and menu item label.
    
        * src/fontilus-context-menu.c (handle_event): change verb name.

 vfs-methods/fontilus/ChangeLog               | 6 ++++++
 vfs-methods/fontilus/fontilus-context-menu.c | 2 +-
 vfs-methods/fontilus/fontilus.server.in.in   | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit 6f99d98345af753e0e5b96699015f8b3142110f7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Feb 3 21:13:14 2003 +0000

    Fix a glaring bug that caused the theme descriptions etc not to be
    
    2003-02-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-theme-info.c (read_meta_theme): Fix a glaring bug
        that caused the theme descriptions etc not to be localised.

 capplets/common/ChangeLog          | 7 +++++++
 capplets/common/gnome-theme-info.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit f5dec29812600db1f8c34f221dd3f4afd06f4fc1
Author: Daniel Yacob <yacob@src.gnome.org>
Date:   Mon Feb 3 18:08:59 2003 +0000

    Updating Amharic translation.

 po/ChangeLog |  4 ++++
 po/am.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit c6b858beeb871fb0f2d33492f5f54086d5011dd9
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Mon Feb 3 15:05:57 2003 +0000

    add fontilus.server.in.in Updated to include the context menu extensions.
    
    2003-02-02  Yanko Kaneti  <yaneti@declera.com>
    
        * Makefile.am (EXTRA_DIST): add fontilus.server.in.in
        * fontilus.spec.in: Updated to include the context menu extensions.

 vfs-methods/fontilus/ChangeLog   | 5 +++++
 vfs-methods/fontilus/Makefile.am | 1 +
 2 files changed, 6 insertions(+)

commit 74c0d22bf9065f8f9e022a5dde5e175e4fbc105b
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Feb 3 12:19:00 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog | 5 +++++
 po/ru.po     | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit bf5fb0256dec1a169e323969b4fe130a5f4f2157
Author: Sanlig Badral <badaa@src.gnome.org>
Date:   Mon Feb 3 08:54:32 2003 +0000

    *** empty log message ***

 po/ChangeLog |   4 ++
 po/mn.po     | 138 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 83 insertions(+), 59 deletions(-)

commit 5992c48c1f9cec0522f96962881c39bf34fa1608
Author: James Henstridge <james@daa.com.au>
Date:   Sun Feb 2 15:06:29 2003 +0000

    bonobo activation server file for the fontilus component.
    
    2003-02-02  James Henstridge  <james@daa.com.au>
    
        * src/fontilus.server.in.in: bonobo activation server file for the
        fontilus component.
    
        * src/fontilus-context-menu.c: Bonobo listener component to
        implement custom context menu items for fonts under fonts:///,
        which allows us to set the default font for the desktop.

 vfs-methods/fontilus/.cvsignore              |   3 +
 vfs-methods/fontilus/ChangeLog               |   9 ++
 vfs-methods/fontilus/Makefile.am             |  15 ++-
 vfs-methods/fontilus/font-view.c             |   2 +-
 vfs-methods/fontilus/fontilus-context-menu.c | 139 +++++++++++++++++++++++++++
 vfs-methods/fontilus/fontilus.server.in.in   |  34 +++++++
 6 files changed, 198 insertions(+), 4 deletions(-)

commit 4ddeecaeeda608156bf707b965c0e6e2c4c345d9
Author: Daniel Yacob <yacob@src.gnome.org>
Date:   Sun Feb 2 14:09:57 2003 +0000

    Updating Amharic translation.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit eac35de213bd1b21f9894525b05cb2d4734dce86
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sat Feb 1 22:26:49 2003 +0000

    Updated tr.po

 po/ChangeLog |   4 ++
 po/tr.po     | 213 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 118 insertions(+), 99 deletions(-)

commit 0e38d929dabc48c24717ff060faa4fc4bfafbee4
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Feb 1 21:01:25 2003 +0000

    Updated Portuguese translation.
    
    2003-02-01  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 799 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 350 insertions(+), 453 deletions(-)

commit 471b498afee6e98feddf67ed30d8af53712b3ea0
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Feb 1 20:49:42 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 49 +++++++++++++++++++++++++------------------------
 2 files changed, 29 insertions(+), 24 deletions(-)

commit 9826fd3b537e13d4dd06cfb9f388d450294fc55f
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Jan 30 02:54:24 2003 +0000

    Added Vietnamese file

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 5ffb2d2cb0e8098c50e3aaa48bb100bb0db7b252
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jan 29 20:56:39 2003 +0000

    minor change to avoid using deprecated functions.

 libwindow-settings/wm-exec.c | 1 -
 libwindow-settings/wm-list.c | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

commit 124003611ba19596014e4a156d7e5c823d3ad01f
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Wed Jan 29 18:46:55 2003 +0000

    Added French translation.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7e7aa89197b92d80388ffab7c20d8d777c8a673a
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   Wed Jan 29 10:26:23 2003 +0000

    Added Italian translation by Luca Ferretti.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 3cf6e7a39ebfd1fe33f16c23e39c7ba825b42692
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Jan 27 16:22:29 2003 +0000

    C ninety what ?
    
    2003-01-27  Bastien Nocera  <hadess@hadess.net>
    
        * gnome-theme-test.c: (main): C ninety what ?

 capplets/common/ChangeLog          | 4 ++++
 capplets/common/gnome-theme-test.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 719af735f85958a54a1c9100bbfaa8bb4de609eb
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jan 26 21:49:42 2003 +0000

    Some fixes for problems catched in translation review.
    
    2003-01-26  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Some fixes for problems catched in translation review.

 po/ChangeLog | 4 ++++
 po/sv.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 7f875b463a37f4ff8f72f6b29e6201eee1c5f1b2
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Jan 26 21:10:36 2003 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e1c0b0dac9a633609978f84102835d0f2e5a5b53
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Sun Jan 26 19:50:51 2003 +0000

    Updated traditional Chinese translation.
    
    2003-01-26  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |  4 +++
 po/zh_TW.po  | 99 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 54 insertions(+), 49 deletions(-)

commit 09b9d6c9fce1322572128e91dc90175260b47c6e
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Sun Jan 26 17:19:31 2003 +0000

    Updated Estonian translation.
    
    2003-01-26  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 ++
 po/et.po     | 119 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 61 insertions(+), 62 deletions(-)

commit 3e417f68b3aca98f4eac88a96b99899ce0c5db48
Author: Kang Jeong-Hee <kz@src.gnome.org>
Date:   Sun Jan 26 15:23:53 2003 +0000

    ko.po updated

 po/ChangeLog |   4 +
 po/ko.po     | 917 ++++++++++++++++++-----------------------------------------
 2 files changed, 282 insertions(+), 639 deletions(-)

commit 47b3884200b283db5ad3edf7e49497508148844f
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Sun Jan 26 10:09:15 2003 +0000

    Updated the Greek translation

 po/ChangeLog |  4 +++
 po/el.po     | 85 ++++++++++++++++++++++++++++--------------------------------
 2 files changed, 43 insertions(+), 46 deletions(-)

commit 2f71de1c991a37e44f34a46a1010ca7cc61d2488
Author: updated ja.po. T.Aihana <aihana@gnome.gr.jp>
Date:   Sun Jan 26 08:33:01 2003 +0000

    2003-01-26 updated ja.po. T.Aihana <aihana@gnome.gr.jp>

 po/ChangeLog |    4 +
 po/ja.po     | 2799 ++++++++++++----------------------------------------------
 2 files changed, 586 insertions(+), 2217 deletions(-)

commit efa4f17a19900d19db2b8a1d251eb1e486d75877
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jan 26 03:01:14 2003 +0000

    Some fixes for problems catched in translation review.
    
    2003-01-26  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Some fixes for problems catched in translation review.

 po/ChangeLog |  4 ++++
 po/sv.po     | 30 ++++++++++++++++--------------
 2 files changed, 20 insertions(+), 14 deletions(-)

commit 5a05b52a494c2dff8cd5c73cc07b93f461f6a42f
Author: Benjamin Greiner <bgreiner@src.gnome.org>
Date:   Sat Jan 25 16:30:34 2003 +0000

    *** empty log message ***

 po/ChangeLog |  4 +++
 po/de.po     | 93 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 49 insertions(+), 48 deletions(-)

commit ca687cbda58ef2370f58c9c842016538a72e9ac6
Author: Christophe Fergeau <teuf@users.sourceforge.net>
Date:   Sat Jan 25 13:17:52 2003 +0000

    Updated French translation.
    
    2003-01-25  Christophe Fergeau  <teuf@users.sourceforge.net>
    
        * fr.po: Updated French translation.

 po/ChangeLog |   4 ++
 po/fr.po     | 126 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 74 insertions(+), 56 deletions(-)

commit 5d7b225bbad2f4e503a22fa94fdc3195f9a55fc2
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sat Jan 25 10:37:53 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 59 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 34 insertions(+), 29 deletions(-)

commit 99af3245a12ce69081088e4571da862e0e82cd5e
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Sat Jan 25 03:26:53 2003 +0000

    translation update

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 65 +++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 53 insertions(+), 16 deletions(-)

commit f87444497c9d997defff8df14295a4bcfd369916
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Fri Jan 24 14:56:45 2003 +0000

    Updated Ukrainian translation

 po/ChangeLog |   4 ++
 po/uk.po     | 154 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 78 insertions(+), 80 deletions(-)

commit ef78c8375acd1aafc66dc4060c7af0e748c3ddce
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri Jan 24 08:49:40 2003 +0000

    Updated Slovak translation.
    
    2003-01-24  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 ++++
 po/sk.po     | 72 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 40 insertions(+), 36 deletions(-)

commit 5096434885a01f704c897cf7a2cd6e1557e7a44d
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Thu Jan 23 22:01:20 2003 +0000

    Updated Finnish translation.
    
    2003-01-23  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 30 ++++++++++++++++++++----------
 2 files changed, 24 insertions(+), 10 deletions(-)

commit cf4b327c6b3ddd784eee3a5a1c5bb700a4cc58bc
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Thu Jan 23 14:33:19 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-01-23  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 497f2459c9046a3af38c5a5d28f04236a6126601
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Thu Jan 23 14:20:03 2003 +0000

    Dutch translation updated by Vincent van Adrighem.
    
    2003-01-23  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Vincent van Adrighem.

 po/ChangeLog |  4 ++++
 po/nl.po     | 27 ++++++++++++++++++---------
 2 files changed, 22 insertions(+), 9 deletions(-)

commit 3494cb57bdc6f76c3142a667b954a2e04c27d8e1
Author: Paisa Seeluangsawat <paisa@colorado.edu>
Date:   Thu Jan 23 01:14:28 2003 +0000

    Added Thai translation. Added "th".
    
    2003-01-22  Paisa Seeluangsawat  <paisa@colorado.edu>
    
            * th.po: Added Thai translation.
        * configure.in (ALL_LINGUAS): Added "th".

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 2ab4901c0afeafbe2fc1bf6acc455b3cae113a9e
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Jan 22 19:51:10 2003 +0000

    Updated Danish translation.
    
    2003-01-22  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 29 +++++++++++++++++++----------
 2 files changed, 23 insertions(+), 10 deletions(-)

commit 4a9d69467de95e8270173416939cd3a54a09ad7e
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Wed Jan 22 18:09:35 2003 +0000

    Updated Catalan translation.

 po/ChangeLog |  4 ++++
 po/ca.po     | 73 ++++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 60 insertions(+), 17 deletions(-)

commit 9dc535217ac15be8c52ba49dddacaadbf2c6e8d0
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Wed Jan 22 17:51:48 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 35 +++++++++++++++++++----------------
 2 files changed, 23 insertions(+), 16 deletions(-)

commit 3e5866cb726c127cab73dce7939b6efca6a951a9
Author: Andras Timar <timar@gnome.hu>
Date:   Wed Jan 22 13:59:14 2003 +0000

    Updated Hungarian translation.
    
    2003-01-22  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |  4 ++++
 po/hu.po     | 29 +++++++++++++++++++----------
 2 files changed, 23 insertions(+), 10 deletions(-)

commit 6750cbbef63a51fe0d648cb9ef34ea8d8bf23f61
Author: Marius Andreiana <marius galuna.ro>
Date:   Wed Jan 22 13:56:39 2003 +0000

    updated ( thanks to Mugurel Tudor )
    
    2003-01-22  Marius Andreiana <marius galuna.ro>
    
        * ro.po: updated ( thanks to Mugurel Tudor )

 po/ChangeLog |   4 +
 po/ro.po     | 418 +++++++++++++++++++++++++----------------------------------
 2 files changed, 182 insertions(+), 240 deletions(-)

commit bd59c0b941d843a6740b91727fa943a50269fddf
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Wed Jan 22 05:16:05 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |  5 +++++
 po/ru.po     | 13 +++++++++++--
 2 files changed, 16 insertions(+), 2 deletions(-)

commit 2175df89cb6da1b56a0b8d78f45346c52439d0c9
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Jan 21 23:39:37 2003 +0000

    Added "mn" to ALL_LINGUAS. Added Mongolian translation by Sanlig Badral
    
    2003-01-22  Christian Rose  <menthos@menthos.com>
    
        * configure.in: Added "mn" to ALL_LINGUAS.
        * po/mn.po: Added Mongolian translation by
        Sanlig Badral <badral@chinggis.com>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/mn.po     | 2440 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2450 insertions(+), 1 deletion(-)

commit a826375ef1022b098a7860520c8f282139e31fcb
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Tue Jan 21 23:23:48 2003 +0000

    Updated Spanish translation.
    
    2003-01-21  Pablo Gonzalo del Campo <pablodc@bigfoot.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |  4 +++
 po/es.po     | 97 +++++++++++++++++++++++++++---------------------------------
 2 files changed, 48 insertions(+), 53 deletions(-)

commit a51adebdb33c64f27a8b801a100529673e8620eb
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jan 21 19:58:48 2003 +0000

    Updated Slovenian translation

 po/sl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c250efb04eafb7b2c57a0de35a352fb1d9c2e68b
Author: Bill Haneman <billh@src.gnome.org>
Date:   Tue Jan 21 18:25:27 2003 +0000

    (Partial) fix for bugzilla 104058, changed AnyModifier grabs to
    nomodifier and LockMask grabs.  Approved by Jody.

 ChangeLog                                    |  9 ++++-
 gnome-settings-daemon/gnome-settings-mouse.c | 55 ++++++++++++++++++----------
 2 files changed, 43 insertions(+), 21 deletions(-)

commit 24304fe6e3540eef58653ead16f95cd0af6a7fd1
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Tue Jan 21 16:54:29 2003 +0000

    Updated Ukrainian translation

 po/uk.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit bff3c5e7caa5abf81125f324adcd081b4ccd2e66
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Tue Jan 21 16:42:02 2003 +0000

    Updated Ukrainian translation

 po/uk.po | 1190 ++++++++++++++++++++------------------------------------------
 1 file changed, 388 insertions(+), 802 deletions(-)

commit fc17fac774b46a280f6a7e8900b5dbfa5aab2ecb
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jan 21 16:37:42 2003 +0000

    Updated Slovenian translation

 po/sl.po | 54 ++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 34 insertions(+), 20 deletions(-)

commit 8abfee1241dc854ddbb18b6f1a1b22a3fc17be58
Author: Satyajit Kanungo <satyak@src.gnome.org>
Date:   Tue Jan 21 16:32:07 2003 +0000

        Tue Jan 21 Satyajit Kanungo <satyajit.kanungo@wipro.com>
            * Changed the App name passed to  gnome_program_init().
              There was a small type in the name. Fixes bug #104060

 capplets/default-applications/ChangeLog                               | 4 ++++
 capplets/default-applications/gnome-default-applications-properties.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 256ed5a8d68d2be2ec1ae037561d2fd284f09908
Author: Benjamin Greiner <bgreiner@src.gnome.org>
Date:   Tue Jan 21 15:03:10 2003 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/de.po     | 27 ++++++++++++++++++---------
 2 files changed, 22 insertions(+), 9 deletions(-)

commit 73cbc9eabb2777fdda075d1c2c39cf9202d31edc
Author: Shivram U <shivaram.upadhyayula@wipro.com>
Date:   Tue Jan 21 14:54:05 2003 +0000

    Set the size request of the shortcuts treeview instead of the the actions
    
    2003-01-21 Shivram U  <shivaram.upadhyayula@wipro.com>
    
            * gnome-keybindings-properties.c (append_keys_to_tree): Set the size
            request of the shortcuts treeview instead of the the actions scrolled
            window. (#103962)

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 0165c5481457e85d16c29fcd869298364b41d6b4
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Tue Jan 21 13:45:20 2003 +0000

    Artis Trops  <hornet@navigator.lv> * lv.po: Updated Latvian translation

 po/ChangeLog |   4 +
 po/lv.po     | 348 +++++++++++++++++++----------------------------------------
 2 files changed, 115 insertions(+), 237 deletions(-)

commit b89fd88034fa1d00ceaa59da60f4847f64ce9981
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Tue Jan 21 12:41:11 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |  5 ++++
 po/ru.po     | 81 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 48 insertions(+), 38 deletions(-)

commit 75f06c09d1475f3238e6ec711caa225d45efb6f2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 21 11:54:40 2003 +0000

    Updated Norwegian translation.
    
    2003-01-21  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 29 ++++++++++++++++++++++++-----
 2 files changed, 28 insertions(+), 5 deletions(-)

commit 8f227fafce029e9816467cc97e254027ad7fb445
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jan 21 10:49:36 2003 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d7b44d222b84a78842f93ebd47698ec805c4eb3d
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Jan 21 07:50:05 2003 +0000

    Updated Swedish translation.
    
    2003-01-21  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 32 +++++++++++++++++++-------------
 2 files changed, 23 insertions(+), 13 deletions(-)

commit 967ddebaba874a01bfc42579c96ac89cc92dd8c9
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Tue Jan 21 07:26:40 2003 +0000

    Updated traditional Chinese translation.
    
    2003-01-21  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 ++
 po/zh_TW.po  | 164 ++++++++++++++++++++++-------------------------------------
 2 files changed, 64 insertions(+), 104 deletions(-)

commit f6444a51ce16f1be82932b53683798524c9885a9
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Jan 21 06:53:43 2003 +0000

    Released 2.2.0

 ChangeLog                                 | 4 ++++
 archiver/ChangeLog                        | 4 ++++
 archiver/tests/ChangeLog                  | 4 ++++
 capplets/accessibility/keyboard/ChangeLog | 4 ++++
 capplets/background/ChangeLog             | 4 ++++
 capplets/common/ChangeLog                 | 4 ++++
 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/desktop-links/ChangeLog          | 4 ++++
 capplets/file-types/ChangeLog             | 4 ++++
 capplets/font/ChangeLog                   | 4 ++++
 capplets/keybindings/ChangeLog            | 4 ++++
 capplets/keyboard/ChangeLog               | 4 ++++
 capplets/mime-type/ChangeLog              | 4 ++++
 capplets/mouse/ChangeLog                  | 4 ++++
 capplets/network/ChangeLog                | 4 ++++
 capplets/rollback/ChangeLog               | 4 ++++
 capplets/sound/ChangeLog                  | 4 ++++
 capplets/theme-switcher/ChangeLog         | 4 ++++
 capplets/ui-properties/ChangeLog          | 4 ++++
 capplets/url-properties/ChangeLog         | 4 ++++
 capplets/windows/ChangeLog                | 4 ++++
 capplets/wm-properties/ChangeLog          | 4 ++++
 configure.in                              | 4 ++--
 control-center/ChangeLog                  | 4 ++++
 gnome-settings-daemon/ChangeLog           | 4 ++++
 help/ChangeLog                            | 4 ++++
 libbackground/ChangeLog                   | 4 ++++
 libwindow-settings/ChangeLog              | 4 ++++
 po/ChangeLog                              | 5 +++++
 po/POTFILES.in                            | 2 ++
 30 files changed, 117 insertions(+), 2 deletions(-)

commit f68decde57d662525fc87931204179596cc6ae09
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jan 21 05:50:29 2003 +0000

    correctly escape the file we're saving.
    
    Tue Jan 21 00:44:03 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-save.c (escape_string_and_dup): correctly escape the
        file we're saving.

 capplets/theme-switcher/ChangeLog          |  5 +++
 capplets/theme-switcher/gnome-theme-save.c | 59 +++++++++++++++++++++++++++---
 2 files changed, 59 insertions(+), 5 deletions(-)

commit ec6e109f667ca2bee5f997057e5d8265445254fb
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Jan 20 21:35:22 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 60 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 34 insertions(+), 30 deletions(-)

commit c364bb4d7c8605271ba28faa0eb3081da40246e7
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Jan 20 19:03:56 2003 +0000

    updated Vietnamese file

 po/ChangeLog |  4 ++++
 po/pt_BR.po  |  2 +-
 po/vi.po     | 63 +++++++++++++++++++++++++++++-------------------------------
 3 files changed, 35 insertions(+), 34 deletions(-)

commit 41c422d9e8187450e0b2ea16be0d4f2b6a22b1e1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 20 18:43:44 2003 +0000

    Updated Norwegian translation.
    
    2003-01-20  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 28 ++++++++++++++--------------
 2 files changed, 18 insertions(+), 14 deletions(-)

commit ad8965b2f5f8a27c5937834cb490eafa8d635f2b
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Jan 20 14:22:01 2003 +0000

    Updated German translation.

 po/ChangeLog |  5 ++-
 po/de.po     | 99 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 52 insertions(+), 52 deletions(-)

commit cb5524ff2335d888b8b99ffc75ee377eafb196d3
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Mon Jan 20 11:15:42 2003 +0000

    updated de translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 23 ++++++++++-------------
 2 files changed, 14 insertions(+), 13 deletions(-)

commit c9723439f622a389e38274b7129c29ed8c0ce813
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Jan 20 08:52:11 2003 +0000

    ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.

 po/ChangeLog |    5 +
 po/ru.po     | 1609 +++++++++++-----------------------------------------------
 2 files changed, 297 insertions(+), 1317 deletions(-)

commit 7e699e6b22e4233d2f4529f4acc643bd5d9ad9bd
Author: Alex Duggan <aldug@astrolinux.com>
Date:   Mon Jan 20 03:12:33 2003 +0000

    make the right control key also locate the mouse pointer. Fixes #87426
    
    2003-01-19  Alex Duggan  <aldug@astrolinux.com>
    
        * gnome-settings-mouse.c (filter), (set_locate_pointer):
        make the right control key also locate the mouse pointer.
        Fixes #87426

 gnome-settings-daemon/ChangeLog              |  6 ++++
 gnome-settings-daemon/gnome-settings-mouse.c | 46 +++++++++++++++-------------
 2 files changed, 31 insertions(+), 21 deletions(-)

commit dbc03d51c7aa5b9980576f7fe1edbd326831bcd5
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Mon Jan 20 00:43:17 2003 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 512 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 211 insertions(+), 305 deletions(-)

commit 9f4cb75a45c93c53e3513d3afef652e8c20b47f0
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Sun Jan 19 13:58:27 2003 +0000

    Artis Trops  <hornet@navigator.lv> * configure.in: Added Latvian (lv) to ALL_LINGUAS

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 285f52cea4374cded59a10ba1871d22ba66ebe65
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sun Jan 19 07:17:03 2003 +0000

    add more debugging output.
    
    Sun Jan 19 02:14:35 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-test.c (main): add more debugging output.

 capplets/common/ChangeLog          |  4 ++++
 capplets/common/gnome-theme-test.c | 10 +++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 70b5c7eef5fd70bf1296ec94aa79b73edd801211
Author: Mikael Hallendal <micke@codefactory.se>
Date:   Sun Jan 19 07:14:32 2003 +0000

    Fixed bug that caused not all themes to be loaded properly.
    
    2003-01-19  Mikael Hallendal  <micke@codefactory.se>
    
        * metacity-window-manager.c:
        (add_themes_from_dir): Fixed bug that caused not all themes to be
          loaded properly.

 libwindow-settings/ChangeLog                 | 6 ++++++
 libwindow-settings/metacity-window-manager.c | 1 +
 2 files changed, 7 insertions(+)

commit 82a1d3a1d0f4e63f116ca6d21574a33cc3be9626
Author: He Qiangqiang <carton@linux.net.cn>
Date:   Sun Jan 19 04:18:50 2003 +0000

    Fixed some translation.
    
    2003-01-19  He Qiangqiang  <carton@linux.net.cn>
    
        * zh_CN.po: Fixed some translation.

 po/ChangeLog |  4 ++++
 po/zh_CN.po  | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 5754270ce8a6f73cfa6958916c37cc60773d297c
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sat Jan 18 17:45:13 2003 +0000

    Updated tr.po

 po/ChangeLog |   4 +
 po/tr.po     | 479 +++++++++++++++++++++++------------------------------------
 2 files changed, 191 insertions(+), 292 deletions(-)

commit 7934c02488be19221943831dc64afe35c85db53b
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sat Jan 18 13:25:17 2003 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |    5 +
 po/pl.po     | 1665 ++++++++++++++++++++++++----------------------------------
 2 files changed, 695 insertions(+), 975 deletions(-)

commit 9ad3b9d6a6d7fa611a6e78f743d74a6a28260283
Author: He Qiangqiang <carton@linux.net.cn>
Date:   Sat Jan 18 09:11:47 2003 +0000

    Updated Simplified Chinese translation by Funda Wang
    
    2003-01-18  He Qiangqiang  <carton@linux.net.cn>
    
            * zh_CN.po: Updated Simplified Chinese translation by
            Funda Wang <fundawang@en2china.com>.

 po/ChangeLog |   5 +
 po/zh_CN.po  | 585 +++++++++++++++++++----------------------------------------
 2 files changed, 194 insertions(+), 396 deletions(-)

commit 6c880118536577eb8e360a572d030fe8e2db6ee8
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Fri Jan 17 02:50:18 2003 +0000

    translation update

 po/ChangeLog |   4 +
 po/pt_BR.po  | 323 +++++++++++++++++++++++------------------------------------
 2 files changed, 132 insertions(+), 195 deletions(-)

commit f5bd46f3a6fbdec9a8d6f00d91b0156f3c12c50b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jan 16 20:51:24 2003 +0000

    new little test program for helping people debug their installation.
    
    Thu Jan 16 15:51:33 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-test.c: new little test program for helping people
        debug their installation.

 capplets/common/ChangeLog          |   5 ++
 capplets/common/Makefile.am        |   9 +++
 capplets/common/gnome-theme-test.c | 114 +++++++++++++++++++++++++++++++++++++
 3 files changed, 128 insertions(+)

commit 754e9005d5c397fc1dd20fff056b57cff123443e
Author: Daniel Yacob <yacob@src.gnome.org>
Date:   Thu Jan 16 13:07:01 2003 +0000

    Updating Amharic translation.

 po/ChangeLog |  4 ++++
 po/am.po     | 48 +++++++++++++++++++++++++-----------------------
 2 files changed, 29 insertions(+), 23 deletions(-)

commit b8d1d9548cd18cf4471f983847421318cb6363b0
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Jan 16 07:59:09 2003 +0000

    2.1.7

 ChangeLog                                 |  4 ++++
 NEWS                                      | 10 ++++++++++
 archiver/ChangeLog                        |  4 ++++
 archiver/tests/ChangeLog                  |  4 ++++
 capplets/accessibility/keyboard/ChangeLog |  4 ++++
 capplets/background/ChangeLog             |  4 ++++
 capplets/common/ChangeLog                 |  4 ++++
 capplets/default-applications/ChangeLog   |  4 ++++
 capplets/desktop-links/ChangeLog          |  4 ++++
 capplets/file-types/ChangeLog             |  4 ++++
 capplets/font/ChangeLog                   |  4 ++++
 capplets/keybindings/ChangeLog            |  4 ++++
 capplets/keyboard/ChangeLog               |  4 ++++
 capplets/mime-type/ChangeLog              |  4 ++++
 capplets/mouse/ChangeLog                  |  4 ++++
 capplets/network/ChangeLog                |  4 ++++
 capplets/rollback/ChangeLog               |  4 ++++
 capplets/sound/ChangeLog                  |  4 ++++
 capplets/theme-switcher/ChangeLog         |  4 ++++
 capplets/ui-properties/ChangeLog          |  4 ++++
 capplets/url-properties/ChangeLog         |  4 ++++
 capplets/windows/ChangeLog                |  4 ++++
 capplets/wm-properties/ChangeLog          |  4 ++++
 configure.in                              |  2 +-
 control-center/ChangeLog                  |  4 ++++
 gnome-settings-daemon/ChangeLog           |  4 ++++
 help/ChangeLog                            |  4 ++++
 libbackground/ChangeLog                   |  4 ++++
 libwindow-settings/ChangeLog              |  4 ++++
 po/ChangeLog                              |  4 ++++
 30 files changed, 123 insertions(+), 1 deletion(-)

commit 22876b1dc37e6792f42cf3c8e24fa7de54582cae
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Jan 16 07:40:29 2003 +0000

    make sure we're initted, as this function can be run asynchronously.
    
    Thu Jan 16 02:32:39 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-details.c (gnome_theme_details_update_from_gconf):
        make sure we're initted, as this function can be run
        asynchronously.
    
        * gnome-theme-manager.c (gnome_meta_theme_installer_run_cb): hook
        up the installer.
    
        * gnome-theme-installer.c: Try to handle icon themes.

 capplets/theme-switcher/ChangeLog               | 11 ++++++++++
 capplets/theme-switcher/gnome-theme-details.c   | 28 +++++++++++++++++++++----
 capplets/theme-switcher/gnome-theme-installer.c | 15 +++++++------
 capplets/theme-switcher/gnome-theme-installer.h |  2 +-
 capplets/theme-switcher/gnome-theme-manager.c   | 13 +++++++++++-
 5 files changed, 57 insertions(+), 12 deletions(-)

commit 7d8899ba2e335baeda7092f1b422eba15a02a23b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jan 16 01:16:36 2003 +0000

    call correctly in all the right places.
    
    Wed Jan 15 20:16:21 2003  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-info.c (remove_data_from_hash_by_name): call
        correctly in all the right places.
    
        * gnome-theme-manager.c (gnome_theme_manager_tree_sort_func):
        remove this unneeded sort func.
    
        * gnome-theme-details.c (setup_tree_view): use the right sort
        function.

 capplets/common/ChangeLog                     |  5 +++
 capplets/common/gnome-theme-info.c            | 10 +++--
 capplets/theme-switcher/ChangeLog             |  8 ++++
 capplets/theme-switcher/gnome-theme-details.c | 34 +++++++++++++--
 capplets/theme-switcher/gnome-theme-manager.c | 60 ++++-----------------------
 capplets/theme-switcher/gnome-theme-manager.h |  4 --
 6 files changed, 60 insertions(+), 61 deletions(-)

commit ff051fce675444ac9f3bebca26455d4c7814ef87
Author: James Henstridge <james@daa.com.au>
Date:   Wed Jan 15 16:36:16 2003 +0000

    set the icon on the window based on the file type.
    
    2003-01-15  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (set_icon): set the icon on the window based on
        the file type.

 vfs-methods/fontilus/ChangeLog   |  5 +++++
 vfs-methods/fontilus/font-view.c | 30 ++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

commit 678549df050c365c093c18ab7461fb33670e020c
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 15 04:48:55 2003 +0000

    fix minor typo that disables the error dialog in the event of failure.
    
    
    2003-01-14  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (accessibility_button_clicked) : fix
              minor typo that disables the error dialog in the event of failure.

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit eb2071f8ff99e003af278466d80b59859a421125
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 15 03:21:11 2003 +0000

    yet another place to handle NULL window manager.
    
    
    2003-01-14  Jody Goldberg <jody@gnome.org>
    
        * gnome-theme-manager.c (load_meta_themes) : yet another place to
        handle NULL window manager.

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 7 +++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 9841338eff869203f04da76f3f9f4ad6a7063532
Author: Alex Duggan <aldug@gnome.org>
Date:   Wed Jan 15 00:17:18 2003 +0000

    s/gnome-theme-properties/gnome-theme-manager/ Fixes #103525
    
    2003-01-14  Alex Duggan  <aldug@gnome.org>
    
        * gnome-theme-manager.c (main):
        s/gnome-theme-properties/gnome-theme-manager/  Fixes #103525

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 7a6758d193e169a065eb2d0b42c6fcc4bd8efbee
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jan 14 18:36:47 2003 +0000

    Updated Slovenian translation

 po/sl.po | 90 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 42 insertions(+), 48 deletions(-)

commit ff77e33f641ffad7a014213485f41c800d2598eb
Author: Daniel Yacob <yacob@src.gnome.org>
Date:   Tue Jan 14 17:09:41 2003 +0000

    Updating Amharic transaltion.

 po/ChangeLog |  4 ++++
 po/am.po     | 71 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 41 insertions(+), 34 deletions(-)

commit 6939c3ef3e1d667edcdf400842128a8be1b1a8d0
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Jan 14 14:34:11 2003 +0000

    update

 capplets/theme-switcher/TODO | 5 +++++
 1 file changed, 5 insertions(+)

commit db7accb5f530fc3eca1b8623e529c568d7a68073
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jan 14 07:17:28 2003 +0000

    set the correct row to the new data. This was messing a lot up. Saving now
    
    Tue Jan 14 02:16:22 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c (load_meta_themes): set the correct row to
        the new data.  This was messing a lot up.  Saving now works, so
        long as you don't type bad data.
    
        * TODO: update.

 capplets/theme-switcher/ChangeLog             |  8 ++++++++
 capplets/theme-switcher/TODO                  |  9 +++------
 capplets/theme-switcher/gnome-theme-manager.c | 22 +++++++---------------
 3 files changed, 18 insertions(+), 21 deletions(-)

commit b43e4c2022f6780ec76339a799be70aa3a0cd10d
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jan 14 04:08:50 2003 +0000

    handle yet another place where gnome_wm_manager_get_current may be NULL.
    
    
    2003-01-13  Jody Goldberg <jody@gnome.org>
    
        * gnome-theme-manager.c (load_meta_themes) : handle yet another place
          where gnome_wm_manager_get_current may be NULL.

 capplets/theme-switcher/ChangeLog             |  5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 12 ++++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

commit f28c52f3f39e32cb9c14900e687dc04e6bb92f55
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jan 13 20:21:28 2003 +0000

    capplets/common/gnome-theme-info.[ch]: Total rewrite.  Fam now works correctly.
    capplets/keybindings/*: use new theme code.
    capplets/theme-switcher/*: use new theme code.

 capplets/common/ChangeLog                          |    5 +
 capplets/common/gnome-theme-info.c                 | 1578 +++++++++++++++-----
 capplets/common/gnome-theme-info.h                 |   42 +-
 capplets/keybindings/ChangeLog                     |    4 +
 capplets/keybindings/eggcellrendererkeys.c         |    2 +-
 capplets/keybindings/gnome-keybinding-properties.c |    2 +
 capplets/theme-switcher/ChangeLog                  |    4 +
 capplets/theme-switcher/gnome-theme-manager.c      |    2 +
 8 files changed, 1295 insertions(+), 344 deletions(-)

commit 3f3ed8325e5cbec51e4c5fdb56f1df38cb6cd33b
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Mon Jan 13 14:24:41 2003 +0000

    Added "es" (Spanish).
    
    2003-01-13  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
        * configure.in (ALL_LINGUAS): Added "es" (Spanish).

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit b8932bf738559e9fa7f6e83561d57e891d465ce2
Author: James Henstridge <james@daa.com.au>
Date:   Mon Jan 13 13:46:05 2003 +0000

    refactor so that it creates a pixmap big enough to display everything.
    
    2003-01-13  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (create_text_pixmap): refactor so that it
        creates a pixmap big enough to display everything.
        (main): make the window resizable, and add font preview to a
        scrolled window.

 vfs-methods/fontilus/ChangeLog   |   7 ++
 vfs-methods/fontilus/font-view.c | 173 ++++++++++++++++++++++++---------------
 2 files changed, 115 insertions(+), 65 deletions(-)

commit 603729102872d0397e1a39d200a38db721e40cb3
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Mon Jan 13 12:30:55 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-01-13  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog | 4 ++++
 po/nl.po     | 7 +++----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit 358aad98338cf03a040b37e3df45a16dc12daa01
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Sun Jan 12 01:13:47 2003 +0000

    Add Czech translation
    Add cs to ALL_LINGUAS in configure.in

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d880a77b81fa59615e54cd5e9318de43751bfe56
Author: Anders Carlsson <andersca@gnu.org>
Date:   Sun Jan 12 00:37:29 2003 +0000

    Fix a silly.
    
    2003-01-12  Anders Carlsson  <andersca@gnu.org>
    
        * sv.po: Fix a silly.

 po/ChangeLog | 5 +++++
 po/sv.po     | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 46c13e2e8572d067473620ef9105082a7242a6e2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jan 11 15:42:06 2003 +0000

    Added "no".
    
    2003-01-11  Kjartan Maraas  <kmaraas@gnome.org>
    
            * configure.in: (ALL_LINGUAS): Added "no".

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7771e412d86ca7bd865d5ea0e373ac5ebf77c13f
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sat Jan 11 14:58:45 2003 +0000

    Updated Finnish translation.
    
    2003-01-11  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 35 +++++++++++++++++------------------
 2 files changed, 21 insertions(+), 18 deletions(-)

commit ac41a0fb642ad52ec38d748540f0b38e712a2678
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Jan 10 18:40:36 2003 +0000

    Post release bump
    
    
    2003-01-10  Jody Goldberg <jody@gnome.org>
    
        * configure.in : Post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5a35e2caad92638c1f6842c59094ab0b4c42ea54
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Jan 10 16:11:31 2003 +0000

    Release 2.1.6
    
    
    2003-01-10  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.6

 ChangeLog                                 |    4 +
 archiver/ChangeLog                        |    4 +
 archiver/tests/ChangeLog                  |    4 +
 capplets/accessibility/keyboard/ChangeLog |    4 +
 capplets/background/ChangeLog             |    4 +
 capplets/common/ChangeLog                 |    4 +
 capplets/default-applications/ChangeLog   |    4 +
 capplets/desktop-links/ChangeLog          |    4 +
 capplets/file-types/ChangeLog             |    4 +
 capplets/font/ChangeLog                   |    4 +
 capplets/keybindings/ChangeLog            |    4 +
 capplets/keyboard/ChangeLog               |    4 +
 capplets/mime-type/ChangeLog              |    4 +
 capplets/mouse/ChangeLog                  |    4 +
 capplets/network/ChangeLog                |    4 +
 capplets/rollback/ChangeLog               |    4 +
 capplets/sound/ChangeLog                  |    4 +
 capplets/theme-switcher/ChangeLog         |    8 +
 capplets/theme-switcher/Makefile.am       |    2 +-
 capplets/ui-properties/ChangeLog          |    4 +
 capplets/url-properties/ChangeLog         |    4 +
 capplets/windows/ChangeLog                |    4 +
 capplets/wm-properties/ChangeLog          |    4 +
 configure.in                              |    2 +-
 control-center/ChangeLog                  |    4 +
 gnome-settings-daemon/ChangeLog           |    4 +
 help/ChangeLog                            |    4 +
 libbackground/ChangeLog                   |    4 +
 libwindow-settings/ChangeLog              |    4 +
 po/ChangeLog                              |    4 +
 po/am.po                                  |   58 +-
 po/ar.po                                  |  304 +++++---
 po/az.po                                  |  315 +++++---
 po/be.po                                  |  302 +++++---
 po/bg.po                                  |  304 +++++---
 po/ca.po                                  |  311 +++++---
 po/cs.po                                  |    2 +-
 po/da.po                                  |   12 +-
 po/de.po                                  |   60 +-
 po/el.po                                  |  112 +--
 po/en_GB.po                               |  260 ++++---
 po/es.po                                  |   64 +-
 po/et.po                                  |  280 +++++---
 po/fi.po                                  |   55 +-
 po/fr.po                                  |   71 +-
 po/ga.po                                  |  294 +++++---
 po/gl.po                                  |  300 +++++---
 po/he.po                                  |   88 ++-
 po/hr.po                                  |  299 +++++---
 po/hu.po                                  |   18 +-
 po/it.po                                  |  315 +++++---
 po/ja.po                                  |  320 ++++++---
 po/ko.po                                  |  301 +++++---
 po/lt.po                                  |  300 +++++---
 po/lv.po                                  |  369 +++++++---
 po/mk.po                                  |  155 ++--
 po/ms.po                                  |   86 +--
 po/nl.po                                  |   53 +-
 po/nn.po                                  |  310 +++++---
 po/no.po                                  |   56 +-
 po/pl.po                                  |  301 +++++---
 po/pt.po                                  |  308 +++++---
 po/pt_BR.po                               |  320 ++++++---
 po/ro.po                                  |  295 +++++---
 po/ru.po                                  |  309 +++++---
 po/sk.po                                  |  125 ++--
 po/sl.po                                  |  333 ++++++---
 po/sv.po                                  |   12 +-
 po/ta.po                                  | 1025 ++++++++++++++++++--------
 po/tr.po                                  |  305 +++++---
 po/uk.po                                  |  290 +++++---
 po/vi.po                                  |  117 +--
 po/wa.po                                  |  304 +++++---
 po/zh_CN.po                               | 1104 ++++++++++++++++++++---------
 po/zh_TW.po                               |   78 +-
 75 files changed, 7417 insertions(+), 3703 deletions(-)

commit d09fe606f85ba9bc05ee98241f81cfa4607b46aa
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Fri Jan 10 15:23:46 2003 +0000

    Added Danish translation

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 912dbed89764fd6fa6008920d50e943af56f4200
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Jan 10 12:07:56 2003 +0000

    Added "sv". Added more files. Added Swedish translation.
    
    2003-01-10  Christian Rose  <menthos@menthos.com>
    
        * configure.in: (ALL_LINGUAS): Added "sv".
        * po/.cvsignore: Added more files.
        * po/sv.po: Added Swedish translation.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d0a7429f34d70935f7d793cbf673e1989337940f
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Thu Jan 9 22:11:24 2003 +0000

    Add missing ChangeLog entry.

 vfs-methods/fontilus/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 9c04e0c1318a58bccbf49c9be056d9c52ee57155
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu Jan 9 16:53:41 2003 +0000

    Update Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 76 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 43 insertions(+), 37 deletions(-)

commit 6fb226616a12a49933d8246535b81f812ee822af
Author: James Henstridge <james@daa.com.au>
Date:   Thu Jan 9 15:53:31 2003 +0000

    add news items.
    
    2003-01-09  James Henstridge  <james@daa.com.au>
    
        * NEWS: add news items.
    
        * src/fontilus.mime: ttc files are True Types.
    
        * src/*.c: update copyright messages.

 vfs-methods/fontilus/ChangeLog             | 6 ++++++
 vfs-methods/fontilus/font-method.c         | 2 +-
 vfs-methods/fontilus/font-view.c           | 2 +-
 vfs-methods/fontilus/fontilus.applications | 2 +-
 vfs-methods/fontilus/fontilus.mime         | 5 ++++-
 vfs-methods/fontilus/ftstream-vfs.c        | 9 +++++----
 vfs-methods/fontilus/thumbnailer.c         | 2 +-
 7 files changed, 19 insertions(+), 9 deletions(-)

commit a6292dd571d12b3df454dd5d31487af9f2bb57ba
Author: James Henstridge <james@daa.com.au>
Date:   Thu Jan 9 15:39:45 2003 +0000

    update to include schema and run a postinstallation script to install the
    
    2003-01-09  James Henstridge  <james@daa.com.au>
    
        * fontilus.spec.in: update to include schema and run a
        postinstallation script to install the schema.

 vfs-methods/fontilus/ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit d6bca97bc764f7cf19e521ded74edc943b0f4e14
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Thu Jan 9 15:29:21 2003 +0000

    Check some string in Spanish translation.
    
    2003-01-08  Pablo Gonzalo del Campo <pablodc@bigfoot.com>
    
        * es.po: Check some string in Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 58 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 33 insertions(+), 29 deletions(-)

commit 1b4e7b8ffa2c1997eebb98c8e53644037019a71d
Author: James Henstridge <james@daa.com.au>
Date:   Thu Jan 9 14:56:40 2003 +0000

    look for gconftool.
    
    2003-01-09  James Henstridge  <james@daa.com.au>
    
        * configure.in: look for gconftool.
    
        * src/fontilus.schemas.in: add schemas to set up thumbnailing.

 vfs-methods/fontilus/.cvsignore          |   2 +-
 vfs-methods/fontilus/ChangeLog           |   6 ++
 vfs-methods/fontilus/Makefile.am         |  13 +++-
 vfs-methods/fontilus/fontilus.schemas.in | 109 +++++++++++++++++++++++++++++++
 4 files changed, 128 insertions(+), 2 deletions(-)

commit bd64a0a3907e8dd817207a6ca56c2ea403bd45f2
Author: Anders Carlsson <andersca@codefactory.se>
Date:   Wed Jan 8 22:40:33 2003 +0000

    Add support for applying fonts.
    
    2003-01-08  Anders Carlsson  <andersca@codefactory.se>
    
        * gnome-theme-manager.c: (update_font_button_state),
        (font_key_changed), (apply_font_clicked), (setup_dialog):
        * gnome-theme-manager.h:
        Add support for applying fonts.
    
        * theme-thumbnail.c: (create_image):
        Allow SVG files as icons.

 capplets/theme-switcher/ChangeLog             | 10 +++
 capplets/theme-switcher/gnome-theme-manager.c | 96 +++++++++++++++++++++++++++
 capplets/theme-switcher/gnome-theme-manager.h |  2 +
 capplets/theme-switcher/theme-thumbnail.c     |  1 +
 4 files changed, 109 insertions(+)

commit 646163892c88f31e9793f2ce2437a9785d589477
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Jan 8 22:19:22 2003 +0000

    Fixes.
    
    2003-01-08  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixes.

 po/ChangeLog |  4 ++++
 po/sv.po     | 56 +++++++++++++++++++++++++++++---------------------------
 2 files changed, 33 insertions(+), 27 deletions(-)

commit c971f29ea490e99bcc297dcb2e73e5bf8ff8c174
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Wed Jan 8 17:56:33 2003 +0000

    Updated Spanish translation.
    
    2003-01-08  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog | 124 ++++++++++++++++++++++++++++++-----------------------------
 po/es.po     | 106 +++++++++++++++++++++++++++++---------------------
 2 files changed, 127 insertions(+), 103 deletions(-)

commit c045e53b68cdf5e9166fdd21f11b18bd6120c404
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Jan 8 14:10:33 2003 +0000

    Updated Danish translation.
    
    2003-01-08  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 78 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 44 insertions(+), 38 deletions(-)

commit 3b70c4b14511098014f29df07bfccfe9cba77dd0
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Wed Jan 8 13:06:33 2003 +0000

    Artis Trops  <hornet@navigator.lv> * lv.po: Updated Latvian translation

 po/ChangeLog |  4 ++++
 po/lv.po     | 34 +++++++++++++++++-----------------
 2 files changed, 21 insertions(+), 17 deletions(-)

commit 895d64ecdb804a6904eecccd25e1862aeb4db6e0
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Wed Jan 8 10:06:24 2003 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 124 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 64 insertions(+), 60 deletions(-)

commit 3884d90a5a734b211954cd0572d3e8152a9014fb
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Wed Jan 8 10:05:38 2003 +0000

    *** empty log message ***

 po/he.po | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

commit 1993872f570bd1b6a70f26199b8b97aaaefa2c8c
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 8 08:05:47 2003 +0000

    handle lack of metacity. (window_theme_selection_changed) : ditto.
    
    
    2003-01-08  Jody Goldberg <jody@gnome.org>
    
        * gnome-theme-details.c (gnome_theme_details_update_from_gconf) :
          handle lack of metacity.
        (window_theme_selection_changed) : ditto.
        (gnome_theme_details_reread_themes_from_disk) : ditto.

 capplets/theme-switcher/ChangeLog             |  7 +++++++
 capplets/theme-switcher/gnome-theme-details.c | 16 +++++++++-------
 2 files changed, 16 insertions(+), 7 deletions(-)

commit 5ab8aaf3bbad5ebc2dfb54aaa0365aaef82f9c46
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 8 07:40:50 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=a96483 sigh. The defaults
    
    
    2003-01-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=a96483
        * accessibility-keyboard.c : sigh.  The defaults apparently need to be
          0 too.

 capplets/accessibility/keyboard/ChangeLog                | 6 ++++++
 capplets/accessibility/keyboard/accessibility-keyboard.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit e5cb97f6a8a7232a173dbd77226cd6a6df2e560c
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 8 07:38:53 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=96484 make 0 min for slow and
    
    
    2003-01-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=96484
        * accessibility-keyboard.c : make 0 min for slow and bounce

 capplets/accessibility/keyboard/ChangeLog                | 5 +++++
 capplets/accessibility/keyboard/accessibility-keyboard.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 7bddbe5058d30f279ae2537ce65d750361d21cb7
Author: Andras Timar <timar@gnome.hu>
Date:   Wed Jan 8 07:10:02 2003 +0000

    Updated Hungarian translation.
    
    2003-01-08  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |  4 ++++
 po/hu.po     | 76 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 42 insertions(+), 38 deletions(-)

commit b0184362c096997302f7b5a086fe68fa927beff2
Author: Rajkumar Sivasamy <rajkumar.siva@wipro.com>
Date:   Wed Jan 8 07:04:42 2003 +0000

    Utility file to register the images used by capplets as stock-icons
    
    2003-01-08  Rajkumar Sivasamy  <rajkumar.siva@wipro.com>
    
            * capplets/common/capplet-stock-icons.[ch]: Utility file to register
            the images used by capplets as stock-icons
    
            * capplets/common/Makefile.am: Changes to include the above file
    
            * capplets/keyboard/gnome-keyboard-properties.c:
            * capplets/accessibility/keyboard/accessibility-keyboard.c:
            Use stock-icons
    
            * capplets/mouse/Makefile.am:
            * capplets/mouse/gnome-mouse-properties.c:
            Use stock-icons. Also register the icons through capplet-stock-icons.[ch]
            instead of doing it here.
    
            Fixes Bug 101977

 ChangeLog                                          |  18 +++
 .../keyboard/accessibility-keyboard.c              |  23 ++--
 capplets/common/Makefile.am                        |   3 +-
 capplets/common/capplet-stock-icons.c              | 137 +++++++++++++++++++++
 capplets/common/capplet-stock-icons.h              |  62 ++++++++++
 capplets/keyboard/gnome-keyboard-properties.c      |  20 ++-
 capplets/mouse/Makefile.am                         |  16 +--
 capplets/mouse/gnome-mouse-properties.c            | 116 +++--------------
 8 files changed, 255 insertions(+), 140 deletions(-)

commit 564733fb5dfa2a578e592326a2fbece5258555f5
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Wed Jan 8 07:01:24 2003 +0000

    handle initial theme as custom.
    
    Wed Jan  8 01:57:09 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c (add_initial_row_to_meta_theme): handle
        initial theme as custom.
    
        * TODO: update

 capplets/theme-switcher/ChangeLog             |   7 ++
 capplets/theme-switcher/TODO                  |   6 +-
 capplets/theme-switcher/gnome-theme-details.c |   3 -
 capplets/theme-switcher/gnome-theme-manager.c | 114 +++++++++++++++++++++++---
 capplets/theme-switcher/gnome-theme-manager.h |   1 +
 capplets/theme-switcher/theme-thumbnail.c     |   2 +-
 6 files changed, 111 insertions(+), 22 deletions(-)

commit 2279c9775df2ed9b7fbb8826f0ba53c7ff19fada
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jan 8 05:41:30 2003 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=101433 fix trivial stupidity.
    
    
    2003-01-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=101433
        * gnome-window-manager.c
        (gnome_window_manager_get_double_click_actions) : fix trivial
        stupidity.  How did this last so long ?

 libwindow-settings/ChangeLog              | 7 +++++++
 libwindow-settings/gnome-window-manager.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 91cf3c87e9a496a103d8541973aa6f505a752ed1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 7 22:41:14 2003 +0000

    Updated Norwegian translation.
    
    2003-01-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 34 ++++++++++++++++------------------
 2 files changed, 20 insertions(+), 18 deletions(-)

commit 9adc400a453b95b24a10ecc250e7d0ddca4244c3
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Jan 7 17:47:56 2003 +0000

    Updated Swedish translation.
    
    2003-01-07  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 21 ++++++++++-----------
 2 files changed, 14 insertions(+), 11 deletions(-)

commit aca45ead19854b7597ce17b049ed8f6d76ce0339
Author: Daniel Yacob <yacob@src.gnome.org>
Date:   Tue Jan 7 16:55:23 2003 +0000

    Updated Amharic translation.

 po/ChangeLog |   4 +
 po/am.po     | 879 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 612 insertions(+), 271 deletions(-)

commit 21bf736770ebfed722390e7a492dc8a5a5117fd1
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue Jan 7 14:01:28 2003 +0000

    Fix typo in error mesg dialog

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 5fc196560dee1c24f95ada0a17053f4bd8ead9dc
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Jan 7 08:21:04 2003 +0000

    update

 capplets/theme-switcher/TODO | 3 +++
 1 file changed, 3 insertions(+)

commit 003a40868fc697f5ca2422903fc6d33c0aaf6aa6
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jan 7 08:15:07 2003 +0000

    add a description entry. Still needs escaping.
    
    Tue Jan  7 03:10:36 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-save.c (save_dialog_response): add a description
        entry.  Still needs escaping.
    
        * theme-thumbnail.c (generate_theme_thumbnail): read the thumbnail
        back from the child correctly.  I think thumbnailing fully works.
    
        * TODO: Update

 capplets/theme-switcher/ChangeLog             | 10 ++++++++++
 capplets/theme-switcher/TODO                  | 15 ++++++---------
 capplets/theme-switcher/gnome-theme-manager.c | 10 ++++++++--
 capplets/theme-switcher/gnome-theme-save.c    | 23 +++++++++++++++++++----
 capplets/theme-switcher/theme-thumbnail.c     | 21 +++++++++++++++++----
 capplets/theme-switcher/theme-thumbnail.h     |  3 ++-
 6 files changed, 62 insertions(+), 20 deletions(-)

commit ff2eb3c60c43bfd79bc1bb30c7caba5d07897da7
Author: Seth Nickell <snickell@stanford.edu>
Date:   Tue Jan 7 01:46:18 2003 +0000

    Removed #if 0'd code for hard-coding minimuum height of the tree view. Use
    
    2003-01-06  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-theme-manager.c: (load_meta_themes):
        * theme-properties.glade:
    
        Removed #if 0'd code for hard-coding minimuum height
        of the tree view. Use glade properties to set minimuum
        height to a more reasonable value. Its hard to find
        items when you only see two in the scroll-view at
        any given time, and many people do not think to
        resize windows (nor should they have to :-)

 capplets/theme-switcher/ChangeLog              | 12 ++++++++++++
 capplets/theme-switcher/gnome-theme-manager.c  |  7 -------
 capplets/theme-switcher/theme-properties.glade |  1 +
 3 files changed, 13 insertions(+), 7 deletions(-)

commit 8fe3e80954281ee3c02c96e87143d6b0a1cf8799
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jan 6 23:14:04 2003 +0000

    Don't mark internal string for translation so we don't break string
    
    2003-01-06  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-theme-manager.c: (add_custom_row_to_meta_theme):
    
        Don't mark internal string for translation so we don't
        break string freeze.

 capplets/theme-switcher/ChangeLog             | 7 +++++++
 capplets/theme-switcher/gnome-theme-manager.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit fb99ca6ccf6cd7f971531e5fd289cb9af4b2767a
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Jan 6 19:51:16 2003 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 51 +++++++++++++++++++++++++++------------------------
 2 files changed, 31 insertions(+), 24 deletions(-)

commit 4067638d81be9500d596eb6a8c898b2dbddc4fc4
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon Jan 6 15:59:46 2003 +0000

    fix default image. Remove debugging g_prints.
    
    Mon Jan  6 10:55:39 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c (setup_dialog): fix default image.
        Remove debugging g_prints.

 capplets/theme-switcher/ChangeLog             |  5 +++++
 capplets/theme-switcher/gnome-theme-manager.c | 31 +++++++++++++++------------
 2 files changed, 22 insertions(+), 14 deletions(-)

commit 35588886498a8d9c1fe7a63ec3b9dbf490acc872
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Mon Jan 6 15:52:25 2003 +0000

    Updated the Greek translation

 po/ChangeLog |   4 +++
 po/el.po     | 102 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 49 insertions(+), 57 deletions(-)

commit a62887538baa98db8189085c50fb4cb3c81158e9
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Jan 6 12:42:52 2003 +0000

    *** empty log message ***

 po/he.po | 48 ++++++++++++++++++++++++++----------------------
 1 file changed, 26 insertions(+), 22 deletions(-)

commit b8b3ce1a4ec0ff920ade82cd2d2c5a7bd0fecc99
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Mon Jan 6 10:32:31 2003 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2003-01-06  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |  4 ++++
 po/nl.po     | 40 ++++++++++++++++++++--------------------
 2 files changed, 24 insertions(+), 20 deletions(-)

commit ff3aae452c8065dc7a3042babaafa832c3c1bf6c
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Jan 6 10:27:33 2003 +0000

    Updated Swedish translation.
    
    2003-01-06  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 37 ++++++++++++++++++++++---------------
 2 files changed, 26 insertions(+), 15 deletions(-)

commit 4819850ddf15b54315d975a2a570ee8e68f829bb
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Jan 6 05:43:27 2003 +0000

    Updated traditional Chinese translation

 po/ChangeLog |    4 +
 po/zh_TW.po  | 1363 +++++++++++++++++-----------------------------------------
 2 files changed, 389 insertions(+), 978 deletions(-)

commit b4343eb9c276bfb035f130d14e452f60ef370ff2
Author: Remi Cohen-Scali <remi@cohen-scali.com>
Date:   Mon Jan 6 01:12:04 2003 +0000

    Reviewed by: Jody Goldberg <jody@gnome.org>
    
    2002-11-29  Remi Cohen-Scali  <remi@cohen-scali.com>
    
            Reviewed by: Jody Goldberg <jody@gnome.org>
    
            * capplets/theme-switcher/gnome-theme-manager.c (drag_data_received_cb):
            Add a test to detect is uri is local. If not use full URI instead
            of just the path in order to be able to download remote tarballs.
            Fixes #97983.

 ChangeLog                                     |  9 +++++++++
 capplets/theme-switcher/gnome-theme-manager.c | 12 ++++++++++--
 2 files changed, 19 insertions(+), 2 deletions(-)

commit 390e0ccab8d75e25c05acfe4755e3573b1f35b45
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sun Jan 5 23:58:27 2003 +0000

    Add a default image for when theme's are being thumbnailed.
    
    2003-01-05  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-theme-manager.c: (setup_dialog), (main):
        * Makefile.am:
        * theme-thumbnailing.png:
    
        Add a default image for when theme's are being
        thumbnailed.
    
        * theme-properties.glade:
    
        Hide dialog by default so it doesn't come
        up undrawn.

 capplets/theme-switcher/ChangeLog              |  14 ++++++++++++++
 capplets/theme-switcher/Makefile.am            |   4 ++++
 capplets/theme-switcher/gnome-theme-manager.c  |   6 ++++++
 capplets/theme-switcher/theme-properties.glade |   2 +-
 capplets/theme-switcher/theme-thumbnailing.png | Bin 0 -> 2038 bytes
 5 files changed, 25 insertions(+), 1 deletion(-)

commit c1b00e519d4151aa9fa8b9ab2b5e837e202adcda
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Jan 5 23:56:08 2003 +0000

    updated Vietnamese file,
    completed ALL_LINGUAS list

 ChangeLog    |  4 ++++
 configure.in |  2 +-
 po/ChangeLog |  4 ++++
 po/vi.po     | 34 ++++++++++++++++++++++------------
 4 files changed, 31 insertions(+), 13 deletions(-)

commit 9689c7ac77ea3571a984469c531422fe493300ae
Author: Seth Nickell <seth@src.gnome.org>
Date:   Sun Jan 5 23:29:34 2003 +0000

    oops, take out pointless printf debug

 capplets/theme-switcher/gnome-theme-manager.c | 2 --
 1 file changed, 2 deletions(-)

commit fff1f909c819c2ec1ba18ad663c2bbf84d9a85d4
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sun Jan 5 23:26:04 2003 +0000

    Generate thumbnails for the custom theme.
    
    2003-01-05  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-theme-manager.c: (add_custom_row_to_meta_theme),
        (remove_custom_row_from_meta_theme):
        * theme-thumbnail.c: (theme_thumbnail_invalidate_cache):
        * theme-thumbnail.h:
    
        Generate thumbnails for the custom theme.

 capplets/theme-switcher/ChangeLog             |  9 +++++++++
 capplets/theme-switcher/gnome-theme-manager.c | 15 ++++++++++++++-
 capplets/theme-switcher/theme-thumbnail.c     |  9 +++++++++
 capplets/theme-switcher/theme-thumbnail.h     | 15 ++++++++-------
 4 files changed, 40 insertions(+), 8 deletions(-)

commit a50a9ea95d33d9daa6ba13d7d16cd73cf993af85
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sun Jan 5 15:46:48 2003 +0000

    Updated Finnish translation.
    
    2003-01-05  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 75 ++++++++++++++++++++++--------------------------------------
 2 files changed, 31 insertions(+), 48 deletions(-)

commit 146c5cf229abef4e4281a07a2cdc5fa99b79641b
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Sun Jan 5 12:30:02 2003 +0000

    Updated Slovak translation.
    
    2003-01-05  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 1063 +++++++++++++++++++---------------------------------------
 2 files changed, 346 insertions(+), 721 deletions(-)

commit 8304143035faefe26892546773f8673d19d87a82
Author: Havoc Pennington <hp@redhat.com>
Date:   Fri Jan 3 18:01:02 2003 +0000

    add vertical/horizontal maximize (this adds no strings or features, just
    
    2003-01-03  Havoc Pennington  <hp@redhat.com>
    
        * gnome-keybinding-properties.c (metacity_key_list): add
        vertical/horizontal maximize (this adds no strings or features,
        just fixes the list being out of sync with metacity)

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 ++
 2 files changed, 8 insertions(+)

commit 8eccb7d29b5b7a146d66c54cd458cdd29559c679
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Jan 2 13:58:58 2003 +0000

    correctly merge disk updates and the current setup.
    
    Thu Jan  2 08:57:54 2003  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c: correctly merge disk updates and the
        current setup.
    
        * TODO: Add a TODO

 capplets/common/gnome-theme-info.c            |  96 +++++--
 capplets/common/gnome-theme-info.h            |   1 +
 capplets/theme-switcher/ChangeLog             |   7 +
 capplets/theme-switcher/TODO                  |  19 ++
 capplets/theme-switcher/gnome-theme-manager.c | 368 ++++++++++++++++++--------
 capplets/theme-switcher/gnome-theme-manager.h |   4 +
 6 files changed, 368 insertions(+), 127 deletions(-)

commit 95ff74500c0a349f036231e5509f0242c1d5a85a
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Jan 2 11:14:13 2003 +0000

    updated Walloon and Vietnamese files

 po/ChangeLog |   4 +
 po/pt_BR.po  |   2 +-
 po/vi.po     | 775 +++++++++++++++++++++++++++----------------------------
 po/wa.po     | 822 ++++++++++++++++-------------------------------------------
 4 files changed, 590 insertions(+), 1013 deletions(-)

commit e045b552d5100f0de223595026b135383136b646
Author: Seth Nickell <seth@src.gnome.org>
Date:   Tue Dec 31 08:52:09 2002 +0000

    Change the order of priority between folder icon names, since
    
    
        * theme-thumbnail.c: (create_image):
    
        Change the order of priority between folder icon names,
        since gnome-fs-directory is in the backup theme and will
        otherwise take precedence. This fix is a hack.

 capplets/theme-switcher/ChangeLog         | 8 ++++++++
 capplets/theme-switcher/theme-thumbnail.c | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 61dce9ccc9bc67566d01ce5d567211c15f4b054d
Author: Seth Nickell <snickell@stanford.edu>
Date:   Tue Dec 31 08:27:28 2002 +0000

    Thumbnail for themes (most currently) that use "gnome-fs-directory" as the
    
    2002-12-31  Seth Nickell  <snickell@stanford.edu>
    
        * theme-thumbnail.c: (create_image):
    
        Thumbnail for themes (most currently) that use
        "gnome-fs-directory" as the icon name for folders rather
        than "folder".

 capplets/theme-switcher/ChangeLog         | 8 ++++++++
 capplets/theme-switcher/theme-thumbnail.c | 8 +++++++-
 2 files changed, 15 insertions(+), 1 deletion(-)

commit 08b08ef542bb9d77ebedc0a60fd4f9b74a994af0
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Dec 30 19:24:05 2002 +0000

    Apply http://bugzilla.gnome.org/show_bug.cgi?id=101752
    
    
    2002-12-30  Jody Goldberg <jody@gnome.org>
    
        Apply
        http://bugzilla.gnome.org/show_bug.cgi?id=101752
    
        * gnome-theme-details.c : Merge in Frederic's patch.
        * gnome-theme-details.c : ditto.

 ChangeLog                                     |  4 ++
 capplets/theme-switcher/ChangeLog             |  8 ++++
 capplets/theme-switcher/gnome-theme-details.c |  5 ++-
 capplets/theme-switcher/gnome-theme-manager.c | 58 +++++++++++++++++----------
 capplets/theme-switcher/gnome-theme-manager.h |  2 +
 5 files changed, 54 insertions(+), 23 deletions(-)

commit fed2321c9a4ce5c41220b99c56c16f6cd4d66037
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Dec 30 18:25:17 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=101128 apply patch from padraig.
    
    
    2002-12-30  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=101128
        * mime-types-model.c (mime_types_model_iter_children) : apply patch
          from padraig.

 capplets/file-types/ChangeLog          | 6 ++++++
 capplets/file-types/mime-types-model.c | 7 ++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 7ab04a374de6e8aa41512188b5daaacb184fb5c5
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Mon Dec 30 17:49:43 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=100916

 README | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 78 insertions(+), 7 deletions(-)

commit 76b43e9a2fb65ab196bbe667b7acb871487544c7
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Dec 30 10:15:44 2002 +0000

    *** empty log message ***

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cbcb9d9a20884858e315b7ea3447342632e02bc7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Dec 30 00:48:05 2002 +0000

    Updated Norwegian translation.
    
    2002-12-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 35 ++++++++++++++++++++---------------
 2 files changed, 24 insertions(+), 15 deletions(-)

commit 606b9936bec8fabb12132ace1a4bac2b530cbeaa
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sun Dec 29 02:24:34 2002 +0000

    Use the theme directory name rather than the "printable" name for icon
    
    2002-12-28  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-theme-details.c: (path_to_theme_id), (load_theme_names),
        (gnome_theme_details_reread_themes_from_disk):
    
        Use the theme directory name rather than the "printable" name
        for icon themes. Does this need to be done for WM themes and
        GTK themes as well?

 capplets/theme-switcher/ChangeLog             |  9 +++++++++
 capplets/theme-switcher/gnome-theme-details.c | 29 ++++++++++++++++++++++++---
 2 files changed, 35 insertions(+), 3 deletions(-)

commit 4f04912bb6013e56d96b6940f5fc5809c958d6cd
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Dec 28 23:54:37 2002 +0000

    Update icon theme directory code so it looks in PREFIX/share/icons rather
    
    2002-12-28  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * gnome-theme-info.c: (gnome_theme_info_init):
    
        Update icon theme directory code so it looks in
        PREFIX/share/icons rather than PREFIX/share/theme,
        as per freedesktop icon spec.

 capplets/common/ChangeLog          | 9 +++++++++
 capplets/common/Makefile.am        | 1 +
 capplets/common/gnome-theme-info.c | 9 ++++++++-
 3 files changed, 18 insertions(+), 1 deletion(-)

commit 87bd7acd10cd7e5e3c689d3269f519e8bcb8355c
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Dec 28 21:46:45 2002 +0000

    Fix crash when current WM isn't detected.
    
    2002-12-28  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-theme-manager.c: (update_themes_from_disk):
    
        Fix crash when current WM isn't detected.

 capplets/theme-switcher/ChangeLog             | 6 ++++++
 capplets/theme-switcher/gnome-theme-manager.c | 9 +++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

commit 1634f6307bcffcb43a9f7647833c92b6da958f6a
Author: James Henstridge <james@daa.com.au>
Date:   Sat Dec 28 01:27:42 2002 +0000

    actually turn on internationalisation.
    
    2002-12-28  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (main): actually turn on internationalisation.

 vfs-methods/fontilus/ChangeLog   |  4 ++++
 vfs-methods/fontilus/font-view.c | 20 ++++++++++++++++----
 2 files changed, 20 insertions(+), 4 deletions(-)

commit f79d9ef22074bfe72172d15b8de2128a77f32b7e
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Fri Dec 27 17:20:10 2002 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 41 ++++++++++++++++++++---------------------
 2 files changed, 24 insertions(+), 21 deletions(-)

commit 8e7d1c4e4fe02d8912f36bf0e74f3cca84f117c3
Author: Pablo Gonzalo del Campo <pablodc@bigfoot.com>
Date:   Fri Dec 27 15:50:24 2002 +0000

    Updated Spanish translation.
    
    2002-12-27  Pablo Gonzalo del Campo <pablodc@bigfoot.com>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog | 124 ++++-----
 po/es.po     | 850 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 481 insertions(+), 493 deletions(-)

commit 8d2b1b36594160870c857491d8432d29c9c38beb
Author: Ole Laursen <olau@hardworking.dk>
Date:   Fri Dec 27 15:37:10 2002 +0000

    Updated Danish translation.
    
    2002-12-27  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 17 ++++++++---------
 2 files changed, 12 insertions(+), 9 deletions(-)

commit 791e93fa5955c6bb1625bf8dffa7708197b5a298
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Thu Dec 26 21:30:18 2002 +0000

    Artis Trops  <hornet@navigator.lv> * lv.po: Updated Latvian translation.

 po/ChangeLog |   4 ++
 po/lv.po     | 183 ++++++++++++++++++-----------------------------------------
 2 files changed, 60 insertions(+), 127 deletions(-)

commit 89bf76bf411302c7f21b5dcc1dbdd65b248293b0
Author: Ivan Stojmirov <stojmir@src.gnome.org>
Date:   Wed Dec 25 11:32:55 2002 +0000

    Added Macedonian translation

 po/mk.po | 2351 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 2351 insertions(+)

commit b04d5bb1d9882cc8edd686969f7c545954eb82ac
Author: James Henstridge <james@daa.com.au>
Date:   Tue Dec 24 07:32:17 2002 +0000

    get rid of unused variable.
    
    2002-12-23  James Henstridge  <james@daa.com.au>
    
        * src/thumbnailer.c (main): get rid of unused variable.
    
        * configure.in (GETTEXT_PACKAGE): turn on i18n stuff.
        (CFLAGS): add -Wall to compile flags.
        (*_LIBS): remove -export-dynamic from libs.

 vfs-methods/fontilus/.cvsignore               | 5 ++++-
 vfs-methods/fontilus/ChangeLog                | 8 ++++++++
 vfs-methods/fontilus/Makefile.am              | 7 +++++--
 vfs-methods/fontilus/font-method.directory    | 5 -----
 vfs-methods/fontilus/font-method.directory.in | 5 +++++
 vfs-methods/fontilus/thumbnailer.c            | 2 +-
 6 files changed, 23 insertions(+), 9 deletions(-)

commit d85f9d5fab4198a39d784f26fd851501784eafcd
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Sun Dec 22 17:57:27 2002 +0000

    2002-12-22  Artis Trops <hornet@navigator.lv> * lv.po: Updated Latvian translation.

 po/ChangeLog |    4 +
 po/lv.po     | 1058 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 664 insertions(+), 398 deletions(-)

commit 4699061f98d97d555737885af1169d7161bec4fe
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Dec 21 11:40:28 2002 +0000

    *** empty log message ***

 po/he.po | 4189 +++++++++++++++++++++++++++++---------------------------------
 1 file changed, 1987 insertions(+), 2202 deletions(-)

commit 86a6e4791a950cc65c1d260b63398199c668114d
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Fri Dec 20 14:09:26 2002 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 124 ++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 64 insertions(+), 60 deletions(-)

commit 2abeac7029a61f84ce0212e2f7014bb186506128
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Fri Dec 20 14:07:33 2002 +0000

    *** empty log message ***

 po/he.po | 4177 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 2194 insertions(+), 1983 deletions(-)

commit 55c74a02eba64c838a3a87a5dc2264157c92cbca
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Fri Dec 20 12:08:01 2002 +0000

    Update Czech translation

 po/cs.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 116a39a4009a289fd85a87426d847799b1746328
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Fri Dec 20 11:04:05 2002 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 38 +++++++++++++++++++-------------------
 2 files changed, 23 insertions(+), 19 deletions(-)

commit 38d97c3770d0a0c8b48430ffa13190da1c5b3da7
Author: Andras Timar <timar@gnome.hu>
Date:   Thu Dec 19 10:40:57 2002 +0000

    Updated Hungarian translation.
    
    2002-12-19  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |  4 ++++
 po/hu.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit d1ac5ffc980bac1fb77f9b2c91dc17d50505d833
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Dec 18 21:55:39 2002 +0000

    post release version bump
    
    
    2002-12-18  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0c0c49f22cf5ed4e1c8645eab8af0651d82455bd
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Dec 18 21:43:55 2002 +0000

    Release 2.1.5
    
    
    2002-12-18  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.5

 ChangeLog                                 | 4 ++++
 archiver/ChangeLog                        | 4 ++++
 archiver/tests/ChangeLog                  | 4 ++++
 capplets/accessibility/keyboard/ChangeLog | 4 ++++
 capplets/background/ChangeLog             | 4 ++++
 capplets/common/ChangeLog                 | 4 ++++
 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/desktop-links/ChangeLog          | 4 ++++
 capplets/file-types/ChangeLog             | 4 ++++
 capplets/font/ChangeLog                   | 4 ++++
 capplets/keybindings/ChangeLog            | 4 ++++
 capplets/keyboard/ChangeLog               | 4 ++++
 capplets/mime-type/ChangeLog              | 4 ++++
 capplets/mouse/ChangeLog                  | 4 ++++
 capplets/network/ChangeLog                | 4 ++++
 capplets/rollback/ChangeLog               | 4 ++++
 capplets/sound/ChangeLog                  | 4 ++++
 capplets/theme-switcher/ChangeLog         | 4 ++++
 capplets/theme-switcher/Makefile.am       | 2 +-
 capplets/ui-properties/ChangeLog          | 4 ++++
 capplets/url-properties/ChangeLog         | 4 ++++
 capplets/windows/ChangeLog                | 4 ++++
 capplets/wm-properties/ChangeLog          | 4 ++++
 configure.in                              | 2 +-
 control-center/ChangeLog                  | 4 ++++
 gnome-settings-daemon/ChangeLog           | 4 ++++
 help/ChangeLog                            | 4 ++++
 libbackground/ChangeLog                   | 4 ++++
 libwindow-settings/ChangeLog              | 4 ++++
 po/ChangeLog                              | 4 ++++
 30 files changed, 114 insertions(+), 2 deletions(-)

commit 52954d4f7e1e2db72ec7a3efca4efe383a044bea
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Dec 17 19:01:38 2002 +0000

    Terminology fix.
    
    2002-12-17  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Terminology fix.

 po/ChangeLog |  4 ++++
 po/sv.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 2a9fbe2c0bfa5ea4cafc8a3e08409714bf5026c3
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Dec 17 16:45:33 2002 +0000

    Updated Swedish translation.
    
    2002-12-17  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 364deed1f754787ba03b9d3b33e970f55e0400e1
Author: Alex Duggan <aldug@gnome.org>
Date:   Tue Dec 17 16:24:56 2002 +0000

    fixed more typos
    
    2002-12-17  Alex Duggan  <aldug@gnome.org>
    
        * schemas/desktop_gnome_font_rendering.schemas.in: fixed more typos

 ChangeLog                                       | 4 ++++
 schemas/desktop_gnome_font_rendering.schemas.in | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit b927a25005ac19fb98eba2f3d1c18804b89c4acc
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Tue Dec 17 13:58:40 2002 +0000

    Updated Czech translation

 po/ChangeLog |  4 ++++
 po/cs.po     | 20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit fe03949c6fb8c5f16802571c0dad4b84850c0715
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Dec 17 09:57:19 2002 +0000

    Updated Swedish translation.
    
    2002-12-17  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 71 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 46 insertions(+), 29 deletions(-)

commit 00e503de05ecd919331ce6fc54966c375fed47e7
Author: Benjamin Greiner <bgreiner@src.gnome.org>
Date:   Mon Dec 16 20:36:05 2002 +0000

    *** empty log message ***

 po/de.po | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit 396dee685db9c6504f1e80bc1cb9467b02ddc7dd
Author: Andrew Sobala <andrew@sobala.net>
Date:   Sun Dec 15 19:34:27 2002 +0000

    fixed typos
    
    2002-12-15  Andrew Sobala  <andrew@sobala.net>
    
        * schemas/desktop_gnome_font_rendering.schemas.in: fixed typos

 ChangeLog                                       | 4 ++++
 schemas/desktop_gnome_font_rendering.schemas.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 32b1506e86c2a908d3f165ccc554db212e5d3b8d
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sun Dec 15 17:08:43 2002 +0000

    Updated Malay Translation.
    
    2002-12-15  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 337 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 174 insertions(+), 167 deletions(-)

commit a028f0c8d257a0f87d51ee973aedafff7322b473
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sun Dec 15 15:35:02 2002 +0000

    Updated Danish translation.
    
    2002-12-15  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 21 +++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit 3bc52b1a16f0a4e0cf408b64219cdc05d07b101a
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Sat Dec 14 08:14:29 2002 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2002-12-14  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |    4 +
 po/nl.po     | 1047 +++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 750 insertions(+), 301 deletions(-)

commit 04214dcfc238397ba3ea2caa7778c5e79c8add81
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Fri Dec 13 14:14:33 2002 +0000

    hide generated files add missing file
    
    * .cvsignore: hide generated files
    * src/fontilus.mime: add missing file

 vfs-methods/fontilus/ChangeLog     | 5 +++++
 vfs-methods/fontilus/fontilus.mime | 2 ++
 2 files changed, 7 insertions(+)

commit 429c9b4b57ce60513085cc89a8927eda0fc83af0
Author: Frédéric Crozat <fcrozat@src.gnome.org>
Date:   Fri Dec 13 13:19:46 2002 +0000

    add support for OpenType fonts, fix pcf.gz detection
    
    * README:
    * src/Makefile.am:
    * src/fontilus.keys:
    add support for OpenType fonts, fix pcf.gz detection

 vfs-methods/fontilus/ChangeLog     | 7 +++++++
 vfs-methods/fontilus/Makefile.am   | 3 ++-
 vfs-methods/fontilus/fontilus.keys | 6 ++++++
 3 files changed, 15 insertions(+), 1 deletion(-)

commit bd49cf3a0f5ce387037925996fde8f3e67d46b15
Author: Rajkumar Sivasamy <rajkumar.siva@wipro.com>
Date:   Fri Dec 13 05:06:34 2002 +0000

    Set the visibility and focus of Custom radio button in Sound note book
    
    2002-12-10  Rajkumar Sivasamy <rajkumar.siva@wipro.com>
    
            * gnome-keyboard-properties.glade: Set the visibility and focus
              of Custom radio button in Sound note book page to false.
              Fixes bug 99793

 capplets/keyboard/ChangeLog                       | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit a9a5600915b90a9d5c9c9405f378713fe628a6f9
Author: James Henstridge <james@daa.com.au>
Date:   Thu Dec 12 16:16:09 2002 +0000

    add news items.
    
    2002-12-12  James Henstridge  <james@daa.com.au>
    
        * NEWS: add news items.
    
        * configure.in: update version number.

 vfs-methods/fontilus/ChangeLog      |  6 ++++++
 vfs-methods/fontilus/font-method.c  | 20 +++++++++++++++++++-
 vfs-methods/fontilus/font-view.c    | 24 +++++++++++++++++++++++-
 vfs-methods/fontilus/ftstream-vfs.c | 24 +++++++++++++++++++++++-
 vfs-methods/fontilus/thumbnailer.c  | 23 ++++++++++++++++++++++-
 5 files changed, 93 insertions(+), 4 deletions(-)

commit 456ae0d9c50983605aaafaba4cd99526d5035068
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Wed Dec 11 21:40:35 2002 +0000

    Updated Finnish translation.
    
    2002-12-11  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 259 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 200 insertions(+), 63 deletions(-)

commit c31e2ed8d12563a1cf56bb912853f472617dc531
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Dec 11 05:56:42 2002 +0000

    take the blame

 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3da09040da390a2c6974ed3d98d83118e39e8053
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Dec 11 02:12:14 2002 +0000

    remove autoheader warnings, remove acconfig.h
    
     * configure.in: remove autoheader warnings, remove acconfig.h

 ChangeLog    |  4 ++++
 acconfig.h   | 31 -------------------------------
 configure.in | 10 +++++-----
 3 files changed, 9 insertions(+), 36 deletions(-)

commit d91d3e71de473e84e790174f0f7cb2d60e517d9f
Author: Dennis Cranston <dcransto@src.gnome.org>
Date:   Wed Dec 11 00:32:13 2002 +0000

    Hopefully, the rest of my previous commit.  (Last commit suffered from
    a broken pipe error.)

 capplets/keyboard/keyboard.desktop.in                 | 1 +
 capplets/mouse/mouse.desktop.in                       | 1 +
 capplets/network/gnome-network-preferences.desktop.in | 1 +
 capplets/sound/sound.desktop.in                       | 1 +
 capplets/theme-switcher/gtk-theme-selector.desktop.in | 1 +
 capplets/ui-properties/behavior.desktop.in            | 1 +
 capplets/url-properties/url-properties.desktop.in     | 1 +
 capplets/windows/window-properties.desktop.in         | 1 +
 control-center/gnomecc.desktop.in                     | 1 +
 9 files changed, 9 insertions(+)

commit 68c895ab8242fde720e9262196820ed3acf2a87b
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Wed Dec 11 00:21:41 2002 +0000

    Add StartupNotify support to the .desktop files.
    
    2002-12-10  Dennis Cranston  <dennis_cranston@yahoo.com>
    
        * capplets/accessibility/keyboard/*.desktop.in:
        * capplets/background/*.desktop.in:
        * capplets/default-applications/*.desktop.in:
        * capplets/desktop-links/*.desktop.in:
        * capplets/file-types/*.desktop.in:
        * capplets/font/*.desktop.in:
        * capplets/keybindings/*.desktop.in:
        * capplets/keyboard/*.desktop.in:
        * capplets/mouse/*.desktop.in:
        * capplets/network/*.desktop.in:
        * capplets/sound/*.desktop.in:
        * capplets/theme-switcher/*.desktop.in:
        * capplets/ui-properties/*.desktop.in:
        * capplets/url-properties/*.desktop.in:
        * capplets/windows/*.desktop.in:
        * control-center/*.desktop.in: Add StartupNotify support to
        the .desktop files.

 ChangeLog                                            | 20 ++++++++++++++++++++
 .../keyboard/accessibility-keyboard.desktop.in       |  1 +
 capplets/background/background.desktop.in            |  1 +
 .../default-applications.desktop.in                  |  1 +
 .../Sawfish/appearance-properties.desktop.in         |  1 +
 .../Sawfish/bindings-properties.desktop.in           |  1 +
 .../Sawfish/focus-properties.desktop.in              |  1 +
 .../Sawfish/match-properties.desktop.in              |  1 +
 .../Sawfish/maximize-properties.desktop.in           |  1 +
 .../desktop-links/Sawfish/meta-properties.desktop.in |  1 +
 .../desktop-links/Sawfish/misc-properties.desktop.in |  1 +
 .../desktop-links/Sawfish/move-properties.desktop.in |  1 +
 .../Sawfish/placement-properties.desktop.in          |  1 +
 .../Sawfish/sound-properties.desktop.in              |  1 +
 .../Sawfish/workspace-properties.desktop.in          |  1 +
 capplets/file-types/file-types.desktop.in            |  1 +
 capplets/font/font-properties.desktop.in             |  1 +
 capplets/keybindings/keybinding.desktop.in           |  1 +
 18 files changed, 37 insertions(+)

commit 7dd3fb748be98b25f91b4be3ab4abc28db1cd273
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   Tue Dec 10 10:10:48 2002 +0000

    Updated the Greek translation

 po/ChangeLog |  124 +++----
 po/el.po     | 1082 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 597 insertions(+), 609 deletions(-)

commit a2e58796d827c37a93ae9dd8380cf67951047fa1
Author: James Henstridge <james@daa.com.au>
Date:   Tue Dec 10 02:35:24 2002 +0000

    only display Type1 font information if it is valid UTF-8.
    
    2002-12-10  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (add_face_info): only display Type1 font
        information if it is valid UTF-8.

 vfs-methods/fontilus/ChangeLog   | 3 +++
 vfs-methods/fontilus/font-view.c | 5 ++---
 2 files changed, 5 insertions(+), 3 deletions(-)

commit d807c7541f2e72dd94c5bd314c1bf9891c289ca6
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Dec 9 21:28:13 2002 +0000

    *** empty log message ***

 po/he.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d3f6d9fce4406a348e2497414b60d11d4d795841
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Dec 9 21:21:54 2002 +0000

    Updated Hebrew translation.
    
    
    * he.po: Updated Hebrew translation.

 po/ChangeLog | 125 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 65 insertions(+), 60 deletions(-)

commit e9b6f477b9d13978ba198dfb8a8676beb3ac76f5
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Mon Dec 9 21:20:45 2002 +0000

    *** empty log message ***

 po/he.po | 1028 ++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 726 insertions(+), 302 deletions(-)

commit 49c584f30ecef53daf67fc59bcabd16a088e36e0
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Mon Dec 9 18:50:40 2002 +0000

    2002-12-09  Artis Trops  <hornet@navigator.lv> * lv.po: sync with gnome-2-0 branch

 po/ChangeLog |    4 +
 po/lv.po     | 3582 ++++++++++++----------------------------------------------
 2 files changed, 701 insertions(+), 2885 deletions(-)

commit ad9bdd3abfe2918fe1afd8f6108028de05437635
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Dec 9 17:04:59 2002 +0000

    bump the gtk req t ohandle havoc's metacity changes.
    
    
    2002-12-09  Jody Goldberg <jody@gnome.org>
    
        * configure.in (dnl) : bump the gtk req t ohandle havoc's metacity
          changes.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit c2897e26537ab9cd876b9f7ecbf3e264bc4ccc49
Author: James Henstridge <james@daa.com.au>
Date:   Mon Dec 9 16:30:07 2002 +0000

    get rid of the local file optimisation. It didn't make a noticable
    
    2002-12-10  James Henstridge  <james@daa.com.au>
    
        * src/ftstream-vfs.c (FT_New_Face_From_URI): get rid of the local
        file optimisation.  It didn't make a noticable difference for the
        large Asian fonts.
    
        * src/thumbnailer.c (main): set the charmap for the font before
        rendering the glyphs.  This fixes rendering of some fonts jdub
        sent me.

 vfs-methods/fontilus/ChangeLog      | 10 +++++++
 vfs-methods/fontilus/ftstream-vfs.c |  9 ------
 vfs-methods/fontilus/thumbnailer.c  | 55 ++++++++++++++++++++++++++++++++-----
 3 files changed, 58 insertions(+), 16 deletions(-)

commit a9a963aec76a60d056806b3549425ee5a038e7d9
Author: James Henstridge <james@daa.com.au>
Date:   Mon Dec 9 14:30:07 2002 +0000

    handle multiline text. (add_face_info): add some extra information found
    
    2002-12-09  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (add_row): handle multiline text.
        (add_face_info): add some extra information found in SFNT or Type1
        fonts.
        (create_text_pixmap): change the font output.
    
    2002-12-06  James Henstridge  <james@daa.com.au>
    
        * src/ftstream-vfs.c (FT_New_Face_From_URI): if the URI looks
        local, bypass gnome-vfs to open the face (small optimisation).
    
        * src/font-view.c (create_text_pixmap): only display the font at
        its fixed sizes if it is not scalable.  Before we were ignoring
        the outlines on fonts such as Lucida Console, which includes both
        outlines and bitmaps for small sizes.

 vfs-methods/fontilus/ChangeLog      |  10 +++
 vfs-methods/fontilus/font-view.c    | 144 ++++++++++++++++++++++++++++++------
 vfs-methods/fontilus/ftstream-vfs.c |   8 ++
 3 files changed, 141 insertions(+), 21 deletions(-)

commit 99c6596712042a58a04f767580145d142ff60aab
Author: Rajkumar Sivasamy <rajkumar.siva@wipro.com>
Date:   Mon Dec 9 09:18:53 2002 +0000

    Display the list of applications installed in the system for a mime type
    
    2002-12-09  Rajkumar Sivasamy <rajkumar.siva@wipro.com>
    
            * mime-edit-dialog.c: Display the list of applications installed
              in the system for a mime type rather than displaying all the
              applications associated to that mime type.
              Fixes bug 94757

 capplets/file-types/ChangeLog          | 7 +++++++
 capplets/file-types/mime-edit-dialog.c | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 576a4037368e4fb286e94161e67f591205f1c57c
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Sun Dec 8 12:54:04 2002 +0000

    Updated German translation and POTFILES.in.

 po/ChangeLog   |   5 ++
 po/POTFILES.in |   1 +
 po/de.po       | 279 ++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 164 insertions(+), 121 deletions(-)

commit 4eff7806e3678cbb90d1487dc37079f777999e9e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Dec 7 20:06:38 2002 +0000

    Updated Norwegian translation.
    
    2002-12-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 124 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 82 insertions(+), 46 deletions(-)

commit 3355b068c130f216bcd622f28c09f94b7af2218c
Author: Andras Timar <timar@gnome.hu>
Date:   Sat Dec 7 12:35:24 2002 +0000

    Updated Hungarian translation.
    
    2002-12-07  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |  4 ++++
 po/hu.po     | 48 ++++++++++++++++++++++++++++++++++++------------
 2 files changed, 40 insertions(+), 12 deletions(-)

commit 16db5587534a0f1d7a47d1bbc50cebad11426c9a
Author: He Qiangqiang <carton@linux.net.cn>
Date:   Sat Dec 7 07:30:03 2002 +0000

    sync with gnome-2-0 branch.
    
    2002-12-07  He Qiangqiang  <carton@linux.net.cn>
    
        * zh_CN.po: sync with gnome-2-0 branch.

 po/ChangeLog |    4 +
 po/zh_CN.po  | 1992 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1059 insertions(+), 937 deletions(-)

commit 628bc1ce2c86ad59bb8c2cad5a54f4c093013a50
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Dec 6 21:56:37 2002 +0000

    New file. Really saves now. Doesn't notice when a new metatheme is added,
    
    Fri Dec  6 16:54:14 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-save-data.c: New file.  Really saves now.  Doesn't
        notice when a new metatheme is added, though.
    
    Fri Dec  6 16:13:54 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-info.c (top_theme_dir_changed_callback): I know C.
        Really, I do.

 capplets/common/ChangeLog                       |   5 ++
 capplets/common/gnome-theme-info.c              |  19 ++++-
 capplets/theme-switcher/ChangeLog               |   5 ++
 capplets/theme-switcher/gnome-theme-details.c   |   2 +-
 capplets/theme-switcher/gnome-theme-manager.c   |   5 +-
 capplets/theme-switcher/gnome-theme-save-data.c |   9 +++
 capplets/theme-switcher/gnome-theme-save.c      | 101 ++++++++++++++++++++++--
 capplets/theme-switcher/theme-properties.glade  |   9 ---
 8 files changed, 133 insertions(+), 22 deletions(-)

commit 0be934661db828f33e32bf11d171007b737b6700
Author: Andras Timar <timar@gnome.hu>
Date:   Fri Dec 6 14:09:02 2002 +0000

    Updated Hungarian translation.
    
    2002-12-06  Andras Timar  <timar@gnome.hu>
    
        * hu.po: Updated Hungarian translation.

 po/ChangeLog |    4 +
 po/hu.po     | 1928 ++++++----------------------------------------------------
 2 files changed, 201 insertions(+), 1731 deletions(-)

commit a75c12f7929dc5ffcf29b1a9d7edfb4339a62721
Author: Glynn Foster <glynn.foster@sun.com>
Date:   Fri Dec 6 10:53:21 2002 +0000

    Remove icon. Transferred to gnome-desktop.
    
    2002-12-06  Glynn Foster  <glynn.foster@sun.com>
    
        * Makefile.am: Remove icon.
        * advanced-directory.png: Transferred to gnome-desktop.

 capplets/desktop-links/ChangeLog              |   5 +++++
 capplets/desktop-links/Makefile.am            |   2 +-
 capplets/desktop-links/advanced-directory.png | Bin 2171 -> 0 bytes
 3 files changed, 6 insertions(+), 1 deletion(-)

commit 76b15956a587aafba42c143860f6e886f1701c1e
Author: James Henstridge <james@daa.com.au>
Date:   Fri Dec 6 08:59:05 2002 +0000

    only display the font at its fixed sizes if it is not scalable. Before we
    
    2002-12-06  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (create_text_pixmap): only display the font at
        its fixed sizes if it is not scalable.  Before we were ignoring
        the outlines on fonts such as Lucida Console, which includes both
        outlines and bitmaps for small sizes.

 vfs-methods/fontilus/ChangeLog   | 7 +++++++
 vfs-methods/fontilus/font-view.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 162c00c9d4f43439685b08d6a077560033da6be3
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Fri Dec 6 08:36:18 2002 +0000

    First stab at a spec file.
    
    2002-12-06  Yanko Kaneti  <yaneti@declera.com>
    
        * Makefile.am (EXTRA_DIST):
        * configure.in (AC_OUTPUT):
        * fontilus.spec.in (added): First stab at a spec file.

 vfs-methods/fontilus/ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 46125081376c7bad03b57c25c8f9e2202ef4bdf6
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   Thu Dec 5 19:47:52 2002 +0000

    Update Czech translation

 po/ChangeLog |   4 +
 po/cs.po     | 242 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 181 insertions(+), 65 deletions(-)

commit 1174a5b0a920033b55a1b51a89f206ac99d31a2a
Author: James Henstridge <james@daa.com.au>
Date:   Thu Dec 5 15:47:45 2002 +0000

    set gnome-font-viewer as default app for type1, ttf and pcf fonts.
    
    2002-12-05  James Henstridge  <james@daa.com.au>
    
        * src/fontilus.keys: set gnome-font-viewer as default app for
        type1, ttf and pcf fonts.
    
        * src/fontilus.applications: add application registry file for
        gnome-font-viewer.  Set it to accept URIs in file:/// and
        fonts:///.  It supports others though ...
    
        * src/Makefile.am: change executable names, and install them.
    
        * src/font-view.c (main): add an "in" shadow round the rendered text.

 vfs-methods/fontilus/ChangeLog             | 10 ++++++++++
 vfs-methods/fontilus/Makefile.am           | 20 ++++++++++++++------
 vfs-methods/fontilus/font-view.c           | 21 +++++++++++++++------
 vfs-methods/fontilus/fontilus.applications |  8 ++++++++
 vfs-methods/fontilus/fontilus.keys         | 20 ++++++++++++++++++++
 5 files changed, 67 insertions(+), 12 deletions(-)

commit 88128b9d38694e2cb6315f7cfe9ed3a24a9f01ad
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Thu Dec 5 15:40:18 2002 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 994 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 527 insertions(+), 471 deletions(-)

commit d46f05cc6c475c9f631989e29870eb0ede6d8bcc
Author: James Henstridge <james@daa.com.au>
Date:   Thu Dec 5 12:51:45 2002 +0000

    move text drawing into separate function. (create_text_pixmap): handle
    
    2002-12-05  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (draw_text): move text drawing into separate
        function.
        (create_text_pixmap): handle bitmap fonts by drawing the test
        string at the correct size(s).
        (add_face_info): display some information about the font.

 vfs-methods/fontilus/ChangeLog   |   6 ++
 vfs-methods/fontilus/font-view.c | 138 ++++++++++++++++++++++++++++++++-------
 2 files changed, 120 insertions(+), 24 deletions(-)

commit fad0b076227eda19a179357e33d2a368b7f39847
Author: James Henstridge <james@daa.com.au>
Date:   Thu Dec 5 02:12:12 2002 +0000

    change so that it renders the text at a number of different sizes, like
    
    2002-12-05  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (main): change so that it renders the text at a
        number of different sizes, like fontcarton did.  Need to show some
        info about the font too ...

 vfs-methods/fontilus/ChangeLog   |   6 +++
 vfs-methods/fontilus/font-view.c | 108 +++++++++++++++++++++++++++------------
 2 files changed, 81 insertions(+), 33 deletions(-)

commit ee4c39379f27dff0ef0c9cb72e1ea22f76a0bb54
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Dec 4 21:30:24 2002 +0000

    Updated Danish translation.
    
    2002-12-04  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 721 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 361 insertions(+), 364 deletions(-)

commit f2d9e3b135ba74d7b8a6752c6d286d35a32b8913
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Dec 4 19:35:02 2002 +0000

    Patch from Fernando Herrera <fherrera@onirica.com> to add X-GNOME-BUGZILLA
    
    Wed Dec  4 14:34:27 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/accessibility/keyboard/*.desktop.in:
        * capplets/background/*.desktop.in:
        * capplets/default-applications/*.desktop.in:
        * capplets/desktop-links/*.desktop.in:
        * capplets/file-types/*.desktop.in:
        * capplets/font/*.desktop.in:
        * capplets/keybindings/*.desktop.in:
        * capplets/keyboard/*.desktop.in:
        * capplets/mouse/*.desktop.in:
        * capplets/network/*.desktop.in:
        * capplets/sound/*.desktop.in:
        * capplets/theme-switcher/*.desktop.in:
        * capplets/ui-properties/*.desktop.in:
        * capplets/url-properties/*.desktop.in:
        * capplets/windows/*.desktop.in:
        * control-center/*.desktop.in: Patch from Fernando Herrera
        <fherrera@onirica.com> to add X-GNOME-BUGZILLA stuff to all the
        .desktop files.

 ChangeLog                                           | 21 +++++++++++++++++++++
 .../keyboard/accessibility-keyboard.desktop.in      |  3 +++
 capplets/background/background.desktop.in           |  3 +++
 .../default-applications.desktop.in                 |  3 +++
 .../Sawfish/appearance-properties.desktop.in        |  3 +++
 .../Sawfish/bindings-properties.desktop.in          |  3 +++
 .../Sawfish/focus-properties.desktop.in             |  3 +++
 .../Sawfish/match-properties.desktop.in             |  3 +++
 .../Sawfish/maximize-properties.desktop.in          |  3 +++
 .../Sawfish/meta-properties.desktop.in              |  3 +++
 .../Sawfish/misc-properties.desktop.in              |  3 +++
 .../Sawfish/move-properties.desktop.in              |  3 +++
 .../Sawfish/placement-properties.desktop.in         |  3 +++
 .../Sawfish/sound-properties.desktop.in             |  3 +++
 .../Sawfish/workspace-properties.desktop.in         |  3 +++
 capplets/file-types/file-types-capplet.desktop.in   |  3 +++
 capplets/file-types/file-types.desktop.in           |  3 +++
 capplets/font/font-properties.desktop.in            |  3 +++
 capplets/keybindings/keybinding.desktop.in          |  3 +++
 capplets/keyboard/keyboard.desktop.in               |  3 +++
 capplets/mouse/mouse.desktop.in                     |  3 +++
 .../network/gnome-network-preferences.desktop.in    |  3 +++
 capplets/sound/sound.desktop.in                     |  3 +++
 .../theme-switcher/gtk-theme-selector.desktop.in    |  3 +++
 capplets/ui-properties/behavior.desktop.in          |  3 +++
 capplets/url-properties/url-properties.desktop.in   |  3 +++
 capplets/windows/window-properties.desktop.in       |  3 +++
 control-center/gnomecc.desktop.in                   |  3 +++
 28 files changed, 102 insertions(+)

commit 6791b7e480dbfcbe365fe01d82ac3aefccbdcf14
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Dec 4 16:01:50 2002 +0000

    Updated Swedish translation.
    
    2002-12-04  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 +++
 po/sv.po     | 85 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 58 insertions(+), 31 deletions(-)

commit d7588388ecf29dcd5027ae51303134ed46a6401f
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Wed Dec 4 15:42:51 2002 +0000

        (main): don't use Xft's FT_Library handle, since it is underscore
        prefixed.  The real problem is that XftInitFtLibrary() wasn't
        getting called.

 vfs-methods/fontilus/ChangeLog   | 3 +++
 vfs-methods/fontilus/font-view.c | 8 +++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 9f2d67d4d024b951e5c83bcf06d1424b4d21f679
Author: James Henstridge <james@daa.com.au>
Date:   Wed Dec 4 15:29:28 2002 +0000

    get font to render correctly. Things work fine now that I am using the
    
    2002-12-04  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (main): get font to render correctly.  Things
        work fine now that I am using the same FT_Library handle as Xft
        was ...

 vfs-methods/fontilus/ChangeLog      |  4 ++++
 vfs-methods/fontilus/font-view.c    | 12 ++++--------
 vfs-methods/fontilus/ftstream-vfs.c |  1 +
 3 files changed, 9 insertions(+), 8 deletions(-)

commit f7d99a305801ce5e118e08f519b774c55e2e04f9
Author: Havoc Pennington <hp@pobox.com>
Date:   Wed Dec 4 06:41:33 2002 +0000

    set all the spacings to 12 as per HIG
    
    2002-12-04  Havoc Pennington  <hp@pobox.com>
    
        * gnome-keybinding-properties.glade: set all the spacings to 12 as
        per HIG

 capplets/keybindings/ChangeLog                         |  5 +++++
 capplets/keybindings/gnome-keybinding-properties.glade | 12 +++++-------
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 0f80aaece9c045c6d45a191c3bf139e53e1f3416
Author: Havoc Pennington <hp@pobox.com>
Date:   Wed Dec 4 06:14:02 2002 +0000

    create a sort model for the treeview.
    
    2002-12-04  Havoc Pennington  <hp@pobox.com>
    
        * gnome-keybinding-properties.c (clear_old_model): create a sort
        model for the treeview.
    
    2002-12-03  Havoc Pennington  <hp@pobox.com>
    
        * gnome-keybinding-properties.c (append_keys_to_tree): store
        description in the KeyEntry
        (cb_check_for_uniqueness): don't complain if a key is a duplicate
        of itself.
        (accel_edited_callback): use human-readable key name in the error
        message, not the gconf key. Reword error message to say "shortcut"
        like the other text in the dialog. Allow duplicate disabled keys
        (keyval == 0)
        (accel_edited_callback): the passed-in mask is an
        EggVirtualModifierType.
        (struct KeyEntry): the mask is an EggVirtualModifierType
        (binding_name): use egg_virtual_accelerator_name() not
        gtk_accelerator_name().
        (binding_from_string): use egg_accelerator_parse_virtual

 capplets/keybindings/ChangeLog                     |  22 +++
 capplets/keybindings/gnome-keybinding-properties.c | 178 +++++++++++++++++----
 2 files changed, 166 insertions(+), 34 deletions(-)

commit 2f4b9395dcf1af51a251e0dbaa94a25a54575853
Author: James Henstridge <james@daa.com.au>
Date:   Wed Dec 4 05:40:24 2002 +0000

    start of simple font viewer program. Doesn't correctl display the text yet
    
    2002-12-04  James Henstridge  <james@daa.com.au>
    
        * src/font-view.c (main): start of simple font viewer program.
        Doesn't correctl display the text yet though :(
    
        * src/ftstream-vfs.c (FT_New_Face_From_URI): rename function to
        match naming scheme used elsewhere.

 vfs-methods/fontilus/ChangeLog      |   8 +++
 vfs-methods/fontilus/Makefile.am    |   9 ++-
 vfs-methods/fontilus/font-view.c    | 111 ++++++++++++++++++++++++++++++++++++
 vfs-methods/fontilus/ftstream-vfs.c |   8 +--
 vfs-methods/fontilus/thumbnailer.c  |  10 ++--
 5 files changed, 134 insertions(+), 12 deletions(-)

commit a5d6209b4fd86be0d9effed8bbc163ca2fa6e588
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Dec 4 01:42:45 2002 +0000

    Add saving support. Almost to a working point w/ this capplet...
    
    Tue Dec  3 20:45:17 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-save.c: Add saving support.  Almost to a working
        point w/ this capplet...

 capplets/theme-switcher/ChangeLog              |   5 +
 capplets/theme-switcher/Makefile.am            |   2 +
 capplets/theme-switcher/gnome-theme-details.c  |   2 -
 capplets/theme-switcher/gnome-theme-manager.c  |  30 ++-
 capplets/theme-switcher/gnome-theme-save.c     | 142 ++++++++++++++
 capplets/theme-switcher/gnome-theme-save.h     |  12 ++
 capplets/theme-switcher/theme-properties.glade | 255 ++++++++++++++++++++++++-
 7 files changed, 441 insertions(+), 7 deletions(-)

commit 1a90787eead16f38a5bd4a789a61fa1fc17e95fb
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Dec 3 19:23:47 2002 +0000

    Fix g_assert_not_reached() that can be reached.
    
    Tue Dec  3 14:26:05 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-theme-details.c (window_theme_selection_changed): Fix
        g_assert_not_reached() that can be reached.

 capplets/theme-switcher/ChangeLog             | 5 +++++
 capplets/theme-switcher/gnome-theme-details.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 0c9ca90dd392fa2a7dbc9c50f0c9a7c27d3dde98
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Dec 3 16:37:22 2002 +0000

    Updated Swedish translation.
    
    2002-12-03  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 71 +++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 57 insertions(+), 18 deletions(-)

commit e962ae036e1473cf299a2708761643e9a83ef1c1
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Dec 3 16:16:45 2002 +0000

    shut up, CVS
    
    Tue Dec  3 00:40:13 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * .cvsignore: shut up, CVS
    
        * Makefile.am: build new objects
    
        * gnome-theme-details.[ch]: New file to encapsulate the details
        dialog.
    
        * gnome-theme-manager.c: Restructure code.  Less love, more work.
        Prolly an improvement.

 capplets/theme-switcher/.cvsignore             |    2 +-
 capplets/theme-switcher/ChangeLog              |   12 +
 capplets/theme-switcher/Makefile.am            |    3 +
 capplets/theme-switcher/gnome-theme-details.c  |  509 ++++++++++
 capplets/theme-switcher/gnome-theme-details.h  |    9 +
 capplets/theme-switcher/gnome-theme-manager.c  | 1187 ++++++++++++------------
 capplets/theme-switcher/gnome-theme-manager.h  |   77 ++
 capplets/theme-switcher/theme-properties.glade |  895 +++++++++++-------
 capplets/theme-switcher/theme-thumbnail.c      |   53 +-
 capplets/theme-switcher/theme-thumbnail.h      |    2 +-
 10 files changed, 1768 insertions(+), 981 deletions(-)

commit 4c38b3d8f5e86f8895f55266d7f936cd9067e7f7
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Dec 3 01:38:20 2002 +0000

    Updated Swedish translation somewhat.
    
    2002-12-03  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation somewhat.

 po/ChangeLog |   4 ++
 po/sv.po     | 137 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 109 insertions(+), 32 deletions(-)

commit fbe65ad19a70136fefeab4dbb78dd526334a8c83
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Dec 2 22:02:52 2002 +0000

    Updated Norwegian translation.
    
    2002-12-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 124 ++++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 102 insertions(+), 26 deletions(-)

commit f8bcad2ccd430b4b2ad22cb16892d8f3f144296f
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Dec 2 21:25:07 2002 +0000

    Added schemas to POTFILES.in.

 po/ChangeLog   | 1 +
 po/POTFILES.in | 3 +++
 2 files changed, 4 insertions(+)

commit d747016f11a2519f963bcd0bae0a3c322dcfcf0a
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Dec 2 20:29:05 2002 +0000

    Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 193 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 140 insertions(+), 57 deletions(-)

commit a7fa657db4cc4a7db71d73eebe19428795b4a275
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Mon Dec 2 19:47:25 2002 +0000

    Fixed #89361.

 ChangeLog                                          |  6 ++
 schemas/Makefile.am                                | 21 ++++---
 ...ps_gnome_settings_daemon_default_editor.schemas | 15 -----
 ...gnome_settings_daemon_default_editor.schemas.in | 15 +++++
 .../apps_gnome_settings_daemon_screensaver.schemas | 27 ---------
 ...ps_gnome_settings_daemon_screensaver.schemas.in | 27 +++++++++
 schemas/desktop_gnome_font_rendering.schemas       | 69 ----------------------
 schemas/desktop_gnome_font_rendering.schemas.in    | 69 ++++++++++++++++++++++
 8 files changed, 131 insertions(+), 118 deletions(-)

commit 0e36c2dc9057b0218b235e3bd8a1b72820ab9a88
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Mon Dec 2 15:36:13 2002 +0000

        (draw_bitmap): handle monochrome bitmaps.
        (main): don't error out if we can't set pixel size.

 vfs-methods/fontilus/ChangeLog     |  2 ++
 vfs-methods/fontilus/thumbnailer.c | 15 ++++++++++++---
 2 files changed, 14 insertions(+), 3 deletions(-)

commit 01e468fc57c89c9efdef13b142ca2662051a4c1e
Author: James Henstridge <james@daa.com.au>
Date:   Mon Dec 2 14:08:22 2002 +0000

    split code for drawing character into separate function. (save_pixbuf):
    
    2002-12-02  James Henstridge  <james@daa.com.au>
    
        * src/thumbnailer.c (draw_char): split code for drawing character
        into separate function.
        (save_pixbuf): function to save the pixbuf.  We crop the pixbuf
        leaving PAD_PIXELS pixels round the edges.
    
        * src/ftstream-vfs.c (FT_New_URI_Face): unset the
        FT_FACE_FLAG_EXTERNAL_STREAM flag on the face, so that it gets
        freed with the face.  (this is a bit of a hack ...).

 vfs-methods/fontilus/ChangeLog      |   5 +
 vfs-methods/fontilus/ftstream-vfs.c |   2 +-
 vfs-methods/fontilus/thumbnailer.c  | 187 +++++++++++++++++++++++++++---------
 3 files changed, 145 insertions(+), 49 deletions(-)

commit dd78dff000be0431630a881085c5cc634a7b91f5
Author: James Henstridge <james@daa.com.au>
Date:   Mon Dec 2 08:07:44 2002 +0000

    unset the FT_FACE_FLAG_EXTERNAL_STREAM flag on the face, so that it gets
    
    2002-12-02  James Henstridge  <james@daa.com.au>
    
        * src/ftstream-vfs.c (FT_New_URI_Face): unset the
        FT_FACE_FLAG_EXTERNAL_STREAM flag on the face, so that it gets
        freed with the face.  (this is a bit of a hack ...).

 vfs-methods/fontilus/ChangeLog      | 4 ++++
 vfs-methods/fontilus/ftstream-vfs.c | 3 +++
 2 files changed, 7 insertions(+)

commit 2f46bdaa3796bf5843b3a0eab9e917c5eba7526d
Author: James Henstridge <james@daa.com.au>
Date:   Mon Dec 2 07:31:30 2002 +0000

    fix bound on for loop (gaaaargh). (main): re-enable shutdown of the
    
    2002-12-02  James Henstridge  <james@daa.com.au>
    
        * src/thumbnailer.c (main): fix bound on for loop (gaaaargh).
        (main): re-enable shutdown of the library
    
        * src/Makefile.am (libfont_method_la_LIBADD): fix typo.
    
        * src/ftstream-vfs.c (FT_New_URI_Face): FT_Stream is a pointer, so
        sizeof(FT_Stram) gives the wrong result :(

 vfs-methods/fontilus/ChangeLog      | 10 ++++++++++
 vfs-methods/fontilus/Makefile.am    |  2 +-
 vfs-methods/fontilus/ftstream-vfs.c |  3 +--
 vfs-methods/fontilus/thumbnailer.c  |  8 +++-----
 4 files changed, 15 insertions(+), 8 deletions(-)

commit 24a577acd6504ff4d15e068627a71deac92e3fda
Author: Havoc Pennington <hp@pobox.com>
Date:   Mon Dec 2 01:14:14 2002 +0000

    modify to use slider/radio instead of spinbutton/optionmenu.
    
    2002-12-01  Havoc Pennington  <hp@pobox.com>
    
        * gnome-window-properties.c: modify to use slider/radio instead of
        spinbutton/optionmenu.
    
        * gnome-window-properties.glade: make UI review changes

 capplets/windows/ChangeLog                     |   7 +
 capplets/windows/gnome-window-properties.c     | 360 ++++++++++++---------
 capplets/windows/gnome-window-properties.glade | 417 +++++++++++++++----------
 3 files changed, 466 insertions(+), 318 deletions(-)

commit f4b41ab7944088fb7183944e4130798f96783128
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sun Dec 1 21:06:47 2002 +0000

    Updated Finnish translation.
    
    2002-12-01  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 545 ++++++++++++++++++++---------------------------------------
 2 files changed, 191 insertions(+), 358 deletions(-)

commit 627140fc046b9f6bccf1af703200c8113ffa9e7a
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Sun Dec 1 15:22:27 2002 +0000

    some makefile changes

 vfs-methods/fontilus/Makefile.am   | 6 +++++-
 vfs-methods/fontilus/font-method.c | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 1abf43c0392bb6ed44ce012d0ab0d45acda9a7fd
Author: James Henstridge <james@daa.com.au>
Date:   Sun Dec 1 15:07:36 2002 +0000

    include ".directory" in the directory listing. (do_open): handle
    
    2002-12-01  James Henstridge  <james@daa.com.au>
    
        * src/font-method.c (do_read_directory): include ".directory" in
        the directory listing.
        (do_open): handle "/.directory".
        (do_get_file_info): handle "/.directory".
        (do_is_local): handle "/.directory".

 vfs-methods/fontilus/ChangeLog             |  6 ++++
 vfs-methods/fontilus/Makefile.am           |  3 +-
 vfs-methods/fontilus/font-method.c         | 44 +++++++++++++++++++++++++++---
 vfs-methods/fontilus/font-method.directory |  5 ++++
 4 files changed, 53 insertions(+), 5 deletions(-)

commit 01f3ccb167359c91ff7609082747355c4c1a62bc
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Sun Dec 1 13:59:26 2002 +0000

    install font-method.conf

 vfs-methods/fontilus/ChangeLog   |  4 ++++
 vfs-methods/fontilus/Makefile.am | 10 ++++++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit 92e7e7a7ff9f8fc00dfe07ebc266b64110fa341e
Author: James Henstridge <jamesh@src.gnome.org>
Date:   Sun Dec 1 13:52:09 2002 +0000

    initial checkin

 vfs-methods/fontilus/.cvsignore       |   9 +
 vfs-methods/fontilus/Makefile.am      |  14 +
 vfs-methods/fontilus/font-method.c    | 754 ++++++++++++++++++++++++++++++++++
 vfs-methods/fontilus/font-method.conf |   2 +
 vfs-methods/fontilus/ftstream-vfs.c   | 118 ++++++
 vfs-methods/fontilus/thumbnailer.c    | 146 +++++++
 6 files changed, 1043 insertions(+)

commit c7fa2a7909257b8326e1dba93d3e7abf4295a9f6
Author: Gil Osher <dolfin@src.gnome.org>
Date:   Sat Nov 30 21:11:29 2002 +0000

    *** empty log message ***

 po/he.po | 2096 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 2096 insertions(+)

commit c116f5e5f3bfc6a386cca3f318ccafcf221d375c
Author: Michal Bukovjan <mbukovjan@src.gnome.org>
Date:   Thu Nov 28 08:50:51 2002 +0000

    Updated Czech translation.

 po/cs.po | 78 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 40 insertions(+), 38 deletions(-)

commit 1679b148e021967fc77916380c292aff2bc4559e
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Nov 28 00:19:07 2002 +0000

    Updated Swedish translation.
    
    2002-11-28  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 607 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 248 insertions(+), 363 deletions(-)

commit 36e7df36504120a6477e7bad7c92bf71a5b069a5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Nov 27 23:40:48 2002 +0000

    Updated Norwegian (bokmål) translation.
    
    2002-11-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokmål) translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 77 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 45 insertions(+), 36 deletions(-)

commit 9d0a2117d8788a7864ef53074e66067e609fa1bc
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Nov 27 00:03:37 2002 +0000

    sync

 capplets/common/gnome-theme-info.c             |   8 +-
 capplets/theme-switcher/gnome-theme-manager.c  |  41 ++++-
 capplets/theme-switcher/theme-properties.glade |  99 +++++++-----
 capplets/theme-switcher/theme-thumbnail.c      | 207 ++++++++++++++++++++++---
 capplets/theme-switcher/theme-thumbnail.h      |  16 +-
 5 files changed, 307 insertions(+), 64 deletions(-)

commit 8adc7405c7f0434f17bb8a14e12422c6d30d840a
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Tue Nov 26 21:53:21 2002 +0000

    Added ta.po back...

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/ta.po     | 2078 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2087 insertions(+), 1 deletion(-)

commit 6dfe663ec8f30b1519d436e678d6b51b6399af5b
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Nov 26 19:55:04 2002 +0000

    Updated Slovenian translation

 po/sl.po | 663 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 264 insertions(+), 399 deletions(-)

commit 3a06547314d49734882b35b210d795204a8ad411
Author: Michal Bukovjan <mbukovjan@src.gnome.org>
Date:   Tue Nov 26 11:42:13 2002 +0000

    Updated Czech translation.

 po/cs.po | 2595 +++++++++++++-------------------------------------------------
 1 file changed, 514 insertions(+), 2081 deletions(-)

commit deba8158a6a84dcfbebceadc64486b845e8b1fb4
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Nov 26 02:09:06 2002 +0000

    Massive copy-paste from stable branch.
    
    2002-11-25 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    
        * nl.po: Massive copy-paste from stable branch.

 po/ChangeLog |  122 ++--
 po/nl.po     | 1918 +++++++++++-----------------------------------------------
 2 files changed, 415 insertions(+), 1625 deletions(-)

commit 080751dbfca122775aca62bbac2081e415d71cb5
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Mon Nov 25 23:47:31 2002 +0000

    Updated Estonian translation.
    
    2002-11-26  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 +
 po/et.po     | 810 +++++++++--------------------------------------------------
 2 files changed, 116 insertions(+), 698 deletions(-)

commit 7c9ffe0d6cd3bf47d6fcc474a2731541f37bec44
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Nov 25 20:36:33 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-11-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 25 ++++++++++++-------------
 2 files changed, 16 insertions(+), 13 deletions(-)

commit f5d2d371b60929ca0d8d1d4aa5d5f015dd73ae64
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Mon Nov 25 14:17:32 2002 +0000

    Convert all to UTF-8.
    
    2002-11-25  Yanko Kaneti  <yaneti@declera.com>
    
        * *.po: Convert all to UTF-8.

 po/ChangeLog |    4 +
 po/am.po     |    3 +-
 po/cs.po     | 1230 ++++++++++++++++++++++++++--------------------------
 po/en_GB.po  |    2 +-
 po/ga.po     |  328 +++++++-------
 po/hr.po     |  188 ++++----
 po/it.po     |  162 +++----
 po/ja.po     | 1358 +++++++++++++++++++++++++++++-----------------------------
 po/lt.po     |  584 ++++++++++++-------------
 po/lv.po     | 1216 ++++++++++++++++++++++++++--------------------------
 po/uk.po     |    2 +-
 po/wa.po     |  302 ++++++-------
 12 files changed, 2691 insertions(+), 2688 deletions(-)

commit e0d9cb6db36c52f21ca8f5fc7c923de9844ce55e
Author: Jody Goldberg <jody@gnome.org>
Date:   Sun Nov 24 05:46:33 2002 +0000

    post release bump
    
    
    2002-11-24  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4ab7f6e379644312215340f82a8d6f0f2634db60
Author: Jody Goldberg <jody@gnome.org>
Date:   Sun Nov 24 05:16:35 2002 +0000

    Release 2.1.3
    
    
    2002-11-23  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.3

 ChangeLog                                 |   4 +
 archiver/ChangeLog                        |   4 +
 archiver/tests/ChangeLog                  |   4 +
 capplets/accessibility/keyboard/ChangeLog |   4 +
 capplets/background/ChangeLog             |   4 +
 capplets/common/ChangeLog                 |   4 +
 capplets/default-applications/ChangeLog   |   4 +
 capplets/desktop-links/ChangeLog          |   4 +
 capplets/file-types/ChangeLog             |   4 +
 capplets/font/ChangeLog                   |   4 +
 capplets/keybindings/ChangeLog            |   4 +
 capplets/keyboard/ChangeLog               |   4 +
 capplets/mime-type/ChangeLog              |   4 +
 capplets/mouse/ChangeLog                  |   4 +
 capplets/network/ChangeLog                |   4 +
 capplets/rollback/ChangeLog               |   4 +
 capplets/sound/ChangeLog                  |   4 +
 capplets/theme-switcher/ChangeLog         |   4 +
 capplets/ui-properties/ChangeLog          |   4 +
 capplets/url-properties/ChangeLog         |   4 +
 capplets/windows/ChangeLog                |   4 +
 capplets/wm-properties/ChangeLog          |   4 +
 control-center/ChangeLog                  |   4 +
 gnome-settings-daemon/ChangeLog           |   4 +
 help/ChangeLog                            |   4 +
 libbackground/ChangeLog                   |   4 +
 libwindow-settings/ChangeLog              |   4 +
 po/ChangeLog                              |   4 +
 po/ar.po                                  | 111 +++-
 po/az.po                                  | 110 +++-
 po/be.po                                  | 971 +++++++++++++++++++++---------
 po/bg.po                                  | 111 +++-
 po/ca.po                                  | 112 +++-
 po/cs.po                                  | 102 +++-
 po/da.po                                  | 111 +++-
 po/de.po                                  |  63 +-
 po/el.po                                  | 107 +++-
 po/en_GB.po                               |  89 ++-
 po/es.po                                  | 111 +++-
 po/et.po                                  | 110 +++-
 po/fi.po                                  | 111 +++-
 po/fr.po                                  | 111 +++-
 po/ga.po                                  | 110 +++-
 po/gl.po                                  | 111 +++-
 po/hr.po                                  | 101 +++-
 po/hu.po                                  | 111 +++-
 po/it.po                                  |  99 ++-
 po/ja.po                                  | 102 +++-
 po/ko.po                                  | 111 +++-
 po/lt.po                                  | 107 +++-
 po/lv.po                                  |  97 ++-
 po/ms.po                                  |   6 +-
 po/nl.po                                  | 111 +++-
 po/nn.po                                  | 109 +++-
 po/no.po                                  |  65 +-
 po/pl.po                                  | 111 +++-
 po/pt.po                                  | 111 +++-
 po/pt_BR.po                               | 117 +++-
 po/ro.po                                  | 111 +++-
 po/ru.po                                  | 111 +++-
 po/sk.po                                  | 111 +++-
 po/sl.po                                  | 111 +++-
 po/sv.po                                  | 122 +++-
 po/tr.po                                  | 110 +++-
 po/uk.po                                  | 111 +++-
 po/vi.po                                  | 111 +++-
 po/wa.po                                  | 100 ++-
 po/zh_CN.po                               | 100 ++-
 po/zh_TW.po                               | 110 +++-
 69 files changed, 3941 insertions(+), 1288 deletions(-)

commit 37014389358d80688f50b706ff2053feba3a3cd0
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Nov 18 19:40:46 2002 +0000

    sync

 capplets/theme-switcher/gnome-theme-manager.c  | 15 ++++++--
 capplets/theme-switcher/theme-properties.glade | 48 ++++++++++++++++++--------
 2 files changed, 47 insertions(+), 16 deletions(-)

commit 907eb29387782d0e83aff9d8f8135d110191b352
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sat Nov 16 12:18:11 2002 +0000

    Updated Malay Translation. Noor Azurah Anuar <-- Jangan pisahkan, aku dan
    
    2002-11-15  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.
    Noor Azurah Anuar <-- Jangan pisahkan, aku dan dia... Tuhan tolong lah kucinta dia

 po/ChangeLog |   4 ++
 po/ms.po     | 203 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 120 insertions(+), 87 deletions(-)

commit 9264122f1176192bee7d6c4ea127c5f2dfd06287
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sat Nov 16 05:56:46 2002 +0000

    actually set the theme.
    
    Sat Nov 16 00:55:58 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c (meta_theme_selection_changed): actually
        set the theme.

 capplets/theme-switcher/ChangeLog              |   5 +
 capplets/theme-switcher/gnome-theme-manager.c  |  86 ++++-------
 capplets/theme-switcher/theme-properties.glade | 198 ++++++++++++++++++++++---
 3 files changed, 208 insertions(+), 81 deletions(-)

commit b6e4035202b4598e2b6cb7b174d65d3513ce9b08
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Nov 15 21:11:28 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-11-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 ++
 po/no.po     | 229 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 114 insertions(+), 119 deletions(-)

commit 8c0248372a5dcb1b760ae35b428aba3317ab3c7d
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Fri Nov 15 00:34:49 2002 +0000

    there's no need for it to be resizable, as we have GTK_POLICY_NEVER for
    
    Thu Nov 14 19:01:39 2002  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-keybinding-properties.c (setup_dialog): there's no need
            for it to be resizable, as we have GTK_POLICY_NEVER for the
            hadjustment.
    
    Thu Nov 14 19:30:02 2002  Jonathan Blandford  <jrb@gnome.org>
    
            * theme-thumbnail.c (setup_theme_thumbnail_factory): add G_IO_HUP
            so the child can actually exit when the parent does.

 capplets/keybindings/ChangeLog                     |  6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c |  4 ++--
 capplets/theme-switcher/ChangeLog                  |  5 +++++
 capplets/theme-switcher/theme-thumbnail.c          | 21 ++++++++++++---------
 4 files changed, 25 insertions(+), 11 deletions(-)

commit ea7ff3f5c3b553e510a25cb6cfb1af6a00ea2345
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Nov 14 22:26:09 2002 +0000

    forgot this

 capplets/common/gnome-theme-info.c            | 12 +++++++-----
 capplets/theme-switcher/gnome-theme-manager.c | 12 ++++++++++--
 configure.in                                  |  4 ++++
 3 files changed, 21 insertions(+), 7 deletions(-)

commit 5527e656d6312be044fb97393a37863e73d513cc
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Nov 14 22:14:57 2002 +0000

    Use new theme system. Handle other themes better.
    
    Thu Nov 14 17:14:00 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c: Use new theme system.  Handle other
        themes better.
    
        * theme-thumbnail.c: new file to draw themes.  Currently
        synchronous -- needs to be made async.

 capplets/theme-switcher/ChangeLog                  |  12 +
 capplets/theme-switcher/Makefile.am                |   5 +
 capplets/theme-switcher/gnome-theme-manager.c      |  18 +-
 .../theme-switcher/gtk-theme-selector.desktop.in   |   2 +-
 capplets/theme-switcher/theme-properties.glade     |  55 ++-
 capplets/theme-switcher/theme-thumbnail.c          | 381 +++++++++++++++++++++
 capplets/theme-switcher/theme-thumbnail.h          |  12 +
 7 files changed, 477 insertions(+), 8 deletions(-)

commit 4a520d71f880028b7401d6d12365e647671e9347
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   Thu Nov 14 20:17:36 2002 +0000

    de.po: Updated German translation.
    POTFILES.in: Changed.

 po/ChangeLog   |    5 +
 po/POTFILES.in |    2 +
 po/de.po       | 1061 ++++++++++++++++++++------------------------------------
 3 files changed, 374 insertions(+), 694 deletions(-)

commit c18d856b22f47f42fe3bcb877dc98a5f87dc81c3
Author: Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
Date:   Wed Nov 13 09:08:44 2002 +0000

    Reset Picture option to "Wall paper" only in the case of "none" while DnD.
    
    2002-11-13  Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
    
            * background-properties-capplet.c (drag_data_received_cb):
            Reset Picture option to "Wall paper" only in the case of
            "none" while DnD. Fixes #94329

 capplets/background/ChangeLog                       | 6 ++++++
 capplets/background/background-properties-capplet.c | 8 +++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 1467840f7e450157a625019a8beae16e306abcf8
Author: Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
Date:   Wed Nov 13 07:31:55 2002 +0000

    Tweaked the incremental values of spin button to 10. Fixes #95511
    
    2002-11-13  Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
    
            * accessibility-keyboard.c : Tweaked the incremental values
            of spin button to 10. Fixes #95511

 capplets/accessibility/keyboard/ChangeLog                | 5 +++++
 capplets/accessibility/keyboard/accessibility-keyboard.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 9e1e421396ad82af1c0bb6cb0911941366552de7
Author: Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
Date:   Wed Nov 13 07:08:13 2002 +0000

    Added the "desktop_font" key directory to the list of directories
    
    2002-11-13  Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
    
            * main.c: Added the "desktop_font" key directory to the list
            of directories GConfClient will watch for changes.
            Fixes Bug #94766.

 capplets/font/ChangeLog | 6 ++++++
 capplets/font/main.c    | 1 +
 2 files changed, 7 insertions(+)

commit 989ce24ec2c013093ba18ff65af42946e967e4d6
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Sat Nov 9 05:31:11 2002 +0000

    be.po: Updated Belarusian translation from Belarusian team <i18n@infonet.by>.

 po/ChangeLog |    5 +
 po/be.po     | 1320 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 737 insertions(+), 588 deletions(-)

commit 3d694aff8f42bdf60821deef051118a35c9bcfb9
Author: Deepa Natarajan <deepa.natarajan@wipro.com>
Date:   Fri Nov 8 05:17:57 2002 +0000

    s/Contents.../Contents & s/About.../About Fixes bug# 96706.
    
    2002-11-08  Deepa Natarajan  <deepa.natarajan@wipro.com>
    
        * gnomecc-ui.xml: s/Contents.../Contents & s/About.../About
        Fixes bug# 96706.

 control-center/ChangeLog      | 5 +++++
 control-center/gnomecc-ui.xml | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit a43af53a3f2ed7cb1dd6f8158443ea162abb6036
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Fri Nov 8 03:26:33 2002 +0000

    Create a XSettingsManager for every available screen and apply settings
    
    2002-11-08  Mark McLoughlin  <mark@skynet.ie>
    
            Create a XSettingsManager for every available
            screen and apply settings changes to each.
    
            * gnome-settings-daemon.c:
            (manager_event_filter): make this a per-window filter
            and ask the appropriate xsettings manager to filter
            the event.
            (finalize): dispose of every manager.
            (gnome_settings_daemon_new): create a settings manager
            for each screen.
    
            * gnome-settings-xsettings.c:
            (translate_bool_int), (translate_int_int),
            (translate_string_string), (process_value),
            (xsettings_callback), (xft_callback),
            (gnome_xft_settings_set_xsettings),
            (gnome_settings_xsettings_load): apply settings to
            every available settings manager.

 gnome-settings-daemon/ChangeLog                  | 21 ++++++++
 gnome-settings-daemon/gnome-settings-daemon.c    | 65 +++++++++++++++++++-----
 gnome-settings-daemon/gnome-settings-xsettings.c | 60 +++++++++++++++-------
 3 files changed, 114 insertions(+), 32 deletions(-)

commit eea6c7e6c19a28b189bce6b33fb2ec3a5c59a05a
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Nov 7 20:07:26 2002 +0000

    commit snapshot to leave the theme-switcher usable

 capplets/theme-switcher/gnome-theme-manager.c  | 109 +++++++++++++-
 capplets/theme-switcher/theme-properties.glade | 189 ++++++++++++++-----------
 2 files changed, 209 insertions(+), 89 deletions(-)

commit 6b994aa468b7545048bab6553bef47223b6fc0ea
Author: Daniel Yacob <yacob@src.gnome.org>
Date:   Wed Nov 6 05:54:59 2002 +0000

    Adding Amharic translation.

 po/am.po | 2022 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 2022 insertions(+)

commit 341038ca77eafa4dc6748954a31906e93dca5da8
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Nov 5 20:49:44 2002 +0000

    Change the file format a bunch.
    
    Tue Nov  5 15:48:33 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-info.c: Change the file format a bunch.
    
    Tue Nov  5 15:48:20 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c (read_themes): make more robust.

 capplets/common/ChangeLog                       |  4 +
 capplets/common/gnome-theme-info.c              | 42 +++++++----
 capplets/common/gnome-theme-info.h              | 14 ++--
 capplets/theme-switcher/ChangeLog               |  4 +
 capplets/theme-switcher/gnome-theme-installer.c |  2 +-
 capplets/theme-switcher/gnome-theme-manager.c   | 99 ++++++++++++++++++++-----
 capplets/theme-switcher/theme-properties.glade  | 10 +--
 7 files changed, 129 insertions(+), 46 deletions(-)

commit b79dae8b4e8a3161cfb32abfbe7476757809dac0
Author: Calum Benson <calum@src.gnome.org>
Date:   Mon Nov 4 19:04:35 2002 +0000

    Minor labelling change

 .../keyboard/gnome-accessibility-keyboard-properties.glade              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3bf7d201e33e5f7c533b9c4835256decb3bb862e
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Sun Nov 3 04:11:38 2002 +0000

    configure.in: Added Belarusian to ALL_LINGUAS

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ff231d4dbcde3256abc81d17eb06ef7e5c64603f
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Sun Nov 3 03:42:44 2002 +0000

    be.po: Added Belarusian translation from Belarusian team <i18n@infonet.by>.

 po/ChangeLog |    5 +
 po/be.po     | 2219 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 2224 insertions(+)

commit 14aa66a1d5355ce9a11f8541ffe0a69b0c6dc593
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Nov 2 19:17:43 2002 +0000

    post release version bump
    
    
    2002-11-02  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2ae51b7ea763ef8067b5485b8a3ef45658964df4
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Sat Nov 2 19:14:08 2002 +0000

    fix version number

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit de3fad8d1a25e0a7f9163524a5c7e27b82d6a30c
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Nov 2 19:03:15 2002 +0000

    Release 2.1.2
    
    
    2002-11-02  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.2

 ChangeLog                                          |    8 +
 archiver/ChangeLog                                 |    4 +
 archiver/tests/ChangeLog                           |    4 +
 capplets/accessibility/keyboard/ChangeLog          |    9 +
 .../keyboard/accessibility-keyboard.c              |   40 +-
 .../gnome-accessibility-keyboard-properties.glade  | 2714 ++++++++++++--------
 capplets/background/ChangeLog                      |    4 +
 capplets/common/ChangeLog                          |    4 +
 capplets/default-applications/ChangeLog            |    4 +
 capplets/desktop-links/ChangeLog                   |    4 +
 capplets/file-types/ChangeLog                      |    4 +
 capplets/font/ChangeLog                            |    4 +
 capplets/keybindings/ChangeLog                     |   10 +
 capplets/keybindings/gnome-keybinding-properties.c |   54 +-
 capplets/keyboard/ChangeLog                        |    4 +
 capplets/mime-type/ChangeLog                       |    4 +
 capplets/mouse/ChangeLog                           |   10 +
 capplets/mouse/Makefile.am                         |   17 +-
 capplets/mouse/gnome-mouse-properties.c            |  101 +-
 capplets/network/ChangeLog                         |    4 +
 capplets/rollback/ChangeLog                        |    4 +
 capplets/sound/ChangeLog                           |    4 +
 capplets/theme-switcher/ChangeLog                  |    8 +
 capplets/theme-switcher/Makefile.am                |    3 +-
 capplets/ui-properties/ChangeLog                   |    4 +
 capplets/url-properties/ChangeLog                  |    4 +
 capplets/windows/ChangeLog                         |    4 +
 capplets/wm-properties/ChangeLog                   |    4 +
 configure.in                                       |    7 +
 control-center/ChangeLog                           |    4 +
 gnome-settings-daemon/ChangeLog                    |    4 +
 help/ChangeLog                                     |    4 +
 libbackground/ChangeLog                            |    4 +
 libwindow-settings/ChangeLog                       |    4 +
 po/ChangeLog                                       |    4 +
 po/ar.po                                           |  572 +++--
 po/az.po                                           |  465 ++--
 po/bg.po                                           |  583 +++--
 po/ca.po                                           |  594 +++--
 po/cs.po                                           |  534 ++--
 po/da.po                                           |  578 +++--
 po/de.po                                           |  553 ++--
 po/el.po                                           |  539 ++--
 po/en_GB.po                                        |  400 +--
 po/es.po                                           |  578 +++--
 po/et.po                                           |  569 ++--
 po/fi.po                                           |  579 +++--
 po/fr.po                                           |  588 +++--
 po/ga.po                                           |  480 ++--
 po/gl.po                                           |  572 +++--
 po/hr.po                                           |  461 ++--
 po/hu.po                                           |  595 +++--
 po/it.po                                           |  525 ++--
 po/ja.po                                           |  534 ++--
 po/ko.po                                           |  570 ++--
 po/lt.po                                           |  495 ++--
 po/lv.po                                           |  550 ++--
 po/ms.po                                           |  551 ++--
 po/nl.po                                           |  578 +++--
 po/nn.po                                           |  497 ++--
 po/no.po                                           |  582 +++--
 po/pl.po                                           |  575 +++--
 po/pt.po                                           |  574 +++--
 po/pt_BR.po                                        |  639 +++--
 po/ro.po                                           |  572 +++--
 po/ru.po                                           |  585 +++--
 po/sk.po                                           |  565 ++--
 po/sl.po                                           |  586 +++--
 po/sv.po                                           |  612 +++--
 po/tr.po                                           |  495 ++--
 po/uk.po                                           |  525 ++--
 po/vi.po                                           |  565 ++--
 po/wa.po                                           |  445 ++--
 po/zh_CN.po                                        |  440 ++--
 po/zh_TW.po                                        |  562 ++--
 75 files changed, 15695 insertions(+), 9240 deletions(-)

commit c46a90bc25f696443cf3ba51389e1f0302007387
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Fri Nov 1 23:22:20 2002 +0000

    remove the duplicate #defined key.
    
    Fri Nov  1 18:21:22 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * main.c: remove the duplicate #defined key.

 capplets/font/ChangeLog | 4 ++++
 capplets/font/main.c    | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit ff045c00cdbbad3eb69b4656ef2911caf56690d4
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Nov 1 23:16:35 2002 +0000

    get rid of theme-common.[ch] for good

 capplets/common/Makefile.am                        |   1 -
 capplets/common/theme-common.c                     | 240 ---------------------
 capplets/common/theme-common.h                     |  25 ---
 capplets/font/main.c                               |   1 -
 capplets/keybindings/ChangeLog                     |   5 +
 capplets/keybindings/gnome-keybinding-properties.c |  12 +-
 capplets/theme-switcher/gnome-theme-manager.c      |   4 -
 7 files changed, 11 insertions(+), 277 deletions(-)

commit 9405d72d2fad085232190a18dab54ac04010646e
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Fri Nov 1 16:09:43 2002 +0000

    Rewrote to handle metathemes and icon themes. The WM stuff was previously
    
    Fri Nov  1 11:01:16 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-manager.c: Rewrote to handle metathemes and icon
        themes.  The WM stuff was previously broken, too.
    
        * gnome-theme-installer.[ch]: Extract this code out to it's own
        file.
    
    Fri Nov  1 11:03:34 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-theme-info.[ch]: Moved theme-common, and gave more
        features.

 capplets/common/ChangeLog                       |   5 +
 capplets/common/Makefile.am                     |   1 +
 capplets/common/gnome-theme-info.c              | 646 ++++++++++++++++++
 capplets/common/gnome-theme-info.h              | 103 +++
 capplets/theme-switcher/ChangeLog               |   8 +
 capplets/theme-switcher/Makefile.am             |  12 +-
 capplets/theme-switcher/gnome-theme-installer.c | 183 ++++++
 capplets/theme-switcher/gnome-theme-installer.h |  29 +
 capplets/theme-switcher/gnome-theme-manager.c   | 827 ++++++++++++++++++++++++
 capplets/theme-switcher/theme-properties.glade  | 392 ++++++++++-
 10 files changed, 2193 insertions(+), 13 deletions(-)

commit ce78d4d67079af0b23ceb9990dc56797574e20ce
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Nov 1 03:42:18 2002 +0000

    register the gconf handler early.
    
    
    2002-10-31  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c
        (gnome_settings_accessibility_keyboard_init) : register the gconf
          handler early.
        (gnome_settings_accessibility_keyboard_load) : not here where it is
          too late.

 gnome-settings-daemon/ChangeLog                               |  8 ++++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 10 ++++++----
 2 files changed, 14 insertions(+), 4 deletions(-)

commit ac007654f9f8f5273d011f487356c88ce2370168
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Oct 31 22:58:17 2002 +0000

    Get the themes from the new location, instead of the old one.
    
    Thu Oct 31 17:52:31 2002  Jonathan Blandford  <jrb@gnome.org>
    
            * metacity-window-manager.c (metacity_get_theme_list): Get the
            themes from the new location, instead of the old one.
    
            * metacity-window-manager.c (metacity_get_settings): simplify
            logic and fix bug.

 libwindow-settings/ChangeLog                 |  8 ++++++++
 libwindow-settings/Makefile.am               |  2 +-
 libwindow-settings/metacity-window-manager.c | 16 +++++-----------
 3 files changed, 14 insertions(+), 12 deletions(-)

commit 692b9dde4f52d9a495de3b3aeef85e6c703e98f0
Author: Havoc Pennington <hp@pobox.com>
Date:   Tue Oct 29 06:19:52 2002 +0000

    adapt to gnome-wm-manager API changes
    
    2002-10-26  Havoc Pennington  <hp@pobox.com>
    
        * theme-switcher.c (window_read_themes): adapt to gnome-wm-manager
        API changes
    
    2002-10-26  Havoc Pennington  <hp@pobox.com>
    
        * gnome-window-manager.c: handle NULL fields in the class struct;
        and replace the individual setters with get/set for a big
        struct with flags indicating which fields we care about,
        a la a graphics context. Add settings_changed signal.
        (gnome_window_manager_get_type): change object name to
        GnomeWindowManager not GWindowManager
    
        * gnome-window-manager.h (struct _GnomeWindowManagerClass): add
        padding to the class struct
    
        * Makefile.am: move metacity module here from capplets/windows/
        (libgnome_window_settings_la_SOURCES): don't build the code to
        switch window managers, it was bitrotted and broken anyway, and
        isn't in the UI right now. Keep the code in EXTRA_DIST in case
        someone wants to recover it. Move some relevant bits to
        gnome-wm-manager.c
    
    2002-10-26  Havoc Pennington  <hp@pobox.com>
    
        * gnome-window-properties.c: rewrite
    
        * Makefile.am (bin_PROGRAMS): remove metacity module, move to
        libwindow-settings
        (gnome_window_properties_LDADD): properly link to .la file for
        libgnome-window-settings, not the installed copy

 capplets/theme-switcher/ChangeLog              |   5 +
 capplets/theme-switcher/theme-switcher.c       |   9 +-
 capplets/windows/ChangeLog                     |   9 +
 capplets/windows/Makefile.am                   |  28 +-
 capplets/windows/gnome-window-properties.c     | 682 +++++++++++++++------
 capplets/windows/gnome-window-properties.glade | 361 ++++++-----
 capplets/windows/metacity-window-manager.c     | 197 ------
 capplets/windows/metacity-window-manager.h     |  29 -
 gnome-settings-daemon/ChangeLog                |   6 +
 gnome-settings-daemon/Makefile.am              |   2 -
 gnome-settings-daemon/gnome-settings-daemon.c  |   3 -
 gnome-settings-daemon/gnome-settings-wm.c      | 122 ----
 gnome-settings-daemon/gnome-settings-wm.h      |  33 -
 libwindow-settings/ChangeLog                   |  19 +
 libwindow-settings/Makefile.am                 |  30 +-
 libwindow-settings/gnome-window-manager.c      | 194 ++++--
 libwindow-settings/gnome-window-manager.h      | 148 ++++-
 libwindow-settings/gnome-wm-manager.c          | 811 ++++++++-----------------
 libwindow-settings/gnome-wm-manager.h          |  19 +-
 libwindow-settings/metacity-window-manager.c   | 491 +++++++++++++++
 libwindow-settings/metacity-window-manager.h   |  29 +
 21 files changed, 1815 insertions(+), 1412 deletions(-)

commit 69fcadbe29913f5de27342cb856775609aa76b9a
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sun Oct 27 14:07:38 2002 +0000

    add Gtk/CanChangeAccels to xsettings
    
    Sun Oct 27 09:00:46 2002  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-settings-xsettings.c: add Gtk/CanChangeAccels to xsettings

 gnome-settings-daemon/ChangeLog                  | 4 ++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 6 insertions(+)

commit f2afc776aadc24effc6afd0128de47b0c6f4a0cb
Author: Jorn Baayen <jbaayen@src.gnome.org>
Date:   Fri Oct 25 21:09:09 2002 +0000

    Commit new proxy capplet.

 ChangeLog                                        |  12 +
 capplets/network/gnome-network-preferences.c     | 194 ++++-
 capplets/network/gnome-network-preferences.glade | 936 ++++++++++++++++++-----
 3 files changed, 955 insertions(+), 187 deletions(-)

commit cf1926393f023a722c13796f29d8e3870ab69778
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Thu Oct 24 15:38:57 2002 +0000

    Convert to UTF-8

 po/nn.po | 238 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 119 insertions(+), 119 deletions(-)

commit 6b7ddb4045135172c2ae115bdf94cee5270666d8
Author: Seth Nickell <seth@src.gnome.org>
Date:   Tue Oct 22 04:13:10 2002 +0000

    Fix potential segfault.
    
    
        * gnome-window-properties.c: (setup_appearance_option_menu):
    
        Fix potential segfault.

 capplets/windows/ChangeLog                 | 6 ++++++
 capplets/windows/gnome-window-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit af0063dd7bae01211aa27dc4a0ae212a087c10b8
Author: Seth Nickell <seth@src.gnome.org>
Date:   Tue Oct 22 03:54:11 2002 +0000

    Fix segfault caused by a WM where the settings module wasn't found.
    
    
        * gnome-window-properties.c: (update_gui):
    
        Fix segfault caused by a WM where the settings module
        wasn't found.

 capplets/windows/ChangeLog                 | 7 +++++++
 capplets/windows/gnome-window-properties.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 2dd038c437a7ecdb9165402196653b6ea4bb5981
Author: Seth Nickell <seth@src.gnome.org>
Date:   Tue Oct 22 02:53:48 2002 +0000

    Fix bug that caused a segfault when the GConf theme key was missing.
    
    
        * gnome-window-properties.c: (setup_appearance_option_menu):
    
        Fix bug that caused a segfault when the GConf theme key
        was missing.

 capplets/windows/ChangeLog                 | 9 +++++++++
 capplets/windows/gnome-window-properties.c | 4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 89db38e269b700fe0d6ca0f7b947cec1ee0a1bc8
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Oct 21 16:51:45 2002 +0000

    post release version bump
    
    
    2002-10-21  Jody Goldberg <jody@gnome.org>
    
        * configure.in : post release version bump

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit de4daccb66a1ac34b628b3e0e2353c3680ab871c
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Oct 21 16:48:10 2002 +0000

    Release 2.1.1
    
    
    2002-10-21  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.1

 ChangeLog                                 |   4 +
 archiver/ChangeLog                        |   4 +
 archiver/tests/ChangeLog                  |   4 +
 capplets/accessibility/keyboard/ChangeLog |   4 +
 capplets/background/ChangeLog             |   4 +
 capplets/common/ChangeLog                 |   4 +
 capplets/default-applications/ChangeLog   |   4 +
 capplets/desktop-links/ChangeLog          |   4 +
 capplets/file-types/ChangeLog             |   4 +
 capplets/font/ChangeLog                   |   4 +
 capplets/keybindings/ChangeLog            |   4 +
 capplets/keyboard/ChangeLog               |   4 +
 capplets/mime-type/ChangeLog              |   4 +
 capplets/mouse/ChangeLog                  |   4 +
 capplets/network/ChangeLog                |   4 +
 capplets/rollback/ChangeLog               |   4 +
 capplets/sound/ChangeLog                  |   4 +
 capplets/theme-switcher/ChangeLog         |   4 +
 capplets/ui-properties/ChangeLog          |   4 +
 capplets/url-properties/ChangeLog         |   4 +
 capplets/windows/ChangeLog                |   4 +
 capplets/wm-properties/ChangeLog          |   4 +
 configure.in                              |   2 +-
 control-center/ChangeLog                  |   4 +
 gnome-settings-daemon/ChangeLog           |   9 ++
 gnome-settings-daemon/xsettings-common.c  |   3 +
 help/ChangeLog                            |   4 +
 libbackground/ChangeLog                   |   4 +
 libwindow-settings/ChangeLog              |   4 +
 po/ChangeLog                              |   4 +
 po/ar.po                                  | 146 ++++++++++--------
 po/az.po                                  | 129 ++++++++--------
 po/bg.po                                  | 146 ++++++++++--------
 po/ca.po                                  | 161 +++++++++++---------
 po/cs.po                                  | 152 ++++++++++---------
 po/da.po                                  | 146 ++++++++++--------
 po/de.po                                  | 139 +++++++++--------
 po/el.po                                  | 139 +++++++++--------
 po/en_GB.po                               |  91 ++++++------
 po/es.po                                  | 146 ++++++++++--------
 po/et.po                                  | 145 ++++++++++--------
 po/fi.po                                  | 137 ++++++++++-------
 po/fr.po                                  | 146 ++++++++++--------
 po/ga.po                                  | 136 ++++++++---------
 po/gl.po                                  | 139 +++++++++--------
 po/hr.po                                  | 139 ++++++++---------
 po/hu.po                                  |  27 ++--
 po/it.po                                  | 139 ++++++++---------
 po/ja.po                                  | 139 ++++++++---------
 po/ko.po                                  | 136 ++++++++++-------
 po/lt.po                                  | 139 +++++++++--------
 po/lv.po                                  | 139 ++++++++---------
 po/ms.po                                  | 239 +++++++++++++++++-------------
 po/nl.po                                  | 146 ++++++++++--------
 po/nn.po                                  | 145 +++++++++---------
 po/no.po                                  |   5 +-
 po/pl.po                                  | 136 ++++++++++-------
 po/pt.po                                  | 146 ++++++++++--------
 po/pt_BR.po                               | 155 ++++++++++---------
 po/ro.po                                  | 137 ++++++++++-------
 po/ru.po                                  | 146 ++++++++++--------
 po/sk.po                                  | 139 +++++++++--------
 po/sl.po                                  | 146 ++++++++++--------
 po/sv.po                                  | 146 ++++++++++--------
 po/tr.po                                  | 139 +++++++++--------
 po/uk.po                                  | 136 +++++++++--------
 po/vi.po                                  | 146 ++++++++++--------
 po/wa.po                                  | 143 ++++++++++--------
 po/zh_CN.po                               | 150 ++++++++++---------
 po/zh_TW.po                               | 146 ++++++++++--------
 70 files changed, 3156 insertions(+), 2468 deletions(-)

commit 8b4d413cd4c3b9178d1b2c9776db8f1399773b00
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Oct 21 10:20:57 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-10-21  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 46 ++++++++++++++++++++++++----------------------
 2 files changed, 28 insertions(+), 22 deletions(-)

commit eb18bfe0f203c3c47e15833c369a9d0b8f170f0c
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Sat Oct 19 22:45:38 2002 +0000

    don't connect to the session manager.
    
    2002-10-20  Mark McLoughlin  <mark@skynet.ie>
    
            * factory.c: (main): don't connect to the session manager.

 gnome-settings-daemon/ChangeLog | 4 ++++
 gnome-settings-daemon/factory.c | 7 +++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit df93ce25429deac81932bca6ca5f9fab2ca53d79
Author: Andras Timar <timar@gnome.hu>
Date:   Fri Oct 18 17:38:48 2002 +0000

    Terminology fixes.
    
    2002-10-18  Andras Timar  <timar@gnome.hu>
    
            * hu.po: Terminology fixes.

 po/ChangeLog |   4 +
 po/hu.po     | 263 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 138 insertions(+), 129 deletions(-)

commit b1108500bf349fe92876121a8fc832a34cc8b3a0
Author: Erwann Chenede - <erwann.chenede@sun.com>
Date:   Fri Oct 18 17:22:13 2002 +0000

    added function to get display string from an XEvent. (keybindings_filter)
    
    2002-10-18 Erwann Chenede - <erwann.chenede@sun.com>
    
            * gnome-settings-keybindings.c
        (screen_exec_display_string) : added function to get display
                                       string from an XEvent.
        (keybindings_filter) : set a fully qualified DISPLAY env variable
                               when spawing a keybinding action.

 gnome-settings-daemon/ChangeLog                    |  8 +++
 gnome-settings-daemon/gnome-settings-keybindings.c | 77 ++++++++++++++++++++--
 2 files changed, 79 insertions(+), 6 deletions(-)

commit 9266656beac6c238d5c34b0b7e9e89e8794f7449
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Oct 16 13:11:04 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=95807 From
    
    
    2002-10-16  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=95807
        From  sylvain_pasche@yahoo.fr
        * main.c (open_pattern) : Add a safety check.

 capplets/font/ChangeLog | 6 ++++++
 capplets/font/main.c    | 2 ++
 2 files changed, 8 insertions(+)

commit d25787ede23b200e925abd4ae62a93825545744b
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Tue Oct 15 21:51:52 2002 +0000

    reorder "key" and "applyto" elements so that it validates aginst the gconf
    
    2002-10-16  Yanko Kaneti <yaneti@declera.com>
    
        * schemas/apps_gnome_settings_daemon_default_editor.schemas: reorder
        "key" and "applyto" elements so that it validates aginst the gconf dtd.

 ChangeLog                                                 | 5 +++++
 schemas/apps_gnome_settings_daemon_default_editor.schemas | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 9cef1302416440be27e236cdd5a74d45e2e8a0e0
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Mon Oct 14 17:22:24 2002 +0000

    Updated Malay Translation.
    
    2002-10-13  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 356 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 163 insertions(+), 197 deletions(-)

commit 8f240853e3597c0095b83bbbec5fe257f476b741
Author: Andras Timar <timar@gnome.hu>
Date:   Sun Oct 13 11:11:47 2002 +0000

    Yet another small fix.
    
    2002-10-13  Andras Timar  <timar@gnome.hu>
    
            * hu.po: Yet another small fix.

 po/ChangeLog | 4 ++++
 po/hu.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3e046e17ed1e7d43ea9b75d45d0baf1507b9dff4
Author: Andras Timar <timar@gnome.hu>
Date:   Sat Oct 12 14:22:51 2002 +0000

    One more thing...
    
    2002-10-12  Andras Timar  <timar@gnome.hu>
    
            * hu.po: One more thing...

 po/ChangeLog | 4 ++++
 po/hu.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 09bbe9980fdd3ce336345f7d0b89ea4b2188b6bd
Author: Andras Timar <timar@gnome.hu>
Date:   Sat Oct 12 14:15:04 2002 +0000

    Updated Hungarian translation.
    
    2002-10-12  Andras Timar  <timar@gnome.hu>
    
            * hu.po: Updated Hungarian translation.

 po/ChangeLog |    4 +
 po/hu.po     | 2135 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1103 insertions(+), 1036 deletions(-)

commit 23efb59ff1bd80072fde75800a5ae02a15ec8d64
Author: Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
Date:   Fri Oct 11 16:43:32 2002 +0000

    Dismiss the XKB extensions warning dialog. Fixes #95069
    
    2002-10-11  Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
    
            * gnome-accessibility-keyboard-properties.c (xkb_enabled): Dismiss
            the XKB extensions warning dialog.  Fixes #95069

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit de08ed29584830055afc88bb35bf4e6660edc00b
Author: Deepa Natarajan <deepa.natarajan@wipro.com>
Date:   Fri Oct 11 09:55:25 2002 +0000

    *sound-properties.glade: Remove mnemonics for notebook tabs. Fixes bug#
    
    2002-10-08  Deepa Natarajan  <deepa.natarajan@wipro.com>
    
        *sound-properties.glade: Remove mnemonics for notebook tabs.
        Fixes bug# 94160.

 capplets/sound/ChangeLog              | 5 +++++
 capplets/sound/sound-properties.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 4d659c1ed870062d29df62340e33e972d48947a9
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 8 16:53:53 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=91535 as michael points out it
    
    
    2002-10-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=91535
        * gnome-settings-sound.c : as michael points out it is silly to start
          the daemon just so that we can stop it.  Dunno much about esound
          code so the funky logic is left untouched.

 NEWS                                         | 4 ++++
 gnome-settings-daemon/ChangeLog              | 7 +++++++
 gnome-settings-daemon/gnome-settings-sound.c | 2 +-
 3 files changed, 12 insertions(+), 1 deletion(-)

commit 54100a3134f5818a260ac835654543c0ede07bea
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 8 16:38:20 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=95179 do nothing here.
    
    
    2002-10-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=95179
        * gnome-settings-accessibility-keyboard.c
        (gnome_settings_accessibility_keyboard_init) : do nothing here.
        (gnome_settings_accessibility_keyboard_load) : install the filter
          here, _after_ loading the gconf settings.
        (set_gconf_from_server) : check to see if anything has actually
          changed before sending off the changeset.

 NEWS                                               |  7 +-
 configure.in                                       |  2 +-
 gnome-settings-daemon/ChangeLog                    | 10 +++
 .../gnome-settings-accessibility-keyboard.c        | 94 ++++++++++++----------
 4 files changed, 70 insertions(+), 43 deletions(-)

commit cf2869eef0bb967dcf7a895426fed7ad158aaece
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Sat Oct 5 21:45:52 2002 +0000

    Update again

 po/no.po | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

commit 355347a850e20b67d263fe474c5ac31db0b13456
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 5 21:42:19 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-10-04  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 328 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 150 insertions(+), 182 deletions(-)

commit 5c25864b4f427a601c281d2f17a763ad250ba7ce
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Thu Oct 3 22:20:08 2002 +0000

    Updated Finnish translation.
    
    2002-10-04  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |  4 ++++
 po/fi.po     | 21 ++++++---------------
 2 files changed, 10 insertions(+), 15 deletions(-)

commit c28245145cdb5bf696d1b004fd5e32bdc3c580c1
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Oct 3 11:04:23 2002 +0000

    more accelerator and label cleanup

 capplets/file-types/file-types-properties.glade | 26 ++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

commit eac1fc77e3f3fe1ac3a99494a50ae93fa6aa86b1
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Oct 3 10:38:34 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=93279 missing & conflicting
    
    
    2002-10-03  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=93279
        * file-types-properties.glade : missing & conflicting accerators.

 capplets/file-types/ChangeLog                   |  3 +++
 capplets/file-types/file-types-properties.glade | 20 ++++++++++++--------
 2 files changed, 15 insertions(+), 8 deletions(-)

commit f25a409131172ed73747f8ed81f5cac1dfe8ee97
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Oct 3 10:18:55 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=93211 delete.
    
    
    2002-10-03  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=93211
        * file-types-capplet.c (edit_count_cb) : delete.
        (selection_count_cb) : rename from remove_count_cb.
        (selection_changed_cb) : simplify code, disable edit button for
          catagories.

 capplets/file-types/ChangeLog            |  8 ++++++++
 capplets/file-types/file-types-capplet.c | 27 ++++-----------------------
 2 files changed, 12 insertions(+), 23 deletions(-)

commit 69bc347c0fa67ed505a59c6aa14e4a3a94710544
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Oct 3 10:17:40 2002 +0000

    Forgot to commit when I did the 2.1.0.1 snapshot
    
    2002-10-01  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.0.1

 ChangeLog                                 |    4 +
 NEWS                                      |    6 +
 archiver/ChangeLog                        |    4 +
 archiver/tests/ChangeLog                  |    4 +
 capplets/accessibility/keyboard/ChangeLog |    4 +
 capplets/background/ChangeLog             |    4 +
 capplets/common/ChangeLog                 |    4 +
 capplets/default-applications/ChangeLog   |    4 +
 capplets/desktop-links/ChangeLog          |    4 +
 capplets/file-types/ChangeLog             |    4 +
 capplets/file-types/file-types-capplet.c  |    1 +
 capplets/font/ChangeLog                   |    4 +
 capplets/keybindings/ChangeLog            |    4 +
 capplets/keyboard/ChangeLog               |    4 +
 capplets/mime-type/ChangeLog              |    4 +
 capplets/mouse/ChangeLog                  |    4 +
 capplets/network/ChangeLog                |    4 +
 capplets/rollback/ChangeLog               |    4 +
 capplets/sound/ChangeLog                  |    4 +
 capplets/theme-switcher/ChangeLog         |    4 +
 capplets/ui-properties/ChangeLog          |    4 +
 capplets/url-properties/ChangeLog         |    4 +
 capplets/windows/ChangeLog                |    4 +
 capplets/wm-properties/ChangeLog          |    4 +
 configure.in                              |    2 +-
 control-center/ChangeLog                  |    4 +
 gnome-settings-daemon/ChangeLog           |    4 +
 help/ChangeLog                            |    4 +
 libbackground/ChangeLog                   |   10 +
 libbackground/preview-file-selection.c    |   28 +-
 libwindow-settings/ChangeLog              |    4 +
 po/ChangeLog                              |    4 +
 po/ar.po                                  |  282 +++---
 po/az.po                                  |  247 ++---
 po/bg.po                                  |  287 +++---
 po/ca.po                                  |  294 +++---
 po/cs.po                                  |  266 ++---
 po/da.po                                  |  284 +++---
 po/de.po                                  |  269 ++---
 po/el.po                                  |  275 +++---
 po/en_GB.po                               |  231 +++--
 po/es.po                                  |  286 +++---
 po/et.po                                  |  285 +++---
 po/fi.po                                  |   71 +-
 po/fr.po                                  |  287 +++---
 po/ga.po                                  |  263 ++---
 po/gl.po                                  |  281 +++---
 po/hr.po                                  |  266 ++---
 po/hu.po                                  |  263 ++---
 po/it.po                                  |  263 ++---
 po/ja.po                                  |  263 ++---
 po/ko.po                                  |  279 +++---
 po/lt.po                                  |  251 ++---
 po/lv.po                                  |  263 ++---
 po/ms.po                                  |  289 +++---
 po/nl.po                                  |  286 +++---
 po/nn.po                                  |  253 ++---
 po/no.po                                  |  284 +++---
 po/pl.po                                  |  279 +++---
 po/pt.po                                  |  282 +++---
 po/pt_BR.po                               |  253 ++---
 po/ro.po                                  |  540 ++++++----
 po/ru.po                                  |  287 +++---
 po/sk.po                                  |  277 +++---
 po/sl.po                                  |  283 +++---
 po/sv.po                                  |  285 +++---
 po/tr.po                                  |  264 ++---
 po/uk.po                                  |  274 +++---
 po/vi.po                                  | 1532 ++++++++++++++++++-----------
 po/wa.po                                  |  249 ++---
 po/zh_CN.po                               |  260 ++---
 po/zh_TW.po                               |  282 +++---
 72 files changed, 7090 insertions(+), 5280 deletions(-)

commit cd18ba358c5c0de683533b2c7160646bfa66bfd1
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Oct 1 15:18:37 2002 +0000

    avoid conflicting mnemonics the menus no longer have images, silence the
    
    
    2002-10-01  Jody Goldberg <jody@gnome.org>
    
        * gnome-ui-properties.glade : avoid conflicting mnemonics
        * gnome-ui-properties.c (set_have_icons) : the menus no  longer have
          images, silence the warnings.

 NEWS                                             | 8 ++++++++
 capplets/ui-properties/ChangeLog                 | 6 ++++++
 capplets/ui-properties/gnome-ui-properties.c     | 2 --
 capplets/ui-properties/gnome-ui-properties.glade | 2 +-
 4 files changed, 15 insertions(+), 3 deletions(-)

commit 656f1dd33fd705a4f4814ce0bb0f23298d3544d0
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Oct 1 15:14:13 2002 +0000

    minor aix portability fix

 control-center/capplet-dir-view.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 435b950dc16a2bb67b0563b3e890a39a1c79d915
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Oct 1 15:12:56 2002 +0000

    some aix portability fixes

 capplets/background/background-properties-capplet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 478ecee385bd81ea4d0efdd1d0c33e3c69d89388
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Tue Oct 1 05:23:00 2002 +0000

    reorder elements so that it validates.
    
    2002-10-01  Yanko Kaneti <yaneti@declera.com>
    
            * gtk-theme-switcher.schemas: reorder elements so that it validates.

 capplets/theme-switcher/ChangeLog                  | 4 ++++
 capplets/theme-switcher/gtk-theme-switcher.schemas | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 486e9796a0a5f7f0d40ae29265ed89d02fc50656
Author: Havoc Pennington <hp@pobox.com>
Date:   Mon Sep 30 04:00:03 2002 +0000

    update from libegg to get fix from Ralph Loader for <Super> <Hyper> <Meta>
    
    2002-09-29  Havoc Pennington  <hp@pobox.com>
    
        * eggaccelerators.c: update from libegg to get fix from Ralph
        Loader for <Super> <Hyper> <Meta> parsing, #93005

 capplets/keybindings/ChangeLog         | 5 +++++
 capplets/keybindings/eggaccelerators.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 469f82d9d8ae92139a3a6fe74ecd245850001263
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Sep 26 22:21:16 2002 +0000

    remove $appicon_data
    
    2002-09-26  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am (EXTRA_DIST): remove $appicon_data

 control-center/ChangeLog   | 4 ++++
 control-center/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 81d0bbd544e3f85ab4ba5396b4f325b4634baf31
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Sep 26 17:53:40 2002 +0000

    add ellipsis for CDE import and Repeat key buttons.
    
    
    2002-09-26  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.glade : add ellipsis for CDE
         import and Repeat key buttons.

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../keyboard/gnome-accessibility-keyboard-properties.glade           | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit b67a5e0c2512f38420759a05d3d6cc67e15c638e
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Sep 26 16:49:42 2002 +0000

    fix the macro
    
    2002-09-26  jacob berkman  <jacob@ximian.com>
    
        * capplet-dir.c (find_icon): fix the macro
    
        * capplet-dir-view.c (capplet_dir_view_init): use control-center2.png
    
        * Makefile.am: remove control-center.png which conflicts with the
        gnome 1 package and define different macros for $datadir/pixmaps
        and $gnomecc_icon_dir

 control-center/ChangeLog          |  10 ++++++++++
 control-center/Makefile.am        |   6 ++----
 control-center/capplet-dir-view.c |   2 +-
 control-center/capplet-dir.c      |   2 +-
 control-center/control-center.png | Bin 2068 -> 0 bytes
 5 files changed, 14 insertions(+), 6 deletions(-)

commit 65cd6f3d57eed35faaacd35eeeb031be2da170f5
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Sep 25 23:01:45 2002 +0000

    remove spaces before colons and fix the title.
    
    
    2002-09-25  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.glade : remove spaces before
          colons and fix the title.

 capplets/accessibility/keyboard/ChangeLog                    |  5 +++++
 .../keyboard/gnome-accessibility-keyboard-properties.glade   | 12 ++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

commit fe9580785a9dc50b5f8f9ff32fc910b4fa49082b
Author: Hidetoshi Tajima <tajima@src.gnome.org>
Date:   Tue Sep 24 22:57:29 2002 +0000

        disable/enable preedit/status in GtkIMContextXIM (#59076)
    
        * gnome-settings-xsettings.c: added two new xsettings
        for GTK+ input method preedit and status styles.
    
        With the other patch for gtk+, the preedit and status styles of
        GTK+ input method are configurable with associated gconf schemas
        keys:
        "/desktop/gnome/interface/gtk-im-preedit-style"
        "/desktop/gnome/interface/gtk-im-status-style"
    
        Both are set to "callback" by default, and platform's
        packging can have different default by changing
        libgnome's desktop_gnome_interface.schemas.

 gnome-settings-daemon/ChangeLog                  | 17 +++++++++++++++++
 gnome-settings-daemon/gnome-settings-xsettings.c |  4 ++++
 2 files changed, 21 insertions(+)

commit 237ffc56dcd9432bf4223738636fa2f6e057f28b
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Sep 24 17:48:34 2002 +0000

    blah the XrmGetFileDatabase is implementation specific in its handling of
    
    
    2002-09-24  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c (load_CDE_file) : blah the
          XrmGetFileDatabase is implementation specific in its handling of
          invalid files.  Add a hack that if the imported file did not contain
          any resources it was invalid.
    
        * gnome-accessibility-keyboard-properties.glade : add mnemonic_widget
          for mousekeys_init_delay_title.  Remove the atkrelations for things
          with mnemonic_widget.

 capplets/accessibility/keyboard/ChangeLog          | 11 ++++
 .../keyboard/accessibility-keyboard.c              | 71 ++++++++++++++--------
 .../gnome-accessibility-keyboard-properties.glade  | 19 +-----
 3 files changed, 57 insertions(+), 44 deletions(-)

commit 3274ad719c8889e857e1c86756481d6fb6002177
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Sep 20 09:10:58 2002 +0000

    updated Vietnamese file

 po/ChangeLog |    4 +
 po/vi.po     | 1496 +++++++++++++++++++++++-----------------------------------
 2 files changed, 598 insertions(+), 902 deletions(-)

commit edea9ec411e635efdfdd29478a2e8ac7133ba760
Author: Marius Andreiana <mandreiana@yahoo.com>
Date:   Fri Sep 20 07:28:19 2002 +0000

    updated
    
    2002-09-20  Marius Andreiana <mandreiana@yahoo.com>
    
            * ro.po: updated

 po/ChangeLog | 4 ++++
 po/ro.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit e4f563fa97f990f37bf66b128161881d2e7a3977
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sat Sep 14 11:55:01 2002 +0000

    Updated Finnish Translation.
    
    2002-09-14  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish Translation.

 po/ChangeLog |   4 +
 po/fi.po     | 448 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 185 insertions(+), 267 deletions(-)

commit e18bcdb0bd577c6759d1e6d96b6c9b3d840e984a
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Fri Sep 13 02:38:06 2002 +0000

    Updated Malay Translation.
    
    2002-09-13  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |    4 +
 po/ms.po     | 1029 +++++++++++++++-------------------------------------------
 2 files changed, 262 insertions(+), 771 deletions(-)

commit a1f98f2f24bcf3978f3f0cfc26aac1d18e61ba40
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Sep 11 13:24:23 2002 +0000

    Fix conflicting accelerators.
    
    
    2002-09-11  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.glade : Fix conflicting
          accelerators.
    
        * accessibility-keyboard.c (setup_dialog) : connect the simple items
          before the master.
        (cb_master_enable_toggle) : desensitize the subfeature content if the
          master switch is disabled.

 capplets/accessibility/keyboard/ChangeLog          | 10 +++
 .../keyboard/accessibility-keyboard.c              | 22 +++---
 .../gnome-accessibility-keyboard-properties.glade  | 28 ++++----
 capplets/ui-properties/ChangeLog                   |  5 ++
 capplets/ui-properties/gnome-ui-properties.glade   | 48 ++++---------
 gnome-settings-daemon/ChangeLog                    |  9 +++
 .../gnome-settings-accessibility-keyboard.c        | 82 ++++++++++++----------
 gnome-settings-daemon/gnome-settings-wm.c          |  3 +-
 8 files changed, 109 insertions(+), 98 deletions(-)

commit 9c3e90995d0897566bc1c6c3184eb6a2ec41eafd
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Sep 10 04:04:31 2002 +0000

    handle NULL.
    
    
    2002-08-26  Jody Goldberg <jody@gnome.org>
    
        * gnome-wm-manager.c (gnome_wm_manager_get_current) : handle NULL.

 libwindow-settings/ChangeLog          | 6 +++++-
 libwindow-settings/gnome-wm-manager.c | 5 ++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 864c769bc3aa89ed71b91343af0d3e039aa8b73b
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Sep 10 04:04:20 2002 +0000

    merge in the pending changes

 capplets/file-types/ChangeLog                      |  5 +++++
 capplets/file-types/mime-edit-dialog.c             | 10 ++++------
 .../network/gnome-network-preferences.desktop.in   |  4 ++--
 capplets/theme-switcher/ChangeLog                  |  4 ++++
 capplets/theme-switcher/theme-switcher.c           | 22 ++++++++++++----------
 capplets/ui-properties/ChangeLog                   |  5 +++++
 capplets/ui-properties/gnome-ui-properties.glade   |  2 +-
 configure.in                                       |  1 +
 gnome-settings-daemon/ChangeLog                    | 11 +++++++++++
 .../gnome-settings-accessibility-keyboard.c        | 10 +++++-----
 gnome-settings-daemon/gnome-settings-wm.c          | 19 +++++++++++++++++--
 11 files changed, 67 insertions(+), 26 deletions(-)

commit 9605651251e283d7a37cadbd1e00d465db82626c
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Sep 10 04:03:44 2002 +0000

    add a warning if xkb is not available.
    
    
    2002-09-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.c (main) : add a warning if
          xkb is not available.

 capplets/accessibility/keyboard/ChangeLog          | 25 ++++++++++++
 .../keyboard/accessibility-keyboard.c              | 44 ++++++++++++----------
 .../gnome-accessibility-keyboard-properties.c      | 34 ++++++++++++++++-
 .../gnome-accessibility-keyboard-properties.glade  | 13 +++++--
 4 files changed, 92 insertions(+), 24 deletions(-)

commit 4101aaa9661ae07c998c90c2d347f6c6ebe76675
Author: Marius Andreiana <mandreiana@yahoo.com>
Date:   Mon Sep 9 09:50:26 2002 +0000

    updated ( thanks to Mugurel Tudor <mugurelu@go.ro> )
    
    2002-09-09  Marius Andreiana <mandreiana@yahoo.com>
    
        * ro.po: updated ( thanks to Mugurel Tudor <mugurelu@go.ro> )

 po/ChangeLog |    4 +
 po/ro.po     | 4612 +++++++---------------------------------------------------
 2 files changed, 513 insertions(+), 4103 deletions(-)

commit eb79e6e0a4c8af996b4f432191ddd62aa64fbfe5
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Mon Sep 9 04:52:21 2002 +0000

    use ../../libwindow-settings/libgnome-window-settings.la instead of
    
    2002-09-09  Mark McLoughlin  <mark@skynet.ie>
    
            * Makefile.am: use ../../libwindow-settings/libgnome-window-settings.la
            instead of -L../../libwindow-settings -lgnome-window-settings.
            Fixeds build breakage.

 capplets/theme-switcher/ChangeLog   | 6 ++++++
 capplets/theme-switcher/Makefile.am | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 76d148e48795c2a3e7e6eded98ee62430e1e8d4d
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Wed Sep 4 22:11:05 2002 +0000

    translation update, fixes

 po/ChangeLog |  4 +++
 po/pt_BR.po  | 88 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 48 insertions(+), 44 deletions(-)

commit 65c9d73b59ad6fe289e66dd40854c4ae7f240b1d
Author: Jacob Berkman <jacob@ximian.com>
Date:   Sat Aug 31 17:10:38 2002 +0000

    include sys/types.h before dirent.h and string.h
    
    2002-08-31  Jacob Berkman  <jacob@ximian.com>
    
        * metacity-window-manager.c: include sys/types.h before dirent.h
        and string.h

 capplets/windows/ChangeLog                 | 5 +++++
 capplets/windows/metacity-window-manager.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit e450afe34b3353b21a48c23a2ad9c1d342f0365b
Author: Jacob Berkman <jacob@krunk.local>
Date:   Sat Aug 31 17:06:36 2002 +0000

    link against -lpopt
    
    2002-08-31  Jacob Berkman  <jacob@krunk.local.>
    
        * Makefile.am (gnome_file_types_properties_LDADD): link against -lpopt

 capplets/file-types/ChangeLog   | 4 ++++
 capplets/file-types/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit dbfc16764d90d9571abcc2457f9684c9c06ef0cf
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Fri Aug 23 05:03:16 2002 +0000

    use new X mode of the eggcellrendererkeys.
    
    Fri Aug 23 00:15:47 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-keybinding-properties.c (setup_dialog): use new X mode of
        the eggcellrendererkeys.
    
        * eggcellrendererkeys.[ch]: update from libegg.

 ChangeLog                                          |   7 ++
 capplets/keybindings/eggcellrendererkeys.c         | 104 ++++++++++++++-------
 capplets/keybindings/eggcellrendererkeys.h         |  44 +++++----
 capplets/keybindings/gnome-keybinding-properties.c |   2 +
 4 files changed, 105 insertions(+), 52 deletions(-)

commit 4be36ac469dd4ad05b514854df99ad0d268029bb
Author: Glynn Foster <glynn.foster@sun.com>
Date:   Wed Aug 21 11:10:57 2002 +0000

    Don't put dnl's in AC_OUTPUT.
    
    2002-08-21  Glynn Foster  <glynn.foster@sun.com>
    
        * configure.in: Don't put dnl's in AC_OUTPUT.

 ChangeLog    | 4 ++++
 configure.in | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit d65fcfacab4b2abc5e65e28756012a9c904dfffe
Author: Deepa Natarajan <deepa.natarajan@wipro.com>
Date:   Wed Aug 21 06:53:59 2002 +0000

    Added [un]maximize metacity bindings.
    
    2002-08-21  Deepa Natarajan <deepa.natarajan@wipro.com>
    
        * gnome-keybinding-properties.c: Added [un]maximize metacity bindings.

 capplets/keybindings/ChangeLog                     | 4 ++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 ++
 2 files changed, 6 insertions(+)

commit b3ca0b3f9f2abe9a51066228587c6dd8419ebaf6
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Aug 21 06:01:42 2002 +0000

    Release 2.1.0
    
    
    2002-08-21  Jody Goldberg <jody@gnome.org>
    
        * Release 2.1.0

 ChangeLog                                 |    9 +
 archiver/ChangeLog                        |    4 +
 archiver/tests/ChangeLog                  |    4 +
 capplets/accessibility/keyboard/ChangeLog |    4 +
 capplets/background/ChangeLog             |    4 +
 capplets/common/ChangeLog                 |    4 +
 capplets/default-applications/ChangeLog   |    4 +
 capplets/desktop-links/ChangeLog          |    4 +
 capplets/desktop-links/Makefile.am        |    4 +-
 capplets/file-types/ChangeLog             |    4 +
 capplets/font/ChangeLog                   |    4 +
 capplets/keybindings/ChangeLog            |    4 +
 capplets/keyboard/ChangeLog               |    4 +
 capplets/mime-type/ChangeLog              |    4 +
 capplets/mouse/ChangeLog                  |    4 +
 capplets/network/ChangeLog                |    4 +
 capplets/rollback/ChangeLog               |    4 +
 capplets/sound/ChangeLog                  |    4 +
 capplets/theme-switcher/ChangeLog         |    9 +
 capplets/theme-switcher/theme-switcher.c  |   35 +-
 capplets/ui-properties/ChangeLog          |    4 +
 capplets/url-properties/ChangeLog         |    4 +
 capplets/windows/ChangeLog                |    4 +
 capplets/windows/Makefile.am              |    2 +-
 capplets/wm-properties/ChangeLog          |    4 +
 configure.in                              |    6 +-
 control-center/ChangeLog                  |    4 +
 gnome-settings-daemon/ChangeLog           |    4 +
 help/ChangeLog                            |    4 +
 libbackground/ChangeLog                   |    4 +
 libwindow-settings/ChangeLog              |    4 +
 po/ChangeLog                              |    4 +
 po/ar.po                                  | 1364 +++++++++++++++----------
 po/az.po                                  | 1104 ++++++++++----------
 po/bg.po                                  | 1220 +++++++++++++---------
 po/ca.po                                  |  533 ++++++----
 po/cs.po                                  | 1324 +++++++++++++-----------
 po/da.po                                  |  948 ++++++++++-------
 po/de.po                                  | 1171 +++++++++++++--------
 po/el.po                                  |  416 ++++----
 po/en_GB.po                               |  861 ++++++++--------
 po/es.po                                  | 1373 +++++++++++++++----------
 po/et.po                                  |  695 ++++++++-----
 po/fi.po                                  |  865 ++++++++++------
 po/fr.po                                  |  522 ++++++----
 po/ga.po                                  | 1175 +++++++++++-----------
 po/gl.po                                  | 1194 +++++++++++++---------
 po/hr.po                                  | 1180 ++++++++++++----------
 po/hu.po                                  | 1228 ++++++++++++-----------
 po/it.po                                  | 1258 ++++++++++++-----------
 po/ja.po                                  | 1260 ++++++++++++-----------
 po/ko.po                                  |  917 ++++++++++-------
 po/lt.po                                  | 1370 +++++++++++++++----------
 po/lv.po                                  | 1220 +++++++++++-----------
 po/ms.po                                  |  410 ++++----
 po/nl.po                                  | 1380 +++++++++++++++----------
 po/nn.po                                  | 1194 ++++++++++++----------
 po/no.po                                  |  948 ++++++++++-------
 po/pl.po                                  | 1562 ++++++++++++++++-------------
 po/pt.po                                  | 1383 +++++++++++++++----------
 po/pt_BR.po                               |  370 +++----
 po/ro.po                                  | 1324 +++++++++++++-----------
 po/ru.po                                  |  642 +++++++-----
 po/sk.po                                  | 1332 ++++++++++++++----------
 po/sl.po                                  | 1239 ++++++++++++++---------
 po/sv.po                                  |  654 +++++++-----
 po/tr.po                                  | 1388 +++++++++++++++----------
 po/uk.po                                  | 1198 +++++++++++++---------
 po/vi.po                                  | 1257 ++++++++++++++---------
 po/wa.po                                  | 1092 +++++++++++---------
 po/zh_CN.po                               | 1288 ++++++++++++++----------
 po/zh_TW.po                               | 1370 +++++++++++++++----------
 72 files changed, 25376 insertions(+), 18022 deletions(-)

commit 28c1366164b93efca7c85d3db46238dc2b1ba222
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Aug 20 03:15:25 2002 +0000

    Merge in some pending patches

 ChangeLog                                                      |  4 ++++
 capplets/accessibility/keyboard/ChangeLog                      |  5 +++++
 .../accessibility/keyboard/accessibility-keyboard.desktop.in   |  5 +++--
 capplets/background/ChangeLog                                  |  5 +++++
 capplets/background/background.desktop.in                      |  5 +++--
 capplets/default-applications/ChangeLog                        |  5 +++++
 capplets/default-applications/default-applications.desktop.in  |  5 +++--
 capplets/file-types/ChangeLog                                  | 10 ++++++++++
 capplets/file-types/file-types.desktop.in                      |  9 +++++----
 capplets/font/ChangeLog                                        |  5 +++++
 capplets/font/font-properties.desktop.in                       |  5 +++--
 capplets/keybindings/gnome-keybinding-properties.glade         |  2 +-
 capplets/keybindings/keybinding.desktop.in                     |  5 +++--
 capplets/keyboard/ChangeLog                                    |  4 ++++
 capplets/keyboard/keyboard.desktop.in                          |  5 +++--
 capplets/mouse/ChangeLog                                       |  4 ++++
 capplets/mouse/mouse.desktop.in                                |  5 +++--
 capplets/network/ChangeLog                                     |  5 +++++
 capplets/network/gnome-network-preferences.desktop.in          |  5 +++--
 capplets/sound/ChangeLog                                       |  4 ++++
 capplets/sound/sound.desktop.in                                |  5 +++--
 capplets/theme-switcher/ChangeLog                              |  5 +++++
 capplets/theme-switcher/gtk-theme-selector.desktop.in          |  5 +++--
 capplets/ui-properties/ChangeLog                               |  4 ++++
 capplets/ui-properties/behavior.desktop.in                     |  5 +++--
 capplets/windows/ChangeLog                                     |  5 +++++
 capplets/windows/window-properties.desktop.in                  |  5 +++--
 control-center/ChangeLog                                       |  4 ++++
 control-center/gnomecc.desktop.in                              |  5 +++--
 29 files changed, 114 insertions(+), 31 deletions(-)

commit 3c03dd586d91a4d255b40e939254eda71711e95b
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Mon Aug 19 22:09:51 2002 +0000

    Merge in changes from RedHat

 capplets/theme-switcher/theme-properties.glade |  71 +++++++-
 capplets/theme-switcher/theme-switcher.c       | 228 +++++++++++++++----------
 2 files changed, 210 insertions(+), 89 deletions(-)

commit ded4768f61c74652195b62c14d8f5ebde4563b5b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Aug 19 21:53:58 2002 +0000

    fix bindings to match metacity.
    
    Mon Aug 19 17:54:07 2002  Jonathan Blandford  <jrb@redhat.com>
    
            * gnome-keybinding-properties.c (metacity_key_list): fix bindings
            to match metacity.

 capplets/keybindings/ChangeLog                     |  5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 26 ++++++----------------
 2 files changed, 12 insertions(+), 19 deletions(-)

commit 393fa2d6d151a04937e7e73d8ccc081882e66d34
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Aug 19 20:04:18 2002 +0000

    merge in owen's patch to configure the window title font and the font to
    
    
    2002-08-19  Jody Goldberg <jody@gnome.org>
    
        * font-properties.glade :
        * main.c: (setup_dialog): merge in owen's patch to configure the
          window title font and the font to use for terminals.  This patch
          uses a metacity specific key for the window title.  Owen ? Seth ?
          Can you folk choose please.

 capplets/font/ChangeLog             |   8 ++
 capplets/font/font-properties.glade | 143 +++++++++++++++++++++++-------------
 capplets/font/main.c                |  45 +++++++++++-
 3 files changed, 144 insertions(+), 52 deletions(-)

commit b5ef65002e043675c4440b319d66a309593fc209
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Aug 19 19:14:21 2002 +0000

    new file from owen to manage gtk1 themes.
    
    
    2002-08-19  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-daemon/gnome-settings-gtk1theme.c : new
          file from owen to manage gtk1 themes.

 ChangeLog                                         |   5 +
 capplets/common/theme-common.c                    |  23 ++-
 capplets/common/theme-common.h                    |   1 +
 capplets/keyboard/gnome-keyboard-properties.glade |   2 +-
 gnome-settings-daemon/Makefile.am                 |   6 +-
 gnome-settings-daemon/gnome-settings-daemon.c     |   3 +
 gnome-settings-daemon/gnome-settings-gtk1theme.c  | 220 ++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-gtk1theme.h  |  34 ++++
 8 files changed, 285 insertions(+), 9 deletions(-)

commit 523b6f3d8820f6430bde2df31cd239384a4d1d46
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Aug 16 19:50:25 2002 +0000

    remove capplets/file-types/category-names.h
    
    2002-08-16  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: remove capplets/file-types/category-names.h

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 368721557cd37aea6c1e95ff861d9fe2a679f762
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Aug 15 21:59:36 2002 +0000

    Add a pile of missing metacity bindings.
    
    
    2002-08-15  Jody Goldberg <jody@gnome.org>
    
        * gnome-keybinding-properties.c : Add a pile of missing metacity
          bindings.

 capplets/keybindings/ChangeLog                     |  4 ++++
 capplets/keybindings/gnome-keybinding-properties.c | 18 ++++++++++++++++++
 gnome-settings-daemon/gnome-settings-wm.c          |  3 ++-
 3 files changed, 24 insertions(+), 1 deletion(-)

commit 4d0044cf19a6039ef9a3502bbf1732e37c14fdd6
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Aug 15 21:29:17 2002 +0000

    set the version number to something sane we branched.
    
    
    2002-08-15  Jody Goldberg <jody@gnome.org>
    
        * configure.in : set the version number to something sane
          we branched.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3b1c8cb1cdd364d90964b9ec6bb48246f74e5e6c
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Aug 15 17:54:10 2002 +0000

    fix missed capitalization for the ui-review.
    
    2002-08-10  Jody Goldberg <jody@gnome.org>
    
        * file-types-properties.glade : fix missed capitalization for the
        ui-review.
    
    2002-08-15  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : fix label and make consistent with
          mouse capplet.
        * gnome-keyboard-properties.c (create_dialog) : use size groups.
    
    2002-08-15  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=90778
        * gnome-settings-accessibility-keyboard.c (set_gconf_from_server) :
          Add a heuristic so that we do not disable features in gconf just
          because they are disabled in the X server.  If the master switch is
          already disabled in gconf we can guess that most of the time it
          means that people want to keep their flags.
    
    
    2002-08-07  Jody Goldberg <jody@gnome.org>
    
        * po/POTFILES.in : remove bogus file.

 ChangeLog                                          |   4 +
 capplets/file-types/ChangeLog                      |   5 +
 capplets/file-types/Makefile.am                    |   2 +-
 capplets/file-types/category-names.h               |  27 ---
 capplets/file-types/file-types-properties.glade    |   4 +-
 capplets/keyboard/ChangeLog                        |   6 +
 capplets/keyboard/gnome-keyboard-properties.c      |  16 ++
 capplets/keyboard/gnome-keyboard-properties.glade  | 229 ++++++++++++++-------
 gnome-settings-daemon/ChangeLog                    |  14 ++
 .../gnome-settings-accessibility-keyboard.c        |  47 +++--
 .../gnome-settings-default-editor.c                |   2 +
 11 files changed, 230 insertions(+), 126 deletions(-)

commit a5a97dcbc1872bb2b51aebbc36bc7eea3a7b0d94
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Aug 13 18:14:39 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=83334 do it the easy way and
    
    2002-08-10  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=83334
        * eggcellrendererkeys.c : do it the easy way and just update the
          libegg code.

 capplets/keybindings/ChangeLog             |   7 +
 capplets/keybindings/Makefile.am           |   4 +-
 capplets/keybindings/eggaccelerators.c     | 657 +++++++++++++++++++++++++++++
 capplets/keybindings/eggaccelerators.h     |  87 ++++
 capplets/keybindings/eggcellrendererkeys.c |  42 +-
 capplets/keybindings/eggcellrendererkeys.h |   1 +
 6 files changed, 790 insertions(+), 8 deletions(-)

commit 9bbe45df2404fcabdf8b746fe01b36a283496165
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Fri Aug 9 23:47:38 2002 +0000

    updating translation

 po/ChangeLog |    4 +
 po/pt_BR.po  | 1340 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 790 insertions(+), 554 deletions(-)

commit c7e265f7c9743ceb9bd705d25fc00aa8d7458c8f
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Fri Aug 9 17:55:52 2002 +0000

    handle different cases of preprocessor macro varargs support.
    
    2002-08-09  Yanko Kaneti <yaneti@declera.com>
    
       * capplets/common/capplet-util.h: handle different cases of
       preprocessor macro varargs support.

 ChangeLog                      |  5 +++++
 capplets/common/capplet-util.h | 10 +++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit 307dd6b3a506b2b3e9e2c8db8d3da280d848a612
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Aug 8 19:40:11 2002 +0000

    add padding so that it builds on non-gcc
    
    2002-08-08  jacob berkman  <jacob@ximian.com>
    
        * metacity-window-manager.c (_MetacityWindowManagerPrivate): add
        padding so that it builds on non-gcc

 capplets/windows/ChangeLog                 | 5 +++++
 capplets/windows/metacity-window-manager.c | 1 +
 2 files changed, 6 insertions(+)

commit 01ce1d2620c4208c9a5b3b17d4b439c790bf1ec0
Author: Seth Nickell <snickell@stanford.edu>
Date:   Thu Aug 8 07:17:12 2002 +0000

    Actually hook the windows capplet into the build. Though its sort of ass
    
    2002-08-08  Seth Nickell  <snickell@stanford.edu>
    
        * capplets/Makefile.am:
    
        Actually hook the windows capplet into the build. Though
        its sort of ass right now.

 ChangeLog            | 7 +++++++
 capplets/Makefile.am | 8 +++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit e5071f443481bca77aa32d1f514ca47b6901c7b0
Author: Seth Nickell <snickell@stanford.edu>
Date:   Thu Aug 8 07:13:38 2002 +0000

    Try my best to throw a monkey wrench in things. Checkin Windows capplet,
    
    2002-08-08  Seth Nickell <snickell@stanford.edu>
    
        Try my best to throw a monkey wrench in things. Checkin
        Windows capplet, and add window related settings to
        the font capplet and theme capplet.
    
        Also fix button alignments on all capplets.

 ChangeLog                                          |   8 +
 capplets/font/ChangeLog                            |   8 +
 capplets/font/font-properties.glade                |  48 +++-
 capplets/font/main.c                               |  10 +-
 capplets/keybindings/ChangeLog                     |   6 +
 .../keybindings/gnome-keybinding-properties.glade  |   5 +-
 capplets/keyboard/ChangeLog                        |   6 +
 capplets/keyboard/gnome-keyboard-properties.glade  |  12 +-
 capplets/mouse/ChangeLog                           |   6 +
 capplets/mouse/gnome-mouse-properties.glade        |   1 +
 capplets/network/ChangeLog                         |   6 +
 capplets/network/gnome-network-preferences.glade   |   2 +-
 capplets/sound/sound-properties.glade              | 218 +++++++++--------
 capplets/theme-switcher/Makefile.am                |   8 +-
 capplets/theme-switcher/theme-properties.glade     | 224 +++++++++++++-----
 capplets/theme-switcher/theme-switcher.c           | 261 +++++++++++++++++++--
 capplets/ui-properties/gnome-ui-properties.glade   |   4 +-
 capplets/windows/ChangeLog                         |  11 +
 capplets/windows/gnome-window-properties.glade     |   2 +-
 capplets/windows/metacity-window-manager.c         |  29 ++-
 configure.in                                       |   2 +-
 gnome-settings-daemon/Makefile.am                  |   7 +-
 gnome-settings-daemon/gnome-settings-wm.c          |  19 ++
 libwindow-settings/ChangeLog                       |  12 +
 libwindow-settings/gnome-window-manager.c          |  16 +-
 libwindow-settings/gnome-window-manager.h          |  11 +-
 26 files changed, 723 insertions(+), 219 deletions(-)

commit f40d5848225e42aaa9c9b80a31d5ed9782338872
Author: Michael Meeks <michael@ximian.com>
Date:   Thu Aug 8 04:26:12 2002 +0000

    flag that we scuppered the remote daemon. (apply_settings): resume it if
    
    2002-08-07  Michael Meeks  <michael@ximian.com>
    
            * gnome-settings-sound.c (stop_esd): flag that
            we scuppered the remote daemon.
            (apply_settings): resume it if we killed it,
            don't kill it more than once.
            Don't iterate over all the sounds and try to
            push to the server if we have sound disabled,
            saves a chunk of time.
            This fixes the 'toggle sound a lot breaks it' bug.

 gnome-settings-daemon/ChangeLog              | 11 +++++++++++
 gnome-settings-daemon/gnome-settings-sound.c | 21 ++++++++++++++++-----
 2 files changed, 27 insertions(+), 5 deletions(-)

commit fe247b1685f3a5a72ca3e9bad2496bd4ada54568
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Aug 7 17:06:12 2002 +0000

    Patch from JRB for 88443
    
    2002-08-07  Jody Goldberg <jody@gnome.org>
        Patch from JRB for 88443
    
        * theme-switcher.c (read_themes) : store the current cursor
    
    2002-08-07  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_edit_dialog_get_app) : Be extra anal, just
          in case the db is corrupt.

 capplets/file-types/ChangeLog            |  5 ++++
 capplets/file-types/mime-edit-dialog.c   |  2 +-
 capplets/theme-switcher/ChangeLog        |  5 ++++
 capplets/theme-switcher/theme-switcher.c | 39 ++++++++++++--------------------
 4 files changed, 25 insertions(+), 26 deletions(-)

commit 97c9f86f499f502cc0af0a818ee1a9161612178d
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Aug 6 18:42:54 2002 +0000

    A Pile of pending patches

 capplets/accessibility/keyboard/ChangeLog          |  8 +++++
 .../keyboard/accessibility-keyboard.c              | 18 ++++++++++
 .../gnome-accessibility-keyboard-properties.glade  | 41 +++++++++++++++-------
 capplets/file-types/ChangeLog                      | 15 ++++++++
 capplets/file-types/file-types-properties.glade    |  6 ++--
 capplets/file-types/mime-edit-dialog.c             | 21 +++++++----
 capplets/file-types/mime-type-info.c               |  3 ++
 gnome-settings-daemon/ChangeLog                    |  6 ++++
 gnome-settings-daemon/gnome-settings-mouse.c       | 11 ++++--
 9 files changed, 103 insertions(+), 26 deletions(-)

commit 4119471052f764e4d0c68656a65955bcda1e17ab
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Tue Aug 6 15:12:19 2002 +0000

    Updated Greek translation

 po/ChangeLog |    4 +
 po/el.po     | 3545 ++++++++++++++--------------------------------------------
 2 files changed, 857 insertions(+), 2692 deletions(-)

commit 087ce5ba9178f76ae633d99da525f98aef5c08a3
Author: Federico Mena Quintero <federico@ximian.com>
Date:   Thu Aug 1 18:29:55 2002 +0000

    Made the file entry modal.
    
    2002-08-01  Federico Mena Quintero  <federico@ximian.com>
    
        * gnome-keyboard-properties.glade: Made the file entry modal.

 capplets/keyboard/ChangeLog                       | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 09062943879f650dcae69b0c43d979e325830b86
Author: Federico Mena Quintero <federico@ximian.com>
Date:   Thu Aug 1 18:21:46 2002 +0000

    Made the file entries modal as they live in modal dialogs. Fixes #89370.
    
    2002-08-01  Federico Mena Quintero  <federico@ximian.com>
    
        * file-types-properties.glade: Made the file entries modal as they
        live in modal dialogs.  Fixes #89370.
    
        * service-edit-dialog.c (service_add_dialog_new): Return a
        GObject, not a GtkWidget.
    
        * file-types-capplet.c (add_service_cb): Do not assign a GtkWidget
        to a GObject.

 capplets/file-types/ChangeLog                   | 11 +++++++++++
 capplets/file-types/file-types-capplet.c        |  3 +--
 capplets/file-types/file-types-properties.glade |  6 +++---
 capplets/file-types/service-edit-dialog.c       |  5 ++---
 capplets/file-types/service-edit-dialog.h       |  2 +-
 5 files changed, 18 insertions(+), 9 deletions(-)

commit a3029dc4551b4ae9bb103665bc68b1cf6e05503c
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Aug 1 18:14:20 2002 +0000

    fix widget name for the keyboard capplet button
    
    2002-08-01  jacob berkman  <jacob@ximian.com>
    
        * accessibility-keyboard.c (setup_accessX_dialog): fix widget name
        for the keyboard capplet button
    
        * gnome-accessibility-keyboard-properties.c (dialog_response):
        don't quit when the import accessx button is clicked (#89358)

 capplets/accessibility/keyboard/ChangeLog                    |  8 ++++++++
 capplets/accessibility/keyboard/accessibility-keyboard.c     |  2 +-
 .../keyboard/gnome-accessibility-keyboard-properties.c       | 12 ++++++++++--
 3 files changed, 19 insertions(+), 3 deletions(-)

commit e012170da4e369080499617a8f6074416320d0fa
Author: Federico Mena Quintero <federico@ximian.com>
Date:   Thu Aug 1 02:27:48 2002 +0000

    Make the file entry modal. Fixes #89410.
    
    2002-07-31  Federico Mena Quintero  <federico@ximian.com>
    
        * theme-install.glade: Make the file entry modal.  Fixes #89410.

 capplets/theme-switcher/ChangeLog           | 4 ++++
 capplets/theme-switcher/theme-install.glade | 5 +----
 2 files changed, 5 insertions(+), 4 deletions(-)

commit 193f017be85718c76ab5a5705a05999a79c84630
Author: Federico Mena Quintero <federico@ximian.com>
Date:   Thu Aug 1 02:12:51 2002 +0000

    Do not pass -1 for the dialog flags; just pass GTK_DIALOG_NO_SEPARATOR.
    
    2002-07-31  Federico Mena Quintero  <federico@ximian.com>
    
        * sound-properties-capplet.c (main): Do not pass -1 for the dialog
        flags; just pass GTK_DIALOG_NO_SEPARATOR.  Fixes #89408 and #88614.

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 69883510ea011f1640951557271ca64a55ac4476
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Tue Jul 30 17:53:10 2002 +0000

    Updated Malay Translation.
    
    2002-07-30  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 323 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 227 insertions(+), 100 deletions(-)

commit 36a9839a0d2b5ea66658950283a5a11144f497fe
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Tue Jul 30 09:05:57 2002 +0000

    Committed updated translation.

 po/ChangeLog | 4 ++++
 po/tr.po     | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit fc7396ec43dd81b47f0b5df4c059b6b059dff971
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Jul 29 15:13:08 2002 +0000

    fixes for building with gdk 2.0
    
    2002-07-29  jacob berkman  <jacob@ximian.com>
    
        * applier.c (set_root_pixmap):
        (make_root_pixmap): fixes for building with gdk 2.0

 libbackground/ChangeLog | 5 +++++
 libbackground/applier.c | 9 +++++++++
 2 files changed, 14 insertions(+)

commit 1f18e59fb46bcd9e179ac0d366b1595797a6f45a
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Sun Jul 28 19:15:27 2002 +0000

    add check for gtk+ with multihead support and define HAVE_GTK_MULTIHEAD if
    
    2002-07-27  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in: add check for gtk+ with multihead
            support and define HAVE_GTK_MULTIHEAD if found.
    
    2002-07-27  Mark McLoughlin  <mark@skynet.ie>
    
            Add multiscreen support for background rendering.
    
            * gnome-settings-background.c:
            (background_callback): apply prefs to all screens.
            (gnome_settings_background_init): create a BGApplier for
            each screen.
            (gnome_settings_background_load): apply prefs to all
            screens.

 configure.in                    | 11 +++++++++++
 gnome-settings-daemon/ChangeLog | 11 +++++++++++
 2 files changed, 22 insertions(+)

commit 13e1dd836d1ea6fef147cdce639be912e4dfc81a
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Sun Jul 28 19:09:02 2002 +0000

    add check for gtk+ with multihead support and define HAVE_GTK_MULTIHEAD if
    
    2002-07-27  Mark McLoughlin  <mark@skynet.ie>
    
            * configure.in: add check for gtk+ with multihead
            support and define HAVE_GTK_MULTIHEAD if found.
    
    2002-07-27  Mark McLoughlin  <mark@skynet.ie>
    
            Add support for rendering the wallpaper on
            a particular physical screen.
    
            * applier.[ch]:
            (bg_applier_init): init screen and root_window.
            (bg_applier_class_init), (bg_applier_set_prop),
            (bg_applier_get_prop): add "screen" property.
            (bg_applier_new_for_screen): implement.
            (render_wallpaper), (render_to_screen),
            (create_pixmap), (wallpaper_full_cover_p): use the
            screen and root window information.
            (make_root_pixmap): add a GdkScreen arg, actually
            use the display we opened, use the correct root
            window and not the default one
            (set_root_pixmap): add a GdkScreen arg, use the
            default display, use the correct root window.

 ChangeLog                                         |   5 +
 gnome-settings-daemon/gnome-settings-background.c |  43 +++++
 libbackground/ChangeLog                           |  19 +++
 libbackground/applier.c                           | 192 ++++++++++++++++------
 libbackground/applier.h                           |   2 +
 5 files changed, 215 insertions(+), 46 deletions(-)

commit 73b80d87c799f6168dbdc33591cb617047cdabef
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Jul 24 17:36:30 2002 +0000

    dist the pixel icons
    
    2002-07-24  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am (EXTRA_DIST): dist the pixel icons

 capplets/font/ChangeLog   | 4 ++++
 capplets/font/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c27d13b7de0c02deb53ec68d45a8ef58941c6c15
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Jul 24 13:27:35 2002 +0000

    only #define HAVE_XFT2 if we actually have xft2
    
    2002-07-24  jacob berkman  <jacob@ximian.com>
    
        * configure.in: only #define HAVE_XFT2 if we actually have xft2

 ChangeLog    | 2 ++
 configure.in | 7 ++-----
 2 files changed, 4 insertions(+), 5 deletions(-)

commit e8298aa2257e3a4e4f584f2cbe50bc622ea65954
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Jul 24 13:00:50 2002 +0000

    fixup x11 checks when x11 include path is not in the default include path
    
    2002-07-24  jacob berkman  <jacob@ximian.com>
    
        * configure.in: fixup x11 checks when x11 include path is not in
        the default include path for the compiler

 ChangeLog    | 5 +++++
 configure.in | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 6aa8a86cd12a4c21b837932030a4efd0a34ebbb2
Author: Owen Taylor <otaylor@redhat.com>
Date:   Wed Jul 24 03:31:39 2002 +0000

    Fix stupid typo.
    
    Tue Jul 23 23:31:17 2002  Owen Taylor  <otaylor@redhat.com>
    
            * capplets/font/main.c: Fix stupid typo.

 ChangeLog            | 4 ++++
 capplets/font/main.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 360981ccd645d7f0343e62d435dae304c9d31abd
Author: Owen Taylor <otaylor@redhat.com>
Date:   Wed Jul 24 03:30:41 2002 +0000

    Add some pixmaps for font rendering.
    
    Tue Jul 23 23:29:51 2002  Owen Taylor  <otaylor@redhat.com>
    
            * capplets/fonts/subpixel-{rgb,bgr,vrgb,vbgr}.c: Add
            some pixmaps for font rendering.

 ChangeLog                       |   5 +++++
 capplets/font/subpixel-bgr.png  | Bin 0 -> 125 bytes
 capplets/font/subpixel-rgb.png  | Bin 0 -> 125 bytes
 capplets/font/subpixel-vbgr.png | Bin 0 -> 138 bytes
 capplets/font/subpixel-vrgb.png | Bin 0 -> 138 bytes
 5 files changed, 5 insertions(+)

commit 05fb268094d119c236f4a01689fc5aa722cf4bac
Author: Owen Taylor <otaylor@src.gnome.org>
Date:   Wed Jul 24 02:39:03 2002 +0000

    ue Jul 23 22:35:10 2002  Owen Taylor  <otaylor@redhat.com>
    
            * acconfig.h configure.in: Check for Xft2.
    
            * capplets/font/main.c capplets/font/Makefile.am
            capplets/font/font-properties.glade: If XFt2 is present,
            allow the user to control various font rendering attributes.
    
            * gnome-settings-daemon/gnome-settings-xsettings.c:
            Mirror the Xft rendering attributes from the font
            capplet to XSETTINGS and Xrdb.
    
            * schemas/Makefile.am schemas/desktop_gnome_font_rendering.schemas:
            Add schemas for the new GConf settings.

 ChangeLog                                        |   15 +
 acconfig.h                                       |    3 +
 capplets/font/Makefile.am                        |   15 +-
 capplets/font/font-properties.glade              | 1177 +++++++++++++++++++++-
 capplets/font/main.c                             |  639 +++++++++++-
 configure.in                                     |   18 +
 gnome-settings-daemon/gnome-settings-xsettings.c |  296 ++++++
 schemas/Makefile.am                              |    3 +-
 schemas/desktop_gnome_font_rendering.schemas     |   69 ++
 9 files changed, 2224 insertions(+), 11 deletions(-)

commit a8339d6fc10ebc65518b7641cb6327f4cc77b796
Author: Owen Taylor <otaylor@src.gnome.org>
Date:   Wed Jul 24 02:34:35 2002 +0000

    missed ChangeLog entry

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 8566bf0bf68665bd0de20550f1370f6274d10cec
Author: Owen Taylor <otaylor@src.gnome.org>
Date:   Wed Jul 24 02:08:59 2002 +0000

    ue Jul 23 22:06:08 2002  Owen Taylor  <otaylor@redhat.com>
    
            * capplets/keyboard/gnome-keyboard-properties.c: Fix
            unterminated GConfEnumStringPair array.
    
            * gnome-settings-daemon/gnome-settings-default-editor.c:
            Fix some comments that had embedded /* which was causing
            GCC warnings.

 capplets/keyboard/gnome-keyboard-properties.c         | 3 ++-
 gnome-settings-daemon/gnome-settings-default-editor.c | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 3349b8e5dcb96ab41d4a03a7983823e222f077be
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Jul 22 14:56:57 2002 +0000

    if nautilus is drawing the desktop, just return
    
    2002-07-22  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-background.c (gnome_settings_background_load): if
        nautilus is drawing the desktop, just return

 gnome-settings-daemon/ChangeLog                   |  5 +++++
 gnome-settings-daemon/gnome-settings-background.c | 11 +++++++++++
 2 files changed, 16 insertions(+)

commit 6165b5f6d99583f6a37f20f09685a82e68091eb0
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Mon Jul 22 10:41:15 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 552 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 308 insertions(+), 248 deletions(-)

commit f6dd63bb614a820a064ccdfa071d43d2839d1a17
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sun Jul 21 13:21:24 2002 +0000

    Updated French translation.

 po/ChangeLog |    4 +
 po/fr.po     | 1176 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 668 insertions(+), 512 deletions(-)

commit 63ce18896ac71ddf098ec8f35d577e061e4f9d6a
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Fri Jul 19 17:04:20 2002 +0000

    Updated Finnish translation.
    
    2002-07-19  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 955 +++++++++++++++++++++++++----------------------------------
 2 files changed, 402 insertions(+), 557 deletions(-)

commit ce3401d81e3f716f69c5df8550e32031be66684b
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Thu Jul 18 17:38:31 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 431 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 235 insertions(+), 200 deletions(-)

commit e681a9f996d6fe2cfed62b615638c3abdc3a5e95
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Jul 18 03:54:36 2002 +0000

    Use stock names and a 2nd menu item, as per ui-review
    
    
    2002-07-17  Jody Goldberg <jody@gnome.org>
    
        * gnome-ui-properties.glade :  Use stock names
          and a 2nd menu item, as per ui-review

 capplets/ui-properties/ChangeLog                 |   5 +
 capplets/ui-properties/gnome-ui-properties.c     |   6 +-
 capplets/ui-properties/gnome-ui-properties.glade | 135 ++++++++++++++++++-----
 3 files changed, 119 insertions(+), 27 deletions(-)

commit ac01fe753468b0ba48dfa65c67c95e40735eadb8
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Jul 18 03:17:37 2002 +0000

    Commit so that we can branch
    
    2002-07-17  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_type_info_new) : no need to preload the icon.
        (mime_type_info_load_all) : nor here.

 capplets/file-types/ChangeLog        |  5 +++++
 capplets/file-types/mime-type-info.c | 13 ++++---------
 2 files changed, 9 insertions(+), 9 deletions(-)

commit 716e15d586ed59f5dad358ec34d7c7ece4152daa
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Wed Jul 17 19:46:40 2002 +0000

    Updated Estonian translation.
    
    2002-07-17  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 +
 po/et.po     | 726 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 405 insertions(+), 325 deletions(-)

commit 2b7222a05bdca7936e2a4707ea471ec59e888827
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Wed Jul 17 18:48:31 2002 +0000

    Updated Malay Translation.
    
    2002-07-17  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 805 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 443 insertions(+), 366 deletions(-)

commit 8170f2b37c8ee436541f5ccfba827d35c0c1f77f
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 17 13:50:59 2002 +0000

    tweak the padding a touch
    
    
    2002-07-17  Jody Goldberg <jody@gnome.org>
    
        * file-types-properties.glade : tweak the padding a touch

 capplets/file-types/ChangeLog                   |  4 ++++
 capplets/file-types/file-types-properties.glade | 16 +++++++++-------
 2 files changed, 13 insertions(+), 7 deletions(-)

commit e0c75d1358136878ce849e903de5e1e9c2b6d92b
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Jul 17 08:53:01 2002 +0000

    Updated Swedish translation.
    
    2002-07-17  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 451 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 246 insertions(+), 209 deletions(-)

commit 82c39eb541c416c9e8941a18ae7a0e5b626688b2
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 17 04:29:11 2002 +0000

    only enable the remove button when there is a selection.
    
    
    2002-07-17  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_edit_dialog_init) : only enable the remove
          button when there is a selection.

 capplets/file-types/ChangeLog                   |  5 ++++
 capplets/file-types/file-types-properties.glade | 31 ++++++++++++++++----
 capplets/file-types/mime-edit-dialog.c          | 39 +++++++++++++++++++++----
 3 files changed, 64 insertions(+), 11 deletions(-)

commit 76214e33c0707a52b938faf967ee68e9d9ee3ac4
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jul 17 03:17:54 2002 +0000

    missed commit

 capplets/mouse/gnome-mouse-properties.c | 18 ++----------------
 1 file changed, 2 insertions(+), 16 deletions(-)

commit b6e858deb77064d25562aed2626b1062e76cdb3a
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Jul 16 22:07:42 2002 +0000

    A Pile of pending changes

 .../keyboard/accessibility-keyboard.c              |   15 +-
 capplets/common/ChangeLog                          |    6 +
 capplets/common/gconf-property-editor.c            |    4 +-
 capplets/common/gconf-property-editor.h            |    5 +-
 capplets/file-types/ChangeLog                      |    6 +
 capplets/file-types/file-types-properties.glade    | 1204 ++++++++++----------
 capplets/file-types/mime-edit-dialog.c             |    2 +-
 capplets/keyboard/ChangeLog                        |    6 +-
 capplets/keyboard/gnome-keyboard-properties.c      |  135 +--
 capplets/keyboard/gnome-keyboard-properties.glade  |  457 +++-----
 capplets/ui-properties/behavior.desktop.in         |    2 +-
 capplets/ui-properties/gnome-ui-properties.c       |    2 +-
 capplets/ui-properties/gnome-ui-properties.glade   |   14 +-
 13 files changed, 837 insertions(+), 1021 deletions(-)

commit 52d3daae86f2ecb62ca64c0c604eac8e09e01f12
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jul 16 20:26:02 2002 +0000

    set icon.
    
    
    2002-07-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-mouse-properties.c (main) : set icon.

 capplets/mouse/ChangeLog                    | 4 ++++
 capplets/mouse/gnome-mouse-properties.c     | 1 +
 capplets/mouse/gnome-mouse-properties.glade | 2 ++
 3 files changed, 7 insertions(+)

commit fccb3d0bc662ba6fde868106c8fc517b9ffa6a1e
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Mon Jul 15 11:58:44 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 ++
 po/pl.po     | 218 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 109 insertions(+), 114 deletions(-)

commit bca4e1d9c93cbf09eab3038eaa55cfcbf1848109
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Jul 15 09:54:59 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 341 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 169 insertions(+), 176 deletions(-)

commit 854b2a2f1a2ee4bca8362cafb826e7fd46dff22a
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Jul 15 04:21:10 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 430 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 247 insertions(+), 187 deletions(-)

commit 05656955daed870de602143b6b9e7baf2ea22ee7
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Jul 13 20:14:01 2002 +0000

    Updated Swedish translation.
    
    2002-07-13  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 19 +++++++++++--------
 2 files changed, 15 insertions(+), 8 deletions(-)

commit e02af0fe782f6de7ce703450df6e5360bdce9abd
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Sat Jul 13 18:53:10 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 450 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 263 insertions(+), 191 deletions(-)

commit 86bd1a90f2242ae12a61734dd1a4c2754b2fa228
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Jul 13 15:14:38 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-06-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   5 +-
 po/no.po     | 633 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 365 insertions(+), 273 deletions(-)

commit dc1b2a770e332c478967952e32a942b88e96eca3
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Jul 13 13:29:26 2002 +0000

    Updated Danish translation.
    
    2002-07-13  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 640 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 364 insertions(+), 280 deletions(-)

commit 483c27b59c529e4b79ba49ca8980d8ac6072898c
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Jul 12 16:56:49 2002 +0000

    missed commit

 capplets/background/background-properties.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c497f9320521f9c03b650c7c6ad658bbd7aa4314
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Jul 12 16:45:33 2002 +0000

    The last of the ui-review.
    
    
    2002-07-12  Jody Goldberg <jody@gnome.org>
    
        * background-properties.glade : The last of the ui-review.

 capplets/background/ChangeLog                   | 4 ++++
 capplets/background/background-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 254edb9823f26b817d17378542aca457807a3b61
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Jul 12 11:05:41 2002 +0000

    Updated Swedish translation.
    
    2002-07-12  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   7 +-
 po/sv.po     | 427 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 244 insertions(+), 190 deletions(-)

commit 8b2af9e3d91b6331271a5c114df87043742d88cc
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Jul 11 19:09:49 2002 +0000

    doh!

 capplets/theme-switcher/theme-install.glade | 225 ++++++++++++++++++++++++++++
 1 file changed, 225 insertions(+)

commit ca9591ac24a7cc1482366e9e17798ecbf5355ede
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Jul 11 15:36:14 2002 +0000

    jody please CVS add this file
    
    2002-07-11  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: jody please CVS add this file

 po/ChangeLog   | 2 ++
 po/POTFILES.in | 1 +
 2 files changed, 3 insertions(+)

commit f28960b4568ffcdddb3d6a916304811c387657c9
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Jul 11 06:57:01 2002 +0000

    remove theme-install glade file...
    
    2002-07-11  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: remove theme-install glade file...

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 2c01403ed3987daf8a9cbab23a0a2ded3022748a
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jul 10 23:42:06 2002 +0000

    ui review

 capplets/file-types/file-types-properties.glade | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit f71755edc4c9f6144dad0732c6e4dc79cc47f2be
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 23:36:40 2002 +0000

    set the icon here.
    
    
    2002-07-10  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_edit_dialog_init) : set the icon here.

 capplets/file-types/ChangeLog             |  4 ++++
 capplets/file-types/file-types-capplet.c  | 19 ++++++++++---------
 capplets/file-types/mime-edit-dialog.c    | 12 +++++++-----
 capplets/file-types/mime-edit-dialog.h    |  4 ++--
 capplets/file-types/service-edit-dialog.c |  5 ++---
 capplets/file-types/service-edit-dialog.h |  2 +-
 6 files changed, 26 insertions(+), 20 deletions(-)

commit 7bb012af08d39aaa9819dae44f3d930fc9464d35
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jul 10 21:45:45 2002 +0000

    ui review

 capplets/file-types/file-types-capplet.c        | 42 +++++++++++++++----------
 capplets/file-types/file-types-properties.glade |  6 ++--
 capplets/file-types/mime-edit-dialog.c          | 15 ++++-----
 capplets/file-types/mime-edit-dialog.h          | 10 +++---
 capplets/file-types/service-edit-dialog.c       | 12 ++++---
 capplets/file-types/service-edit-dialog.h       |  6 ++--
 6 files changed, 52 insertions(+), 39 deletions(-)

commit 143608b99adbcf63e41d0cd5799dca151e7ba36c
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 21:43:35 2002 +0000

    Add theme-install glade file
    
    
    2002-07-10  Jody Goldberg <jody@gnome.org>
    
        * POTFILES.in : Add theme-install glade file

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit bfa7fc3e6d761b433b65affa516ccff5586ed497
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 21:25:27 2002 +0000

    create and destroy the dialog.
    
    
    2002-07-10  Jody Goldberg <jody@gnome.org>
    
        * theme-switcher.c (show_install_dialog) : create and destroy the
          dialog.

 capplets/theme-switcher/ChangeLog              |   5 +
 capplets/theme-switcher/Makefile.am            |   2 +-
 capplets/theme-switcher/theme-properties.glade | 207 +++----------------------
 capplets/theme-switcher/theme-switcher.c       | 192 ++++++++++++-----------
 4 files changed, 124 insertions(+), 282 deletions(-)

commit 70354bdf8f067ba07689b0b9532b6dcf061c9c13
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Wed Jul 10 17:18:55 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 273 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 158 insertions(+), 119 deletions(-)

commit 71b67b658617c1b100c821e2b127e5efa996c60d
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jul 10 17:02:59 2002 +0000

    ui-review

 NEWS                                               | 13 +++-
 .../keyboard/accessibility-keyboard.desktop.in     |  2 +-
 capplets/background/background.desktop.in          |  2 +-
 capplets/common/ChangeLog                          | 11 +++
 capplets/common/capplet-util.c                     | 26 ++++---
 capplets/common/gconf-property-editor.c            |  2 +-
 .../default-applications.desktop.in                |  2 +-
 .../Sawfish/appearance-properties.desktop.in       |  2 +-
 .../Sawfish/bindings-properties.desktop.in         |  2 +-
 .../Sawfish/focus-properties.desktop.in            |  2 +-
 .../Sawfish/match-properties.desktop.in            |  2 +-
 .../Sawfish/maximize-properties.desktop.in         |  2 +-
 .../Sawfish/meta-properties.desktop.in             |  2 +-
 .../Sawfish/misc-properties.desktop.in             |  2 +-
 .../Sawfish/move-properties.desktop.in             |  2 +-
 .../Sawfish/placement-properties.desktop.in        |  2 +-
 .../Sawfish/sound-properties.desktop.in            |  2 +-
 .../Sawfish/workspace-properties.desktop.in        |  2 +-
 capplets/file-types/file-types.desktop.in          |  2 +-
 capplets/font/font-properties.desktop.in           |  2 +-
 capplets/keybindings/eggcellrendererkeys.c         |  6 +-
 capplets/keybindings/gnome-keybinding-properties.c | 51 +++++++------
 .../keybindings/gnome-keybinding-properties.glade  | 87 +++++-----------------
 capplets/keybindings/keybinding.desktop.in         |  2 +-
 capplets/keyboard/keyboard.desktop.in              |  2 +-
 capplets/mime-type/mime-data.c                     | 14 ++--
 capplets/mime-type/mime-info.c                     |  8 +-
 capplets/mouse/mouse.desktop.in                    |  2 +-
 capplets/sound/sound-properties.glade              |  2 +-
 capplets/sound/sound.desktop.in                    |  2 +-
 .../theme-switcher/gtk-theme-selector.desktop.in   |  2 +-
 capplets/ui-properties/behavior.desktop.in         |  2 +-
 capplets/windows/gnome-window-properties.glade     |  2 +-
 33 files changed, 127 insertions(+), 139 deletions(-)

commit 6f4eb48226d9fd60b83adc33fa0c49f211009096
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jul 10 16:56:09 2002 +0000

    ui review

 capplets/theme-switcher/theme-properties.glade | 57 ++------------------------
 capplets/theme-switcher/theme-switcher.c       |  2 +-
 2 files changed, 5 insertions(+), 54 deletions(-)

commit fa081bdc60b85dd7a04e3ee6c6c8e7a7ec7efd39
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 16:37:46 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85929 validate. This is not the
    
    
    2002-07-10  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85929
        * gnome-network-preferences.c (extract_proxy_host) : validate.
          This is not the prettiest way to do this, but it is effective.

 capplets/network/ChangeLog                         |   6 +
 capplets/network/gnome-network-preferences.c       |  34 +-
 .../network/gnome-network-preferences.desktop.in   |   4 +-
 capplets/network/gnome-network-preferences.glade   | 441 ++++++++++-----------
 4 files changed, 256 insertions(+), 229 deletions(-)

commit 19558b6f24447c2dbce1459e6ae7453046a242f4
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Wed Jul 10 16:23:56 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +++
 po/ca.po     | 116 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 62 insertions(+), 58 deletions(-)

commit 1166d998bf7d689b9d3563c0826ba33b758eaca5
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 15:43:45 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85233 register the custom
    
    
    2002-07-10  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85233
        * gnome-mouse-properties.c (create_dialog) : register the custom
          checkbox for glade.
        * gnome-mouse-properties.glade : Use the custom checkbox.

 capplets/mouse/ChangeLog                    |  7 ++++++
 capplets/mouse/gnome-mouse-properties.c     | 39 +++++++++++++++++++++++++++++
 capplets/mouse/gnome-mouse-properties.glade |  2 +-
 3 files changed, 47 insertions(+), 1 deletion(-)

commit d99a5aae8eaae7fa21302dafd6a5dc627ea131b3
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 14:42:26 2002 +0000

    disable the use of category defaults disable editing category handlers.
    
    
    2002-07-09  Jody Goldberg <jody@gnome.org>
    
        * file-types-properties.glade : disable the use of category defaults
        * file-types-capplet.c (launch_edit_dialog) : disable editing category
          handlers.

 capplets/file-types/ChangeLog                   |  6 ++++++
 capplets/file-types/file-types-capplet.c        |  2 ++
 capplets/file-types/file-types-properties.glade | 16 ----------------
 capplets/file-types/mime-edit-dialog.c          | 15 ---------------
 4 files changed, 8 insertions(+), 31 deletions(-)

commit 3bf58de5361abc645b08dede672bc36b60d40e8d
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 10 14:42:06 2002 +0000

    patch from Brian Cameron
    
    
    2002-07-10  Jody Goldberg <jody@gnome.org>
        patch from Brian Cameron
    
        * configure.in : look for path to esound

 ChangeLog                                    |  5 +++++
 configure.in                                 | 10 ++++++++++
 gnome-settings-daemon/Makefile.am            |  4 +++-
 gnome-settings-daemon/gnome-settings-sound.c |  2 +-
 4 files changed, 19 insertions(+), 2 deletions(-)

commit 06b5ffb421454d56a295e5f38faaffb504a5521b
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Jul 9 11:02:19 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |  4 ++++
 po/ko.po     | 61 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 36 insertions(+), 29 deletions(-)

commit fcd920f6270f59dae2de09d4c05937dde7c6e7b4
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Mon Jul 8 10:29:13 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 +++++
 po/pl.po     | 17 +++++++++--------
 2 files changed, 14 insertions(+), 8 deletions(-)

commit 0fd9da295cacac4c95877284d41375744eceefc0
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Sat Jul 6 20:23:55 2002 +0000

    Updated Estonian translation.
    
    2002-07-06  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 ++
 po/et.po     | 152 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 87 insertions(+), 69 deletions(-)

commit 03536c59c3394d0e8030d9a4bda2e51a5177d075
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Jul 5 21:18:51 2002 +0000

    Updated Swedish translation.
    
    2002-07-05  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 65 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 37 insertions(+), 32 deletions(-)

commit 69c4613e95d2a061c870593f2103eb7cde502f58
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Jul 5 18:23:18 2002 +0000

    do the real work in an idle (transfer_done_idle_cb): do the real work
    
    2002-07-05  jacob berkman  <jacob@ximian.com>
    
        * theme-switcher.c (transfer_done_cb): do the real work in an idle
        (transfer_done_idle_cb): do the real work
    
        this fixes bug #86141 - i don't understand why, but some very evil
        things seem to have been happening.  see that bug for details.

 capplets/theme-switcher/ChangeLog        |  8 +++++++
 capplets/theme-switcher/theme-switcher.c | 40 +++++++++++++++++++++++---------
 2 files changed, 37 insertions(+), 11 deletions(-)

commit 8f8dbd63fa30d9e18025b2addd556ca9ff09bdbf
Author: Christophe Fergeau <cfergeau@src.gnome.org>
Date:   Thu Jul 4 16:37:43 2002 +0000

    Updated French translation

 po/ChangeLog |   5 +
 po/fr.po     | 528 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 253 insertions(+), 280 deletions(-)

commit 6fb33214ca5256533221ef5977301c576e2da506
Author: Manuel Borchers <webmaster@matronix.de>
Date:   Thu Jul 4 12:04:44 2002 +0000

    Updated German translation.
    
    2002-07-04  Manuel Borchers  <webmaster@matronix.de>
    
            * de.po: Updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 2181 ++++++++++++++--------------------------------------------
 2 files changed, 510 insertions(+), 1675 deletions(-)

commit fd017f2b87aa93c44822d5d17d8bc20e6c8d642b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Jul 3 12:07:54 2002 +0000

    updated Vietnamese file

 po/ChangeLog |   4 +
 po/vi.po     | 431 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 224 insertions(+), 211 deletions(-)

commit 0e26aa3af224704b53b4a6a4d84d1a2e46fd0c08
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 3 03:26:48 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85629 Make wider to avoid
    
    
    2002-07-02  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85629
        * font-properties.glade  : Make wider to avoid clipping.

 capplets/font/ChangeLog             | 5 +++++
 capplets/font/font-properties.glade | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 5f9e193597214f6b15a337716ef8f73c555724a8
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jul 3 02:48:12 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=84014 unescape the path.
    
    
    2002-07-02  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=84014
        * background-properties-capplet.c (drag_data_received_cb) : unescape
          the path.

 capplets/background/ChangeLog                      |  10 +
 .../background/background-properties-capplet.c     |  14 +-
 capplets/background/main.c                         | 314 ---------------------
 3 files changed, 17 insertions(+), 321 deletions(-)

commit ef1bbd011991ba3a31e2665b57d67a882dfad45d
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Sun Jun 30 01:06:08 2002 +0000

    Updated Estonian translation.
    
    2002-06-30  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 +
 po/et.po     | 389 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 213 insertions(+), 180 deletions(-)

commit 61cddb8dc35cb8898b0320000d22923aecbd294c
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Thu Jun 27 22:07:57 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 +
 po/ca.po     | 270 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 157 insertions(+), 117 deletions(-)

commit 1eeebe40c99bfcfde699733ea3389e30acee72ac
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Jun 27 18:30:15 2002 +0000

    fix and move the code into capplet_set_icon.
    
    2002-06-27  Jody Goldberg <jody@gnome.org>
    
        * gnome-keybinding-properties.c (setup_dialog) : fix and move the code
          into capplet_set_icon.
    
    2002-06-27  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=86593
        * main.c (setup_dialog) : watch for missing icons
    
    2002-06-27  Jody Goldberg <jody@gnome.org>
    
        * capplet-util.c (capplet_set_icon) : new util.

 capplets/common/ChangeLog                          |  4 ++++
 capplets/common/capplet-util.c                     | 26 ++++++++++++++++++++++
 capplets/common/capplet-util.h                     |  1 +
 capplets/font/ChangeLog                            |  5 +++++
 capplets/font/main.c                               |  8 +------
 capplets/keybindings/ChangeLog                     |  5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 10 +--------
 7 files changed, 43 insertions(+), 16 deletions(-)

commit 5719b6cda442b910fba31f45470f3de21c800513
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Jun 27 01:44:51 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=86575 handle missing pixmaps
    
    
    2002-06-26  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=86575
        * gnome-keybinding-properties.c (setup_dialog) : handle missing
          pixmaps more smoothly.

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 5 +++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 6e5233869cc82dcf9dbfbe9e19a240897f9b8052
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Jun 27 01:17:39 2002 +0000

    be anal.
    
    
    2002-06-26  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_category_info_save) : be anal.

 capplets/file-types/ChangeLog        | 1 +
 capplets/file-types/mime-type-info.c | 5 ++---
 2 files changed, 3 insertions(+), 3 deletions(-)

commit f8d3fe9e7c3087f74b9ab39acfb21dd57d0c8d92
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 26 23:36:59 2002 +0000

    do not trust gnome_vfs_mime_get_default_application. It silently removes
    
    
    2002-06-26  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_type_info_load_all) : do not trust
          gnome_vfs_mime_get_default_application.  It silently removes
          applications that do not exist on the current system.  That makes it
          look like they are not being assigned.
    
        * mime-edit-dialog.c (validate_data) : relax the restriction here.  By
          supplying a reasonable default to the new info it was appearing in
          our internal data structures.  That was a useful test before we were
          instant apply, but is no longer helpful.

 capplets/file-types/ChangeLog          | 12 ++++++++++++
 capplets/file-types/mime-edit-dialog.c |  3 +--
 capplets/file-types/mime-type-info.c   | 14 ++++++++++++--
 3 files changed, 25 insertions(+), 4 deletions(-)

commit 2fe0927aa176f95db978d39044d0449a75ccfa0f
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jun 26 19:19:46 2002 +0000

    How did that happen

 libbackground/applier.c | 1 -
 1 file changed, 1 deletion(-)

commit 94c5bf6c1863cd9984a60f4a2d038ce916d1a831
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed Jun 26 14:37:21 2002 +0000

    start following the same convention as gnumeric

 NEWS | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 5651fb510e6ac80ffb97f305558c36d40f6cbf61
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 26 14:34:22 2002 +0000

    blah, test things _before_ I commit.
    
    
    2002-06-26  Jody Goldberg <jody@gnome.org>
    
        * file-types-capplet.c (main) : blah, test things _before_ I commit.

 capplets/file-types/ChangeLog            |  4 ++++
 capplets/file-types/file-types-capplet.c | 10 ++++------
 2 files changed, 8 insertions(+), 6 deletions(-)

commit e15d737a93a6442c6d65585b513edccee67a53a3
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 26 03:29:17 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85224 clamp to avoid underflow
    
    
    2002-06-18  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85224
        * applier.c (render_wallpaper) : clamp to avoid underflow

 ChangeLog                                                     |  5 -----
 capplets/accessibility/keyboard/ChangeLog                     |  5 +++++
 .../keyboard/gnome-accessibility-keyboard-properties.c        |  6 ++----
 libbackground/ChangeLog                                       |  5 +++++
 libbackground/applier.c                                       | 11 ++++++++---
 5 files changed, 20 insertions(+), 12 deletions(-)

commit 5654a0eb75f9d5325734205787670c9149a7dcc5
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 26 02:23:55 2002 +0000

    add de
    
    
    2002-06-25  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_add_dialog_new) : add de
    
        * file-types-capplet.c (main) : fix cmd line arg support
          And support optional 'file_name' as a helper for generating smarter
          defaults.

 capplets/file-types/ChangeLog            |  8 ++++++++
 capplets/file-types/file-types-capplet.c | 35 ++++++++++++++++++++++++--------
 capplets/file-types/mime-edit-dialog.c   | 33 +++++++++++++++++++++++++-----
 capplets/file-types/mime-edit-dialog.h   |  3 ++-
 4 files changed, 64 insertions(+), 15 deletions(-)

commit 174194cf49d085b5371ff5394f9331ceaf4f81e8
Author: Jesus Bravo Alvarez <jesusb@src.gnome.org>
Date:   Wed Jun 26 00:11:04 2002 +0000

    Updated Galician translation

 po/ChangeLog |    5 +
 po/gl.po     | 2581 ++++++++++++++--------------------------------------------
 2 files changed, 637 insertions(+), 1949 deletions(-)

commit f785602052622d75bf3e071bd2e5165c0b4f909b
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jun 25 17:32:38 2002 +0000

    Updated Slovenian translation

 po/sl.po | 270 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 151 insertions(+), 119 deletions(-)

commit 0696d2330ca00a1d215583c188d8ea6f647743b3
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jun 25 15:06:44 2002 +0000

    typo.
    
    
    2002-06-25  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_edit_dialog_get_app) : typo.

 capplets/file-types/ChangeLog          | 4 ++++
 capplets/file-types/mime-edit-dialog.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9ea4a855e7d33522c373582b36e009b79821cee7
Author: James Henstridge <james@daa.com.au>
Date:   Tue Jun 25 09:14:35 2002 +0000

    commented lines ending in a trailing backslash are not a good idea.
    
    2002-06-25  James Henstridge  <james@daa.com.au>
    
            * gnome-settings-daemon/Makefile.am: commented lines ending in a
            trailing backslash are not a good idea.

 ChangeLog                         | 5 +++++
 gnome-settings-daemon/Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit e3f52a146bf2adb8756ab23734d38ff1ed489b68
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Jun 25 07:31:33 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 224 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 118 insertions(+), 110 deletions(-)

commit 5c8de754b59aae0e7318bb2347ccceb4191ce815
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Mon Jun 24 21:33:54 2002 +0000

    CVS_SILENT

 po/tr.po | 111 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 68 insertions(+), 43 deletions(-)

commit 7f074efb2c708addbbe3aeb260c71c825f0d8301
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Mon Jun 24 19:13:32 2002 +0000

    CVS_SILENT

 po/tr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 53711a409575ddedcc3da1f28c11d41d0e7aafff
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Mon Jun 24 19:10:22 2002 +0000

    CVS_SILENT

 po/tr.po | 817 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 372 insertions(+), 445 deletions(-)

commit b7b22259ff101630cc09a450d9b4fb12c4e4e361
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Mon Jun 24 05:08:32 2002 +0000

    Updated Bulgarian translation.
    
    2002-06-24  Yanko Kaneti <yaneti@declera.com>
    
            * bg.po: Updated Bulgarian translation.

 po/ChangeLog |   4 +
 po/bg.po     | 251 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 147 insertions(+), 108 deletions(-)

commit 95374d0c46c098a8c68c87304be733b2e8021ed1
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sun Jun 23 17:37:48 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |    5 +
 po/pl.po     | 1087 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 552 insertions(+), 540 deletions(-)

commit f352cb17ba8ee4d0aa3ddb24e217e8a5f173f9ac
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jun 23 09:41:43 2002 +0000

    Updated Swedish translation.
    
    2002-06-23  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 268 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 156 insertions(+), 116 deletions(-)

commit be4f498c5af10e1cfcb1a6b8a4022e7f179834df
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sat Jun 22 11:17:49 2002 +0000

    Updated Malay Translation.
    
    2002-06-22  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 731 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 350 insertions(+), 385 deletions(-)

commit cfeb09ab46dd1258d6aab15ff0fa18a5fe87e0da
Author: Stephen Browne <stephen@src.gnome.org>
Date:   Fri Jun 21 13:29:29 2002 +0000

    Moved window manager detection code from keybindings capplet to common

 capplets/common/ChangeLog                          |   6 +
 capplets/common/Makefile.am                        |   3 +-
 capplets/common/wm-common.c                        | 149 ++++++++++++++++++++
 capplets/common/wm-common.h                        |  13 ++
 capplets/keybindings/ChangeLog                     |   6 +
 capplets/keybindings/gnome-keybinding-properties.c | 155 +--------------------
 6 files changed, 183 insertions(+), 149 deletions(-)

commit ebc124d248b1d3f7835a39ec684705c14b173d02
Author: Satyajit Kanungo <satyak@src.gnome.org>
Date:   Fri Jun 21 06:18:21 2002 +0000

    Fixed #85895

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit f97b330c7e0d1dccb9afef2cdf2a8e9785e6b2f5
Author: Satyajit Kanungo <satyak@src.gnome.org>
Date:   Fri Jun 21 06:13:17 2002 +0000

    Corrected the help link

 .../keyboard/gnome-accessibility-keyboard-properties.c         | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit db666ce20dc3f207dfd02f5600ec20e9382ddcbe
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Wed Jun 19 23:26:46 2002 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 562 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 287 insertions(+), 279 deletions(-)

commit 394f64e38c47d93fd95c9ca9acb40e0d4aeaf5c2
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Jun 19 22:46:39 2002 +0000

    fix build
    
    2002-06-19  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am: fix build

 gnome-settings-daemon/ChangeLog   | 4 ++++
 gnome-settings-daemon/Makefile.am | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit ec5114d04c8ad40be7f4296bfd95d6aac4acb874
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Jun 19 18:51:06 2002 +0000

    fixup
    
    2002-06-19  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: fixup

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0977fadab045ec868cb3c085258ce6cd264846d2
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 19 00:21:26 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85628 The dialog - should not be
    
    
    2002-06-18  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85628
        * background-properties-capplet.c (main) : The dialog
            - should not be modal
            - has no parent to destroy with
            - and should have a seperator
            - set default response

 capplets/background/ChangeLog                       |  9 +++++++++
 capplets/background/background-properties-capplet.c | 16 +++++++++-------
 capplets/background/background-properties.glade     |  2 +-
 3 files changed, 19 insertions(+), 8 deletions(-)

commit 9ae0ce4eeb5a87f6f46c47d8c9334b8f6f0d3a52
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Jun 18 22:53:48 2002 +0000

    Typo fix.

 po/ChangeLog | 4 ++++
 po/ca.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit fb112f7d4b92bfc19753590a84f2250a28b04458
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jun 18 21:59:15 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85003 copy the string before
    
    
    2002-06-18  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85003
        * capplet-dir.c (capplet_dir_new) : copy the string before inserting
          in hash.

 control-center/ChangeLog     | 6 ++++++
 control-center/capplet-dir.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 961f08cd6233ea0f2273a55a6aa5206cac50a732
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Jun 18 19:29:45 2002 +0000

    fixup localedir to work with solaris gettext (fixes bug #83616)
    
    2002-06-18  jacob berkman  <jacob@ximian.com>
    
        * configure.in:
        * archiver/Makefile.am:
        * capplets/common/Makefile.am:
        * control-center/Makefile.am:
        * libbackground/Makefile.am:
        * libwindow-settings/Makefile.am:
        * root-manager/Makefile.am: fixup localedir to work with solaris
        gettext (fixes bug #83616)

 ChangeLog                      | 11 +++++++++++
 archiver/Makefile.am           |  2 +-
 capplets/common/Makefile.am    |  2 +-
 configure.in                   |  2 +-
 control-center/Makefile.am     |  4 ++--
 libbackground/Makefile.am      |  3 +--
 libwindow-settings/Makefile.am |  2 +-
 root-manager/Makefile.am       |  2 +-
 8 files changed, 19 insertions(+), 9 deletions(-)

commit b4995826e869a6e1eb1c88fec58010e3cf860812
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Jun 18 18:55:14 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85397
    
    2002-06-15  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85397
        http://bugzilla.gnome.org/show_bug.cgi?id=84545
        * mime-types-model.c (mime_types_model_get_value) :
          gtk_tree_view_search_equal_func does not like NULL.
        (IS_CATEGORY) : check for NULL.
        * file-types-capplet.c (create_dialog) : search the description not
          the mime type.
    
    2002-06-08  Jody Goldberg <jody@gnome.org>
    
        * mime-types-model.c (IS_CATEGORY) : test for null in case we are
          stupid.
    
    2002-06-07  Jody Goldberg <jody@gnome.org>
    
        * file-types-capplet.c (dialog_done_cb) : no need to save things
          again.  The only caller had already done that.
    
        * mime-type-info.c (mime_type_info_save) : Don't mess with the
          application here, it should already be setup.  However, be really
          really anal about verifying it because I do not trust the
          surrounding code or know it well enough to trust it.  Make sure that
          the assigned app is on the short list of associated apps.
    
        * mime-category-edit-dialog.c (store_data) : Use
          mime_edit_dialog_get_app.
        * mime-edit-dialog.c (store_data) : Use it here too.
        (mime_edit_dialog_get_app) : new.  split some duplicated code out of
          the type and category dialogs and move it here.  Then make it
          readable and less stupid about creating copies of existing
          applications.  While we're at it have it handle the creation of new
          applications, merging commands with existing applications and other
          useful stuff.
    
    2002-06-07  Jody Goldberg <jody@gnome.org>
    
        * mime-category-edit-dialog.c (store_data) : clarify and remove the
          custom flag.
    
        * mime-type-info.c (mime_category_info_using_custom_app) : delete.
        (mime_type_info_using_custom_app) : delete.
    
        * mime-edit-dialog.c (validate_data) : correct the warning about
          invalid type, we would _not_ create one for the user :-(
          Allow a user to optionally overwrite an existing mime type.
          This is useful when editing.
        * mime-edit-dialog.c (store_data) : clarify and remove the custom flag.
    
    
    2002-06-10  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c : tweak the layout as requested and adjust
          the max slowkey delay to 500 to avoid losing the keyboard due to some
          sort of an X problem.
    
    2002-06-13  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (accessibility_button_clicked) : produce
          a better warning for failure to launch the keyboard accessibility
          capplet.

 capplets/accessibility/keyboard/ChangeLog          |    6 +
 capplets/accessibility/keyboard/Makefile.am        |    5 +-
 .../keyboard/accessibility-keyboard.c              |  188 ++-
 .../keyboard/accessibility-keyboard.h              |    2 +-
 .../gnome-accessibility-keyboard-properties.c      |   18 +-
 .../gnome-accessibility-keyboard-properties.glade  | 1430 +++++++++++++++++++
 .../gnome-accessibility-keyboard-properties.glade2 | 1464 --------------------
 capplets/common/ChangeLog                          |    5 +
 capplets/common/capplet-util.c                     |   48 +-
 capplets/common/capplet-util.h                     |    1 +
 capplets/file-types/ChangeLog                      |   52 +-
 capplets/file-types/file-types-capplet.c           |    6 +-
 capplets/file-types/mime-category-edit-dialog.c    |   40 +-
 capplets/file-types/mime-edit-dialog.c             |  169 ++-
 capplets/file-types/mime-edit-dialog.h             |    3 +
 capplets/file-types/mime-type-info.c               |  147 +-
 capplets/file-types/mime-type-info.h               |    5 +-
 capplets/keyboard/ChangeLog                        |    6 +
 capplets/keyboard/gnome-keyboard-properties.c      |    6 +-
 gnome-settings-daemon/Makefile.am                  |    7 +
 20 files changed, 1805 insertions(+), 1803 deletions(-)

commit 50ce2ab6daadba08a768bc03d8f45c99296aa0e3
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Jun 18 18:31:43 2002 +0000

    updated Vietnamese file

 po/ChangeLog |   4 +++
 po/vi.po     | 103 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 74 insertions(+), 33 deletions(-)

commit f003dd7a2ddb6c869352e49628dbbb500256ac58
Author: Satyajit Kanungo <satyak@src.gnome.org>
Date:   Tue Jun 18 18:00:12 2002 +0000

    Changed help callback

 control-center/ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 2bcca2279e06447686870a9be91e4d1f4ada768e
Author: Satyajit Kanungo <satyak@src.gnome.org>
Date:   Tue Jun 18 17:57:18 2002 +0000

    Put the help callback.

 control-center/capplet-dir-view.c | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

commit b70bd022d208c2aa0116deef143d82822b630eba
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jun 18 17:36:26 2002 +0000

    Updated Slovenian translation

 po/sl.po | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 96a33b67f8e3f27289653af0cddbd58636c7c5e2
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Jun 17 22:10:21 2002 +0000

    Release 2.0.0
    
    
    2002-06-17  Jody Goldberg <jody@gnome.org>
    
        * Release 2.0.0

 ChangeLog                                 |    4 +
 archiver/ChangeLog                        |    4 +
 archiver/tests/ChangeLog                  |    4 +
 capplets/accessibility/keyboard/ChangeLog |    4 +
 capplets/background/ChangeLog             |    4 +
 capplets/common/ChangeLog                 |    4 +
 capplets/default-applications/ChangeLog   |    4 +
 capplets/desktop-links/ChangeLog          |    4 +
 capplets/file-types/ChangeLog             |    4 +
 capplets/font/ChangeLog                   |    4 +
 capplets/keybindings/ChangeLog            |    4 +
 capplets/keyboard/ChangeLog               |    4 +
 capplets/mime-type/ChangeLog              |    4 +
 capplets/mouse/ChangeLog                  |    4 +
 capplets/network/ChangeLog                |    4 +
 capplets/rollback/ChangeLog               |    4 +
 capplets/sound/ChangeLog                  |    4 +
 capplets/theme-switcher/ChangeLog         |    4 +
 capplets/ui-properties/ChangeLog          |    4 +
 capplets/url-properties/ChangeLog         |    4 +
 capplets/windows/ChangeLog                |    4 +
 capplets/wm-properties/ChangeLog          |    4 +
 configure.in                              |    2 +-
 control-center/ChangeLog                  |    4 +
 gnome-settings-daemon/ChangeLog           |    4 +
 help/ChangeLog                            |    4 +
 libbackground/ChangeLog                   |    4 +
 libwindow-settings/ChangeLog              |    4 +
 po/ChangeLog                              |    4 +
 po/ar.po                                  |  953 +++++++++++-------------
 po/az.po                                  |  695 ++++++------------
 po/bg.po                                  |    2 +-
 po/ca.po                                  |    2 +-
 po/cs.po                                  |  941 +++++++++++-------------
 po/da.po                                  |    2 +-
 po/de.po                                  |  708 ++++++------------
 po/el.po                                  | 1008 ++++++++++++-------------
 po/en_GB.po                               |  596 ++++-----------
 po/es.po                                  |    2 +-
 po/et.po                                  |  732 +++++++-----------
 po/fi.po                                  |  277 ++++---
 po/fr.po                                  |  960 +++++++++++-------------
 po/ga.po                                  |  750 +++++++------------
 po/gl.po                                  |  981 +++++++++++--------------
 po/hr.po                                  |  887 ++++++++++------------
 po/hu.po                                  |  991 +++++++++++--------------
 po/it.po                                  |  991 +++++++++++--------------
 po/ja.po                                  | 1002 ++++++++++++-------------
 po/ko.po                                  |    2 +-
 po/lt.po                                  |  112 ++-
 po/lv.po                                  | 1000 ++++++++++++-------------
 po/ms.po                                  |  721 ++++++------------
 po/nl.po                                  |   63 +-
 po/nn.po                                  |  748 +++++++------------
 po/no.po                                  |    2 +-
 po/pl.po                                  |  974 ++++++++++++------------
 po/pt.po                                  |    2 +-
 po/pt_BR.po                               | 1142 ++++++++++++++---------------
 po/ro.po                                  | 1023 ++++++++++++--------------
 po/ru.po                                  |    2 +-
 po/sk.po                                  |   30 +-
 po/sl.po                                  |   30 +-
 po/sv.po                                  |    2 +-
 po/tr.po                                  |  692 ++++++-----------
 po/uk.po                                  |  181 +++--
 po/vi.po                                  |    2 +-
 po/wa.po                                  |  738 +++++++------------
 po/zh_CN.po                               |  733 ++++++------------
 po/zh_TW.po                               |    2 +-
 69 files changed, 8766 insertions(+), 12029 deletions(-)

commit 91d6c539779abc9319f1d98f6a1bf69cefd3839d
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Jun 17 21:22:12 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85327 These strings do look
    
    
    2002-06-17  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85327
        * gnome-settings-xsettings.c (translate_string_string) : These strings
          do look wrong.  The capplet is setting the keys from the schema.
          we were not mapping them to the write xsettings.  It did not really
          matter because we were not using xsettings to communicate these
          values.

 gnome-settings-daemon/ChangeLog                  | 9 +++++++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 7f1c6805e7bdce2b5f25472794a5cfa61a813b84
Author: Jody Goldberg <jody@gnome.org>
Date:   Sun Jun 16 03:57:23 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=85397
    
    
    2002-06-15  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=85397
        http://bugzilla.gnome.org/show_bug.cgi?id=84545
        * mime-types-model.c (mime_types_model_get_value) :
          gtk_tree_view_search_equal_func does not like NULL.
        (IS_CATEGORY) : check for NULL.

 capplets/file-types/ChangeLog          | 8 +++++++-
 capplets/file-types/mime-types-model.c | 8 ++++----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 1d086cb65edf94f07942a826b7d5f1714dd7374b
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Sat Jun 15 21:17:00 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

commit 968d06c7e3deef07776eff06f2abd4969be788c4
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat Jun 15 20:15:53 2002 +0000

    Updated Portuguese translation.
    
    2002-06-15  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 965 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 450 insertions(+), 519 deletions(-)

commit de386046d4242bcc63261df7b9f97f00b550d0a9
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Sat Jun 15 10:53:07 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit d39b010bd12b55ec7eeae2244c002ebac974cb72
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Sat Jun 15 10:32:25 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 2c4f7dce4249441f5bf358885197bc98171a7e86
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Sat Jun 15 10:20:42 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 77 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 38 insertions(+), 39 deletions(-)

commit 7af37adcf2303932f8cf196de48eaf6be0e0ddaa
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Sat Jun 15 10:01:41 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 821 +++++++++++++++------------------------------------------------
 1 file changed, 193 insertions(+), 628 deletions(-)

commit 09d7f7b4e9175f829876653958821fc29168e070
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Thu Jun 13 05:45:32 2002 +0000

    *** empty log message ***

 po/ChangeLog | 1 +
 1 file changed, 1 insertion(+)

commit df70939e4bf0162e12caa8111fa2656e4f4a44f6
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Thu Jun 13 04:14:32 2002 +0000

    Updated traditional Chinese translation.
    
    2002-06-13  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 +++
 po/zh_TW.po  | 108 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 59 insertions(+), 53 deletions(-)

commit 56dd80607c530c05cbfe202ad6af2ea094864859
Author: Vincent van Adrighm <V.vanAdrighem@dirck.mine.nu>
Date:   Wed Jun 12 18:25:19 2002 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2002-06-12 Vincent van Adrighm <V.vanAdrighem@dirck.mine.nu>
        * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |    4 +
 po/nl.po     | 1059 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 500 insertions(+), 563 deletions(-)

commit 1eb391952f29b1e7a2dae161cd5b231871558cce
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Wed Jun 12 17:36:20 2002 +0000

    Updated traditional Chinese translation.
    
    2002-06-13  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |    4 +
 po/zh_TW.po  | 1091 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 510 insertions(+), 585 deletions(-)

commit 7eaed7842ee3aa2eb8c6e70dd7ce4068f2a5faa6
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 12 13:50:21 2002 +0000

    add some bounds checking.
    
    
    2002-06-10  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) :
          add some bounds checking.

 gnome-settings-daemon/ChangeLog                               | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 3 +++
 2 files changed, 8 insertions(+)

commit 713c082241d2e6f29dd044a1d65adc880ffdeb01
Author: Andrew V. Samoilov <andrew@src.gnome.org>
Date:   Wed Jun 12 08:05:34 2002 +0000

    Updated Ukrainian translation.
    
    * uk.po: Updated Ukrainian translation.

 po/ChangeLog |   4 ++
 po/uk.po     | 143 ++++++++++++++++++++++-------------------------------------
 2 files changed, 56 insertions(+), 91 deletions(-)

commit 165b2dbf77f3cc18da7cc397df29c203d405c437
Author: Yanko Kaneti <yaneti@src.gnome.org>
Date:   Tue Jun 11 19:34:06 2002 +0000

    Updated Bulgarian translation. translate the only untranslated string

 po/bg.po | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

commit d986118609d0533ca8585fb9a495da9ef61e76ab
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   Tue Jun 11 06:30:57 2002 +0000

    added translation_credits' translation =D

 po/pt_BR.po | 4 ++++
 1 file changed, 4 insertions(+)

commit ba409ba8fa4261e2f0f8f4ee0f61b7739d0d7ee6
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Jun 10 20:17:47 2002 +0000

    hide the keyclick slider.
    
    2002-06-10  jacob berkman  <jacob@ximian.com>
    
        * gnome-keyboard-properties.glade: hide the keyclick slider.
    
        fixes #78015
    
        reviewed/approved by jrb, luis, jody

 capplets/keyboard/ChangeLog                       | 8 ++++++++
 capplets/keyboard/gnome-keyboard-properties.glade | 7 +++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit fc08e1d8e774a0e4b5f02ed9f575ea2ce9c6c46e
Author: Ole Laursen <olau@hardworking.dk>
Date:   Mon Jun 10 19:42:55 2002 +0000

    Updated Danish translation.
    
    2002-06-10  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 38 ++++++++++++++++++++++++++++++++++++--
 2 files changed, 40 insertions(+), 2 deletions(-)

commit 0bf72e9a3e07af0c6567f4f3c8ef501535f09a0c
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Mon Jun 10 17:04:04 2002 +0000

    Updated Bulgarian translation.
    
    2002-06-10  Yanko Kaneti <yaneti@declera.com>
    
       * bg.po: Updated Bulgarian translation.

 po/ChangeLog |  4 ++++
 po/bg.po     | 36 +++++++++++++++++++++++++++++++++++-
 2 files changed, 39 insertions(+), 1 deletion(-)

commit 8a2c6c4a2e1cead5dd15203e1e6d931aecfa49ea
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Mon Jun 10 14:30:59 2002 +0000

    Updated Finnish translation.
    
    2002-06-10  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 316 ++++++++++++++++++++++-------------------------------------
 2 files changed, 123 insertions(+), 197 deletions(-)

commit 8697534d94996c216959341f95489a9a650b160b
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Jun 10 12:10:48 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 966 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 452 insertions(+), 518 deletions(-)

commit 22c37ea99479bfb6839ebebefd440d9ac747dd98
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Mon Jun 10 11:57:56 2002 +0000

    Updated Slovak translation.
    
    2002-06-10  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 ++++
 po/sk.po     | 68 +++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 51 insertions(+), 21 deletions(-)

commit 48cfee1e3aa185279b30bd591e77fab8a9c8d64c
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Jun 10 09:27:44 2002 +0000

    updated Vietnamese file

 po/ChangeLog |   4 +
 po/vi.po     | 989 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 457 insertions(+), 536 deletions(-)

commit 48272216f433be93c56a7d0699b0c636dfdff292
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Mon Jun 10 08:06:18 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 +++++
 po/pl.po     | 43 +++++++++++++++++++++++++++++++++++++++----
 2 files changed, 44 insertions(+), 4 deletions(-)

commit 9d7ffa6ff5eebe98f88f9057702ed9d28073986d
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Jun 10 03:10:55 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 647 +++++++++++++----------------------------------------------
 2 files changed, 139 insertions(+), 512 deletions(-)

commit 294dcce2865965d0e62da751f41168fb96697370
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Sun Jun 9 22:23:13 2002 +0000

    Catalan fixes.

 po/ChangeLog |  4 ++++
 po/ca.po     | 14 ++++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit 0dfb5ced077a88128771ab85513fff6f80cda1ff
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Jun 9 19:51:10 2002 +0000

    Updated Slovenian translation

 po/sl.po | 2292 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 1266 insertions(+), 1026 deletions(-)

commit ce73fdbb921d6865f8e42186d3d463a5d3223cb0
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Sun Jun 9 18:42:46 2002 +0000

    Updated Spanish translation.
    
    2002-06-09  Carlos Perell Marn <carlos@gnome-db.org>
    
            * es.po: Updated Spanish translation.

 po/ChangeLog |    4 +
 po/es.po     | 1000 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 463 insertions(+), 541 deletions(-)

commit edab3bbe74d8d9db85e005c706fb8ab1a20ff6b4
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Sun Jun 9 17:10:38 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog | 4 ++++
 po/ru.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 47d6c53f3eecc4d07de903c0a059110ffb8830cb
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Sun Jun 9 14:15:40 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |  4 ++++
 po/ca.po     | 41 ++++++++++++++++++++++++++++++++++++++---
 2 files changed, 42 insertions(+), 3 deletions(-)

commit 8c5deb6824701e84b48860fed0fd54b4fd5d63a1
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jun 9 12:34:42 2002 +0000

    Updated Swedish translation.
    
    2002-06-09  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 1277 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 606 insertions(+), 675 deletions(-)

commit 86cae7689d29f88b3c01703a208488317020365c
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Sun Jun 9 12:19:28 2002 +0000

    Gustavo Noronha Silva <kov@debian.org>
    
    2002-06-09  Carlos Perell Marn <carlos@gnome-db.org>
    
        * pt_BR.po: Gustavo Noronha Silva <kov@debian.org>

 po/ChangeLog |    4 +
 po/pt_BR.po  | 2078 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 1328 insertions(+), 754 deletions(-)

commit 12237f8c09d854d21a84efbc051014c9166a7783
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jun 9 07:15:29 2002 +0000

    Make the last string consistent with the rest in this file.
    
    2002-06-06  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-settings-keybindings.c: Make the last string consistent
        with the rest in this file.

 gnome-settings-daemon/ChangeLog                    | 5 +++++
 gnome-settings-daemon/gnome-settings-keybindings.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 9a4be17726d1f722faaffc8e6383897bf8333f7f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jun 9 07:14:26 2002 +0000

    Also add one file: gnome-settings-keybindings.c Updated Norwegian (bokml)
    
    2002-06-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Also add one file: gnome-settings-keybindings.c
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog   |  5 +++++
 po/POTFILES.in |  1 +
 po/no.po       | 38 ++++++++++++++++++++++++++++++++++++--
 3 files changed, 42 insertions(+), 2 deletions(-)

commit 379d0f638d3804bbe29722a024c34f301934bea6
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sat Jun 8 08:59:40 2002 +0000

    Updated Finnish translation.
    
    2002-06-08  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 623 +++++++++++------------------------------------------------
 2 files changed, 117 insertions(+), 510 deletions(-)

commit f8e79d6164da5b63c69906665b9b3c52fa956600
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Jun 7 19:52:42 2002 +0000

    Updated Slovenian translation

 po/sl.po | 1550 ++++++++++++++++++++++++--------------------------------------
 1 file changed, 602 insertions(+), 948 deletions(-)

commit 03659fd7adfc045969e2f0a9a5c95897152bdceb
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Fri Jun 7 13:00:42 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |    4 +
 po/ca.po     | 1018 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 457 insertions(+), 565 deletions(-)

commit 0527591148669e7fae685eaafe68ccc3393b65f4
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri Jun 7 10:09:01 2002 +0000

    Updated Slovak translation.
    
    2002-06-07  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 991 ++++++-----------------------------------------------------
 2 files changed, 98 insertions(+), 897 deletions(-)

commit 86e437e8ebc6f8ca4f87b447aa1ff74d5872e877
Author: Ole Laursen <olau@hardworking.dk>
Date:   Thu Jun 6 16:16:14 2002 +0000

    Updated Danish translation.
    
    2002-06-06  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 919 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 411 insertions(+), 512 deletions(-)

commit 6d01ec717c34261b8d960c2b4ced44944a1bba58
Author: Erwann Chenede - <erwann.chenede@sun.com>
Date:   Thu Jun 6 14:18:15 2002 +0000

    do not quit gnome-settings-daemon when pressing Ok when the warning dialog
    
    2002-06-06 Erwann Chenede - <erwann.chenede@sun.com>
    
           * gnome-settings-keybindings.c (keybindings_filter) :
             do not quit gnome-settings-daemon when pressing Ok
         when the warning dialog appears. fix bug #84364
         Added localization hooks.

 gnome-settings-daemon/ChangeLog                    |  7 ++++++
 gnome-settings-daemon/gnome-settings-keybindings.c | 29 ++++++++++------------
 2 files changed, 20 insertions(+), 16 deletions(-)

commit b8a39a9c939ec1b944ac4e5edba6197d2043c4d4
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Thu Jun 6 09:39:27 2002 +0000

    Updated Bulgarian translation.
    
    2002-06-06  Yanko Kaneti <yaneti@declera.com>
    
       * bg.po: Updated Bulgarian translation.

 po/ChangeLog |    4 +
 po/bg.po     | 1036 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 484 insertions(+), 556 deletions(-)

commit 253ca896ab49ddd418414da498d6795c6275208b
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Jun 6 08:56:51 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 +
 po/pl.po     | 545 +++++++----------------------------------------------------
 2 files changed, 66 insertions(+), 484 deletions(-)

commit 06345fb969723ba9d1499e4002d4273fa5343419
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Thu Jun 6 03:54:58 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog |  4 ++++
 po/ru.po     | 26 +++++++++++++-------------
 2 files changed, 17 insertions(+), 13 deletions(-)

commit ace56063d3c34d25d9c499f7c220a607562d213a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jun 5 11:05:51 2002 +0000

    Remove wm-properties capplet. It's not being shipped for 2.0.0. Also add
    
    2002-06-05  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Remove wm-properties capplet. It's not being shipped
        for 2.0.0. Also add one file from libwindow-settings (gnome-wm-manager.c)

 po/ChangeLog   |   6 +
 po/POTFILES.in |   1 +
 po/no.po       | 925 +++++++++++++++++++++++++--------------------------------
 3 files changed, 419 insertions(+), 513 deletions(-)

commit 1726372f67ca389e19804d753035a893338e6800
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Wed Jun 5 08:22:06 2002 +0000

    Fixes to make translators' life easier -- ~80 strings less to translate.
    I worry how 'make dist' could allow non-disted files to be listed in
    POTFILES.in
    
    2002-06-05  Gediminas Paulauskas <menesis@delfi.lt>
    
        * POTFILES.in: remove mime-type, url-properties and wm-properties
        capplets -- they are not built nor distributed. Also remove
        session, panel, and cd desktop files.
        * POTFILES.skip: add those files here because those capplets are still
        in CVS.
    
    2002-06-05  Gediminas Paulauskas <menesis@delfi.lt>
    
        * cd-capplet.png, cd.desktop.in.in,
        panel-capplet.png, panel.desktop.in.in,
        session-capplet.png, session.desktop.in.in:
        remove unused desktop files and their icons from CVS.
    
    2002-06-05  Gediminas Paulauskas <menesis@delfi.lt>
    
        * background-properties.glade: radiobutton1 and similar things should
        not be translatable.

 capplets/background/ChangeLog                   |   5 +++++
 capplets/background/background-properties.glade |  12 ++++++------
 capplets/desktop-links/ChangeLog                |   7 +++++++
 capplets/desktop-links/cd-capplet.png           | Bin 5801 -> 0 bytes
 capplets/desktop-links/cd.desktop.in.in         |   8 --------
 capplets/desktop-links/panel-capplet.png        | Bin 1371 -> 0 bytes
 capplets/desktop-links/panel.desktop.in.in      |   8 --------
 capplets/desktop-links/session-capplet.png      | Bin 3929 -> 0 bytes
 capplets/desktop-links/session.desktop.in.in    |   7 -------
 po/ChangeLog                                    |   8 ++++++++
 po/POTFILES.in                                  |  19 -------------------
 po/POTFILES.skip                                |  18 +++++++++++++++++-
 12 files changed, 43 insertions(+), 49 deletions(-)

commit 5042b1890419e87fb4c6e415808987ecac4f72a1
Author: Gediminas Paulauskas <menesis@src.gnome.org>
Date:   Wed Jun 5 08:19:30 2002 +0000

    Update Lithuanian translation -- just removed many irrelevant strings from old
    capplets.

 po/lt.po | 573 ++++++++++-----------------------------------------------------
 1 file changed, 87 insertions(+), 486 deletions(-)

commit 9137407127f1e1681c7926a2a2817610ef649944
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Jun 5 04:17:14 2002 +0000

    new. (fill_dialog) : mime type is always sensitive.
    
    
    2002-06-05  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (mime_add_dialog_new) :
    
        * mime-edit-dialog.c (mime_edit_editable_enters) : new.
        (fill_dialog) : mime type is always sensitive.
        (mime_edit_dialog_init) : use mime_edit_editable_enters and set the
          default response.
        (mime_add_dialog_new) : forceably define the model before is-add and
          set the parent.
    
    
        * model-entry.c (model_entry_insert_child) : be paranoid.  Sort the
          mime entries too.
    
        * file-types-capplet.c (main) : !KLUDGE! if we are editing
          application/octet-stream assume that people really want to create a
          new mime type.
    
    2002-06-04  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_type_info_save) : Add a freeze/thaw around
          the assignments.

 capplets/file-types/ChangeLog               | 24 ++++++++++++
 capplets/file-types/file-types-capplet.c    | 11 ++++--
 capplets/file-types/file-types-capplet.h    | 35 -----------------
 capplets/file-types/file-types-icon-entry.c |  1 -
 capplets/file-types/mime-edit-dialog.c      | 61 ++++++++++++++++++++++-------
 capplets/file-types/mime-edit-dialog.h      |  2 +-
 capplets/file-types/mime-type-info.c        |  9 +++--
 capplets/file-types/model-entry.c           | 21 +++++++---
 8 files changed, 100 insertions(+), 64 deletions(-)

commit 6a336cde955ba00042235a0dea8c20bb77adb928
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Jun 5 03:14:47 2002 +0000

    Change to X-GnomeWMSettingsLibrary, because its evil to add new items to
    
    2002-06-04  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-window-manager.c: (gnome_window_manager_new):
    
        Change to X-GnomeWMSettingsLibrary, because its evil to add new items to
        .desktop files without the X :-)

 libwindow-settings/ChangeLog              | 7 +++++++
 libwindow-settings/gnome-window-manager.c | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 7ae28ca59dbcf5fa4f7377a9740da6fbc05c0069
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Jun 5 00:40:01 2002 +0000

    Get rid of "get" calls, since we should just rely on the GConf settings
    
    2002-06-04  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-window-manager.c: (gnome_window_manager_new),
        (gnome_window_manager_class_init):
        * gnome-window-manager.h:
    
        Get rid of "get" calls, since we should just rely on the GConf settings being right.
        Otherwise you get ambiguous problems with merging settings, figuring out which
        takes predecedence, etc.

 libwindow-settings/ChangeLog              | 10 ++++++++++
 libwindow-settings/gnome-window-manager.c | 16 ++--------------
 libwindow-settings/gnome-window-manager.h |  2 --
 libwindow-settings/gnome-wm-manager.c     |  2 --
 4 files changed, 12 insertions(+), 18 deletions(-)

commit 03f10ccb0ce7c7ef9b946d1d208d23b4479f88f3
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Jun 5 00:36:57 2002 +0000

    Remove unused CFLAGS;
    
    2002-06-04  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Remove unused CFLAGS;
    
        * gnome-window-properties.c: (wm_widget_add_wm),
        (setup_appearance_option_menu):
    
        Improve handling of option menus, set the default item.
    
        * metacity-window-manager.c: (metacity_set_theme),
        (add_themes_from_dir), (metacity_get_theme_list),
        (metacity_set_font), (metacity_set_focus_follows_mouse),
        (metacity_window_manager_class_init):
    
        Actually do things when the "set" calls are made, improve
        intelligence of loading the theme list. Eventually we should
        probably do validation on the XML files.

 capplets/windows/ChangeLog                 | 20 ++++++++
 capplets/windows/Makefile.am               |  5 +-
 capplets/windows/gnome-window-properties.c | 17 +++++--
 capplets/windows/metacity-window-manager.c | 78 +++++++++++++++++++++++++-----
 4 files changed, 102 insertions(+), 18 deletions(-)

commit 51f9aad29a0ed367f776bd54a06c22cbb711815d
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Jun 5 00:17:55 2002 +0000

    Fixed Swedish translation.
    
    2002-06-05  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixed Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 21 +++++++++------------
 2 files changed, 13 insertions(+), 12 deletions(-)

commit 07624890ead6b0f4c9e2b7477f3b7f7535fc089a
Author: Seth Nickell <snickell@stanford.edu>
Date:   Tue Jun 4 23:00:19 2002 +0000

    Clean the APIs a little bit, add a mechanism for discovering if two
    
    2002-06-04  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-window-manager.c: (gnome_window_manager_get_ditem):
        * gnome-window-manager.h:
        * gnome-wm-manager.c: (gnome_wm_manager_set_current),
        (gnome_wm_manager_get_current), (gnome_wm_manager_same_wm):
        * gnome-wm-manager.h:
    
        Clean the APIs a little bit, add a mechanism for discovering if two GnomeWindowManager *s are
        the same Window Manager underneath.

 libwindow-settings/ChangeLog              | 11 +++++++++++
 libwindow-settings/gnome-window-manager.c |  7 +++++++
 libwindow-settings/gnome-window-manager.h | 20 +++++++++++---------
 libwindow-settings/gnome-wm-manager.c     | 25 +++++++++++++++++++++++--
 libwindow-settings/gnome-wm-manager.h     |  3 +++
 5 files changed, 55 insertions(+), 11 deletions(-)

commit 059bd84cefedd6471803acbf17ea33b700b5adbc
Author: Seth Nickell <snickell@stanford.edu>
Date:   Tue Jun 4 22:58:35 2002 +0000

    Handle setting the currently running window manager properly.
    
    2002-06-04  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-window-properties.c: (set_wm_change_pending),
        (wm_selection_changed), (wm_widget_add_wm), (apply_wm),
        (setup_appearance_option_menu), (appearance_changed),
        (setup_dialog), (main):
        * gnome-window-properties.glade:
        * metacity-window-manager.c: (metacity_get_theme_list):
    
        Handle setting the currently running window manager properly.
    
        Get the theme list, and make changes based on it to the GConf setting.

 capplets/windows/ChangeLog                     |  13 +++
 capplets/windows/gnome-window-properties.c     | 138 ++++++++++++++++++-------
 capplets/windows/gnome-window-properties.glade |   2 +-
 capplets/windows/metacity-window-manager.c     |  10 +-
 4 files changed, 122 insertions(+), 41 deletions(-)

commit 0fb92f8bad32eb6fea56393c506b2b22ad0b2a7d
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Tue Jun 4 21:23:15 2002 +0000

    Update Lithuanian translation
    
    2002-06-04  Gediminas Paulauskas <menesis@delfi.lt>
    
        * lt.po: Update Lithuanian translation

 po/ChangeLog |   4 +
 po/lt.po     | 492 +++++++++++++++--------------------------------------------
 2 files changed, 126 insertions(+), 370 deletions(-)

commit a01dda5190ae14ed0f8e46eca8dca9946dede719
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Jun 4 17:58:07 2002 +0000

    Updated Vietnamese file

 po/ChangeLog |   4 +
 po/vi.po     | 713 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 350 insertions(+), 367 deletions(-)

commit e0335245d0ac1736f5c10b64bd81b1869a65d137
Author: Yanko Kaneti <yaneti@declera.com>
Date:   Tue Jun 4 17:56:38 2002 +0000

    Added Bulgarian (bg).
    
    2002-06-04  Yanko Kaneti <yaneti@declera.com>
    
       * configure.in: (ALL_LINGUAS) Added Bulgarian (bg).
    
    po/
       * bg.po (added): Bulgarian translation by
       Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/bg.po     | 2574 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 2584 insertions(+), 1 deletion(-)

commit c8ca5a339437b8973d64d88a9c2a217f207d0a18
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Tue Jun 4 17:00:27 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |    5 +
 po/pl.po     | 1251 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 635 insertions(+), 621 deletions(-)

commit 728909523db9019d691c351e4e348d3c4ae5f4ac
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Tue Jun 4 15:24:32 2002 +0000

    Updated Estonian translation.
    
    2002-06-04  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 ++
 po/et.po     | 211 +++++++++++++++++++++++------------------------------------
 2 files changed, 86 insertions(+), 129 deletions(-)

commit 6c60c3c5bbfc20f924230211084083b329759b9e
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   Tue Jun 4 11:27:19 2002 +0000

    Updated Catalan translation.

 po/ChangeLog |    4 +
 po/ca.po     | 1227 +++++++++++++++++++++++-----------------------------------
 2 files changed, 478 insertions(+), 753 deletions(-)

commit cea01cf92b5b6eb2a7430e0899bd03a15d0fa5bc
Author: George Lebl <jirka@5z.com>
Date:   Tue Jun 4 03:31:15 2002 +0000

    update
    
    Mon Jun 03 20:41:15 2002  George Lebl <jirka@5z.com>
    
        * cs.po: update

 po/ChangeLog |  4 ++++
 po/cs.po     | 71 +++++++++++++++++++++++++-----------------------------------
 2 files changed, 34 insertions(+), 41 deletions(-)

commit 94f606f34596e897099ca36fed5fa36b84f10be9
Author: George Lebl <jirka@5z.com>
Date:   Tue Jun 4 03:15:30 2002 +0000

    update
    
    Mon Jun 03 20:25:25 2002  George Lebl <jirka@5z.com>
    
        * cs.po: update

 po/ChangeLog |   4 +
 po/cs.po     | 425 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 174 insertions(+), 255 deletions(-)

commit 6c1df66ca632d188f4fb2753ae5d7add0fb1a6c1
Author: George Lebl <jirka@5z.com>
Date:   Tue Jun 4 01:34:30 2002 +0000

    update
    
    Mon Jun 03 18:39:53 2002  George Lebl <jirka@5z.com>
    
        * cs.po: update

 po/ChangeLog |   4 +
 po/cs.po     | 233 +++++++++++++++++++++++------------------------------------
 2 files changed, 94 insertions(+), 143 deletions(-)

commit d765afa86a42686ee7d219b66646b8a23c62555f
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Jun 3 23:53:38 2002 +0000

    Updated Swedish translation.
    
    2002-06-04  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 25 +++++++++++++------------
 2 files changed, 17 insertions(+), 12 deletions(-)

commit df340a48aa126794050c40dfd82c63cbad28b469
Author: Carlos Perelló Marín <carlos@src.gnome.org>
Date:   Mon Jun 3 22:48:38 2002 +0000

    foo

 po/es.po | 172 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 89 insertions(+), 83 deletions(-)

commit 57a41ef59f37f874769d6778c07f0682b51835b0
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Mon Jun 3 22:23:56 2002 +0000

    Added '\n' to all emails at translation_credits.
    
    2002-06-03  Carlos Perell Marn <carlos@gnome-db.org>
    
        * es.po: Added '\n' to all emails at translation_credits.

 po/ChangeLog | 4 ++++
 po/es.po     | 8 +++++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 9be1aecad5056e998924bcdb0a49794f06b2225b
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Mon Jun 3 20:02:39 2002 +0000

    Full translation.
    
    2002-06-03  Carlos Perell Marn <carlos@gnome-db.org>
    
        * es.po: Full translation.

 po/ChangeLog |   4 +
 po/es.po     | 279 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 162 insertions(+), 121 deletions(-)

commit c695ae26687760f0f9947d85dbf7fa792ed26383
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jun 3 19:16:23 2002 +0000

    Add newline Added #include <config.h>
    
    2002-06-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * .cvsignore: Add newline
        * gnome-wm-manager.c: Added #include <config.h>

 libwindow-settings/.cvsignore         | 2 +-
 libwindow-settings/ChangeLog          | 5 +++++
 libwindow-settings/gnome-wm-manager.c | 1 +
 3 files changed, 7 insertions(+), 1 deletion(-)

commit 89019909b0e4eb0ae009f1a4d7218059cde038a9
Author: Germán Poó Caamaño <gpoo@src.gnome.org>
Date:   Mon Jun 3 15:57:19 2002 +0000

    2002-06-03  Germn Poo-Caamao <gpoo@ubiobio.cl
    
        * es.po: Updated Spanish translation from
        Lucas Di Pentima <lucas@lunix.com.ar>

 po/ChangeLog |    5 +
 po/es.po     | 1334 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 631 insertions(+), 708 deletions(-)

commit 715c1e759a4608f36d9f19b9e33004509ec5f8f7
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Mon Jun 3 04:54:33 2002 +0000

    ru.po: Updated Russian translation.

 po/ChangeLog |  4 ++++
 po/ru.po     | 11 +++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 603155d441a1abc40ae52bb1fe30b023bdb8029c
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jun 3 00:37:24 2002 +0000

    Create the .pc file for the window manager settings library.
    
    2002-06-02  Seth Nickell  <snickell@stanford.edu>
    
        * configure.in:
    
        Create the .pc file for the window manager settings library.

 ChangeLog                                  |    6 +
 capplets/windows/gnome-window-properties.c |   10 +-
 configure.in                               |    1 +
 po/ChangeLog                               |   44 +
 po/ar.po                                   |  267 ++--
 po/az.po                                   | 1270 +++++++++---------
 po/ca.po                                   | 1909 +++++++++++++++++-----------
 po/cs.po                                   | 1448 +++++++++++----------
 po/da.po                                   |  162 ++-
 po/de.po                                   | 1399 ++++++++++----------
 po/el.po                                   | 1414 ++++++++++----------
 po/en_GB.po                                | 1144 ++++++++---------
 po/es.po                                   | 1326 +++++++++----------
 po/et.po                                   | 1365 ++++++++++----------
 po/fi.po                                   |  423 +++---
 po/fr.po                                   | 1435 +++++++++++----------
 po/ga.po                                   | 1339 +++++++++----------
 po/gl.po                                   | 1418 +++++++++++----------
 po/hr.po                                   | 1359 ++++++++++----------
 po/hu.po                                   | 1418 +++++++++++----------
 po/it.po                                   | 1406 ++++++++++----------
 po/ja.po                                   | 1412 ++++++++++----------
 po/ko.po                                   |  147 +--
 po/lt.po                                   | 1337 +++++++++----------
 po/lv.po                                   | 1421 +++++++++++----------
 po/ms.po                                   | 1364 ++++++++++----------
 po/nl.po                                   |  137 +-
 po/nn.po                                   | 1303 ++++++++++---------
 po/no.po                                   |  147 +--
 po/pl.po                                   | 1251 +++++++++---------
 po/pt.po                                   |  175 ++-
 po/pt_BR.po                                | 1230 +++++++++---------
 po/ro.po                                   | 1457 +++++++++++----------
 po/ru.po                                   |  189 +--
 po/sk.po                                   |  175 ++-
 po/sl.po                                   | 1438 +++++++++++----------
 po/sv.po                                   |  155 ++-
 po/tr.po                                   | 1227 +++++++++---------
 po/uk.po                                   | 1348 +++++++++++++++++---
 po/vi.po                                   | 1901 +++++++++++++++++++--------
 po/wa.po                                   | 1264 +++++++++---------
 po/zh_CN.po                                | 1377 ++++++++++----------
 po/zh_TW.po                                |  345 ++---
 43 files changed, 22462 insertions(+), 18901 deletions(-)

commit aa217d6cd714a6e2b1f6a86868218397befe0d61
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jun 3 00:33:59 2002 +0000

    Update to deal with the .pc file that gets generated.
    
    2002-06-02  Seth Nickell  <snickell@stanford.edu>
    
        * .cvsignore:
    
        Update to deal with the .pc file that gets generated.
    
        * Makefile.am:
    
        Build a real library, not just a non-installed. This is to get around
        problems dealing with GObject inheritance and static memory problems. We
        have a run time loaded object deriving from the library, so it has to link it in. But then
        the problem that occurs is that both the run-time loaded library and the
        program that calls it statically link the .la in. Then they have different
        memory spaces, and type registration goes to pot. Open to suggestions if there's
        a way of doing this without making an installed library.
    
        * gnome-window-manager.c: (gnome_window_manager_new),
        (gnome_window_manager_get_name), (gnome_window_manager_set_theme),
        (gnome_window_manager_get_theme_list),
        (gnome_window_manager_set_font),
        (gnome_window_manager_get_focus_follows_mouse),
        (gnome_window_manager_set_focus_follows_mouse),
        (gnome_window_manager_init), (gnome_window_manager_finalize),
        (gnome_window_manager_class_init), (gnome_window_manager_get_type):
        * gnome-window-manager.h:
    
        Lots of formatting fixes, change some of the boilerplate.
    
        * gnome-window-settings-2.0.pc.in:
    
        Since we're installing a library, go the whole way. Its good to make this
        easy to depend on for external window managers anyway, now that I think
        of it.
    
        * gnome-wm-manager.c: (gnome_wm_manager_init),
        (gnome_wm_manager_get_list), (gnome_wm_manager_set_current),
        (gnome_wm_manager_get_current),
        (gnome_wm_manager_change_wm_to_settings), (restart_label_update),
        (restart_dialog_raise), (restart_dialog_destroyed),
        (show_restart_dialog), (hide_restart_dialog), (init_session),
        (update_session), (init_callback), (restart_finalize),
        (restart_failure), (show_restart_info), (restart_finish),
        (restart_callback), (restart), (revert_callback),
        (cancel_callback):
        * gnome-wm-manager.h:
    
        Add code for doing the window manager switch to the library,
        snitched out of wm-properties. Its probably a little broken right now.
    
        * wm-exec.c: (wm_is_running), (find_gnome_wm_window),
        (find_wm_window_from_client), (window_has_wm_state),
        (descendent_has_wm_state), (find_wm_window_from_hunt),
        (find_wm_window), (start_timeout), (start_do), (kill_timeout),
        (wm_restart), (wm_guess_current):
        * wm-list.c: (is_blank), (wm_compare), (wm_free),
        (wm_check_present), (wm_copy), (wm_list_find), (wm_list_find_exec),
        (wm_list_find_files), (wm_list_read_dir), (wm_list_init),
        (wm_list_save), (wm_list_revert), (wm_list_add), (wm_list_delete),
        (wm_list_set_current), (wm_list_get_current), (wm_list_get_revert),
        (wm_read_from_xml), (wm_list_read_from_xml), (wm_write_to_xml),
        (wm_list_write_to_xml), (xml_read_bool), (xml_write_bool):
        * wm-properties.h:
    
        Take wm-switching code out of the capplet, move it here.
    
        (Jacob, I did a make dist and build the resulting tarball, hope things
         don't break for you this time ... )

 libwindow-settings/.cvsignore                      |   3 +-
 libwindow-settings/ChangeLog                       |  68 +++
 libwindow-settings/Makefile.am                     |  32 +-
 libwindow-settings/gnome-window-manager.c          | 130 ++++-
 libwindow-settings/gnome-window-manager.h          |  47 +-
 libwindow-settings/gnome-window-settings-2.0.pc.in |  11 +
 libwindow-settings/gnome-wm-manager.c              | 608 +++++++++++++++++++++
 libwindow-settings/gnome-wm-manager.h              |  22 +
 libwindow-settings/wm-exec.c                       | 331 +++++++++++
 libwindow-settings/wm-list.c                       | 577 +++++++++++++++++++
 libwindow-settings/wm-properties.h                 |  63 +++
 11 files changed, 1860 insertions(+), 32 deletions(-)

commit 0a5695f294b30d5aa7c70f5d2f745a8a740145b1
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jun 3 00:27:15 2002 +0000

    Split code for changing window managers into libgnome-window-settings.
    
    2002-06-02  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * gnome-window-properties.c: (wm_selection_changed),
        (wm_widget_add_wm), (update_gui), (apply_wm), (create_dialog),
        (main):
    
        Split code for changing window managers into libgnome-window-settings.
        This is so in the future we can potentially move this into gnome-settings-daemon,
        though for now its not robust enough that we really want to do that.
    
        * metacity-window-manager.c: (window_manager_new),
        (metacity_window_manager_init), (metacity_window_manager_finalize),
        (metacity_window_manager_class_init),
        (metacity_window_manager_get_type):
        * metacity-window-manager.h:
    
        Update to match changes to gnome-window-manager.h
    
        * wm-exec.c:
        * wm-list.c:
        * wm-properties.h:
    
        Move these into libgnome-window-settings.
    
        (Jacob, I did make dist, and then built the resulting tarball, hope I
         don't cause problems this time :-/)

 capplets/windows/ChangeLog                 |  28 ++
 capplets/windows/Makefile.am               |  10 +-
 capplets/windows/gnome-window-properties.c | 677 ++---------------------------
 capplets/windows/metacity-window-manager.c |  83 ++--
 capplets/windows/metacity-window-manager.h |  26 +-
 capplets/windows/wm-exec.c                 | 331 --------------
 capplets/windows/wm-list.c                 | 575 ------------------------
 capplets/windows/wm-properties.h           |  63 ---
 8 files changed, 133 insertions(+), 1660 deletions(-)

commit a1465dd2fc7b34f55558c63f27f52f0b4f3007a4
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Sun Jun 2 22:21:16 2002 +0000

    Reinout van Schouwen updated the Dutch translation.
    
    2002-06-02 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
        * nl.po: Reinout van Schouwen updated the Dutch translation.

 po/ChangeLog |    4 +
 po/nl.po     | 1289 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 669 insertions(+), 624 deletions(-)

commit 8351fd6581a7070de9ce35dd1823517e36d919d7
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jun 2 11:58:55 2002 +0000

    Minor fix.
    
    2002-06-02  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Minor fix.

 po/ChangeLog |  4 ++++
 po/sv.po     | 14 +++++++++-----
 2 files changed, 13 insertions(+), 5 deletions(-)

commit b55cae830fd2e1de86ee1dc621612236927a8c70
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Sun Jun 2 10:30:25 2002 +0000

    Updated Finnish translation.
    
    2002-06-02  Pauli Virtanen <pauli.virtanen@hut.fi>
    
            * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 603 ++++++++++++++---------------------------------------------
 2 files changed, 149 insertions(+), 458 deletions(-)

commit 248eda30e61244b6c6c332a59b6c13823b05a236
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Jun 1 23:54:27 2002 +0000

    Updated Swedish translation.
    
    2002-06-02  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 2052 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1180 insertions(+), 876 deletions(-)

commit 1204301aaaf4ddba21c06feed51b2b68cd5ec750
Author: Isam Bayazidi <isam@src.gnome.org>
Date:   Fri May 31 20:41:12 2002 +0000

    adding a no accelerator PO

 po/ar.po | 473 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 205 insertions(+), 268 deletions(-)

commit 4b53a6f0bdf42981a41242bbb7073f2bfc9bf892
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri May 31 20:35:52 2002 +0000

    disable debug spew.
    
    
    2002-05-31  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (get_category_name) : disable debug spew.
    
        * model-entry.c (model_entry_insert_child) : order the categories
        nicely.

 capplets/file-types/ChangeLog        |  7 +++++++
 capplets/file-types/mime-type-info.c |  4 +---
 capplets/file-types/model-entry.c    | 27 ++++++++++++++++-----------
 3 files changed, 24 insertions(+), 14 deletions(-)

commit d185c631b217471c712f56841442fc6f29b0f288
Author: Damon Chaplin <damon@ximian.com>
Date:   Fri May 31 19:58:02 2002 +0000

    don't call set_root_pixmap() at all if nautilus is running. It didn't do
    
    2002-05-31  Damon Chaplin  <damon@ximian.com>
    
        * applier.c (bg_applier_apply_prefs): don't call set_root_pixmap() at
        all if nautilus is running. It didn't do anything in this case anyway.
        Removed the nice(20). A library function shouldn't do this. If
        gnome-settings-daemon wants to be niced then it should do it in main()
        or something like that.
        (set_root_pixmap): do a final check to see if nautilus is running
        before setting the pixmap.
    
        Fixes part of #74311.

 libbackground/ChangeLog | 12 ++++++++++++
 libbackground/applier.c |  9 +++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

commit 0d2b0a72996eb00cf4f9be4273a3e0bb2b023ff0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri May 31 19:35:09 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-31  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 30 +++++++++++++++++-------------
 2 files changed, 21 insertions(+), 13 deletions(-)

commit 041eef8721c927b0f56ffee0493ac1a5b24f19ac
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri May 31 19:25:29 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=83545 Use the child not the
    
    
    2002-05-31  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=83545
        * mime-types-model.c (mime_types_model_iter_parent) : Use the child
          not the result.

 capplets/file-types/ChangeLog          |  6 ++++++
 capplets/file-types/mime-types-model.c | 12 ++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit 790c8322fa9566f2a84f6cef0832a09b82258240
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri May 31 07:07:12 2002 +0000

    Updated Slovak translation.
    
    2002-05-31  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 +++
 po/sk.po     | 95 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 63 insertions(+), 36 deletions(-)

commit d1b4b0489d96cbd2455c48bb813944bde62648c1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu May 30 23:06:37 2002 +0000

    Use GETTEXT_PACKAGE, not PACKAGE. Also add bind_textdomain_codeset() call.
    
    2002-05-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-window-properties.c (main): Use GETTEXT_PACKAGE, not PACKAGE.
          Also add bind_textdomain_codeset() call.
        * gnome-window-properties.c: Fix some compiler warnings.

 capplets/windows/ChangeLog                 |  6 ++++++
 capplets/windows/gnome-window-properties.c | 11 ++++++-----
 capplets/windows/wm-list.c                 |  1 +
 3 files changed, 13 insertions(+), 5 deletions(-)

commit 6aa8d6af13c2ad1f4746ded14ef2acbc9743d893
Author: Ole Laursen <olau@hardworking.dk>
Date:   Thu May 30 22:13:32 2002 +0000

    Fixed a lot of improper strings in Danish translation.
    
    2002-05-31  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Fixed a lot of improper strings in Danish translation.

 po/ChangeLog |  4 +++
 po/da.po     | 91 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 48 insertions(+), 47 deletions(-)

commit cd185dae212921919f88b94eb2ff64d5e215fe11
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 30 17:38:52 2002 +0000

    Add some bounds checking.
    
    
    2002-05-30  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-keyboard.c (xkb_set_keyboard_autorepeat_rate) : Add
          some bounds checking.

 gnome-settings-daemon/ChangeLog                 | 5 +++++
 gnome-settings-daemon/gnome-settings-keyboard.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit e6ed3e6a01cfc2071913415403a628c4f1bedc33
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu May 30 15:26:09 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/pl.po | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

commit da22af047b4445d4633d0b2f9f54277ab0b20004
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu May 30 08:56:14 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 +++++
 po/pl.po     | 42 +++++++++++++++++++++++++-----------------
 2 files changed, 30 insertions(+), 17 deletions(-)

commit 17ba15142cd53b7a58d0164d4f4417214cb79718
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu May 30 08:37:58 2002 +0000

    updated Vietnamese file

 po/ChangeLog |  4 ++++
 po/vi.po     | 26 +++++++++++++-------------
 2 files changed, 17 insertions(+), 13 deletions(-)

commit 0cdd1721b9f900bfbdedfcf5ff21a7df957fbb86
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Thu May 30 06:53:25 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 484 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 308 insertions(+), 180 deletions(-)

commit 3b070f76d1d145e5bfaa16418c83924c4f0a9d89
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu May 30 00:25:29 2002 +0000

    Add gnome-settings-keybinding initialize keybindings support Patch to add
    
    Wed May 29 20:23:13 2002  Jonathan Blandford  <jrb@redhat.com>
    
            * Makefile.am: Add gnome-settings-keybinding
            * gnome-settings-daemon.c: (gnome_settings_daemon_new): initialize
            keybindings support
            * gnome-settings-keybindings.[ch]: Patch to add support for custom
            keybindings.  Thanks to Erwann Chenede <Erwann.Chenede@sun.com>
            for the patch.

 gnome-settings-daemon/ChangeLog                    |   9 +
 gnome-settings-daemon/Makefile.am                  |   2 +
 gnome-settings-daemon/gnome-settings-daemon.c      |   3 +
 gnome-settings-daemon/gnome-settings-keybindings.c | 335 +++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-keybindings.h |  31 ++
 5 files changed, 380 insertions(+)

commit 6f7158ee6188f237850362f2612a9446d9391999
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 29 18:49:34 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=82802 disable resize.
    
    
    2002-05-29  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=82802
        * gnome-ui-properties.c (setup_dialog) : disable resize.

 capplets/ui-properties/ChangeLog             | 5 +++++
 capplets/ui-properties/gnome-ui-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit ac90d19560f148b45dac9cc88f1ca6adda4d7470
Author: Bastien Nocera <hadess@src.gnome.org>
Date:   Wed May 29 17:36:16 2002 +0000

    - Jody forgot to remove help from the top-level Makefile.am as well, removed here

 ChangeLog   | 5 +++++
 Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 66d7504bf612ce6d0e35b436190c25e73bc430fb
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 29 17:30:26 2002 +0000

    put things in Misc if they have no defined category. (get_category_name) :
    
    
    2002-05-29  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (get_category_description) : put things in Misc if
          they have no defined category.
        (get_category_name) : ditto.

 capplets/file-types/ChangeLog        | 6 ++++++
 capplets/file-types/mime-type-info.c | 8 +++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit c5511a1f293c3ff7fc52c2c35135f0adcbca23f2
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 29 17:10:37 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 1515 +++++++++++---------------------------------------------------
 1 file changed, 259 insertions(+), 1256 deletions(-)

commit c5792ef5704a6f44822731e025d4a5fb1be3eadf
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 29 04:28:35 2002 +0000

    Remove help and help/C
    
    
    2002-05-29  Jody Goldberg <jody@gnome.org>
    
        * configure.in : Remove help and help/C

 ChangeLog          |  4 ++++
 configure.in       |  2 --
 help/C/Makefile.am | 47 +++++++++++++++++++++++++----------------------
 help/Makefile.am   |  3 ++-
 4 files changed, 31 insertions(+), 25 deletions(-)

commit 2b1aa2ce081f8831ec977a0baa1c8aa715e5f49f
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Wed May 29 04:27:49 2002 +0000

    update

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b4123f15b183cb2109bc6630830cc2d2f10551d0
Author: Satyajit Kanungo <satyajit.kanungo@wipro.com>
Date:   Wed May 29 04:14:29 2002 +0000

    capplet_help () The Help directory is changed to user-guide.
    
    
    2002-05-28 Satyajit Kanungo <satyajit.kanungo@wipro.com>
    
        * capplet-util.c : capplet_help () The Help directory is changed to
          user-guide.

 capplets/background/ChangeLog                          |  5 +++++
 capplets/background/background-properties-capplet.c    |  4 ++--
 capplets/common/ChangeLog                              |  5 +++++
 capplets/common/capplet-util.c                         |  2 +-
 capplets/default-applications/ChangeLog                |  5 +++++
 .../gnome-default-applications-properties.c            |  4 ++--
 capplets/file-types/ChangeLog                          |  5 +++++
 capplets/file-types/file-types-capplet.c               |  4 ++--
 capplets/font/ChangeLog                                |  5 +++++
 capplets/font/main.c                                   |  4 ++--
 capplets/keybindings/ChangeLog                         | 12 ++++++++++++
 capplets/keybindings/gnome-keybinding-properties.c     | 13 ++++++++++++-
 capplets/keybindings/gnome-keybinding-properties.glade | 13 +++++++++++++
 capplets/keyboard/ChangeLog                            |  6 ++++++
 capplets/keyboard/gnome-keyboard-properties.c          | 18 +++++-------------
 capplets/mouse/ChangeLog                               |  5 +++++
 capplets/mouse/gnome-mouse-properties.c                |  4 ++--
 capplets/network/ChangeLog                             |  5 +++++
 capplets/network/gnome-network-preferences.c           |  4 ++--
 capplets/sound/ChangeLog                               |  5 +++++
 capplets/sound/sound-properties-capplet.c              |  4 ++--
 capplets/theme-switcher/ChangeLog                      |  4 ++++
 capplets/theme-switcher/theme-switcher.c               |  8 ++++----
 capplets/ui-properties/ChangeLog                       |  5 +++++
 capplets/ui-properties/gnome-ui-properties.c           |  4 ++--
 25 files changed, 118 insertions(+), 35 deletions(-)

commit ce01d9b7ce556f498260ccc4fb1ff7057488cd15
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed May 29 04:12:01 2002 +0000

    Updated Portuguese translation
    
    2002-05-29  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation

 po/ChangeLog |    4 +
 po/pt.po     | 1530 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 832 insertions(+), 702 deletions(-)

commit c5e3d916dc36520681f28d9b1d7ae5205a4d9816
Author: Ole Laursen <olau@hardworking.dk>
Date:   Tue May 28 16:50:29 2002 +0000

    Updated Danish translation.
    
    2002-05-28  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 ++++
 po/da.po     | 35 ++++++++++++++++++++---------------
 2 files changed, 24 insertions(+), 15 deletions(-)

commit eae23639bac82e3cd8c4dd8d24a0639bdf674b1d
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Mon May 27 20:52:58 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |    5 +
 po/pl.po     | 2324 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1119 insertions(+), 1210 deletions(-)

commit d8de03974b434c834b3f0240116e7e6f883181d6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon May 27 09:29:25 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |  4 +++
 po/no.po     | 88 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 58 insertions(+), 34 deletions(-)

commit bd493373d2b20211345284e2a44d3b5eb62d1056
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 27 02:54:19 2002 +0000

    Improve help handling.
    
    
    Improve help handling.
    
    2002-05-26  Jody Goldberg <jody@gnome.org>
    
        * capplet-util.c (capplet_help) : new utility.
    
    2002-05-24  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_category_info_load_all) : make this more paranoid.
        * mime-category-edit-dialog.c (update_subcategories) : Move this over
          here.
    
    2002-05-17  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_category_info_using_custom_app) : add some
          protection.

 capplets/font/ChangeLog                      |  4 ++++
 capplets/font/main.c                         | 16 ++++------------
 capplets/mouse/ChangeLog                     |  5 +++++
 capplets/mouse/gnome-mouse-properties.c      | 16 ++++------------
 capplets/network/ChangeLog                   |  5 +++++
 capplets/network/gnome-network-preferences.c | 16 ++++------------
 capplets/sound/ChangeLog                     |  5 +++++
 capplets/sound/sound-properties-capplet.c    | 15 ++++-----------
 capplets/theme-switcher/ChangeLog            |  6 ++++++
 capplets/theme-switcher/theme-switcher.c     | 28 ++++++----------------------
 capplets/ui-properties/ChangeLog             |  5 +++++
 capplets/ui-properties/gnome-ui-properties.c | 16 ++++------------
 12 files changed, 56 insertions(+), 81 deletions(-)

commit 49d1a5af3608a07e9ae5ccbc8329a9de373783a5
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 27 02:53:33 2002 +0000

    Improve help handling.
    
    2002-05-26  Jody Goldberg <jody@gnome.org>
    
        * capplet-util.c (capplet_help) : new utility.
    
    2002-05-24  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_category_info_load_all) : make this more paranoid.
        * mime-category-edit-dialog.c (update_subcategories) : Move this over
          here.
    
    2002-05-17  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_category_info_using_custom_app) : add some
          protection.

 capplets/background/ChangeLog                      |  5 +++
 .../background/background-properties-capplet.c     | 16 ++------
 capplets/common/ChangeLog                          |  4 ++
 capplets/common/capplet-util.c                     | 39 +++++++++++++++++++
 capplets/common/capplet-util.h                     |  2 +
 capplets/default-applications/ChangeLog            | 10 +++++
 .../gnome-default-applications-properties.c        | 18 +++------
 capplets/file-types/ChangeLog                      | 11 ++++++
 capplets/file-types/file-types-capplet.c           | 19 +++------
 capplets/file-types/mime-category-edit-dialog.c    | 44 ++++++++++++++++++---
 capplets/file-types/mime-type-info.c               | 45 ++++------------------
 capplets/file-types/mime-type-info.h               |  1 -
 12 files changed, 131 insertions(+), 83 deletions(-)

commit 63d79cb52c50c16c54c7d0d7d350dfcf833fff3d
Author: Dmitry Mastrukov <dmitrym@src.gnome.org>
Date:   Sun May 26 23:32:05 2002 +0000

    ru.po: updated Russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 524 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 300 insertions(+), 228 deletions(-)

commit bcdb522a6f003f7e63b7d0e9565ff82088660091
Author: Isam Bayazidi <isam@src.gnome.org>
Date:   Sun May 26 22:54:10 2002 +0000

    adding Arabic file

 po/ar.po | 67 +++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 41 insertions(+), 26 deletions(-)

commit 698520742533f5d393dd25f7ad498f27fa7a925e
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sun May 26 16:11:37 2002 +0000

    Use APPID instead of argv[0] for gnome-program-init

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 3 ++-
 capplets/background/ChangeLog                                        | 5 +++++
 capplets/background/background-properties-capplet.c                  | 3 ++-
 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.c     | 3 ++-
 capplets/font/ChangeLog                                              | 4 ++++
 capplets/font/main.c                                                 | 5 ++---
 capplets/keybindings/ChangeLog                                       | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c                   | 2 +-
 capplets/keyboard/ChangeLog                                          | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.c                        | 2 +-
 capplets/mouse/ChangeLog                                             | 4 ++++
 capplets/mouse/gnome-mouse-properties.c                              | 3 ++-
 capplets/network/ChangeLog                                           | 4 ++++
 capplets/network/gnome-network-preferences.c                         | 3 ++-
 capplets/sound/ChangeLog                                             | 4 ++++
 capplets/sound/sound-properties-capplet.c                            | 3 ++-
 capplets/theme-switcher/ChangeLog                                    | 4 ++++
 capplets/theme-switcher/theme-switcher.c                             | 3 ++-
 capplets/ui-properties/ChangeLog                                     | 4 ++++
 capplets/ui-properties/gnome-ui-properties.c                         | 3 ++-
 22 files changed, 68 insertions(+), 13 deletions(-)

commit 73be46711d75b4e66d1034dff51e595652d48169
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sun May 26 06:13:12 2002 +0000

    patch from Till Adam <till@adam-lilienthal.de> to not die if we have the
    
    Sun May 26 01:50:22 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-default-applications-properties.c (read_editor): patch
        from Till Adam <till@adam-lilienthal.de> to not die if we have the
        mimedata not installed.

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../default-applications/gnome-default-applications-properties.c    | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 942407422097b00cb8896a4523601657b20acf2e
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat May 25 19:15:03 2002 +0000

    Updated Danish translation.
    
    2002-05-25  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 888 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 466 insertions(+), 426 deletions(-)

commit c0aaf2ca2efc1dfbdb0f50871a73221ffcfd89a3
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sat May 25 06:14:04 2002 +0000

    clean up strings to make them match the ui-suggestions, and make them correct

 capplets/font/font-properties.glade | 23 ++++++++++++++---------
 capplets/font/main.c                |  8 ++++++++
 2 files changed, 22 insertions(+), 9 deletions(-)

commit c3b7374d08006ee883d5cb9aeb7b67d49ebd6759
Author: Isam Bayazidi <isam@src.gnome.org>
Date:   Fri May 24 22:14:32 2002 +0000

    - adding Arabic translation file

 configure.in |    2 +-
 po/ar.po     | 2760 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 2761 insertions(+), 1 deletion(-)

commit 069a56385f8b1080d0f62f3d157373b96e0f0e1c
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri May 24 13:11:53 2002 +0000

    Updated Slovak translation.
    
    2002-05-24  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 1118 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 588 insertions(+), 534 deletions(-)

commit 9af1b5753d00c00570fd41157d7dc3717d8722a3
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri May 24 12:39:10 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=82850 some protection against
    
    
    2002-05-24  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=82850
        * gnome-keybinding-properties.c (setup_dialog) : some protection
          against faulty installs.

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 8c6844c7bb824c9cd178ff03e77ad37b482a36d6
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 22 21:08:19 2002 +0000

    disable some debug spew. (set_gconf_from_server) : ditto.
    
    
    2002-05-22  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) :
          disable some debug spew.
        (set_gconf_from_server) : ditto.

 gnome-settings-daemon/ChangeLog                               | 6 ++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 4 ++++
 2 files changed, 10 insertions(+)

commit 6852ac0eb3a68d42079cf6ccd9e34a038c1270a6
Author: jacob berkman <jacob@ximian.com>
Date:   Wed May 22 20:58:14 2002 +0000

    run the mkfontdir command synchronously to avoid a possible race. extra
    
    2002-05-22  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-font.c (load_cursor): run the mkfontdir command
        synchronously to avoid a possible race.  extra precaution for
        #78023
    
        * gnome-settings-daemon.c (gnome_settings_daemon_new): run
        background settings after everything else, as some of those spawn
        processes (xscreensaver) and background settings nices itself
    
        should fix #78742

 gnome-settings-daemon/ChangeLog               | 10 ++++++++++
 gnome-settings-daemon/gnome-settings-daemon.c |  4 ++--
 gnome-settings-daemon/gnome-settings-font.c   |  3 ++-
 3 files changed, 14 insertions(+), 3 deletions(-)

commit 4cfbde20e8da08ca189e5811586c4ec8f4c0fa01
Author: jacob berkman <jacob@ximian.com>
Date:   Wed May 22 20:53:57 2002 +0000

    use .pcf, not .pcf.gz as solaris can't read .gz files
    
    2002-05-22  jacob berkman  <jacob@ximian.com>
    
        * *.pcf(.gz):
        * Makefile.am (cursorfont_DATA):
        * gnome-mouse-properties.c (setup_dialog): use .pcf, not .pcf.gz
        as solaris can't read .gz files
    
        fixes #78023

 capplets/mouse/ChangeLog                 |   9 +++++++++
 capplets/mouse/Makefile.am               |   6 +++---
 capplets/mouse/cursor-large-white.pcf    | Bin 0 -> 18636 bytes
 capplets/mouse/cursor-large-white.pcf.gz | Bin 4068 -> 0 bytes
 capplets/mouse/cursor-large.pcf          | Bin 0 -> 17432 bytes
 capplets/mouse/cursor-large.pcf.gz       | Bin 3636 -> 0 bytes
 capplets/mouse/cursor-white.pcf          | Bin 0 -> 13848 bytes
 capplets/mouse/cursor-white.pcf.gz       | Bin 5222 -> 0 bytes
 capplets/mouse/gnome-mouse-properties.c  |   6 +++---
 9 files changed, 15 insertions(+), 6 deletions(-)

commit 513acbdcc079dc52691de88e80aeb96fdb349151
Author: jacob berkman <jacob@ximian.com>
Date:   Wed May 22 18:57:11 2002 +0000

    quit when we get the die signal from the SM
    
    2002-05-22  jacob berkman  <jacob@ximian.com>
    
        * factory.c (main): quit when we get the die signal from the SM

 gnome-settings-daemon/ChangeLog | 4 ++++
 gnome-settings-daemon/factory.c | 2 ++
 2 files changed, 6 insertions(+)

commit b8d526624b9063d8e3b5778a130913f89d5a0313
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed May 22 00:08:37 2002 +0000

    fix broken double-click test.
    
    Tue May 21 20:09:22 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-mouse-properties.c (event_box_button_press_event): fix
        broken double-click test.

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit b1577971a2ba0e667d5a7b197bbcaa4f5fa2770e
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue May 21 23:35:30 2002 +0000

    handle the new eggcellrendererkeys signal.
    
    Tue May 21 19:36:13 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keybinding-properties.c (accel_edited_callback):
         handle the new eggcellrendererkeys signal.

 capplets/keybindings/ChangeLog                         | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c     | 1 +
 capplets/keybindings/gnome-keybinding-properties.glade | 2 +-
 3 files changed, 7 insertions(+), 1 deletion(-)

commit 26e67dbc734a68342d0a51858142bd1dc670b44d
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue May 21 23:23:47 2002 +0000

    sync to libegg

 capplets/keybindings/eggcellrendererkeys.c | 41 ++++++++++++++++--------------
 capplets/keybindings/eggcellrendererkeys.h |  3 ++-
 2 files changed, 24 insertions(+), 20 deletions(-)

commit 76c9ad8773cb80c72850a1fe8a716f8a3adcc34c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 21 22:29:58 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-22  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 452 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 254 insertions(+), 202 deletions(-)

commit 50b3bfe107f4a444f5ae82ee3cb2d5c997bd68e3
Author: jacob berkman <jacob@ximian.com>
Date:   Tue May 21 22:13:38 2002 +0000

    use a gc for the pixmap not the root window
    
    2002-05-21  jacob berkman  <jacob@ximian.com>
    
        * applier.c (render_to_screen): use a gc for the pixmap not the
        root window
        (bg_applier_get_preview_widget): don't create the pixmap until we
        are realized
        (make_root_pixmap): use gdk_get_display(), not getenv ("DISPLAY"),
        and set the colormap for our GdkPixmap so we can draw on it
        (preview_realized_cb): create the pixmap here, and set it on our
        GtkImage
    
        fixes #73496

 libbackground/ChangeLog | 13 +++++++++++++
 libbackground/applier.c | 28 +++++++++++++++++-----------
 2 files changed, 30 insertions(+), 11 deletions(-)

commit 5a1f9db561f8fd5a84150cf422c3ca8ecfd8635d
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Tue May 21 16:19:31 2002 +0000

    Updated Finnish translation. Fixed crash-inducing html string.
    
    2002-05-21  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation. Fixed crash-inducing html string.

 po/ChangeLog |    4 +
 po/fi.po     | 1098 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 563 insertions(+), 539 deletions(-)

commit b1aceb59d7761d283916ec29d9ae8d87861a14c0
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue May 21 07:59:33 2002 +0000

    *** empty log message ***

 po/zh_TW.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit df75b6b39ecb10424fd45d046f1a9b36159d902e
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Tue May 21 07:58:08 2002 +0000

    Synced with source tree. Updated traditional Chinese translation.
    
    2002-05-21  Abel Cheung  <maddog@linux.org.hk>
    
        * POTFILES.in: Synced with source tree.
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog     |   5 +
 po/POTFILES.in   |  45 +++---
 po/POTFILES.skip |   9 --
 po/zh_TW.po      | 467 ++++++++++++++++++++++++++++++-------------------------
 4 files changed, 284 insertions(+), 242 deletions(-)

commit 1f2b74e8d66d5a9e8a56522bb8d4e4a0a57900af
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue May 21 07:48:11 2002 +0000

    Add translator credits

 control-center/ChangeLog          |  4 ++++
 control-center/capplet-dir-view.c | 10 +++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 41039c25a75f66406597c38a5e111bd4ab57e46a
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue May 21 03:26:15 2002 +0000

    Updated Korean translation by Young-Ho Cha <ganadist@chollian.net>.
    
        * ko.po: Updated Korean translation by Young-Ho Cha
        <ganadist@chollian.net>.

 po/ChangeLog |    5 +
 po/ko.po     | 1055 +++++++++++++++++++++++-----------------------------------
 2 files changed, 416 insertions(+), 644 deletions(-)

commit 7190a21a297f4b5eea633825cb1169efb3b090df
Author: jacob berkman <jacob@ximian.com>
Date:   Mon May 20 20:21:34 2002 +0000

    just return if there's no text in the entry (fixes #8200, from Soren
    
    2002-05-20  jacob berkman  <jacob@ximian.com>
    
        * gnome-default-applications-properties.c (text_apply_editor):
        just return if there's no text in the entry (fixes #8200, from Soren Sandmann
        <sandmann@daimi.au.dk>)

 capplets/default-applications/ChangeLog                             | 6 ++++++
 .../default-applications/gnome-default-applications-properties.c    | 4 ++++
 2 files changed, 10 insertions(+)

commit cda5e4344a4ccbf247ddc5c86487307d9c9a35ae
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Sun May 19 23:06:35 2002 +0000

    Update

 po/no.po | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit ffd1cd7f9ce97ad920a91367944ca05f83bfc24d
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Sun May 19 19:15:35 2002 +0000

    Updated traditional Chinese translation.
    
    2002-05-20  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 880 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 427 insertions(+), 457 deletions(-)

commit ffe5e84da69ea56d1c1c19d0fe16c67bde6447f1
Author: Vlad Harchev <hvv@src.gnome.org>
Date:   Sun May 19 10:26:56 2002 +0000

    ru.po: updated russian translation from Dmitry G. Mastrukov <dmitry@taurussoft.org>

 po/ChangeLog |    5 +
 po/ru.po     | 1853 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1000 insertions(+), 858 deletions(-)

commit dad560c30757831f2d5daf1f10bb3562ae534d8f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat May 18 22:56:56 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 737 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 356 insertions(+), 385 deletions(-)

commit e445f169e3e243c57bc5fbd0d35e8453b2e9e4d8
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Sat May 18 22:40:21 2002 +0000

    Add default icon. Don't disalow closing expanders. Implement ui-review
    
    Sat May 18 18:25:02 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-keybinding-properties.c: (append_keys_to_tree),
        (setup_dialog): Add default icon.  Don't disalow closing
        expanders.  Implement ui-review suggestions.
    
        * gnome-keybinding-properties.glade: Implement ui-review
        suggestions.

 capplets/keybindings/ChangeLog                     |   9 ++
 capplets/keybindings/gnome-keybinding-properties.c |  27 ++--
 .../keybindings/gnome-keybinding-properties.glade  | 171 ++++++++++-----------
 3 files changed, 102 insertions(+), 105 deletions(-)

commit 679d15153add05ebc3a92f3c452697b47846dcb6
Author: Jacob Berkman <jacob@ximian.com>
Date:   Sat May 18 17:28:05 2002 +0000

    fixup
    
    2002-05-18  Jacob Berkman  <jacob@ximian.com>
    
        * POTFILES.in: fixup

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 3f74c7d07021a7979f4a2c0aa07359cd643f1023
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Sat May 18 13:19:08 2002 +0000

    remove a pile of unused files

 capplets/ui-properties/behavior-properties.glade   | 1112 --------------------
 capplets/ui-properties/gnome2-ui-properties.glade  |  490 ---------
 capplets/ui-properties/main.c                      |   97 --
 capplets/ui-properties/preferences.c               |  544 ----------
 capplets/ui-properties/prefs-widget-app.c          |  111 --
 capplets/ui-properties/prefs-widget-app.h          |   54 -
 capplets/ui-properties/prefs-widget-dialogs.c      |  109 --
 capplets/ui-properties/prefs-widget-dialogs.h      |   54 -
 capplets/ui-properties/prefs-widget-mdi.c          |  105 --
 capplets/ui-properties/prefs-widget-mdi.h          |   54 -
 capplets/ui-properties/prefs-widget.c              |  488 ---------
 capplets/ui-properties/prefs-widget.h              |   95 --
 .../ui-properties/toolbar-menu-properties.glade    |  374 -------
 capplets/ui-properties/ui-properties.glade         | 1112 --------------------
 14 files changed, 4799 deletions(-)

commit bbe6afa013b224167487e9ac1a1470086bc16e3b
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat May 18 10:44:03 2002 +0000

    Updated Danish translation.
    
    2002-05-18  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 743 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 419 insertions(+), 328 deletions(-)

commit 79979d3d67e3f72eff9acfc4d40449e5aa47c061
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri May 17 03:33:14 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=80325 although we may not be
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=80325
        * gnome-settings-keyboard.c (apply_settings) : although we may not be
          able to support the autorepeat rate setting we can enable/disable
          autorepeat.

 gnome-settings-daemon/ChangeLog                 | 7 +++++++
 gnome-settings-daemon/gnome-settings-keyboard.c | 6 ++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 55e30560216c7dad6166190a508dd929d7ddcfb9
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri May 17 03:05:13 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=17728 (mime_type_info_save): a
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=17728
        (mime_type_info_save): a patch inspired by Archit Baweja's proposal.
    
    2002-05-09  Archit Baweja  <bighead@users.sourceforge.net>
    
        * mime-type-info.c (mime_type_info_set_file_extensions): free the old
        list.

 capplets/file-types/ChangeLog        | 10 ++++++++++
 capplets/file-types/mime-type-info.c |  9 +++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

commit 104110c45dd2157edec53737d187dfa2d625fb35
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu May 16 23:48:51 2002 +0000

    evil, evil hack to insta-edit. Should be removed for GTK 2.2
    
    Thu May 16 19:49:26 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keybinding-properties.c (start_editing_cb): evil, evil
        hack to insta-edit.  Should be removed for GTK 2.2
        (keybinding_key_changed_foreach): notify when we update the tree.

 capplets/keybindings/ChangeLog                     |   6 ++
 capplets/keybindings/eggcellrendererkeys.c         |   4 +-
 capplets/keybindings/gnome-keybinding-properties.c | 105 ++++++++++++++++-----
 .../keybindings/gnome-keybinding-properties.glade  |   1 +
 4 files changed, 92 insertions(+), 24 deletions(-)

commit c05eb45ed0152ac1375342d17979091047f650ed
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 23:18:14 2002 +0000

    add a key to turn off some behaviour
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * schemas/apps_gnome_settings_daemon_default_editor.schemas: add a
        key to turn off some behaviour
    
        * capplets/Makefile.am (always_built_SUBDIRS):
        * configure.in: re-add default-applications
    
        fixes #78037

 ChangeLog                                                 | 10 ++++++++++
 capplets/Makefile.am                                      |  2 +-
 configure.in                                              |  1 +
 schemas/Makefile.am                                       |  3 ++-
 schemas/apps_gnome_settings_daemon_default_editor.schemas | 15 +++++++++++++++
 5 files changed, 29 insertions(+), 2 deletions(-)

commit 3902821faa47be2c0e97c88cab746931ee7ec75e
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 23:16:47 2002 +0000

    load from the correct key for whether the bell should be on or not
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-keyboard.c (apply_settings): load from the
        correct key for whether the bell should be on or not
        (apply_settings): pass the right flags to XChangeKeyboardControl()
    
        fixes #78016 and 78015

 gnome-settings-daemon/ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit eff4ab4c7fb21accbf45e35057ba2177497042b7
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 23:15:14 2002 +0000

    don't copy the volume, this setting is gone (main): dont' show_all() the
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * gnome-keyboard-properties.c (get_legacy_settings): don't copy
        the volume, this setting is gone
        (main): dont' show_all() the dialog
    
        * gnome-keyboard-properties.glade: hide the "other" option button
    
        fixes for #78016

 capplets/keyboard/ChangeLog                       | 10 ++++++++++
 capplets/keyboard/gnome-keyboard-properties.c     |  4 +++-
 capplets/keyboard/gnome-keyboard-properties.glade |  9 ++++-----
 3 files changed, 17 insertions(+), 6 deletions(-)

commit 5fc0063d42bf23676c822751460328558a9727fc
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 23:13:19 2002 +0000

    turn off help tab, put browser tab first, and fix things for the editor
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * gnome-default-applications-properties.glade: turn off help tab,
        put browser tab first, and fix things for the editor
    
        * gnome-default-applications-properties.c: make the editor changes
        use gnome-vfs, and make the browser use the default key rather
        than http
    
        fixes #78037

 capplets/default-applications/ChangeLog            |   11 +
 ...gnome-default-applications-properties-structs.c |   46 +-
 .../gnome-default-applications-properties.c        |  334 ++-
 .../gnome-default-applications-properties.glade    | 2888 +++++++++++---------
 4 files changed, 1850 insertions(+), 1429 deletions(-)

commit 58aa3658454a079a087e21702fbbe2e159669cf0
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 23:09:02 2002 +0000

    keep text/plain and text* using the same mime type (#78037)
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am:
        * gnome-settings-default-editor.[ch]: keep text/plain and text*
        using the same mime type (#78037)
    
        * gnome-settings-daemon.c (gnome_settings_daemon_new): load editor
        and keyboard settings (bugs #78037 and #78016)

 gnome-settings-daemon/ChangeLog                    |   9 ++
 gnome-settings-daemon/Makefile.am                  |   2 +
 gnome-settings-daemon/gnome-settings-daemon.c      |   6 +-
 .../gnome-settings-default-editor.c                | 125 +++++++++++++++++++++
 .../gnome-settings-default-editor.h                |  18 +++
 gnome-settings-daemon/gnome-settings-keyboard.c    |  11 +-
 6 files changed, 169 insertions(+), 2 deletions(-)

commit 98b7a5871587be425d219fdd272f3e40f72fb493
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu May 16 22:29:18 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 468 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 266 insertions(+), 206 deletions(-)

commit 7d8fe6251bf9791bdc9bde783946c0702314081a
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 22:21:48 2002 +0000

    if we haven't been initting, don't pop up an error message. if we are, set
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * gconf-property-editor.c (peditor_image_set_filename): if we
        haven't been initting, don't pop up an error message.  if we are,
        set our image to GTK_STOCK_MISSING_IMAGE.  fixes bug exposed by
        fix for #76993

 capplets/common/ChangeLog               |  7 +++++
 capplets/common/gconf-property-editor.c | 50 ++++++++++++++++++++-------------
 2 files changed, 38 insertions(+), 19 deletions(-)

commit 5dcefd353d38ac71e92a0cf8a41c311c39117028
Author: jacob berkman <jacob@ximian.com>
Date:   Thu May 16 22:21:25 2002 +0000

    don't spew a warning when files can't be loaded (helps fix #76993)
    
    2002-05-16  jacob berkman  <jacob@ximian.com>
    
        * applier.c (bg_applier_apply_prefs): don't spew a warning when
        files can't be loaded (helps fix #76993)

 libbackground/ChangeLog | 5 +++++
 libbackground/applier.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit cddec07697d27a1b7c7cc3a6fd042a3bd3976caa
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 16 21:11:55 2002 +0000

    add some safety checks for invalid files.
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * theme-switcher.c (install_dialog_response) : add some safety checks
          for invalid files.

 capplets/theme-switcher/ChangeLog        |  5 +++++
 capplets/theme-switcher/theme-switcher.c | 19 ++++++++++---------
 2 files changed, 15 insertions(+), 9 deletions(-)

commit 3f31e2bdbd9d22463cdff49cccdea36631b92b81
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 16 21:06:45 2002 +0000

    fix path. (install_dialog_response) : add help link.
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * theme-switcher.c (cb_dialog_response) : fix path.
        (install_dialog_response) : add help link.

 capplets/theme-switcher/ChangeLog        |  5 +++++
 capplets/theme-switcher/theme-switcher.c | 17 ++++++++++++++++-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit d2bb2392dfc82edd8a01b28423d71ee094f58454
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 16 17:55:17 2002 +0000

    some minor tweakage.
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : some minor tweakage.

 capplets/keyboard/ChangeLog                       | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.glade | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 4a0eccb6af035c7494537c6552484abda37968f2
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 16 17:35:35 2002 +0000

    pass a slightly more realistic path. (help_menu_cb) : new.
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * capplet-dir-view.c (capplet_dir_view_init) : pass a slightly more
          realistic path.
        (help_menu_cb) : new.
    
        * gnomecc-ui.xml : Add some content.

 control-center/ChangeLog          |  7 +++++--
 control-center/capplet-dir-view.c | 22 +++++++++++++++++++++-
 control-center/gnomecc-ui.xml     |  4 +++-
 3 files changed, 29 insertions(+), 4 deletions(-)

commit 28ed4e70f8c5213c5b7e44943cb85a0805e41fa1
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu May 16 17:34:41 2002 +0000

    ignore omf_timestamp

 help/C/.cvsignore | 1 +
 1 file changed, 1 insertion(+)

commit ea5d2ba3efc0e2e72167e2009168ce9aeea892e5
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 16 17:34:11 2002 +0000

    escape the ampersand.
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * C/config-file-type.xml : escape the ampersand.
    
        * C/Makefile.am (dist) : install control-center.xml and
          config-default-apps.xml.

 help/C/Makefile.am          | 4 +++-
 help/C/config-file-type.xml | 2 +-
 help/ChangeLog              | 7 +++++++
 3 files changed, 11 insertions(+), 2 deletions(-)

commit aa56d93dbbdf9da1995876bd6f90c7e78af3fa33
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 16 16:40:49 2002 +0000

    Have bonobo generate some content. Its broken currently, but we're getting
    
    
    2002-05-16  Jody Goldberg <jody@gnome.org>
    
        * gnomecc-ui.xml : Have bonobo generate some content.
        Its broken currently, but we're getting closer.

 control-center/ChangeLog      | 5 +++++
 control-center/gnomecc-ui.xml | 1 +
 2 files changed, 6 insertions(+)

commit d229b0d039d7e04aa9f38699d5c30b3b74276ea5
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Thu May 16 12:49:10 2002 +0000

    Updated Slovak translation.
    
    2002-05-16  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 442 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 246 insertions(+), 200 deletions(-)

commit 0ff953e1e6fee1563e442996c2b6bdc207b75ba2
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu May 16 06:36:51 2002 +0000

    accept drops from the nautilus patterns pallet. There's something broken
    
    Thu May 16 02:25:03 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * background-properties-capplet.c (drag_data_received_cb): accept
        drops from the nautilus patterns pallet.  There's something broken
        here, though.

 capplets/background/ChangeLog                      |  6 ++
 .../background/background-properties-capplet.c     | 85 +++++++++++++++-------
 2 files changed, 63 insertions(+), 28 deletions(-)

commit 0348d4f101ca6a548fe4637fd16115e0bdeaa99b
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed May 15 23:15:30 2002 +0000

    kill workaround libglade bug that has since been fixed.
    
    2002-05-15  Mark McLoughlin <mark@skynet.ie>
    
            * gnome-network-preferences.c (setup_dialog): kill workaround
            libglade bug that has since been fixed.

 capplets/network/ChangeLog                   | 5 +++++
 capplets/network/gnome-network-preferences.c | 3 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

commit d4a396acab6a1357cbcf1bd47be0a064f42a2fd6
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Wed May 15 22:57:35 2002 +0000

    Update Lithuanian translation
    
    2002-05-16  Gediminas Paulauskas <menesis@delfi.lt>
    
        * lt.po: Update Lithuanian translation

 po/ChangeLog |    4 +
 po/lt.po     | 2004 +++++++++++++++-------------------------------------------
 2 files changed, 511 insertions(+), 1497 deletions(-)

commit 9aa4bcd36b03b8fef44a2efaba8d8045d0f9f930
Author: jacob berkman <jacob@ximian.com>
Date:   Wed May 15 20:00:07 2002 +0000

    don't link against libs, like libbackground does
    
    2002-05-15  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am: don't link against libs, like libbackground does

 libwindow-settings/ChangeLog   | 4 ++++
 libwindow-settings/Makefile.am | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit a0a0ba9601328b1799e70fe9f7a2c26171198bbf
Author: jacob berkman <jacob@ximian.com>
Date:   Wed May 15 17:22:18 2002 +0000

    remove gnome-window-manager.h
    
    2002-05-15  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am (libmetacity_la_SOURCES): remove
        gnome-window-manager.h

 capplets/windows/ChangeLog   | 5 +++++
 capplets/windows/Makefile.am | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3a23e2ee9af748c3e4b500d2de38cc66fc893f4d
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 15 14:00:20 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit 9099cc8dd6187233faf95e1071cccb00c59fe204
Author: Jacob Berkman <jacob@ximian.com>
Date:   Wed May 15 13:37:07 2002 +0000

    fix build again
    
    2002-05-15  Jacob Berkman  <jacob@ximian.com>
    
        * POTFILES.in: fix build again

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 0ff0aa383ce1548d790f3e53f61fd24744e9487a
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 15 13:32:40 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit ce27a4cf19c2332553cd5b676e9577c0804e6a82
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 15 13:30:50 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 88 ++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 41 insertions(+), 47 deletions(-)

commit e73c0ccca16feeee4670f2265432a3bc0c1a1b14
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 15 13:06:54 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 137 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 62 insertions(+), 75 deletions(-)

commit c5fa2f83683182111cdbe9c2aebf1dfb901da0ea
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 15 12:50:54 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 240 +++++++++++++++++++++++----------------------------------------
 1 file changed, 88 insertions(+), 152 deletions(-)

commit 751e82c6371c78c65fa4526ff8cdbc4568d8c6c2
Author: Andrew V. Samoilov <andrew@src.gnome.org>
Date:   Wed May 15 10:54:57 2002 +0000

    Updated

 po/uk.po | 30 ++++++++++++------------------
 1 file changed, 12 insertions(+), 18 deletions(-)

commit 2dba03440de2bfe0ee77334748432cf4f1f36f87
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Wed May 15 10:10:15 2002 +0000

    Dutch translation updated by Reinout van Schouwen. All translations are in
    
    2002-05-15 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    * nl.po: Dutch translation updated by Reinout van Schouwen.
        All translations are in UTF-8 format.

 po/ChangeLog |  6 +++++-
 po/nl.po     | 51 ++++++++++++++++++++++-----------------------------
 2 files changed, 27 insertions(+), 30 deletions(-)

commit 2487f9646d018701290d6a82af60d8cd17d06d6b
Author: Andrew V. Samoilov <andrew@src.gnome.org>
Date:   Wed May 15 09:13:18 2002 +0000

    Updated Ukrainian translation
    
    * uk.po: Updated Ukrainian translation

 po/ChangeLog |  1 +
 po/uk.po     | 39 ++++++++-------------------------------
 2 files changed, 9 insertions(+), 31 deletions(-)

commit d7d42622b328f86526b22b1044ff53852481f910
Author: Andrew V. Samoilov <andrew@src.gnome.org>
Date:   Wed May 15 08:45:28 2002 +0000

    Updated

 po/ru.po | 34 +++++++++++-----------------------
 1 file changed, 11 insertions(+), 23 deletions(-)

commit 04ed39f0cc86b8d7d3aad6297aaa7a36cc3d295a
Author: Andrew V. Samoilov <andrew@src.gnome.org>
Date:   Wed May 15 08:22:46 2002 +0000

    Updated Russian translation.
    
    * ru.po: Updated Russian translation.

 po/ChangeLog |  4 +++
 po/ru.po     | 93 ++++++++++++++++++++----------------------------------------
 2 files changed, 34 insertions(+), 63 deletions(-)

commit 8ab5fddb271d328f033801c18543059513b32bd8
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed May 15 01:00:00 2002 +0000

    Move the window setting code into a seperate directory, libwindow-settings
    
    2002-05-14  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * configure.in:
    
        Move the window setting code into a seperate directory, libwindow-settings
        so it can be shared between the capplet and the settings daemon, and
        potentially, external window managers.

 ChangeLog    | 9 +++++++++
 Makefile.am  | 2 +-
 configure.in | 1 +
 3 files changed, 11 insertions(+), 1 deletion(-)

commit 10f94aee4cee3ec98c5a52a4344776f2a0ab6db1
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed May 15 00:57:45 2002 +0000

    Move into a seperate library so the settings daemon can avail of this
    
    2002-05-14  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * gnome-window-manager.c:
        * gnome-window-manager.h:
    
        Move into a seperate library so the settings daemon
        can avail of this code.

 capplets/windows/ChangeLog              |  9 ++++++
 capplets/windows/Makefile.am            |  7 +++--
 capplets/windows/gnome-window-manager.c | 37 -----------------------
 capplets/windows/gnome-window-manager.h | 53 ---------------------------------
 4 files changed, 13 insertions(+), 93 deletions(-)

commit 9ad97b920e0575d6f2e9e750d76de75a48bb17bc
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed May 15 00:57:00 2002 +0000

    Move code out of window capplet into a seperate library so the settings
    
    2002-05-14  Seth Nickell  <snickell@stanford.edu>
    
        * .cvsignore:
        * Makefile.am:
        * gnome-window-manager.c: (gnome_window_manager_new):
        * gnome-window-manager.h:
    
        Move code out of window capplet into a seperate library so the settings
        daemon can avail of it.

 libwindow-settings/.cvsignore             | 11 +++++++
 libwindow-settings/ChangeLog              |  9 ++++++
 libwindow-settings/Makefile.am            | 17 ++++++++++
 libwindow-settings/gnome-window-manager.c | 37 +++++++++++++++++++++
 libwindow-settings/gnome-window-manager.h | 53 +++++++++++++++++++++++++++++++
 5 files changed, 127 insertions(+)

commit 957afeae788b1b0dde3c3f83b607702edb9f3cb9
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Tue May 14 19:24:04 2002 +0000

    Updated Finnish translation.
    
    2002-05-14  Pauli Virtanen <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 632 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 338 insertions(+), 298 deletions(-)

commit fe993790aaacb9e56ce277accffc2bb544be248c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue May 14 18:52:34 2002 +0000

    Remove all debug print statements, #76085
    
    Tue May 14 14:50:34 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-*.c: Remove all debug print statements, #76085

 gnome-settings-daemon/ChangeLog                               |  4 ++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c |  4 ----
 gnome-settings-daemon/gnome-settings-daemon.c                 |  2 ++
 gnome-settings-daemon/gnome-settings-mouse.c                  |  2 +-
 gnome-settings-daemon/gnome-settings-sound.c                  |  3 ---
 gnome-settings-daemon/gnome-settings-xsettings.c              | 11 +----------
 6 files changed, 8 insertions(+), 18 deletions(-)

commit ac2ae66136dcfe536257cc93faea34b3a90f94a9
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue May 14 18:35:51 2002 +0000

    fix small bug

 capplets/theme-switcher/theme-switcher.c | 30 +++++++++++++++++++++---------
 1 file changed, 21 insertions(+), 9 deletions(-)

commit b87cde513f7c512586f3739679ee193ce304cc55
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue May 14 16:34:14 2002 +0000

    try to scroll to theme. Currently appears to be a little broken somewhere.
    
    Tue May 14 12:29:35 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * theme-switcher.c (read_themes): try to scroll to theme.
        Currently appears to be a little broken somewhere.
    
    Tue May 14 12:08:17 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * theme-common.c (theme_common_init): confirm that the ~/.themes/
        directory exists.
    Also:
    Clean up ui-props a little.
    commit fix to mouse properties

 capplets/common/ChangeLog                        |  5 ++++
 capplets/common/theme-common.c                   |  9 +++++++
 capplets/mouse/gnome-mouse-properties.c          |  2 +-
 capplets/theme-switcher/ChangeLog                |  7 +++++
 capplets/theme-switcher/theme-properties.glade   |  5 +++-
 capplets/theme-switcher/theme-switcher.c         | 34 ++++++++++++++++++++----
 capplets/ui-properties/gnome-ui-properties.glade | 16 ++++++-----
 7 files changed, 64 insertions(+), 14 deletions(-)

commit 331ec2dfa38f4ba54fba7477af9e0fb8393894c3
Author: Michael Meeks <michael@ximian.com>
Date:   Tue May 14 15:15:56 2002 +0000

    tolerate bogus values sanely. Update string to describe bonobo priority
    
    2002-05-14  Michael Meeks  <michael@ximian.com>
    
        * gnome-ui-properties.c
        (toolbar_to_widget, set_toolbar_style): tolerate
        bogus values sanely.
        Update string to describe bonobo priority text

 capplets/ui-properties/ChangeLog                 |  7 +++++++
 capplets/ui-properties/gnome-ui-properties.c     | 10 +++++-----
 capplets/ui-properties/gnome-ui-properties.glade |  2 +-
 3 files changed, 13 insertions(+), 6 deletions(-)

commit 012e334dd2805612268397c0ed5145818730c558
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue May 14 10:10:30 2002 +0000

    Dutch translation updated by Reinout van Schouwen.
    
    2002-05-14 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    * nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 912 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 505 insertions(+), 411 deletions(-)

commit 02a080060192b3544f31548acaade9dce3284dab
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Tue May 14 09:01:47 2002 +0000

    Updated traditional Chinese translation.
    
    2002-05-14  Abel Cheung  <maddog@linux.org.hk>
    
        * zh_TW.po: Updated traditional Chinese translation.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 576 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 334 insertions(+), 246 deletions(-)

commit 30250b65de32e5c8e660b9b6415566b3ba2298b4
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue May 14 03:04:06 2002 +0000

    remove files

 po/POTFILES.skip | 2 --
 1 file changed, 2 deletions(-)

commit f20a9d4797fff3ba9fd5016546cc713e156302b2
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue May 14 00:00:17 2002 +0000

    merge in the missing atk patch.
    
    
    2002-05-10  Jody Goldberg <jody@gnome.org>
    
        * background-properties.glade : merge in the missing atk patch.

 capplets/background/ChangeLog                   |  4 ++++
 capplets/background/background-properties.glade | 11 +++++++++++
 2 files changed, 15 insertions(+)

commit f2a22a27b26521eb221b1ceed35ec989d4c2b5b6
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 13 21:58:53 2002 +0000

    Merge in the atk patch.
    
    
    2002-05-10  Jody Goldberg <jody@gnome.org>
    
        * gnome-keybinding-properties.glade : Merge in the atk patch.

 capplets/keybindings/ChangeLog                         | 4 ++++
 capplets/keybindings/gnome-keybinding-properties.glade | 9 +++++++++
 2 files changed, 13 insertions(+)

commit 107c6b5c0f4fc00f86b4e52c6e36c49d07dec7fa
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon May 13 21:32:58 2002 +0000

    hook up widget correctly.
    
    Mon May 13 17:32:25 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (delay_to_widget): hook up widget
        correctly.

 capplets/keyboard/ChangeLog                       |   5 +
 capplets/keyboard/gnome-keyboard-properties.c     |  10 +-
 capplets/keyboard/gnome-keyboard-properties.glade | 217 +++++++++++++---------
 3 files changed, 139 insertions(+), 93 deletions(-)

commit 1ce84d9edaf70ecca5cc225506bbb096520107b2
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon May 13 21:13:45 2002 +0000

    s/.gnome/.gnome2/g
    
    Mon May 13 17:05:22 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-font.c (load_cursor): s/.gnome/.gnome2/g

 gnome-settings-daemon/ChangeLog             | 4 ++++
 gnome-settings-daemon/gnome-settings-font.c | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit fa7e54c907950167fe1fc4deadbfce682d99bf45
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon May 13 20:56:35 2002 +0000

    uncomment accidentally commented lines. Also, fixed text, #76413
    
    Mon May 13 16:53:45 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-mouse-properties.c (main): uncomment accidentally
        commented lines.  Also, fixed text, #76413

 capplets/mouse/ChangeLog                    |  5 +++++
 capplets/mouse/gnome-mouse-properties.c     |  6 +++---
 capplets/mouse/gnome-mouse-properties.glade | 16 ++++++++--------
 3 files changed, 16 insertions(+), 11 deletions(-)

commit 1537266580b49095bdd8ce1ca4f0f308accf827e
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon May 13 19:07:24 2002 +0000

    Remove separator. Remove accelerators in tabs.
    
    
    2002-05-13  Jody Goldberg <jody@gnome.org>
    
        * gnome-mouse-properties.glade : Remove separator.
          Remove accelerators in tabs.

 capplets/mouse/ChangeLog                    |  5 +++++
 capplets/mouse/gnome-mouse-properties.glade | 17 ++++++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

commit e10c4dff7b5ea14553ed478712d70773fe33d289
Author: jacob berkman <jacob@ximian.com>
Date:   Mon May 13 16:43:02 2002 +0000

    add another windows file
    
    2002-05-13  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: add another windows file

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 89bc02ff2d631ffe606aa269ea3c5001cc7208fb
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Mon May 13 15:58:06 2002 +0000

    Updated Slovak translation.
    
    2002-05-13  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 634 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 327 insertions(+), 311 deletions(-)

commit 6e74ad12adca6c954f7c9080b3a48419326df67c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun May 12 14:07:49 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 ++
 po/no.po     | 123 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 82 insertions(+), 45 deletions(-)

commit b24bb0aede05741c0f7a64e0115c0d602060c4d0
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sun May 12 11:23:19 2002 +0000

    Updated Danish translation.
    
    2002-05-12  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 670 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 324 insertions(+), 350 deletions(-)

commit 8145d7fa303ca8ad90d02219a2ae0bfbd6a50c97
Author: Anders Carlsson <andersca@gnu.org>
Date:   Sun May 12 09:04:14 2002 +0000

    Lots of things. Fix drag threshold preference, use a GtkImage instead of a
    
    2002-05-12  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-mouse-properties.c: (drag_threshold_from_gconf),
        (drag_threshold_to_gconf), (event_box_button_press_event),
        (load_pixbufs), (setup_dialog), (create_dialog),
        (dialog_response_cb), (main):
        * gnome-mouse-properties.glade:
        Lots of things. Fix drag threshold preference, use a GtkImage
        instead of a GtkDrawingArea for the double click test. Remove
        weird weak refs throughout the code. Clean up the glade file,
        requires a new libglade that has an a11y ref count fix.

 capplets/mouse/ChangeLog                    |  12 +++
 capplets/mouse/gnome-mouse-properties.c     | 105 +++++++++-----------
 capplets/mouse/gnome-mouse-properties.glade | 143 +++++++++++++++++++++++++---
 3 files changed, 188 insertions(+), 72 deletions(-)

commit 69d701578dced56d50541ac392dcb372daa1d0c2
Author: Anders Carlsson <andersca@gnu.org>
Date:   Sun May 12 09:00:51 2002 +0000

    Watch the dnd threshold xsetting.
    
    2002-05-12  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-settings-xsettings.c:
        Watch the dnd threshold xsetting.

 gnome-settings-daemon/ChangeLog                  | 5 +++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 2 ++
 2 files changed, 7 insertions(+)

commit 886c62942f0d1fbaaead99e685bb049d46094518
Author: Anders Carlsson <andersca@gnu.org>
Date:   Sun May 12 08:59:56 2002 +0000

    Require a new libglade.
    
    2002-05-12  Anders Carlsson  <andersca@gnu.org>
    
        * configure.in: Require a new libglade.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2ba9847c0580129081d3c9a73f56234f43e6fef2
Author: Jacob Berkman <jacob@ximian.com>
Date:   Sat May 11 23:28:26 2002 +0000

    add windows
    
    2002-05-11  Jacob Berkman  <jacob@ximian.com>
    
        * capplets/Makefile.am (DIST_SUBDIRS): add windows

 ChangeLog            | 4 ++++
 capplets/Makefile.am | 4 ++++
 2 files changed, 8 insertions(+)

commit fe10684784d0234018d7adfee8c4b098e615fb15
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat May 11 19:10:24 2002 +0000

    Create the windows preference page makefile, and add gnome-desktop to the
    
    2002-05-11  Seth Nickell  <snickell@stanford.edu>
    
        * configure.in:
    
        Create the windows preference page makefile, and add gnome-desktop
        to the generic module flags.

 ChangeLog    | 7 +++++++
 configure.in | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 0b6fd7d726e3bcf61de7aa4260fa6e13ada8602c
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat May 11 19:08:05 2002 +0000

    Ignore gladep (grrr) files.
    
    2002-05-11  Seth Nickell  <snickell@stanford.edu>
    
        * .cvsignore:
    
        Ignore gladep (grrr) files.
    
        * Makefile.am:
        * gnome-window-manager.c: (gnome_window_manager_new):
        * gnome-window-manager.h:
        * metacity-window-manager.c: (window_manager_new),
        (metacity_set_theme), (metacity_get_theme_list),
        (metacity_set_font), (metacity_get_focus_follows_mouse),
        (metacity_set_focus_follows_mouse), (finalize), (class_init),
        (init), (metacity_window_manager_get_type):
        * metacity-window-manager.h:
    
        First pass at adding settings modules.
    
        * window-capplet.png:
    
        Use the wm-properties icon.
    
        * wm-list.c: (wm_list_find), (wm_list_find_exec):
    
        Nix some warnings caused by non-use of const.
    
        * gnome-window-properties.c: (setup_dialog):
        * gnome-window-properties.glade:
    
        Tweak appearance some more.

 capplets/windows/.cvsignore                    |   3 +-
 capplets/windows/ChangeLog                     |  31 +++++++
 capplets/windows/Makefile.am                   |  21 ++++-
 capplets/windows/gnome-window-manager.c        |  37 +++++++++
 capplets/windows/gnome-window-manager.h        |  53 ++++++++++++
 capplets/windows/gnome-window-properties.c     |   8 +-
 capplets/windows/gnome-window-properties.glade |   4 +-
 capplets/windows/metacity-window-manager.c     | 110 +++++++++++++++++++++++++
 capplets/windows/metacity-window-manager.h     |  37 +++++++++
 capplets/windows/window-capplet.png            | Bin 3047 -> 3047 bytes
 capplets/windows/wm-list.c                     |   4 +-
 11 files changed, 301 insertions(+), 7 deletions(-)

commit 7c22259a61ad7d57cf2b67f85951e4402b3b577e
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat May 11 19:04:55 2002 +0000

    Add the window capplet files.
    
    2002-05-11  Seth Nickell  <snickell@stanford.edu>
    
        * POTFILES.in:
    
        Add the window capplet files.

 po/ChangeLog   | 6 ++++++
 po/POTFILES.in | 3 +++
 2 files changed, 9 insertions(+)

commit 82f14be305cc7e5593362cf142afcf7bd79d7572
Author: Seth Nickell <seth@src.gnome.org>
Date:   Sat May 11 05:01:07 2002 +0000

    Hook titlebar font into GConf key.
    
    
        * gnome-window-properties.c: (setup_dialog), (main):
    
        Hook titlebar font into GConf key.
    
        * window-properties.desktop.in:
    
        Set title in .desktop file.

 capplets/windows/ChangeLog                    | 10 ++++++++++
 capplets/windows/gnome-window-properties.c    | 13 +++++++++++++
 capplets/windows/window-properties.desktop.in |  4 ++--
 3 files changed, 25 insertions(+), 2 deletions(-)

commit 0410c11e51b53dddf909d9133afa4e0764d3336b
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat May 11 04:48:16 2002 +0000

    Make the glade file look a little bit better, hide the property widgets
    
    2002-05-10  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-window-properties.c: (set_wm_change_pending),
        (state_changed), (create_dialog):
        * gnome-window-properties.glade:
    
        Make the glade file look a little bit better, hide the property widgets when
        there is a window manager change pending.

 capplets/windows/ChangeLog                     |   9 ++
 capplets/windows/gnome-window-properties.c     |  15 ++-
 capplets/windows/gnome-window-properties.glade | 123 ++++++++++++-------------
 3 files changed, 81 insertions(+), 66 deletions(-)

commit ad15ad16c954beaa819f3ec534b26a7866e5816a
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat May 11 04:28:20 2002 +0000

    2002-05-10  Seth Nickell  <snickell@stanford.edu>
    
        * .cvsignore:
        * Makefile.am:
        * gnome-window-properties.c: (wm_selection_changed),
        (wm_widget_clear), (wm_widget_new), (wm_widget_add_wm),
        (response_cb), (state_changed), (restart_label_update),
        (restart_dialog_raise), (restart_dialog_destroyed),
        (show_restart_dialog), (hide_restart_dialog), (update_session),
        (init_session), (update_gui), (init_callback), (restart_finalize),
        (restart_failure), (show_restart_info), (restart_finish),
        (restart_callback), (restart), (revert_callback),
        (cancel_callback), (apply_wm), (create_dialog), (main):
        * gnome-window-properties.glade:
        * window-capplet.png:
        * window-properties.desktop.in:
        * wm-exec.c: (wm_is_running), (find_gnome_wm_window),
        (find_wm_window_from_client), (window_has_wm_state),
        (descendent_has_wm_state), (find_wm_window_from_hunt),
        (find_wm_window), (start_timeout), (start_do), (kill_timeout),
        (wm_restart), (wm_guess_current):
        * wm-list.c: (is_blank), (wm_compare), (wm_free),
        (wm_check_present), (wm_copy), (wm_list_find), (wm_list_find_exec),
        (wm_list_find_files), (wm_list_read_dir), (wm_list_init),
        (wm_list_save), (wm_list_revert), (wm_list_add), (wm_list_delete),
        (wm_list_set_current), (wm_list_get_current), (wm_list_get_revert),
        (wm_read_from_xml), (wm_list_read_from_xml), (wm_write_to_xml),
        (wm_list_write_to_xml), (xml_read_bool), (xml_write_bool):
        * wm-properties.h:

 capplets/windows/.cvsignore                    |  10 +
 capplets/windows/ChangeLog                     |  29 +
 capplets/windows/Makefile.am                   |  31 +
 capplets/windows/gnome-window-properties.c     | 797 +++++++++++++++++++++++++
 capplets/windows/gnome-window-properties.glade | 275 +++++++++
 capplets/windows/window-capplet.png            | Bin 0 -> 3047 bytes
 capplets/windows/window-properties.desktop.in  |   8 +
 capplets/windows/wm-exec.c                     | 331 ++++++++++
 capplets/windows/wm-list.c                     | 574 ++++++++++++++++++
 capplets/windows/wm-properties.h               |  63 ++
 10 files changed, 2118 insertions(+)

commit 00c628d44b96ddfebc99071005d8828611cef549
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sat May 11 00:18:35 2002 +0000

    forgot this

 capplets/font/font-properties.glade | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5233e6cf332d5f99cc5988fb28210eebeda1739f
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sat May 11 00:17:43 2002 +0000

    get it to use the right key.
    
    Fri May 10 19:00:25 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * main.c (DESKTOP_FONT_NAME_KEY): get it to use the right key.

 capplets/font/ChangeLog |  4 ++++
 capplets/font/main.c    | 11 +++--------
 2 files changed, 7 insertions(+), 8 deletions(-)

commit c20bc638f0deb4b89c291e2f6e46b40efd0f7a08
Author: Anders Carlsson <andersca@gnu.org>
Date:   Fri May 10 19:44:43 2002 +0000

    Remove ellipsis after "Go to theme folder".
    
    2002-05-10  Anders Carlsson  <andersca@gnu.org>
    
        * theme-properties.glade:
        Remove ellipsis after "Go to theme folder".
    
        * theme-switcher.c: (show_manage_themes):
        Create the .themes directory if it doesn't exist.

 capplets/theme-switcher/ChangeLog              | 16 +++++++++++
 capplets/theme-switcher/theme-properties.glade | 38 ++++----------------------
 capplets/theme-switcher/theme-switcher.c       | 17 ++++++++++--
 3 files changed, 36 insertions(+), 35 deletions(-)

commit 760753c7b17c925095de13e8a9baedd56e21ecf3
Author: Anders Carlsson <andersca@gnu.org>
Date:   Fri May 10 19:28:56 2002 +0000

    If the threshold or acceleration value is -1, just set the slider to the
    
    2002-05-10  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-mouse-properties.c: (get_default_mouse_info),
        (motion_acceleration_from_gconf), (threshold_from_gconf):
        If the threshold or acceleration value is -1, just set the slider
        to the default X value.

 capplets/mouse/ChangeLog                |  7 +++++
 capplets/mouse/gnome-mouse-properties.c | 51 +++++++++++++++++++++++++++++++--
 2 files changed, 56 insertions(+), 2 deletions(-)

commit f9cd95648f9d2affe225649ab585d07f6d4737e0
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri May 10 18:55:12 2002 +0000

    updated catalan and vientamese files

 po/ChangeLog |    5 +
 po/ca.po     | 5362 +++++++++-------------------------------------------------
 po/vi.po     | 1458 +++-------------
 3 files changed, 1084 insertions(+), 5741 deletions(-)

commit d9a3c9ab29a08e008609c8af11bc51a8cdb28433
Author: jacob berkman <jacob@ximian.com>
Date:   Fri May 10 16:39:21 2002 +0000

    work around a gcc 2.96 bug (fixes #77121)
    
    2002-05-10  jacob berkman  <jacob@ximian.com>
    
        * mime-type-info.c (mime_category_info_get_full_description):
        (mime_category_info_get_full_name): work around a gcc 2.96 bug
        (fixes #77121)

 capplets/file-types/ChangeLog        |  6 ++++++
 capplets/file-types/mime-type-info.c | 15 +++++++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

commit 5000af2e58c67722f1db9a3c6736b425f5fb376c
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 18:25:46 2002 +0000

    add a help button. ditto.
    
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-ui-properties.glade : add a help button.
        * gnome-ui-properties.c (dialog_button_clicked_cb) : ditto.

 capplets/ui-properties/ChangeLog                 |  5 +++++
 capplets/ui-properties/gnome-ui-properties.c     | 22 ++++++++++++++--------
 capplets/ui-properties/gnome-ui-properties.glade | 13 ++++++++++++-
 3 files changed, 31 insertions(+), 9 deletions(-)

commit 6eed1b852a93fc8c9b23622a5b53ec0bae8a71cb
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 18:00:57 2002 +0000

    enable help. (main) : ditto.
    
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-mouse-properties.c (dialog_button_clicked_cb) : enable help.
        (main) : ditto.

 capplets/mouse/ChangeLog                    |  5 +++++
 capplets/mouse/gnome-mouse-properties.c     | 19 ++++++++++++++-----
 capplets/mouse/gnome-mouse-properties.glade |  8 ++++----
 3 files changed, 23 insertions(+), 9 deletions(-)

commit 263bc20dd57159b0b5aaec74ebb6baff799e015c
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:57:50 2002 +0000

    support help. add help.
    
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (dialog_response) : support help.
        * gnome-keyboard-properties.glade : add help.

 capplets/keyboard/ChangeLog                       |  5 +++++
 capplets/keyboard/gnome-keyboard-properties.c     | 20 +++++++++++++-------
 capplets/keyboard/gnome-keyboard-properties.glade | 14 +++++++++++++-
 3 files changed, 31 insertions(+), 8 deletions(-)

commit c25f7499792ec5813c7b9e19f85375110f010f1e
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:54:50 2002 +0000

    add a help button.
    
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * background-properties-capplet.c (main) : add a help button.

 capplets/background/ChangeLog                      |   4 +
 .../background/background-properties-capplet.c     |   1 +
 capplets/background/prefs-widget.c                 | 729 ---------------------
 capplets/background/prefs-widget.h                 |  64 --
 4 files changed, 5 insertions(+), 793 deletions(-)

commit 07046a3332df394d31d649a58ebb15c68fe17491
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:47:50 2002 +0000

    fix path to help.
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.c (dialog_response) : fix
          path to help.

 capplets/accessibility/keyboard/ChangeLog                            | 5 +++++
 .../accessibility/keyboard/gnome-accessibility-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 066a3dd0c6d045e33c558c594a5ff7436f69f737
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu May 9 17:46:16 2002 +0000

    update

 capplets/theme-switcher/.cvsignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 878f4100266ddf16fc2e42969428f391e765fe6e
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:44:04 2002 +0000

    long forgotten atk patch from Dave. Sorry.
    
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : long forgotten atk patch from Dave.
          Sorry.

 capplets/keyboard/ChangeLog                       |  5 ++++
 capplets/keyboard/gnome-keyboard-properties.glade | 28 +++++++++++++++++++----
 2 files changed, 28 insertions(+), 5 deletions(-)

commit 3a83165ed199e2f91adb1fed84d7dbda35b803dd
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:41:50 2002 +0000

    long forgotten atk patch from Dave. Sorry.
    
    
    2002-05-09  Jody Goldberg <jody@gnome.org>
    
        * gnome-mouse-properties.glade : long forgotten atk patch from Dave.
          Sorry.

 capplets/mouse/ChangeLog                    |    5 +
 capplets/mouse/gnome-mouse-properties.glade | 1842 ++++++++++++++-------------
 2 files changed, 983 insertions(+), 864 deletions(-)

commit 944fbc62171a0685ceaef58106438c129ad4192c
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:40:48 2002 +0000

    add help.
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * gnome-network-preferences.glade : add help.
    
        * gnome-network-preferences.c (cb_dialog_response) : fix help.

 capplets/network/ChangeLog                       |  6 ++++++
 capplets/network/gnome-network-preferences.c     | 25 ++++++++++++++----------
 capplets/network/gnome-network-preferences.glade | 12 ++++++++++++
 3 files changed, 33 insertions(+), 10 deletions(-)

commit 3a0f926fc8f3f2f006076d955192212873fec9e3
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 17:40:33 2002 +0000

    new. (setup_dialog) : support help.
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * theme-switcher.c (cb_dialog_response) : new.
        (setup_dialog) : support help.

 capplets/theme-switcher/ChangeLog        |  5 +++++
 capplets/theme-switcher/theme-switcher.c | 24 ++++++++++++++++++++++--
 2 files changed, 27 insertions(+), 2 deletions(-)

commit 422a93f0d2436d1b6bad8555384bade2fe861e23
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu May 9 12:37:30 2002 +0000

    new. (setup_dialog) : support help.
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * main.c (cb_dialog_response) : new.
        (setup_dialog) : support help.

 capplets/font/ChangeLog |  5 +++++
 capplets/font/main.c    | 24 ++++++++++++++++++++++--
 2 files changed, 27 insertions(+), 2 deletions(-)

commit 612ed26247fccaac9562785341bcfa1fa96362ea
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu May 9 10:58:31 2002 +0000

    Mark a string for translation.
    
    2002-05-09  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keybindings-properties.c (accel_edited_callback): Mark
        a string for translation.

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 139278829433c7e8a0359df27fbd34127e7c74bd
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed May 8 22:12:25 2002 +0000

    update schema keys to reflect the installed file.
    
    Wed May  8 17:54:57 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/network/gnome-network-preferences.c: update schema keys
        to reflect the installed file.

 ChangeLog                                    |  5 +++++
 capplets/network/gnome-network-preferences.c | 12 ++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

commit 29cc929d0cac2e7e47c8ded0eb5d8e63d8d9c11c
Author: Dennis Cranston <dennis_cranston@yahoo.com>
Date:   Wed May 8 21:07:17 2002 +0000

    add a stock information image to the "You can drag image files..." text.
    
    
    2002-05-02  Dennis Cranston <dennis_cranston@yahoo.com>
    
        * background-properties.glade: add a stock information image
        to the "You can drag image files..." text.
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * background-properties-capplet.c (cb_dialog_response) : new.
        (main) : support help.

 capplets/background/ChangeLog                      | 10 +++
 .../background/background-properties-capplet.c     | 26 +++++---
 capplets/background/background-properties.glade    | 75 ++++++++++++++++++----
 3 files changed, 89 insertions(+), 22 deletions(-)

commit d24aa91cd1f45f8772f85c169de1129007ade8bc
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Wed May 8 18:38:52 2002 +0000

    New doubleclick artwork

 capplets/mouse/ChangeLog              |   6 ++++++
 capplets/mouse/double-click-maybe.png | Bin 4491 -> 4643 bytes
 capplets/mouse/double-click-off.png   | Bin 4495 -> 4751 bytes
 capplets/mouse/double-click-on.png    | Bin 4627 -> 6360 bytes
 4 files changed, 6 insertions(+)

commit 97d5856b53968e7e23633286994042b7f38cf874
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 8 15:24:50 2002 +0000

    fix help path
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * sound-properties-capplet.c (dialog_button_clicked_cb) : fix help path
    
    2002-05-07  Jody Goldberg <jody@gnome.org>
    
        * sound-properties-capplet.c (main) : add help.
        (dialog_button_clicked_cb) : support help and support WM based exit.

 capplets/sound/ChangeLog                  |  9 +++++++++
 capplets/sound/sound-properties-capplet.c | 19 ++++++++++++++-----
 2 files changed, 23 insertions(+), 5 deletions(-)

commit 7caf4ce36b0e509ff84f0dfcdb57b3b7002a113a
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed May 8 15:23:52 2002 +0000

    fix path to help.
    
    
    2002-05-08  Jody Goldberg <jody@gnome.org>
    
        * file-types-capplet.c (cb_file_type_dialog_response) : fix path to
        help.
    
        http://bugzilla.gnome.org/show_bug.cgi?id=81030
        * service-info.c (fill_service_apps) : we don't own the app, don't
          free it.

 capplets/file-types/ChangeLog            | 9 +++++++++
 capplets/file-types/file-types-capplet.c | 2 +-
 capplets/file-types/service-info.c       | 1 -
 3 files changed, 10 insertions(+), 2 deletions(-)

commit b17c58bad1366f879622acf618929a53dbe6c552
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue May 7 14:42:35 2002 +0000

    other unused files

 capplets/sound/main.c               | 302 ------------------------------------
 capplets/sound/sound-properties.xml |   7 -
 2 files changed, 309 deletions(-)

commit 11ce246569884449a601dee251f6d9f72c387a8c
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue May 7 14:41:09 2002 +0000

    remove more unused files

 capplets/sound/prefs-widget.c | 434 ------------------------------------------
 capplets/sound/prefs-widget.h |  64 -------
 2 files changed, 498 deletions(-)

commit 6de4823527db298ae8ff1d596cf581614823e252
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue May 7 14:40:18 2002 +0000

    remove used files

 capplets/sound/preferences.c | 952 -------------------------------------------
 capplets/sound/preferences.h | 111 -----
 2 files changed, 1063 deletions(-)

commit b6c5b208c2d99b4d06383ab6bdddd2c0aa54ff0c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 7 08:49:22 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-05-07  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |    4 +
 po/no.po     | 1679 ++--------------------------------------------------------
 2 files changed, 47 insertions(+), 1636 deletions(-)

commit 2083507b39500d5f57da27af73e30f9a3e727a32
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon May 6 22:38:24 2002 +0000

    Bump version to 1.99.10
    
    2002-05-06  Rachel Hestilow  <hestilow@ximian.com>
    
        * configure.in: Bump version to 1.99.10
    
        * RELEASE: 1.99.10

 ChangeLog    |   12 +
 configure.in |    2 +-
 po/az.po     |  204 +++++++--
 po/ca.po     |  228 +++++++++--
 po/cs.po     |  217 ++++++++--
 po/da.po     |  195 ++++++++-
 po/de.po     |  220 ++++++++--
 po/el.po     |  226 ++++++++--
 po/en_GB.po  |  182 ++++++++-
 po/es.po     |   84 ++--
 po/et.po     |  195 ++++++++-
 po/fi.po     |  195 ++++++++-
 po/fr.po     |  195 ++++++++-
 po/ga.po     |  202 +++++++--
 po/gl.po     |  212 ++++++++--
 po/hr.po     |  213 ++++++++--
 po/hu.po     |  212 ++++++++--
 po/it.po     |  220 ++++++++--
 po/ja.po     |  221 ++++++++--
 po/ko.po     |  146 ++++---
 po/lt.po     |  212 ++++++++--
 po/lv.po     |  230 +++++++++--
 po/ms.po     |  195 ++++++++-
 po/nl.po     |  649 +++++++++++++++++++----------
 po/nn.po     |  210 ++++++++--
 po/no.po     |  206 ++++++----
 po/pl.po     |  195 ++++++++-
 po/pt.po     |  117 +++---
 po/pt_BR.po  |  204 +++++++--
 po/ro.po     |  221 ++++++++--
 po/ru.po     |  195 ++++++++-
 po/sk.po     |  195 ++++++++-
 po/sl.po     |  482 +++++++++++++++-------
 po/sv.po     |  219 ++++++++--
 po/tr.po     |  190 ++++++++-
 po/uk.po     | 1295 ++++++++++++++++++++++++++++++++++++++++++++++++++++++----
 po/vi.po     |  195 ++++++++-
 po/wa.po     |  190 ++++++++-
 po/zh_CN.po  |  195 ++++++++-
 po/zh_TW.po  |  203 +++++++--
 40 files changed, 7801 insertions(+), 1578 deletions(-)

commit 4025142991ce46a10150897c2d9d0b80805768da
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon May 6 21:40:28 2002 +0000

    remove print statements
    
    Mon May  6 17:40:17 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * theme-switcher.c: remove print statements
    
        * theme-properties.glade: Fix up UI.  Not perfect, but better.

 capplets/theme-switcher/ChangeLog              |   6 +
 capplets/theme-switcher/theme-properties.glade | 274 +++++++++----------------
 capplets/theme-switcher/theme-switcher.c       |   2 -
 3 files changed, 104 insertions(+), 178 deletions(-)

commit 9f62355ef21b8fe1579b7eb98261e5ad03762968
Author: jacob berkman <jacob@ximian.com>
Date:   Mon May 6 17:16:01 2002 +0000

    remove unused file
    
    2002-05-06  jacob berkman  <jacob@ximian.com>
    
        * ui-properties.glade.h: remove unused file

 capplets/ui-properties/ChangeLog             |  4 +++
 capplets/ui-properties/ui-properties.glade.h | 46 ----------------------------
 2 files changed, 4 insertions(+), 46 deletions(-)

commit bfcbe7c7209b079392deb7b8933e568b2ce84567
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon May 6 14:11:18 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 372 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 238 insertions(+), 138 deletions(-)

commit 13719951dd514693c91c21977c8913ee968df289
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon May 6 08:29:02 2002 +0000

    I WILL COMPILE BEFORE COMMITTING
    I WILL COMPILE BEFORE COMMITTING
    I WILL COMPILE BEFORE COMMITTING
    I WILL COMPILE BEFORE COMMITTING
    
    2002-05-06  Anders Carlsson  <andersca@gnu.org>
    
        * schemas/Makefile.am: Doh! Remove the file from automake.

 ChangeLog           | 2 ++
 schemas/Makefile.am | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 013a0562513f59cc9c102fea42f0bb8eeb7f8a0f
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon May 6 07:18:54 2002 +0000

    Fix the support for both_horiz as the toolbar style.
    
    2002-05-06  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-ui-properties.c: (create_dialog):
        Fix the  support for both_horiz as the toolbar style.
    
        * gnome-ui-properties.glade:
        Re-add all option menu items; Somehow they got lost.

 capplets/ui-properties/ChangeLog                 |   8 ++
 capplets/ui-properties/gnome-ui-properties.c     |   8 +-
 capplets/ui-properties/gnome-ui-properties.glade | 141 +++++++++++++++++++----
 3 files changed, 132 insertions(+), 25 deletions(-)

commit 55803cc239249f997bc47940c991c40e47cb9264
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon May 6 07:13:50 2002 +0000

    We now hard-code the key list, so this isn't neede anymore.
    
    2002-05-06  Anders Carlsson  <andersca@gnu.org>
    
        * schemas/apps_gnome_keybinding_properties.schemas:
        We now hard-code the key list, so this isn't neede anymore.

 ChangeLog                                        |  5 +++++
 schemas/apps_gnome_keybinding_properties.schemas | 19 -------------------
 2 files changed, 5 insertions(+), 19 deletions(-)

commit 6cdacb60eec50f1066e1360dd8c6d7bf3e16e47e
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon May 6 06:12:47 2002 +0000

    It's true that g_utf8_validate doesn't like '\000' in strings, but that
    
    2002-05-06  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-keybinding-properties.c (get_wm_name): It's true that
        g_utf8_validate doesn't like '\000' in strings, but that should
        be fixed in the programs that set the hints. (Eg Metacity).

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 9390568d1e69f760dc7ca267a6b439d28123a695
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon May 6 02:40:15 2002 +0000

    g_utf8_validate doesn't like the '\000' in strings.
    
    Sun May  5 22:15:18 2002  Jonathan Blandford  <jrb@gnome.org>
    
            * gnome-keybinding-properties.c (get_wm_name): g_utf8_validate
            doesn't like the '\000' in strings.

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0f67005a9c6df61aa43419f2f514ec717f719b00
Author: Anders Carlsson <andersca@gnu.org>
Date:   Sun May 5 23:04:45 2002 +0000

    Update to latest eggcellrendererkeys.
    
    2002-05-06  Anders Carlsson  <andersca@gnu.org>
    
        * eggcellrendererkeys.c: (grab_key_callback), (ungrab_stuff),
        (pointless_eventbox_start_editing),
        (egg_cell_renderer_keys_start_editing):
        * eggcellrendererkeys.h:
        Update to latest eggcellrendererkeys.
    
        * gnome-keybinding-properties.c: (get_wm_name),
        (is_metacity_running), (update_wm_window),
        (wm_window_event_filter), (initialize_wm_handling),
        (binding_from_string), (accel_set_func), (keybinding_key_changed),
        (clear_old_model), (count_rows_foreach), (should_show_key),
        (append_keys_to_tree), (reload_key_entries),
        (key_entry_controlling_key_changed), (disable_collapsing_cb),
        (setup_dialog), (main):
        * gnome-keybinding-properties.glade:
        Hard-code the list of keybindings. Add Metacity keybindings
        and code for handling WM changes.

 capplets/keybindings/ChangeLog                     |  20 +
 capplets/keybindings/eggcellrendererkeys.c         |  80 ++--
 capplets/keybindings/eggcellrendererkeys.h         |   2 +-
 capplets/keybindings/gnome-keybinding-properties.c | 443 +++++++++++++++------
 .../keybindings/gnome-keybinding-properties.glade  |  27 +-
 5 files changed, 411 insertions(+), 161 deletions(-)

commit 0ea4906ae94b4d75bce37cf341f2293cda45af6e
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Sat May 4 03:30:53 2002 +0000

    Updated Portuguese translation and converted to UTF-8.
    
    2002-05-04  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation and converted to UTF-8.

 po/ChangeLog |   4 +
 po/pt.po     | 970 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 558 insertions(+), 416 deletions(-)

commit fa54b079f5e8bacd017f77dedb417215f07fdf61
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri May 3 22:17:38 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=80327 Doh! If the current tree
    
    
    2002-04-30  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=80327
        * service-edit-dialog.c (program_changed_cb) : Doh! If the current
        tree selection is not a service then the app can be null.

 capplets/file-types/ChangeLog             |  6 ++++++
 capplets/file-types/service-edit-dialog.c | 14 ++++++++++----
 2 files changed, 16 insertions(+), 4 deletions(-)

commit 58b43d9ad863785d385dc0c86f516e150979a5cf
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri May 3 13:40:23 2002 +0000

    missed commit

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit c5bd2d0204b3a0d5210ba7853ca02123b59a4ce8
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Thu May 2 19:03:40 2002 +0000

    Updated Dutch translation (Huib Kleinhout) UTF-8.
    
    2002-05-02  Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
        * nl.po: Updated Dutch translation (Huib Kleinhout) UTF-8.

 po/ChangeLog |   4 +
 po/nl.po     | 528 +++++++++++++++++++++++++----------------------------------
 2 files changed, 225 insertions(+), 307 deletions(-)

commit 651421f55cedf8137a512b7a9430e7587ff0e84c
Author: Germn Poo-Caamao <gpoo@ubiobio.cl>
Date:   Wed May 1 18:16:27 2002 +0000

    Updated Spanish translation from Hctor Garca lvarez
    
    2002-05-01  Germn Poo-Caamao  <gpoo@ubiobio.cl>
    
        * es.po: Updated Spanish translation from
        Hctor Garca lvarez <hector@scouts-es.org>

 po/ChangeLog |    5 +
 po/es.po     | 1936 +++++++++++++++++-----------------------------------------
 2 files changed, 552 insertions(+), 1389 deletions(-)

commit bd50317fd632a9665e51c764002293a1a20e4c5e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed May 1 09:22:51 2002 +0000

    Fix to use the intltool rules from Christophe Fergeau
    
    2002-05-01  Kjartan Maraas  <kmaraas@gnome.org>
    
        * Makefile.am: Fix to use the intltool rules from Christophe Fergeau
        <teuf@users.sourceforge.net>

 capplets/desktop-links/ChangeLog   | 5 +++++
 capplets/desktop-links/Makefile.am | 6 ++----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit 0ffaac722b7d6eb89a8c0ba5aed1ef4a8e31cce0
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed May 1 07:33:24 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 1497 +++++++++++---------------------------------------------------
 1 file changed, 259 insertions(+), 1238 deletions(-)

commit cbc7b41047cc4e970ab42ecce59ec85ad097472f
Author: Anders Carlsson <andersca@gnu.org>
Date:   Tue Apr 30 17:34:36 2002 +0000

    Use a snazzier icon here.
    
    2002-04-30  Anders Carlsson  <andersca@gnu.org>
    
        * capplets/network/gnome-network-preferences.desktop.in:
        Use a snazzier icon here.

 ChangeLog                                             | 5 +++++
 capplets/network/gnome-network-preferences.desktop.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d7d64d15c40bd800f075394e45e69abba6d8339b
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Apr 30 11:56:21 2002 +0000

    Updated Slovenian translation

 po/sl.po | 317 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 132 insertions(+), 185 deletions(-)

commit 20d7724c5c97324aa4711e7ddb1e68bb635f0759
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 30 09:50:07 2002 +0000

    added gnome-settings-daemon/* Updated Norwegian (bokml) translation.
    
    2002-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: added gnome-settings-daemon/*
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog     |  5 ++++
 po/POTFILES.in   |  4 +++
 po/POTFILES.skip |  1 +
 po/no.po         | 85 +++++++++++++++++++++++++++++++++-----------------------
 4 files changed, 61 insertions(+), 34 deletions(-)

commit 7e5b5a29d73bb0945e15c0b50545b4511220bfe9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 30 09:45:05 2002 +0000

    Add calls to bindtext* for i18n. Add -DGNOMELOCALEDIR="\".....\"" Mark
    
    2002-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * factory.c: Add calls to bindtext* for i18n.
        * Makefile.am: Add -DGNOMELOCALEDIR="\".....\""
        * gnome-settings-font.c: Mark strings and add #includes.
        * gnome-settings-screensaver.c: Same
        * gnome-settings-sound.c: Same.
        * gnome-settings-xsettings.c: Same.
        * gnome-settings-wm.c: Fix a warning.

 gnome-settings-daemon/ChangeLog                    | 10 ++++++++++
 gnome-settings-daemon/Makefile.am                  |  2 +-
 gnome-settings-daemon/factory.c                    |  4 ++++
 gnome-settings-daemon/gnome-settings-font.c        |  6 ++++--
 gnome-settings-daemon/gnome-settings-screensaver.c |  7 ++++---
 gnome-settings-daemon/gnome-settings-sound.c       |  9 +++++----
 gnome-settings-daemon/gnome-settings-wm.c          |  2 +-
 gnome-settings-daemon/gnome-settings-xsettings.c   |  5 ++++-
 8 files changed, 33 insertions(+), 12 deletions(-)

commit a5bfc8ec6b6e12f1322b59a06d79b25e799446cf
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 30 08:59:45 2002 +0000

    added capplets/common/file-transfer-dialog.c Updated Norwegian (bokml)
    
    2002-04-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: added capplets/common/file-transfer-dialog.c
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   1 +
 po/no.po       | 283 ++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 165 insertions(+), 124 deletions(-)

commit 2ce48fc26380fb2325827a94d009b7955845794a
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Tue Apr 30 00:36:20 2002 +0000

    Further revamp based on seth's suggestions.
    
    2002-04-29  Rachel Hestilow  <hestilow@ximian.com>
    
        * theme-properties.glade: Further revamp based on seth's suggestions.

 capplets/theme-switcher/ChangeLog              |  4 +++
 capplets/theme-switcher/theme-properties.glade | 40 ++++++++++++++++++++++----
 2 files changed, 39 insertions(+), 5 deletions(-)

commit 7a1eba86cc657757c229682f3f0a528d59714346
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Tue Apr 30 00:01:29 2002 +0000

    Set dialog title to current phase.
    
    2002-04-29  Rachel Hestilow  <hestilow@ximian.com>
    
        * file-transfer-dialog.c (file_transfer_dialog_update_cb):
        Set dialog title to current phase.

 capplets/common/ChangeLog              | 5 +++++
 capplets/common/file-transfer-dialog.c | 4 ++++
 2 files changed, 9 insertions(+)

commit c5676bc607b0b429d01f78c1729a9dd403f792b5
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Tue Apr 30 00:00:38 2002 +0000

    Hide checkbutton until we actually implement that...put it on the
    
    2002-04-29  Rachel Hestilow  <hestilow@ximian.com>
    
        * theme-properties.glade: Hide checkbutton until we actually
        implement that...put it on the backburner for now.

 capplets/theme-switcher/ChangeLog              | 5 +++++
 capplets/theme-switcher/theme-properties.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit dbe7958fd3f50ecd1456fd4b7bb219431bd8fc7c
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 29 23:53:23 2002 +0000

    Added.
    
    2002-04-29  Rachel Hestilow  <hestilow@ximian.com>
    
        * file-transfer-dialog.[ch]: Added.
    
        * Makefile.am: Compile file-transfer-dialog.[ch].

 capplets/common/ChangeLog              |   6 +
 capplets/common/Makefile.am            |   1 +
 capplets/common/file-transfer-dialog.c | 416 +++++++++++++++++++++++++++++++++
 capplets/common/file-transfer-dialog.h |  69 ++++++
 4 files changed, 492 insertions(+)

commit 005db4a9dff222527cd66b8f9b6f78ea2293b82d
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 29 23:52:38 2002 +0000

    Add support for install/manage themes.
    
    2002-04-29  Rachel Hestilow  <hestilow@ximian.com>
    
        * theme-properties.glade, theme-swither.c: Add support
        for install/manage themes.

 capplets/theme-switcher/ChangeLog              |   5 +
 capplets/theme-switcher/theme-properties.glade | 479 +++++++++++++++++++++++--
 capplets/theme-switcher/theme-switcher.c       | 187 +++++++++-
 3 files changed, 634 insertions(+), 37 deletions(-)

commit 9084c2eb25d38f578e6ae2deb9a42d0129d52308
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 29 20:14:17 2002 +0000

    Bump version to 1.99.8
    
    2002-04-29  Rachel Hestilow  <hestilow@ximian.com>
    
        * configure.in: Bump version to 1.99.8
    
        * RELEASE: 1.99.8

 ChangeLog    |    6 +
 configure.in |    2 +-
 po/az.po     |  413 +++++++++++--------
 po/ca.po     |  498 ++++++++++++----------
 po/cs.po     |  501 ++++++++++++----------
 po/da.po     |  481 ++++++++++++---------
 po/de.po     |  323 ++++++++-------
 po/el.po     |  515 +++++++++++++----------
 po/en_GB.po  |  358 ++++++++++------
 po/es.po     |  418 +++++++++++--------
 po/et.po     |  268 ++++++------
 po/fi.po     |  480 ++++++++++++---------
 po/fr.po     |  316 ++++++++------
 po/ga.po     |  480 ++++++++++++---------
 po/gl.po     |  504 +++++++++++++---------
 po/hr.po     |  489 ++++++++++++----------
 po/hu.po     |  510 +++++++++++++----------
 po/it.po     |  503 ++++++++++++----------
 po/ja.po     |  504 ++++++++++++----------
 po/ko.po     |  382 ++++++++++-------
 po/lt.po     |  518 +++++++++++++----------
 po/lv.po     |  520 +++++++++++++----------
 po/ms.po     |  468 ++++++++++++---------
 po/nl.po     |  712 +++++++++++++++++++++-----------
 po/nn.po     |  457 +++++++++++---------
 po/no.po     |  108 +++--
 po/pl.po     |  453 ++++++++++++--------
 po/pt.po     |  471 ++++++++++++---------
 po/pt_BR.po  |  412 ++++++++++--------
 po/ro.po     |  558 ++++++++++++++-----------
 po/ru.po     |  463 +++++++++++++--------
 po/sk.po     |  471 ++++++++++++---------
 po/sl.po     |  317 ++++++++------
 po/sv.po     |  485 +++++++++++++---------
 po/tr.po     |  430 +++++++++++--------
 po/uk.po     |  396 +++++++++++-------
 po/vi.po     | 1307 ++++++++++++++++++++++++++++++++++++++++++++++------------
 po/wa.po     |  423 ++++++++++++-------
 po/zh_CN.po  |  465 +++++++++++++--------
 po/zh_TW.po  |  500 +++++++++++++---------
 40 files changed, 10934 insertions(+), 6951 deletions(-)

commit 527e740b1b929cade05267b9db4fff1ca3f8b1a6
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Apr 29 16:39:37 2002 +0000

    Added Vietnamse file, updated Walloon file

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/vi.po     | 1809 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/wa.po     | 1757 +++++++++-----------------------------------------------
 5 files changed, 2091 insertions(+), 1486 deletions(-)

commit b1e355861d1d35ba25a3daba9dfd12f3cac9841c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Apr 29 12:19:45 2002 +0000

    Remove translatable="yes" for a wrong case.
    
    2002-04-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * ui-properties.glade: Remove translatable="yes" for a wrong case.

 capplets/ui-properties/ChangeLog           | 4 ++++
 capplets/ui-properties/ui-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3f3cdc5038fac948289f16eb33ab64e49e46d84d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Apr 29 12:18:17 2002 +0000

    Do not use .glade.h files, but the .glade file directly. Updated Norwegian
    
    2002-04-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Do not use .glade.h files, but the .glade file directly.
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   2 +-
 po/no.po       | 304 ++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 176 insertions(+), 135 deletions(-)

commit 3154727ab8b81b4e09d65b66163640c3aea72457
Author: jacob berkman <jacob@localhost.localdomain>
Date:   Sun Apr 28 17:08:08 2002 +0000

    fix more theme stuff
    
    2002-04-28  jacob berkman  <jacob@localhost.localdomain>
    
        * POTFILES.in: fix more theme stuff

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit ae046b7f28a59ec7ed1ebd908def5e2957a07114
Author: Jacob Berkman <jacob@dna.ximian.com>
Date:   Sun Apr 28 02:07:40 2002 +0000

    remove the theme .desktop.in.in
    
    2002-04-27  Jacob Berkman  <jacob@dna.ximian.com>
    
        * POTFILES.in: remove the theme .desktop.in.in

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit f8d20c8817f30a1bf2c6170a25e2049e27c289b9
Author: Seth Nickell <seth@src.gnome.org>
Date:   Sat Apr 27 21:13:38 2002 +0000

    *** empty log message ***

 capplets/font/font-properties.desktop.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit de7b81ecea9003c225b3afcf385a5bf9662f3826
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Apr 27 21:12:30 2002 +0000

    Tweak categories and comment a little.
    
    2002-04-27  Seth Nickell  <snickell@stanford.edu>
    
        * font-properties.desktop.in:
    
        Tweak categories and comment a little.
    
        * font-properties.glade:
    
        Change labels to be a little more descriptive,
        force dialogue to be a little larger.

 capplets/font/ChangeLog                  | 11 +++++++++++
 capplets/font/font-properties.desktop.in |  4 ++--
 capplets/font/font-properties.glade      | 19 ++++++++++---------
 3 files changed, 23 insertions(+), 11 deletions(-)

commit 3cfb87844f527e91da6b6f24b65b1a6f4e6ab60f
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Apr 27 21:02:33 2002 +0000

    Improve the comment.
    
    2002-04-27  Seth Nickell  <snickell@stanford.edu>
    
        * background.desktop.in:
    
        Improve the comment.

 capplets/background/ChangeLog             | 6 ++++++
 capplets/background/background.desktop.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit f6a651f994a527d460ee3a0772420bb9ab5d8756
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Apr 27 20:59:49 2002 +0000

    Change name, move out of Advanced category.
    
    2002-04-27  Seth Nickell  <snickell@stanford.edu>
    
        * gtk-theme-selector.desktop.in:
    
        Change name, move out of Advanced category.
    
        * theme-properties.glade:
    
        Tweak padding / spacing.
    
        * gtk-theme-selector.desktop.in.in:
    
        Old cruft file, delete.

 capplets/theme-switcher/ChangeLog                        | 14 ++++++++++++++
 capplets/theme-switcher/gtk-theme-selector.desktop.in    |  8 ++++----
 capplets/theme-switcher/gtk-theme-selector.desktop.in.in |  7 -------
 capplets/theme-switcher/theme-properties.glade           |  9 +++++----
 4 files changed, 23 insertions(+), 15 deletions(-)

commit e8c5d153459d9b86df8e66f622eb5306e7b6227b
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Apr 27 01:33:48 2002 +0000

    Re-enable building of font capplet.
    
    2002-04-26  Seth Nickell  <snickell@stanford.edu>
    
        * capplets/Makefile.am:
        * configure.in:
    
        Re-enable building of font capplet.

 ChangeLog            | 7 +++++++
 capplets/Makefile.am | 2 +-
 configure.in         | 1 +
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 2bfe30abbe3be355715eebc58f1545767fe192d1
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Apr 27 01:29:28 2002 +0000

    Move the font code into a seperate capplet.
    
    2002-04-26  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * gnome-font-and-theme-properties.c:
        * gnome-font-and-theme-properties.glade:
        * gtk-theme-selector.glade:
        * main.c:
        * theme-properties.glade:
        * theme-switcher.c: (create_dialog), (theme_selection_changed),
        (read_themes), (theme_key_changed), (theme_changed_func),
        (sort_func), (setup_dialog), (main):
    
        Move the font code into a seperate capplet.

 capplets/theme-switcher/ChangeLog                  |  14 +
 capplets/theme-switcher/Makefile.am                |  12 +-
 .../gnome-font-and-theme-properties.c              | 279 ------------------
 .../gnome-font-and-theme-properties.glade          | 320 ---------------------
 capplets/theme-switcher/gtk-theme-selector.glade   | 178 ------------
 capplets/theme-switcher/main.c                     | 255 ----------------
 capplets/theme-switcher/theme-properties.glade     | 134 +++++++++
 capplets/theme-switcher/theme-switcher.c           | 263 +++++++++++++++++
 8 files changed, 417 insertions(+), 1038 deletions(-)

commit 8c999e79e03b08bdb4835420d4fd0de07debb21e
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Apr 27 01:16:22 2002 +0000

    Bring back in sync with the merged theme/font dialog.
    
    2002-04-26  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * font-properties.glade:
        * main.c: (create_dialog), (setup_dialog), (main):
    
        Bring back in sync with the merged theme/font dialog.

 capplets/font/ChangeLog             |   8 ++
 capplets/font/Makefile.am           |   3 +-
 capplets/font/font-properties.glade | 225 ++++++++++++++++++++++++++----------
 capplets/font/main.c                | 189 +++++++++---------------------
 4 files changed, 224 insertions(+), 201 deletions(-)

commit f79a90c40d93552d4dfe39deed1d51c72624ff01
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Fri Apr 26 22:59:19 2002 +0000

    Updated Dutch translation (Ronald Hummelink).
    
    2002-04-26  Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
            * nl.po: Updated Dutch translation (Ronald Hummelink).

 po/ChangeLog |   4 +
 po/nl.po     | 951 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 425 insertions(+), 530 deletions(-)

commit 8d5b6e62845daa2baca1ea9c95f575028070e998
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Apr 26 15:13:57 2002 +0000

    always populate the details fields so a user can see what they selected.
    
    
    2002-04-26  Jody Goldberg <jody@gnome.org>
    
        * service-edit-dialog.c (populate_app_list) : always populate the
          details fields so a user can see what they selected.
        (program_changed_cb) : ditto.
    
        * service-info.c (fill_service_apps) : fix to not use freed memory.

 capplets/file-types/ChangeLog             |  8 +++++++
 capplets/file-types/service-edit-dialog.c | 39 +++++++++++++++++++------------
 capplets/file-types/service-info.c        | 19 +++++++--------
 3 files changed, 41 insertions(+), 25 deletions(-)

commit 6bfc1ea23dc2ec61db5412cc7c3aa894e071afe5
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Apr 26 05:55:24 2002 +0000

    forgot to convert it to UTF-8...

 po/ko.po | 1156 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 578 insertions(+), 578 deletions(-)

commit 65151fe1225365dd34532b8bb783cdce0b759f7c
Author: Havoc Pennington <hp@pobox.com>
Date:   Fri Apr 26 03:54:51 2002 +0000

    fix non-use of accessor functions.
    
    2002-04-26  Havoc Pennington  <hp@pobox.com>
    
        * gnome-keybinding-properties.c (append_keys_to_tree): fix
        non-use of accessor functions.

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 9 +++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit 2dc3d62d53f44cf16714088656527d6dabc7d711
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Apr 26 03:47:53 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |    4 +
 po/ko.po     | 1357 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 703 insertions(+), 658 deletions(-)

commit 7e58c15848e9325762f46eabf258bab5e4bf68da
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Apr 26 00:29:36 2002 +0000

    Move out of advanced, add nicer tooltip (still crummy, but better).
    
    2002-04-25  Seth Nickell  <snickell@stanford.edu>
    
        * behavior.desktop.in:
    
        Move out of advanced, add nicer tooltip (still crummy, but better).

 capplets/ui-properties/ChangeLog           | 6 ++++++
 capplets/ui-properties/behavior.desktop.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit ce4a52ca2a37c64fe62af187b304005ccfe9ec5a
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 25 16:53:39 2002 +0000

    Add GTK_TOOLBAR_BOTH_HORIZ
    
    
    2002-04-25  Jody Goldberg <jody@gnome.org>
    
        * gnome-ui-properties.c (set_toolbar_style) : Add GTK_TOOLBAR_BOTH_HORIZ

 capplets/ui-properties/ChangeLog                 |   4 +
 capplets/ui-properties/gnome-ui-properties.c     |   3 +-
 capplets/ui-properties/gnome-ui-properties.glade | 926 +++++++++++------------
 3 files changed, 446 insertions(+), 487 deletions(-)

commit cc1989318182db52002231b4ad732e9ed51d93d0
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Thu Apr 25 07:37:36 2002 +0000

    Updated French translation.

 po/ChangeLog |    5 +
 po/fr.po     | 2110 +++++++---------------------------------------------------
 2 files changed, 244 insertions(+), 1871 deletions(-)

commit 7fb5cdb9752374ba9ff07eb9e656898cc75bf2e9
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Apr 25 05:06:59 2002 +0000

    cleanup

 control-center/Makefile.am | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 65d7e935356b8b5e262216ba47973bf84ed3341b
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Apr 25 04:59:10 2002 +0000

    *** empty log message ***

 gnome-settings-daemon/gnome-settings-keyboard.c | 69 ++++++++++++++++++-------
 1 file changed, 51 insertions(+), 18 deletions(-)

commit 68884480e6ece920b4055d4e3320172ae1db1959
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 25 03:59:56 2002 +0000

    max speed is in pixels per _event_ not relative to time. double check that
    
    
    2002-04-24  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) :
          max speed is in pixels per _event_ not relative to time.  double
          check that we don't set 0.
    
    2002-04-24  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c
        (gnome_settings_accessibility_keyboard_init) : we're only interested
          in control changes.
        (set_gconf_from_server) : set both XkbAccessXKeysMask|XkbAccessXFeedbackMask
          when we enable accessX, and fix typo.

 gnome-settings-daemon/ChangeLog                    |  19 ++
 .../gnome-settings-accessibility-keyboard.c        | 210 ++++++++++++---------
 2 files changed, 143 insertions(+), 86 deletions(-)

commit 979684e43b46a8163307f6d41df9011c8d1c85e5
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 25 03:58:47 2002 +0000

    adjust the defaults.
    
    
    2002-04-24  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c : adjust the defaults.

 capplets/accessibility/keyboard/ChangeLog                |  4 ++++
 capplets/accessibility/keyboard/accessibility-keyboard.c | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 9b46ead944151e7fbe476ad55b9e9b7f0b853d72
Author: Benedikt Roth <Benedikt.Roth@gmx.net>
Date:   Wed Apr 24 21:02:04 2002 +0000

    Small update for German translation.
    
    2002-04-24  Benedikt Roth <Benedikt.Roth@gmx.net>
    
        * de.po: Small update for German translation.

 po/ChangeLog |   4 +
 po/de.po     | 476 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 243 insertions(+), 237 deletions(-)

commit deb909b82b7e3c17f8f477693698261d7587e93d
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Wed Apr 24 20:50:59 2002 +0000

    Updated Finnish translation.
    
    2002-04-24  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 786 +++++++++++++++++++++++++----------------------------------
 2 files changed, 331 insertions(+), 459 deletions(-)

commit c0ceedd1a39090a23137ea990623b2020b55bdee
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Tue Apr 23 22:11:26 2002 +0000

    Updated Estonian translation.
    
    2002-04-24  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 +
 po/et.po     | 429 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 210 insertions(+), 223 deletions(-)

commit b16ef6d7cda7c97c63a1ca21ebfe397d9f7e01ad
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Apr 23 18:27:19 2002 +0000

    suppress warning.
    
    
    2002-04-23  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (get_xkb_desc_rec) :
          suppress warning.

 gnome-settings-daemon/ChangeLog                               | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 3a3c70b4adf29bdfd17ddc8c0ae9e78543bd1edd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 23 16:36:24 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-04-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 627 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 318 insertions(+), 313 deletions(-)

commit ae6a7f22ac3a6654b5ad541b8f4cbe616d264ad2
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Tue Apr 23 16:01:47 2002 +0000

    s/execute/run/

 capplets/file-types/file-types-properties.glade | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit fa05cd92017553d542f6906ce508793d6ef3fae7
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Apr 23 15:56:53 2002 +0000

    Make instant apply and add link to Help.
    
    2002-04-23  Jody Goldberg <jody@gnome.org>
    
        * model-entry.c (model_entry_save) : wrap in vfs freeze/unfreeze.
        (model_entry_append_to_dirty_list) : delete.
        (model_entry_remove_from_dirty_list) : delete.
        (model_entry_commit_dirty_list) : delete.
        (model_entry_append_to_delete_list) : delete.
        (model_entry_commit_delete_list) : delete.
    
        * mime-category-edit-dialog.c (store_data) : make this instant apply.
        * mime-edit-dialog.c (store_data) : ditto.
        * service-edit-dialog.c (store_data) : ditto.
    
        * file-types-capplet.c (cb_file_type_dialog_response) : add help and
          change the buttons to help & close to be HIG compliant.
        (remove_cb) : make removal apply instantly.
        * file-types-properties.glade : Make the buttons Help & Close

 capplets/file-types/ChangeLog                   | 18 ++++++++
 capplets/file-types/file-types-capplet.c        | 18 ++++++--
 capplets/file-types/file-types-properties.glade | 56 ++++++++++++-------------
 capplets/file-types/mime-category-edit-dialog.c |  2 +-
 capplets/file-types/mime-edit-dialog.c          |  2 +-
 capplets/file-types/model-entry.c               | 48 +--------------------
 capplets/file-types/model-entry.h               |  7 ----
 capplets/file-types/service-edit-dialog.c       |  2 +-
 8 files changed, 65 insertions(+), 88 deletions(-)

commit c6e621aae28ed8dd4412b398a33a08feaeb3a9da
Author: Jody Goldberg <jody@gnome.org>
Date:   Tue Apr 23 15:55:19 2002 +0000

    link in the place holders and add an accessibilty section to mirror the
    
    
    2002-04-23  Jody Goldberg <jody@gnome.org>
    
        * C/control-center.xml : link in the place holders and add an
          accessibilty section to mirror the ui.
    
        * C/config-file-type.xml : Add place holder.
        * C/config-accessibility-keyboard.xml : ditto.

 help/C/Makefile.am                       |  5 ++++-
 help/C/config-accessibility-keyboard.xml |  3 +++
 help/C/config-file-type.xml              |  3 +++
 help/C/control-center.xml                | 31 +++++++++++++++++++++++++++++++
 help/ChangeLog                           |  8 ++++++++
 5 files changed, 49 insertions(+), 1 deletion(-)

commit a61fe93f9dd036f3825abdce80c6a711f47315f7
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Apr 23 12:54:19 2002 +0000

    Updated Slovenian translation

 po/sl.po | 1041 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 530 insertions(+), 511 deletions(-)

commit 7bf0bcfc8d1e681a02f820279a0621097ef0ff54
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Apr 22 21:34:39 2002 +0000

    tidy up. (choose_cat_cb) : reorder buttons to be hig compliant.
    
    
    2002-04-22  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (validate_data) : tidy up.
        (choose_cat_cb) : reorder buttons to be hig compliant.
        (mime_edit_dialog_init) : ditto.
        * service-edit-dialog.c (service_edit_dialog_init) : ditto.
        * mime-category-edit-dialog.c (mime_category_edit_dialog_init) : ditto.

 capplets/file-types/ChangeLog                   |  8 ++++++
 capplets/file-types/mime-category-edit-dialog.c |  2 +-
 capplets/file-types/mime-edit-dialog.c          | 35 ++++++++++++-------------
 capplets/file-types/service-edit-dialog.c       |  2 +-
 4 files changed, 27 insertions(+), 20 deletions(-)

commit b3ad7bef82083bb63e8140827a1bb47bd24a2fe8
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Apr 22 21:05:11 2002 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 560 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 271 insertions(+), 293 deletions(-)

commit 61829b4eea0f8f48de94577263ca904416f109a0
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Apr 22 18:07:39 2002 +0000

    set dialog title correctly when adding a service. ditto.
    
    
    2002-04-22  Jody Goldberg <jody@gnome.org>
    
        * service-edit-dialog.c (service_edit_dialog_set_prop) : set dialog
          title correctly when adding a service.
        * mime-edit-dialog.c (mime_edit_dialog_set_prop) : ditto.

 capplets/file-types/ChangeLog             | 6 ++++++
 capplets/file-types/mime-edit-dialog.c    | 2 ++
 capplets/file-types/service-edit-dialog.c | 6 ++++++
 3 files changed, 14 insertions(+)

commit 9d3b0647e8dac2f0a6e8435739dcee463126c1a0
Author: Mark McLoughlin <mmclouglin@src.gnome.org>
Date:   Mon Apr 22 17:52:33 2002 +0000

    shush little hush puppy

 capplets/network/.cvsignore | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 200282b7e0feb9bc6b220593a118464d8e9ee72e
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Mon Apr 22 17:49:22 2002 +0000

    add capplets/gnome-network-preferences.
    
    2002-04-19  Mark McLoughlin  <mark@skynet.ie>
    
            * capplets/Makefile.am, configure.in: add
            capplets/gnome-network-preferences.
    
    2002-04-19  Mark McLoughlin  <mark@skynet.ie>
    
            * gconf-property-editor.[ch]: (peditor_integer_value_changed),
            (peditor_integer_widget_changed), (gconf_peditor_new_integer_valist),
            (gconf_peditor_new_integer): implement GtkEntry based integer
            peditor.
    
    2002-04-22  Mark McLoughlin  <mark@skynet.ie>
    
            * POTFILES.in: add network preferences capplet
            files.

 ChangeLog                                          |   5 +
 capplets/Makefile.am                               |   2 +-
 capplets/common/ChangeLog                          |   7 +
 capplets/common/gconf-property-editor.c            |  96 ++++++
 capplets/common/gconf-property-editor.h            |   5 +
 capplets/network/Makefile.am                       |  18 ++
 capplets/network/gnome-network-preferences.c       | 116 ++++++++
 .../network/gnome-network-preferences.desktop.in   |   8 +
 capplets/network/gnome-network-preferences.glade   | 329 +++++++++++++++++++++
 configure.in                                       |   1 +
 po/ChangeLog                                       |   5 +
 po/POTFILES.in                                     |   3 +
 12 files changed, 594 insertions(+), 1 deletion(-)

commit 2d155bd83951655f31bbda93c0dd3b81306b31d6
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Apr 22 17:07:34 2002 +0000

    Recommit an error-free file.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 336 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 177 insertions(+), 163 deletions(-)

commit 97a09873b77eb65f7a7f6de1dee634be17ae88f5
Author: Jacob Berkman <jacob@ximian.com>
Date:   Mon Apr 22 07:21:19 2002 +0000

    revert last commit as it has collision markers
    
    2002-04-22  Jacob Berkman  <jacob@ximian.com>
    
        * zh_TW.po: revert last commit as it has collision markers

 po/ChangeLog |   2 +-
 po/zh_TW.po  | 888 +++++------------------------------------------------------
 2 files changed, 70 insertions(+), 820 deletions(-)

commit d76ca3c07b3e29cb81faa7a0518ad91f28895ae3
Author: Jacob Berkman <jacob@ximian.com>
Date:   Mon Apr 22 07:15:14 2002 +0000

    remove collision markers
    
    2002-04-22  Jacob Berkman  <jacob@ximian.com>
    
        * zh_TW.po: remove collision markers

 po/ChangeLog | 4 ++++
 po/zh_TW.po  | 4 ----
 2 files changed, 4 insertions(+), 4 deletions(-)

commit bdb603cdbfb22d8d4f1158830852de35a26baeaa
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 22 05:59:30 2002 +0000

    Restore missing OptionMenu labels.
    
    2002-04-22  Rachel Hestilow  <hestilow@ximian.com>
    
        * gnome-keyboard-properties.glade: Restore missing OptionMenu
        labels.

 capplets/keyboard/ChangeLog                       |  5 ++
 capplets/keyboard/gnome-keyboard-properties.glade | 80 +++++++++++++++++++++--
 2 files changed, 81 insertions(+), 4 deletions(-)

commit 2eb29c281cea1f3aaf9dbe556d1b5386cca9c07a
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Apr 22 03:20:50 2002 +0000

    Use the new hook in gnome_vfs_application_registry_get_applications to
    
    2002-04-21  Jody Goldberg <jody@gnome.org>
    
        * service-info.c (fill_service_apps) : Use the new hook in
          gnome_vfs_application_registry_get_applications to actually retrieve
          all the applications rather than just pretending.
    
    2002-04-21  Jody Goldberg <jody@gnome.org>
    
        * service-edit-dialog.c (service_edit_dialog_init) : fully disable the
          already disable 'check content' field.  What the heck is this supposed
          to do ?
        (fill_dialog) : ditto.
        (setup_add_dialog) : ditto.
        (store_data) : ditto.
        * file-types-properties.glade : ditto.  Having user visible widgets
          that don't do anything is not a good idea.

 capplets/file-types/ChangeLog                   | 17 +++++++++++++++++
 capplets/file-types/file-types-capplet.c        |  5 ++---
 capplets/file-types/file-types-properties.glade |  6 ++++++
 capplets/file-types/service-edit-dialog.c       | 19 +++++++++++++------
 capplets/file-types/service-info.c              | 10 ++++++----
 5 files changed, 44 insertions(+), 13 deletions(-)

commit 5a438a6fec17a4ac4ed1f95c9c810e3f0ef49aba
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 22 01:28:20 2002 +0000

    Update for new enum peditor prototypes.
    
    2002-04-21  Rachel Hestilow  <hestilow@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Update for
        new enum peditor prototypes.

 capplets/background/ChangeLog                       | 5 +++++
 capplets/background/background-properties-capplet.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 702d06c8f82f5f584ad6f03225e0b1b088f8dc6a
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 22 01:26:59 2002 +0000

    Add in an explicit 'use_nick' parameter. Implicit guessing can break badly
    
    2002-04-21  Rachel Hestilow  <hestilow@ximian.com>
    
        * gconf-property-editor.c
        (gconf_peditor_new_select_menu_with_enum,
         gconf_peditor_new_enum_toggle,
         gconf_peditor_new_select_radio_with_enum): Add in an explicit
         'use_nick' parameter. Implicit guessing can break badly if
         the gconf data gets corrupted.
        (peditor_enum_int_from_string): Change use_nick to copy-by-value,
        do not try to guess it.
        (peditor_enum_conv_to_widget, guard_get_bool,
         peditor_enum_toggle_conv_to_widget): Do not pass in use_nick
         as a reference.

 capplets/common/ChangeLog               | 14 ++++++++++++++
 capplets/common/gconf-property-editor.c | 33 +++++++++++++++++----------------
 capplets/common/gconf-property-editor.h |  3 +++
 3 files changed, 34 insertions(+), 16 deletions(-)

commit df131cfc67a9ce9577da2f3d7090b3fccd82958b
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sun Apr 21 22:49:46 2002 +0000

    Updated traditional Chinese translation

 po/ChangeLog |   4 +
 po/zh_TW.po  | 892 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 827 insertions(+), 69 deletions(-)

commit d4e62871162ddfe874f726df6dde64038189ff8c
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Sun Apr 21 21:22:35 2002 +0000

    s/Richard/Rachel
    
    2002-04-21  Rachel Hestilow  <hestilow@ximian.com>
    
        * *.c: s/Richard/Rachel
    
        * configure.in: Bump version to 1.99.7
    
        * RELEASE: 1.99.7

 ChangeLog                                          |    8 +
 .../background/background-properties-capplet.c     |    2 +-
 capplets/keyboard/gnome-keyboard-properties.c      |    2 +-
 configure.in                                       |    2 +-
 control-center/capplet-dir-view-list.c             |    2 +-
 control-center/capplet-dir-view.c                  |    2 +-
 gnome-settings-daemon/gnome-settings-sound.c       |    2 +-
 gnome-settings-daemon/gnome-settings-sound.h       |    2 +-
 libbackground/preview-file-selection.c             |    2 +-
 libbackground/preview-file-selection.h             |    2 +-
 po/az.po                                           | 1219 +++++++++----
 po/ca.po                                           | 1722 +++++++++++--------
 po/cs.po                                           | 1710 +++++++++++--------
 po/da.po                                           | 1319 +++++++++++----
 po/de.po                                           | 1170 ++++++++++---
 po/el.po                                           | 1738 +++++++++++--------
 po/en_GB.po                                        | 1181 +++++++++----
 po/es.po                                           | 1187 +++++++++----
 po/et.po                                           | 1211 +++++++++----
 po/fi.po                                           |  835 +++++++--
 po/fr.po                                           |    6 +-
 po/ga.po                                           | 1299 +++++++++-----
 po/gl.po                                           | 1724 +++++++++++--------
 po/hr.po                                           | 1437 ++++++++++------
 po/hu.po                                           | 1737 +++++++++++--------
 po/it.po                                           | 1740 +++++++++++--------
 po/ja.po                                           | 1627 +++++++++++-------
 po/ko.po                                           |   96 +-
 po/lt.po                                           | 1722 +++++++++++--------
 po/lv.po                                           | 1748 +++++++++++--------
 po/ms.po                                           | 1236 ++++++++++----
 po/nl.po                                           | 1292 +++++++++++---
 po/nn.po                                           | 1277 ++++++++++----
 po/no.po                                           |  925 ++++++++--
 po/pl.po                                           | 1693 +++++++++++++------
 po/pt.po                                           | 1219 +++++++++----
 po/pt_BR.po                                        | 1214 +++++++++----
 po/ro.po                                           | 1784 +++++++++++---------
 po/ru.po                                           | 1207 ++++++++++---
 po/sk.po                                           | 1228 +++++++++++---
 po/sl.po                                           | 1239 ++++++++++----
 po/sv.po                                           | 1174 ++++++++++---
 po/tr.po                                           | 1198 +++++++++----
 po/uk.po                                           | 1687 +++++++++++++++++-
 po/wa.po                                           | 1239 ++++++++++----
 po/zh_CN.po                                        | 1237 ++++++++++----
 po/zh_TW.po                                        | 1278 +++++++++-----
 47 files changed, 34155 insertions(+), 14426 deletions(-)

commit 6d7aff5409cbe8f66916803032b7b2f8db438304
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Sun Apr 21 17:47:21 2002 +0000

    Commit because I have to delete my sandbox

 po/de.po | 391 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 165 insertions(+), 226 deletions(-)

commit 80c17a3c931a22adaa71e8dbff2cc8d9f115903f
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sun Apr 21 09:01:42 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |    4 +
 po/ko.po     | 1039 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 863 insertions(+), 180 deletions(-)

commit 4d50afb2e0dfafb7dbe7db45e4a1aabd82a8f6c3
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Sat Apr 20 23:29:17 2002 +0000

    Updated French translation.

 po/ChangeLog |    5 +
 po/fr.po     | 2600 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 1436 insertions(+), 1169 deletions(-)

commit 0aac3cd8a9a9f418dbd53d449229a6d6f00d3202
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Sat Apr 20 21:22:32 2002 +0000

    Added some file(s). Synced with source tree.
    
    2002-04-21  Abel Cheung  <maddog@linux.org.hk>
    
        * .cvsignore: Added some file(s).
        * POTFILES.in: Synced with source tree.

 po/.cvsignore  |  7 ++++---
 po/ChangeLog   |  5 +++++
 po/POTFILES.in | 40 +++++++++++++++++++++++++++++++++++++---
 3 files changed, 46 insertions(+), 6 deletions(-)

commit c64fbb10179a6c497168c9b19d7ac3ad6436d817
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sat Apr 20 00:07:34 2002 +0000

    ensure_style before calling size_request.
    
    Fri Apr 19 20:07:11 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keybinding-properties.c (append_keys_to_tree):
        ensure_style before calling size_request.

 capplets/keybindings/ChangeLog                     | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit a8bd5ca5423ef46015cc09260883fd8fb1ae17c0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Apr 19 19:31:21 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-04-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 509 +++++++++++++++++++++++++----------------------------------
 2 files changed, 217 insertions(+), 296 deletions(-)

commit de77534b6f8ed7dd2010d8fec139246e46561ac8
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Fri Apr 19 19:24:54 2002 +0000

    hush

 help/.cvsignore   | 2 ++
 help/C/.cvsignore | 2 ++
 2 files changed, 4 insertions(+)

commit 6afc0b704ffa92333561480165ef315e2c2da282
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Apr 19 19:24:22 2002 +0000

    add
    
    2002-04-19  jacob berkman  <jacob@ximian.com>
    
        * COPYING: add

 .cvsignore |   1 -
 COPYING    | 340 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 ChangeLog  |   4 +
 3 files changed, 344 insertions(+), 1 deletion(-)

commit 27e0d77dd97d0642900ca6f2c720dea592143f2f
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Fri Apr 19 18:04:53 2002 +0000

    Updated Finnish translation.
    
    2002-04-19  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 649 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 336 insertions(+), 317 deletions(-)

commit d5fe6a9930f42aec3d9dd485dde1a9de67d77e75
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Apr 19 16:57:58 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=79149 fix leaks and use
    
    
    2002-04-19  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=79149
        * preferences.c (bg_preferences_clone) : fix leaks and use
          gdk_color_free because some wiseguy thought GdkColours should use
          memchunks.
        (bg_preferences_load) : ditto.
        (bg_preferences_merge_entry) : ditto.
        (read_color_from_string) : ditto.
        (bg_preferences_finalize) : ditto. clean out pointers to protect
          against multiple calls.

 libbackground/ChangeLog     | 12 +++++++++
 libbackground/preferences.c | 64 +++++++++++++++++++++++++++++----------------
 2 files changed, 54 insertions(+), 22 deletions(-)

commit 5b494beab2b9f47bae67aa3e338a17ff98f19b0a
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Fri Apr 19 16:10:18 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 52 ++++++++++++++++++++++++++--------------------------
 1 file changed, 26 insertions(+), 26 deletions(-)

commit f6f10732e72f79280e7b346b4803a76b0b9a1941
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Apr 19 15:34:06 2002 +0000

    remove unused files

 control-center/capplet-dir-view-html.c | 446 ---------------------------------
 control-center/gnomecc.glade           | 369 ---------------------------
 control-center/preferences.c           | 370 ---------------------------
 control-center/preferences.h           |  74 ------
 4 files changed, 1259 deletions(-)

commit 63417a4cb97d1eb7636a25ea162e02632eda6191
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Fri Apr 19 14:23:30 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 37 +++++++++++++++++--------------------
 1 file changed, 17 insertions(+), 20 deletions(-)

commit b55c07449b02a8dbbc1743cbedc23a07d78b829f
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Fri Apr 19 14:00:45 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 1359 +++++++++-----------------------------------------------------
 1 file changed, 199 insertions(+), 1160 deletions(-)

commit f6ef30fbe9753a33465c7c5769319ca82e331d45
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Apr 19 13:38:32 2002 +0000

    remove unused file with deprecated widgets

 control-center/capplet-dir-view-tree.c | 198 ---------------------------------
 1 file changed, 198 deletions(-)

commit 52aec436713a6e51aa962c15e95062051f1cafce
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Apr 18 23:36:45 2002 +0000

    handle new theme-changing code, and sort code. Thu Apr 18 17:56:12 2002
    
    Thu Apr 18 19:35:42 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-font-and-theme-properties.c (setup_dialog): handle new
        theme-changing code, and sort code.
    Thu Apr 18 17:56:12 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keybinding-properties.c (theme_changed_func): handle new
        theme-changeing code.
    Thu Apr 18 17:56:25 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * theme-common.c: Notify when the theme changes.

 capplets/common/ChangeLog                          |   4 +
 capplets/common/theme-common.c                     | 247 ++++++++++++++-------
 capplets/common/theme-common.h                     |  12 +-
 capplets/keybindings/ChangeLog                     |   5 +
 capplets/keybindings/gnome-keybinding-properties.c |  79 ++++---
 capplets/theme-switcher/ChangeLog                  |   5 +
 .../gnome-font-and-theme-properties.c              |  31 ++-
 7 files changed, 263 insertions(+), 120 deletions(-)

commit 68996b900083052156e9018e20e38419d4f10923
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Apr 18 18:03:46 2002 +0000

    cleanups.
    
    Thu Apr 18 13:59:12 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-keyboard-properties.glade: cleanups.
    
        * gnome-keyboard-properties.c: remove accessibility pane and add a
        button.

 capplets/keyboard/ChangeLog                       |    7 +
 capplets/keyboard/gnome-keyboard-properties.c     |   14 +-
 capplets/keyboard/gnome-keyboard-properties.glade | 2095 +++++++++++----------
 3 files changed, 1091 insertions(+), 1025 deletions(-)

commit 625fa675ed39816779f940041d9dfb893f637855
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 18 16:09:14 2002 +0000

    Use 'clicked' rather than 'activated' for the file sel.
    
    2002-04-18  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c (setup_accessX_dialog) : Use 'clicked'
          rather than 'activated' for the file sel.
    
    2002-04-10  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.glade2 (</) : slim down the
          tooltips.

 capplets/accessibility/keyboard/ChangeLog          | 10 ++++++++++
 .../keyboard/accessibility-keyboard.c              |  2 +-
 .../gnome-accessibility-keyboard-properties.c      | 15 ++++++++++++++-
 .../gnome-accessibility-keyboard-properties.glade2 | 22 +++++++++++-----------
 4 files changed, 36 insertions(+), 13 deletions(-)

commit d9f1844c305fae7430769af8ced2ffc4373a1216
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 18 14:41:21 2002 +0000

    message dialogs must have separators.
    
    2002-04-18  Jody Goldberg <jody@gnome.org>
    
        * activate-settings-daemon.c (static) : message dialogs must have
          separators.

 capplets/common/ChangeLog                  | 5 +++++
 capplets/common/activate-settings-daemon.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 7da9bb59ca56132aca245b601753d81e868cb389
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Apr 18 13:19:43 2002 +0000

    remove unused files

 capplets/file-types/file-types-capplet-dialogs.c | 1421 ----------------------
 capplets/file-types/file-types-capplet-dialogs.h |   36 -
 2 files changed, 1457 deletions(-)

commit 9ea3c4537c29fca30eb9dd1eecfbdbbdad2c8219
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 18 13:18:17 2002 +0000

    Add some accelerators to buttons.
    
    
    2002-04-18  Jody Goldberg <jody@gnome.org>
    
        * file-types-capplet-dialogs.c (initialize_edit_applications_dialog) :
          Add some accelerators to buttons.
        (nautilus_mime_type_capplet_show_change_extension_window) : ditto.
        (run_edit_or_new_application_dialog) : and to checkboxes
        (create_application_list_item) : simplify.  No need for a label and a
          checkbox in an hbox.
    
        * file-types-properties.glade : Add some accelerators to buttons and
          checkboxes.
    
    2002-04-12  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (mime_type_info_save) : revert part of Lauris's
          changes that were stripping off the first character of the category.

 capplets/file-types/ChangeLog                    | 17 ++++++
 capplets/file-types/file-types-capplet-dialogs.c | 42 ++++++--------
 capplets/file-types/file-types-properties.glade  | 72 +++++++++++++++++-------
 capplets/file-types/mime-edit-dialog.c           |  1 -
 capplets/file-types/mime-type-info.c             | 20 +++----
 5 files changed, 93 insertions(+), 59 deletions(-)

commit e1890c39f8595c2ce165f4337bb23415007d2504
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Apr 18 10:01:36 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 +++++
 po/pl.po     | 18 ++++++++++--------
 2 files changed, 15 insertions(+), 8 deletions(-)

commit c5f228b8ea5975ea3e692d625dc2d220380ed55b
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Thu Apr 18 05:54:18 2002 +0000

    Return TRUE if pixmap is NULL. (create_pixmap): Only set pixmap if not
    
    2002-04-17  Rachel Hestilow  <hestilow@ximian.com>
    
        * applier.c (need_root_pixmap_p): Return TRUE if pixmap is NULL.
        (create_pixmap): Only set pixmap if not already set.

 libbackground/ChangeLog |  5 +++++
 libbackground/applier.c | 11 +++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 6f03bca307eb3f1ee81920ecf8cec773e3c9cfc7
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Thu Apr 18 05:08:48 2002 +0000

    s/gnome2/gnome
    
    2002-04-17  Rachel Hestilow  <hestilow@ximian.com>
    
        * GNOME_SettingsDaemon.server.in: s/gnome2/gnome

 gnome-settings-daemon/ChangeLog                      | 4 ++++
 gnome-settings-daemon/GNOME_SettingsDaemon.server.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 8fad9cba787d7fbf8a3c2b3a62b048906af58f99
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Wed Apr 17 23:43:02 2002 +0000

    Dutch translation updated by Ronald Hummelink.
    
    2002-04-18 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    * nl.po: Dutch translation updated by Ronald Hummelink.

 po/ChangeLog |   4 +
 po/nl.po     | 452 +++++++++++++++++------------------------------------------
 2 files changed, 130 insertions(+), 326 deletions(-)

commit b2bf4e78087269ce4f2f80405a7edd5f12850fe9
Author: Havoc Pennington <hp@redhat.com>
Date:   Wed Apr 17 21:21:46 2002 +0000

    rearrange quoting of these dirs so that "make bindir=/foo" works
    
    2002-04-17  Havoc Pennington  <hp@redhat.com>
    
        * configure.in (CINNAMONCC_DATA_DIR): rearrange quoting of these dirs
        so that "make bindir=/foo" works

 ChangeLog    | 5 +++++
 configure.in | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 166fe70bd4d23c808735ad17123e6c100e50c224
Author: Anders Carlsson <andersca@gnu.org>
Date:   Wed Apr 17 20:32:48 2002 +0000

    Plug leaks. Sigh.
    
    2002-04-17  Anders Carlsson  <andersca@gnu.org>
    
        * preferences.c: (bg_preferences_finalize), (bg_preferences_load):
        Plug leaks. Sigh.

 libbackground/ChangeLog     |  5 +++++
 libbackground/preferences.c | 18 +++++++++++++-----
 2 files changed, 18 insertions(+), 5 deletions(-)

commit f1d6eefaa182cff84f46ec0285e9ac4861727b53
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Apr 16 21:10:20 2002 +0000

    Patch from Akira Tagoh <tagoh@gnome-db.org> to change the restart command
    
    Tue Apr 16 17:09:02 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * factory.c (main): Patch from Akira Tagoh <tagoh@gnome-db.org> to
        change the restart command from gnome2-settings-daemon to
        gnome-settings-daemon.

 gnome-settings-daemon/ChangeLog | 6 ++++++
 gnome-settings-daemon/factory.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit d08ce88742a0b86d39d1797494e4be39489abb82
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Apr 16 13:29:42 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-04-16  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 27 ++++++++++++++++-----------
 2 files changed, 20 insertions(+), 11 deletions(-)

commit 19e73cce6fd5fc2193f4e952ec1c7bfc4270eb85
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Tue Apr 16 06:40:14 2002 +0000

    file control-center.m4 was initially added on branch gnome-1-4-branch.

commit 59091d45da146dc42928db493d777848678e7dae
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Apr 15 11:35:12 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-04-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 404 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 210 insertions(+), 198 deletions(-)

commit 953f5bc4a799d74f4789d13ff18317dcd2b43b1e
Author: Valek Frob <frob@src.gnome.org>
Date:   Mon Apr 15 07:39:13 2002 +0000

    Updated russian translation from Dmitry Mastrukov.

 po/ChangeLog |    7 +-
 po/ru.po     | 1152 +++++++++++++++++++++++++---------------------------------
 2 files changed, 509 insertions(+), 650 deletions(-)

commit e2c6c9ed909c0ee948d833b299bff2ed9eab84c4
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 15 02:34:13 2002 +0000

    s/gnome2/gnome
    
    2002-04-14  Rachel Hestilow  <hestilow@ximian.com>
    
        * capplets/ui-properties/behavior.desktop.in,
          control-center/gnomecc.desktop.in: s/gnome2/gnome

 ChangeLog                                  | 5 +++++
 capplets/ui-properties/behavior.desktop.in | 4 ++--
 control-center/gnomecc.desktop.in          | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

commit a1012ca390d14331656e93d3301d99d1bd49611f
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sun Apr 14 15:34:38 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 217 ++++++++++++++++++++---------------------------------------
 2 files changed, 77 insertions(+), 144 deletions(-)

commit 6812fcb33f101f59332dab75e961e73024192682
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Sat Apr 13 16:06:46 2002 +0000

    fix tyop

 capplets/theme-switcher/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e10f58e431e10ae9b12fb179d7af31f6b06ef6b9
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Apr 12 19:47:59 2002 +0000

    get the glade file from GLADEDIR
    
    2002-04-12  jacob berkman  <jacob@ximian.com>
    
        * gnome-font-and-theme-properties.c (create_dialog): get the glade
        file from GLADEDIR
    
        * Makefile.am (INCLUDES): define GLADEDIR

 capplets/theme-switcher/ChangeLog                         | 8 ++++++++
 capplets/theme-switcher/Makefile.am                       | 7 +++++--
 capplets/theme-switcher/gnome-font-and-theme-properties.c | 2 +-
 3 files changed, 14 insertions(+), 3 deletions(-)

commit 8c63c8bd88d92d54f2b81d42205a8acbb9712172
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Fri Apr 12 16:11:56 2002 +0000

    change the panel keybindings keys to the new hyphen-less versions.
    
    2002-04-12  Mark McLoughlin  <mark@skynet.ie>
    
            * schemas/apps_gnome_keybinding_properties.schemas: change the
            panel keybindings keys to the new hyphen-less versions.

 ChangeLog                                        | 5 +++++
 schemas/apps_gnome_keybinding_properties.schemas | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 7ddf5e61486255000be4356c184f30b94b3976fb
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Apr 11 22:37:52 2002 +0000

    only do xkb calls if xkb is present (better fix for previous commit)
    
    2002-04-11  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-accessibility-keyboard.c: only do xkb calls if
        xkb is present (better fix for previous commit)

 gnome-settings-daemon/ChangeLog                    |  5 ++
 .../gnome-settings-accessibility-keyboard.c        | 96 ++++++++++++++--------
 2 files changed, 67 insertions(+), 34 deletions(-)

commit dacdab13c593cc06436690f0332ffa17751ad731
Author: Jody Goldberg <jody@gnome.org>
Date:   Thu Apr 11 21:54:10 2002 +0000

    be even more anal.
    
    
    2002-04-11  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) : be
          even more anal.

 gnome-settings-daemon/ChangeLog                               |  9 +++++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 10 ++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

commit 64a0eee1341f138010718266ef94b200a5cab48d
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Apr 11 19:13:49 2002 +0000

    fix improper use of guint as GType
    
    2002-04-11  jacob berkman  <jacob@ximian.com>
    
        * (various files): fix improper use of guint as GType

 ChangeLog                                     | 4 ++++
 archiver/archive.h                            | 2 +-
 archiver/backend-list.h                       | 2 +-
 archiver/cluster-location.c                   | 4 ++--
 archiver/cluster-location.h                   | 2 +-
 archiver/cluster.c                            | 4 ++--
 archiver/cluster.h                            | 2 +-
 archiver/config-log.c                         | 4 ++--
 archiver/config-log.h                         | 2 +-
 archiver/location.h                           | 2 +-
 capplets/background/prefs-widget.c            | 4 ++--
 capplets/background/prefs-widget.h            | 2 +-
 capplets/file-types/file-types-icon-entry.c   | 4 ++--
 capplets/file-types/file-types-icon-entry.h   | 2 +-
 capplets/rollback/rollback-capplet-dialog.c   | 4 ++--
 capplets/rollback/rollback-capplet-dialog.h   | 2 +-
 capplets/rollback/rollback-control.c          | 6 +++---
 capplets/rollback/rollback-control.h          | 2 +-
 capplets/rollback/rollback-widget.c           | 4 ++--
 capplets/rollback/rollback-widget.h           | 2 +-
 capplets/sound/preferences.c                  | 4 ++--
 capplets/sound/preferences.h                  | 2 +-
 capplets/sound/prefs-widget.c                 | 4 ++--
 capplets/sound/prefs-widget.h                 | 2 +-
 capplets/ui-properties/preferences.c          | 4 ++--
 capplets/ui-properties/preferences.h          | 2 +-
 capplets/ui-properties/prefs-widget-app.c     | 4 ++--
 capplets/ui-properties/prefs-widget-app.h     | 2 +-
 capplets/ui-properties/prefs-widget-dialogs.c | 4 ++--
 capplets/ui-properties/prefs-widget-dialogs.h | 2 +-
 capplets/ui-properties/prefs-widget-mdi.c     | 4 ++--
 capplets/ui-properties/prefs-widget-mdi.h     | 2 +-
 capplets/ui-properties/prefs-widget.c         | 4 ++--
 capplets/ui-properties/prefs-widget.h         | 2 +-
 control-center/preferences.c                  | 4 ++--
 control-center/preferences.h                  | 2 +-
 libbackground/applier.c                       | 4 ++--
 libbackground/applier.h                       | 2 +-
 38 files changed, 59 insertions(+), 55 deletions(-)

commit 1f98e3e6462430afc6ee425d96205c1daeff2cc5
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Thu Apr 11 18:55:06 2002 +0000

    fix formatting

 ChangeLog | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 2409371641fa15ca78e6c0a529086414dc2511b2
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Thu Apr 11 15:51:19 2002 +0000

    handle the renaming

 capplets/accessibility/keyboard/.cvsignore | 2 +-
 capplets/background/.cvsignore             | 3 +--
 capplets/default-applications/.cvsignore   | 2 +-
 capplets/file-types/.cvsignore             | 2 +-
 capplets/font/.cvsignore                   | 2 +-
 capplets/keyboard/.cvsignore               | 2 +-
 capplets/mouse/.cvsignore                  | 2 +-
 capplets/sound/.cvsignore                  | 2 +-
 capplets/theme-switcher/.cvsignore         | 2 +-
 capplets/ui-properties/.cvsignore          | 2 +-
 control-center/.cvsignore                  | 2 +-
 gnome-settings-daemon/.cvsignore           | 2 +-
 12 files changed, 12 insertions(+), 13 deletions(-)

commit 2cf880126c3f3808babcc36250b87c7f166af4cf
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Apr 11 14:46:17 2002 +0000

    updated desktop files to use gnome-* instead of gnome2-*

 capplets/accessibility/keyboard/ChangeLog                         | 4 ++++
 capplets/accessibility/keyboard/accessibility-keyboard.desktop.in | 2 +-
 capplets/background/ChangeLog                                     | 4 ++++
 capplets/background/background.desktop.in                         | 4 ++--
 capplets/default-applications/ChangeLog                           | 4 ++++
 capplets/default-applications/default-applications.desktop.in     | 4 ++--
 capplets/file-types/ChangeLog                                     | 4 ++++
 capplets/file-types/file-types.desktop.in                         | 2 +-
 capplets/font/ChangeLog                                           | 4 ++++
 capplets/font/font-properties.desktop.in                          | 2 +-
 capplets/keyboard/ChangeLog                                       | 4 ++++
 capplets/keyboard/keyboard.desktop.in                             | 4 ++--
 capplets/mouse/ChangeLog                                          | 4 ++++
 capplets/mouse/mouse.desktop.in                                   | 4 ++--
 capplets/sound/ChangeLog                                          | 4 ++++
 capplets/sound/sound.desktop.in                                   | 4 ++--
 capplets/theme-switcher/ChangeLog                                 | 4 ++++
 capplets/theme-switcher/gnome-font-and-theme-properties.c         | 8 ++++++++
 capplets/theme-switcher/gtk-theme-selector.desktop.in             | 4 ++--
 19 files changed, 59 insertions(+), 15 deletions(-)

commit cfadf3982bfb7b3aea1e2fb708b7e9a709b865fe
Author: Jacob Berkman <jacob@ximian.com>
Date:   Thu Apr 11 05:15:42 2002 +0000

    add pixmap
    
    2002-04-11  Jacob Berkman  <jacob@ximian.com>
    
        * Makefile.am (EXTRA_DIST): add pixmap

 capplets/keybindings/ChangeLog   | 4 ++++
 capplets/keybindings/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 81d862d5eba3d2aafb9342872b1bb182c36dc486
Author: Kevin Breit <mrproper@ximian.com>
Date:   Thu Apr 11 02:06:40 2002 +0000

    Added the help/Makefile.am and help/C/Makefile.am. If the build breaks,
    
    2002-04-10  Kevin Breit  <mrproper@ximian.com>
    
        * configure.in: Added the help/Makefile.am and help/C/Makefile.am.  If the build breaks, look at this stuff.  It's not the first time I've killed the build.
        * Makefile.am: Made sure that help was in the SUBDIRS.  I don't want to break the build again. :/

 ChangeLog    | 5 +++++
 Makefile.am  | 2 +-
 configure.in | 2 ++
 3 files changed, 8 insertions(+), 1 deletion(-)

commit f0680418d691a3b2620978e145376b9da35d110d
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Thu Apr 11 01:48:52 2002 +0000

    remove font
    
    2002-04-10  Rachel Hestilow  <hestilow@ximian.com>
    
        * configure.in:
        * capplets/Makefile.am (always_built_SUBDIRS): remove font

 ChangeLog            | 5 +++++
 capplets/Makefile.am | 2 +-
 configure.in         | 3 +--
 3 files changed, 7 insertions(+), 3 deletions(-)

commit b76ffa46d38e81ee1009133e7a976326f49cf189
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Thu Apr 11 01:44:41 2002 +0000

    Add font options to UI.
    
    2002-04-10  Rachel Hestilow  <hestilow@ximian.com>
    
        * gnome-font-and-theme-properties.glade: Add font options to UI.
    
        * gnome-font-and-theme-properties.c (setup_dialog): Add peditors
        for fonts.

 capplets/theme-switcher/ChangeLog                  |   7 +
 .../gnome-font-and-theme-properties.c              |  18 ++
 .../gnome-font-and-theme-properties.glade          | 237 ++++++++++++++++++---
 3 files changed, 231 insertions(+), 31 deletions(-)

commit ef4591f5fb88e20c08f45ada2c3a1bd9e16bdd91
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Thu Apr 11 01:41:17 2002 +0000

    Add FontType enum, and a font_type parameter to gconf_peditor_new_font.
    
    2002-04-10  Rachel Hestilow  <hestilow@ximian.com>
    
        * gconf-proprerty-editor.h: Add FontType enum, and a font_type
        parameter to gconf_peditor_new_font.
    
        * gconf-property-editor.c:
        (peditor_font_value_changed): Call peditor_font_merge_setting
        instead of setting the properties explicitly.
        (peditor_font_widget_changed): Switch on font_type to determine
        what to set for a GConfValue.

 capplets/common/ChangeLog               |  11 ++++
 capplets/common/gconf-property-editor.c | 104 +++++++++++++++++++++++++++-----
 capplets/common/gconf-property-editor.h |   9 +++
 3 files changed, 108 insertions(+), 16 deletions(-)

commit 68b79b4fab16f1b5121ea18192836c3b7a23d2e5
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 10 23:30:45 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=77203 be more anal about server
    
    2002-04-01  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=77203
        * gnome-settings-accessibility-keyboard.c (set_gconf_from_server) : be
          more anal about server failure.
        (set_server_from_gconf) : ditto.
    
    2002-03-30  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-xsettings.c (translations) : reorder to match gdk.
          This simplifies maintenance.

 gnome-settings-daemon/ChangeLog                    | 12 ++++++++
 .../gnome-settings-accessibility-keyboard.c        | 35 +++++++++++++++-------
 gnome-settings-daemon/gnome-settings-keyboard.c    |  2 +-
 gnome-settings-daemon/gnome-settings-xsettings.c   | 32 ++++++++++----------
 4 files changed, 54 insertions(+), 27 deletions(-)

commit 13c9efe9d64ab0a7e25f998446d80948c4c63299
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 10 20:42:09 2002 +0000

    make case insensitive.
    
    2002-04-10  Jody Goldberg <jody@gnome.org>
    
        * mime-type-info.c (get_category) : make case insensitive.

 capplets/file-types/ChangeLog        | 4 ++++
 capplets/file-types/mime-type-info.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit cb80706311cb2b9c6b06c4fe74f7e527dc61d07b
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Apr 10 20:21:51 2002 +0000

    remove capplets/theme-switcher/control/Makefile
    
    2002-04-10  jacob berkman  <jacob@ximian.com>
    
        * configure.in (AC_OUTPUT): remove
        capplets/theme-switcher/control/Makefile

 ChangeLog    | 5 +++++
 configure.in | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 445eacc257dd962007a3ba162f7a41a1fee593b9
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Wed Apr 10 20:20:16 2002 +0000

    revert earlier commit

 capplets/theme-switcher/Makefile.am | 2 --
 1 file changed, 2 deletions(-)

commit 879418ec4c317f7da4fead6d767ccb0fa21e8cb3
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 10 20:11:02 2002 +0000

    some life cycle fixes.
    still case sensitive though
    
    2002-04-07  Jody Goldberg <jody@gnome.org>
    
        * file-types-properties.glade : assign response ids to the buttons.
    
        * file-types-capplet.c (apply_cb) : delete and merge into.
        (cb_file_type_dialog_response) : here.
        (create_dialog) : connect to reponse here.
        (main) : rather than connecting to buttons directly here.
    
        * mime-edit-dialog.c (validate_data) : actually display the dialog.
        (fill_dialog) : Add some protection.
        (safe_set_entry) : new safety utility.

 capplets/file-types/ChangeLog                   | 13 +++++++++
 capplets/file-types/file-types-capplet.c        | 28 ++++++++++---------
 capplets/file-types/file-types-properties.glade |  2 ++
 capplets/file-types/mime-edit-dialog.c          | 36 +++++++++++++++++--------
 4 files changed, 56 insertions(+), 23 deletions(-)

commit 571905a05d694cf631225b23aa903bd3e0153871
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Apr 10 20:08:42 2002 +0000

    Change "Menu items have icons" to "Menu items can have icons"
    
    2002-04-10  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-ui-properties.glade:
    
        Change "Menu items have icons" to "Menu items can have icons"

 capplets/ui-properties/ChangeLog                 | 6 ++++++
 capplets/ui-properties/gnome-ui-properties.glade | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 409bf042cd28bf8fa825f278720d7c356a644445
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Apr 10 19:35:25 2002 +0000

    add back SUBDIRS
    
    2002-04-10  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am (SUBDIRS): add back SUBDIRS

 capplets/theme-switcher/ChangeLog   | 4 ++++
 capplets/theme-switcher/Makefile.am | 2 ++
 2 files changed, 6 insertions(+)

commit f458dc58f2170430e99220cf5f94a1fdef9deb47
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Apr 10 14:37:07 2002 +0000

    Updated Slovak translation.
    
    2002-04-10  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 539 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 266 insertions(+), 277 deletions(-)

commit aec52f831ba7f088cf54ab535730ceecf33bcf7c
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Apr 10 13:02:13 2002 +0000

    Add a piss-poor-at-small-sizes-but-better-than-nothing icon.
    
    2002-04-10  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * keybinding.desktop.in:
        * keyboard-shortcut.png:
    
        Add a piss-poor-at-small-sizes-but-better-than-nothing
        icon.

 capplets/keybindings/ChangeLog             |   9 +++++++++
 capplets/keybindings/Makefile.am           |   3 +++
 capplets/keybindings/keybinding.desktop.in |   1 +
 capplets/keybindings/keyboard-shortcut.png | Bin 0 -> 1492 bytes
 4 files changed, 13 insertions(+)

commit 4430f2baee29016ba8805858d41051a02d77ec52
Author: Jody Goldberg <jody@gnome.org>
Date:   Wed Apr 10 12:26:20 2002 +0000

    suppress warnings.
    
    2002-04-02  Jody Goldberg <jody@gnome.org>
    
        * gnome-ui-properties.c (setup_dialog) : suppress warnings.

 capplets/ui-properties/ChangeLog             |  4 ++++
 capplets/ui-properties/gnome-ui-properties.c | 22 +++++++++++++++-------
 2 files changed, 19 insertions(+), 7 deletions(-)

commit b208a2c09d32f715b832654c1c16c63508e60790
Author: Seth Nickell <seth@src.gnome.org>
Date:   Wed Apr 10 12:13:50 2002 +0000

    *** empty log message ***

 capplets/ui-properties/gnome-ui-properties.glade | 1174 +++++-----------------
 1 file changed, 276 insertions(+), 898 deletions(-)

commit 170c80984897c1742b7739a78fdb5496089aab1a
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Apr 10 12:11:31 2002 +0000

    Somebody started rennaming the glade file but didn't follow through.
    
    2002-04-10  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-ui-properties.c: (create_dialog):
        * gnome-ui-properties.glade:
        * ui-properties.glade:
    
        Somebody started rennaming the glade file but didn't follow
        through. Fixing the build by finishing the change.

 capplets/ui-properties/ChangeLog                 |    9 +
 capplets/ui-properties/gnome-ui-properties.c     |    2 +-
 capplets/ui-properties/gnome-ui-properties.glade | 1112 ++++++++++++++++++++++
 3 files changed, 1122 insertions(+), 1 deletion(-)

commit 6f1fa592ecec0b32dc1ee4cc87c621e47ad67ad2
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Wed Apr 10 06:08:08 2002 +0000

    Change gnome2-* to gnome-* ditto ditto ditto ditto ditto ditto ditto ditto
    
    Tue Apr  9 11:43:08 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * capplets/accessibility/keyboard/Makefile.am: Change gnome2-* to
        gnome-*
        * capplets/default-applications/Makefile.am: ditto
        * capplets/file-types/Makefile.am: ditto
        * capplets/font/Makefile.am: ditto
        * capplets/keyboard/Makefile.am: ditto
        * capplets/mouse/Makefile.am: ditto
        * capplets/sound/Makefile.am: ditto
        * capplets/theme-switcher/Makefile.am: ditto
        * capplets/ui-properties/Makefile.am: ditto
        * control-center/Makefile.am: ditto
        * gnome-settings-daemon/Makefile.am: ditto
    
        * gnome-keybinding-properties.c (setup_dialog): man, was this code
        silly.  Also, themes are case sensitive.
        (is_metacity_running): Add support for metacity keybindings.  This
        is off by default until I write code to actually detect metacity.
    
    Tue Apr  9 11:58:10 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * Makefile.am: Add commented out disk support until I finish the code.

 ChangeLog                                          |  15 ++
 capplets/accessibility/keyboard/Makefile.am        |   6 +-
 .../keyboard/accessibility-keyboard.c              |  12 +-
 .../gnome-accessibility-keyboard-properties.c      |   3 +-
 capplets/common/Makefile.am                        |   4 +-
 capplets/common/theme-common.c                     |  44 ++++
 capplets/common/theme-common.h                     |   6 +-
 capplets/default-applications/Makefile.am          |   6 +-
 capplets/file-types/Makefile.am                    |   6 +-
 capplets/font/Makefile.am                          |   8 +-
 capplets/keybindings/ChangeLog                     |   7 +
 capplets/keybindings/gnome-keybinding-properties.c | 215 ++++++++++++++------
 .../keybindings/gnome-keybinding-properties.glade  |  59 ++++--
 capplets/keyboard/Makefile.am                      |   6 +-
 capplets/mouse/Makefile.am                         |   6 +-
 capplets/mouse/gnome-mouse-properties.c            |   2 +-
 capplets/mouse/gnome-mouse-properties.glade        |   6 +-
 capplets/sound/Makefile.am                         |   6 +-
 capplets/theme-switcher/Makefile.am                |  12 +-
 .../gnome-font-and-theme-properties.c              | 226 +++++++++++++++++++++
 .../gnome-font-and-theme-properties.glade          | 145 +++++++++++++
 capplets/ui-properties/Makefile.am                 |   8 +-
 control-center/Makefile.am                         |   6 +-
 gnome-settings-daemon/ChangeLog                    |   4 +
 gnome-settings-daemon/Makefile.am                  |   6 +-
 gnome-settings-daemon/gnome-settings-daemon.c      |   3 +
 26 files changed, 697 insertions(+), 130 deletions(-)

commit 5a1e076eedda885d2bcad37186182be687045833
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Apr 10 02:04:23 2002 +0000

    update TODO list

 TODO | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 90 insertions(+), 18 deletions(-)

commit a955671924e99f537b46324d76715167cc538818
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Apr 9 22:32:39 2002 +0000

    nl.po: Dutch translation updated by Reinout van Schouwen.
    
    2002-04-09 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    nl.po: Dutch translation updated by Reinout van Schouwen.

 po/ChangeLog |   4 +
 po/nl.po     | 722 +++++++++++++++++++++++++----------------------------------
 2 files changed, 305 insertions(+), 421 deletions(-)

commit e0be2c23625d6183b730179e56e0fd33802bb674
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Apr 9 08:36:26 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 233 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 111 insertions(+), 126 deletions(-)

commit 3cfccb1025e299fc37bc430ef27e44ff81827406
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Apr 8 23:52:15 2002 +0000

    Updated traditional Chinese translation.

 po/ChangeLog |   4 +
 po/zh_TW.po  | 674 +++++++++++++++++++++++++----------------------------------
 2 files changed, 288 insertions(+), 390 deletions(-)

commit 72fc255e13804de9eff8f16c008fb82e819f17d5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Apr 8 02:42:06 2002 +0000

    Don't signal row deleted or reset tmp->next if the child node was not
    
    2002-04-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * model-entry.c (model_entry_remove_child): Don't signal row
        deleted or reset tmp->next if the child node was not found

 capplets/file-types/ChangeLog     |  5 +++++
 capplets/file-types/model-entry.c | 11 +++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit b87c01cc34d14e5d17f36d9269b438447060993c
Author: Rachel Hestilow <hestilow@ximian.com>
Date:   Mon Apr 8 01:53:50 2002 +0000

    Connect to "realize" on preview. (preview_realized_cb): Added function to
    
    2002-04-07  Rachel Hestilow  <hestilow@ximian.com>
    
        * applier.c (bg_applier_get_preview_widget): Connect to "realize"
        on preview.
        (preview_realized_cb): Added function to initialize preview pixmap.

 libbackground/ChangeLog |  6 ++++++
 libbackground/applier.c | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

commit 7483d8c6a761c425af41913798f599f2c845ee0c
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Apr 6 15:20:42 2002 +0000

    Updated Danish translation.
    
    2002-04-06  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |    4 +
 po/da.po     | 3055 ++++++----------------------------------------------------
 2 files changed, 289 insertions(+), 2770 deletions(-)

commit 0311735e803f320124aec953c056c2608331c8d5
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Apr 6 03:05:44 2002 +0000

    Added file to CVS.
    
    2002-04-05  Kevin Breit  <mrproper@ximian.com>
    
        * C/control-center-C.omf: Added file to CVS.

 help/C/control-center-C.omf | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 37182f318734e872821d4a3cb42031066b273349
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Apr 6 03:05:05 2002 +0000

    Fixed some gross breakage while adding this file to CVS.
    
    2002-04-05  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-keybindings.xml: Fixed some gross breakage while adding this file to CVS.

 help/C/config-keybindings.xml | 37 +++++++++++++++++++++++++++++++++++++
 help/ChangeLog                |  2 +-
 2 files changed, 38 insertions(+), 1 deletion(-)

commit 7e07bb9c6e2c04bdef61244f97de7f3255e20dad
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Apr 6 03:04:26 2002 +0000

    Fixed a typo that caused breakage.
    
    2002-04-05  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-themes.xml: Fixed a typo that caused breakage.
    
        * C/config-keybindings.xml: Fixed some gross breakage.

 help/C/Makefile.am       | 12 ++++++++----
 help/C/config-themes.xml |  2 +-
 help/ChangeLog           |  8 ++++++++
 3 files changed, 17 insertions(+), 5 deletions(-)

commit 6f292a47a6dae5f0587cb4b815059d3d50e6da7a
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Fri Apr 5 21:02:15 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 ++
 po/pl.po     | 204 ++++++++++++++---------------------------------------------
 2 files changed, 51 insertions(+), 158 deletions(-)

commit fdecd093a913946bdc65703853d172bb2291138c
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Apr 5 19:47:53 2002 +0000

    revert kevin's patch until help stuff actually builds
    
    2002-04-05  jacob berkman  <jacob@ximian.com>
    
        * configure.ion (AC_OUTPUT): revert kevin's patch until help stuff
        actually builds

 ChangeLog    | 5 +++++
 configure.in | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit bbd4e78e962d02295fbf78315007b36834010bd4
Author: Tuomas Kuosmanen <tigert@src.gnome.org>
Date:   Fri Apr 5 15:41:24 2002 +0000

    fix0r. -tig-

 capplets/desktop-links/ChangeLog                   |   4 ++++
 capplets/desktop-links/accessibility-directory.png | Bin 220 -> 3688 bytes
 2 files changed, 4 insertions(+)

commit 25fcdf9ae47e0f7789d06a880a72685493c77d69
Author: Kevin Breit <mrproper@ximian.com>
Date:   Fri Apr 5 14:14:53 2002 +0000

    Added help to the Makefile list.
    
    2002-04-05  Kevin Breit  <mrproper@ximian.com>
    
        * configure.in (dnl): Added help to the Makefile list.

 ChangeLog    | 4 ++++
 configure.in | 2 ++
 2 files changed, 6 insertions(+)

commit a1c6036b0725c8ea988d43eceaa20bdce0ef13e1
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Thu Apr 4 21:33:48 2002 +0000

    fix bug #76367 - remove sawfish .desktop files

 ChangeLog                          |  4 ++++
 capplets/desktop-links/ChangeLog   |  4 ++++
 capplets/desktop-links/Makefile.am |  2 --
 configure.in                       |  1 -
 po/ChangeLog                       |  4 ++++
 po/POTFILES.in                     | 12 ------------
 6 files changed, 12 insertions(+), 15 deletions(-)

commit b92d48b59eeffc89e7c5cf20a480998ac340a408
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Apr 4 19:46:47 2002 +0000

    prefer gdk_flush() to XFlush() (fixes bug #77208)
    
    2002-04-04  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf):
        prefer gdk_flush() to XFlush() (fixes bug #77208)

 gnome-settings-daemon/ChangeLog                               | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d5a7e1336fe9f8ae6d32d518e5e137e0c5aa1b68
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Apr 2 22:32:41 2002 +0000

    remove default-applications
    
    2002-04-02  jacob berkman  <jacob@ximian.com>
    
        * configure.in:
        * capplets/Makefile.am (always_built_SUBDIRS): remove
        default-applications

 ChangeLog            | 6 ++++++
 capplets/Makefile.am | 2 +-
 configure.in         | 1 -
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 21be41f15f785d9b000f2c5688f9f58155aad741
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Apr 2 22:32:23 2002 +0000

    show 'unknown' in the protocol name for the unknown protocol
    
    2002-04-02  jacob berkman  <jacob@ximian.com>
    
        * service-edit-dialog.c (fill_dialog): show 'unknown' in the
        protocol name for the unknown protocol
        (validate_data): actually run and destroy the error dialogs

 capplets/file-types/ChangeLog             |  6 ++++++
 capplets/file-types/service-edit-dialog.c | 26 +++++++++++++++-----------
 2 files changed, 21 insertions(+), 11 deletions(-)

commit 957714782bbc8eb495bde5715d024ce877b96e4c
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Tue Apr 2 21:35:32 2002 +0000

    Updated Finnish translation.
    
    2002-04-03  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 289 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 152 insertions(+), 141 deletions(-)

commit 882a14730b5e631ba7cd28921895fe73ddd30f3c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Apr 2 00:27:40 2002 +0000

    handle GTK_RESPONSE_DELETE_EVENT
    
    Mon Apr  1 19:19:39 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * background-properties-capplet.c (dialog_button_clicked_cb):
        handle GTK_RESPONSE_DELETE_EVENT
    
        * Makefile.am (bin_PROGRAMS):
        s/gnome2-background-properties/gnome-background-properties

 capplets/background/ChangeLog                       | 9 +++++++++
 capplets/background/Makefile.am                     | 6 +++---
 capplets/background/background-properties-capplet.c | 1 +
 3 files changed, 13 insertions(+), 3 deletions(-)

commit c9c20f0fc032505b0c0181a63b3874c68d40cf87
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Apr 1 20:40:24 2002 +0000

    Updated Swedish translation.
    
    2002-04-01  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 260 +++++++++++++++++++++++++----------------------------------
 2 files changed, 113 insertions(+), 151 deletions(-)

commit 23dfaa947a3a2a53695e5bdba0c39d872134984e
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Apr 1 03:46:14 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 226 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 104 insertions(+), 126 deletions(-)

commit fcf9645f45f827f940410fd814b7bd3b4a47028c
Author: Kevin Breit <mrproper@ximian.com>
Date:   Mon Apr 1 03:07:27 2002 +0000

    Enabled theme selector in documentation.
    
    2002-03-31  Kevin Breit  <mrproper@ximian.com>
    
        * C/control-center.xml: Enabled theme selector in documentation.
    
        * C/config-themes.xml: Added the theme selector documentation.

 help/C/config-themes.xml  | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 help/C/control-center.xml |  4 +++-
 help/ChangeLog            |  6 ++++++
 3 files changed, 55 insertions(+), 1 deletion(-)

commit 60bf84e17f0c41da74c26d6c21bf17578703714a
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Apr 1 00:44:15 2002 +0000

    Updated Portuguese translation.
    
    2002-04-01  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 502 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 266 insertions(+), 240 deletions(-)

commit c3500d126a0484d0593faec857822ba8743da25b
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Mar 31 12:58:48 2002 +0000

    Updated Swedish translation (not completed).
    
    2002-03-31  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation (not completed).

 po/ChangeLog |   4 +
 po/sv.po     | 294 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 165 insertions(+), 133 deletions(-)

commit 442634ae15361b08d52b69c9dda7eff5be391c71
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Mar 30 21:48:22 2002 +0000

    rename Sample -> Text because that makes more sense.
    
    
    2002-03-30  Jody Goldberg <jody@gnome.org>
    
        * gnome-accessibility-keyboard-properties.glade2 : rename Sample -> Text
          because that makes more sense.

 capplets/accessibility/keyboard/ChangeLog                              | 3 +++
 .../keyboard/gnome-accessibility-keyboard-properties.glade2            | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 59f715b655ee8083e3ac539e9c793e2f36ca8bbc
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Mar 30 21:40:43 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=76315 rename from AccessX ->
    
    
    2002-03-30  Jody Goldberg <jody@gnome.org>
    
        http://bugzilla.gnome.org/show_bug.cgi?id=76315
        * accessibility-keyboard.desktop.in : rename from AccessX -> Keyboard

 capplets/accessibility/keyboard/ChangeLog                         | 5 +++++
 capplets/accessibility/keyboard/accessibility-keyboard.desktop.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 5f8c1ab1b277fd5297dc2c8e0c81b5f37ce45b25
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Mar 30 07:16:14 2002 +0000

    add some protection for when there is no default.
    
    
    2002-03-30  Jody Goldberg <jody@gnome.org>
    
        * mime-edit-dialog.c (populate_component_list) : add some protection
          for when there is no default.

 capplets/file-types/ChangeLog          | 5 +++++
 capplets/file-types/mime-edit-dialog.c | 8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 6e7a6395810498531151356a1181de94dbb7e41c
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Mar 30 04:52:52 2002 +0000

    get really anal about potential X errors. (set_gconf_from_server) : ditto.
    
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c
        (gnome_settings_accessibility_keyboard_init) : get really anal about
          potential X errors.
        (set_gconf_from_server) : ditto.

 gnome-settings-daemon/ChangeLog                               |  7 +++++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 10 +++++++++-
 2 files changed, 16 insertions(+), 1 deletion(-)

commit d80e0c86be40959b5abe0f94c23e6d5a331a00b0
Author: Jody Goldberg <jody@gnome.org>
Date:   Sat Mar 30 03:25:26 2002 +0000

    Patch some settings-daemon X errors when running remotely, and enable cursor
    blink support.
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) :
          Add a gdk_error_trap just in case.
    
        * gnome-settings-keyboard.c (apply_settings) : don't init things to
          bogus values unless it is ncessary.  Add a gdk_error_trap around the
          X settings to avoid causing the server to exit if something goes
          wrong.  Be sure to flush before we pop the handler.

 gnome-settings-daemon/ChangeLog                       |  8 ++++++++
 .../gnome-settings-accessibility-keyboard.c           |  2 ++
 gnome-settings-daemon/gnome-settings-keyboard.c       | 14 +++++++++-----
 gnome-settings-daemon/gnome-settings-xsettings.c      | 19 ++++++++++++++++++-
 4 files changed, 37 insertions(+), 6 deletions(-)

commit 9f3911865f2608ecc99dd6959eb3823a8793337f
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Sat Mar 30 02:05:22 2002 +0000

    Fixed some crashes and made capplet to save/load new mime types the right
    way (I hope). We still mess up TreeModel if adding new entries - no idea
    where in model impl that resides.

 capplets/file-types/ChangeLog          |  9 +++++++++
 capplets/file-types/mime-edit-dialog.c |  1 +
 capplets/file-types/mime-type-info.c   | 19 ++++++++++++-------
 capplets/file-types/model-entry.c      |  2 +-
 capplets/file-types/service-info.c     | 20 +++++++++-----------
 5 files changed, 32 insertions(+), 19 deletions(-)

commit 84332cb647fab2d3bcb5e4a08d7039e4e855cb5a
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 22:30:40 2002 +0000

    fix spelling error in schema.
    
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) :
          fix spelling error in schema.

 gnome-settings-daemon/ChangeLog                               | 3 +++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 24462c0abf9f3e565fa12769b754fb0455e8432b
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 22:30:14 2002 +0000

    spelling error. (CONFIG_ROOT) : fix spelling error in the schema.
    
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c (setup_dialog) : spelling error.
        (CONFIG_ROOT) : fix spelling error in the schema.

 capplets/accessibility/keyboard/ChangeLog                   | 13 +++++++++++++
 capplets/accessibility/keyboard/accessibility-keyboard.c    | 10 +++++-----
 .../keyboard/gnome-accessibility-keyboard-properties.glade2 |  6 +++---
 3 files changed, 21 insertions(+), 8 deletions(-)

commit b06b0afa86c11617bd572746281f0f9e9d5b81d6
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 20:05:08 2002 +0000

    add missing NULL terminator.
    
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-font.c (load_cursor) : add missing NULL terminator.

 gnome-settings-daemon/ChangeLog             | 2 ++
 gnome-settings-daemon/gnome-settings-font.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit efa1999827971ce60cccfbb70e0de7b2ee28817d
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 19:17:20 2002 +0000

    http://bugzilla.gnome.org/show_bug.cgi?id=76876
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-keybinding-properties.c (create_dialog) : remove the startup
          warning caused by looking in the current directory for the glade file.
        (key_theme_changed) : add some protection for missing schemas.

 capplets/keybindings/ChangeLog                     | 6 ++++++
 capplets/keybindings/gnome-keybinding-properties.c | 7 ++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit c00e3a749c9290e25f4b8f05e2b7553448bc1c74
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 17:21:23 2002 +0000

    click volume is an integer from 0..100, schema is an int too. Remove float
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-keyboard.c (apply_settings) : click volume is an
          integer from 0..100, schema is an int too.  Remove float and double
          and add some bounds checking.
    
        (set_server_from_gconf) : scale mk_time_to_max by mk_interval so that
          it is actually in msec.
        (set_gconf_from_server) : do the inverse here.

 gnome-settings-daemon/ChangeLog                             |  7 +++++++
 .../gnome-settings-accessibility-keyboard.c                 |  5 +++--
 gnome-settings-daemon/gnome-settings-keyboard.c             | 13 ++++++++-----
 3 files changed, 18 insertions(+), 7 deletions(-)

commit 8a14f2f9aebaa4df0934afe9e18ea0e6bfe3038d
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 17:15:08 2002 +0000

    click_volume range is 0..100
    
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.glade : click_volume range is 0..100

 capplets/keyboard/ChangeLog                       | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.glade | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1fe61dbcf6ce0d17d266b0eed645445ab691b9d7
Author: Jody Goldberg <jody@gnome.org>
Date:   Fri Mar 29 06:19:22 2002 +0000

    mouse keys now work.
    
    2002-03-29  Jody Goldberg <jody@gnome.org>
    
        * gnome-settings-accessibility-keyboard.c : make the debug spew optional
        (set_server_from_gconf) : typo that only applied settings when we
          shouldn't.
        (set_server_from_gconf) : set the mouse key accel flag when mk is
          enabled so that we can actually set the accel parms.  How did this
          work in X11R6 ?

 gnome-settings-daemon/ChangeLog                    |  9 +++++++
 .../gnome-settings-accessibility-keyboard.c        | 28 +++++++++++++---------
 2 files changed, 26 insertions(+), 11 deletions(-)

commit 454800152e51d7136bce4b3c5524d5df11dafd9c
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Mar 29 05:15:05 2002 +0000

    Only set size for preview modes.
    
    2002-03-28  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c (bg_applier_set_prop): Only set size for preview modes.

 libbackground/ChangeLog | 4 ++++
 libbackground/applier.c | 6 ++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit efea7f9c120a65048402c8a1402408807aeaf398
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Mar 29 04:59:00 2002 +0000

    Rename to _DEFAULT_WIDTH, _DEFAULT_HEIGHT. (draw_disabled_message): Accept
    
    2002-03-28  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c (MONITOR_CONTENTS_WIDTH, MONITOR_CONTENTS_HEIGHT):
        Rename to _DEFAULT_WIDTH, _DEFAULT_HEIGHT.
        (draw_disabled_message): Accept width and height as variables.
        (bg_applier_class_init): Install props preview_width, preview_height.
        (bg_applier_set_prop): Accept new size properties, only set to
        default width/height on mode PREVIEW if uninitialized.
        (bg_applier_new_at_size): Added.
        (bg_applier_apply_prefs): Call draw_disabled_message with actual
        width/height.
        (bg_applier_get_preview_width): Create pixmap based on set size.

 libbackground/ChangeLog | 13 +++++++++
 libbackground/applier.c | 76 +++++++++++++++++++++++++++++++++++++++++--------
 libbackground/applier.h |  3 ++
 3 files changed, 80 insertions(+), 12 deletions(-)

commit 2b8fa79a0605d230b47f0ae1d49ade064cb3b39e
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Mar 29 01:13:44 2002 +0000

    on solaris Xresource.h sez /* You must include <X11/Xlib.h> before
    
    2002-03-28  jacob berkman  <jacob@ximian.com>
    
        * accessibility-keyboard.c: on solaris Xresource.h sez /* You must
        include <X11/Xlib.h> before including this file */

 capplets/accessibility/keyboard/ChangeLog                | 5 +++++
 capplets/accessibility/keyboard/accessibility-keyboard.c | 1 +
 2 files changed, 6 insertions(+)

commit 1a9d28bcab1e7f24a696fce6089627a06f7aebbe
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Mar 29 01:13:33 2002 +0000

    fix a typo
    
    2002-03-28  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-accessibility-keyboard.c (set_server_from_gconf):
        fix a typo

 gnome-settings-daemon/ChangeLog                               | 5 +++++
 gnome-settings-daemon/gnome-settings-accessibility-keyboard.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit fa727f41640c02b94c18b7ec10c9b5e909608d07
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Mar 29 01:01:10 2002 +0000

    add X libraries to link lines for things that make X calls (since
    
    2002-03-28  jacob berkman  <jacob@ximian.com>
    
        * configure.in: add X libraries to link lines for things that make
        X calls (since pango/gtk don't pull those in for us)

 ChangeLog    |  5 +++++
 configure.in | 10 +++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit ad88cdbaba0c6be5db1d1d74a9ca8e5d77c25b5f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 28 23:54:34 2002 +0000

    Set fsel to modal, it seems to fix a weird grabbing bug.
    
    2002-03-28  Richard Hestilow  <hestilow@ximian.com>
    
        * gconf-property-editor.c (peditor_image_clicked_cb): Set
        fsel to modal, it seems to fix a weird grabbing bug.

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b58a24bd2e909f1fd1665e994d02ae23d668408a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Mar 28 22:56:14 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-03-28  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 ++
 po/no.po     | 201 ++++++++++++++++++++++-------------------------------------
 2 files changed, 80 insertions(+), 125 deletions(-)

commit 18bd56b74a076752d9125e7af6dc9519980c0928
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 28 21:25:04 2002 +0000

    Add mnemonics. (main): Set title to "Background Preferences".
    
    2002-03-28  Richard Hestilow  <hestilow@ximian.com>
    
        * background-properties-capplet.c (create_dialog),
        background-properties.glade: Add mnemonics.
        (main): Set title to "Background Preferences".

 capplets/background/ChangeLog                       |  6 ++++++
 capplets/background/background-properties-capplet.c | 19 +++++++++++++++++--
 capplets/background/background-properties.glade     |  9 ++++-----
 3 files changed, 27 insertions(+), 7 deletions(-)

commit 3dce518cca3404935653969de958d4543487fdc2
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 28 20:55:50 2002 +0000

    Make dialog title match .desktop label.
    
    2002-03-28  Richard Hestilow  <hestilow@ximian.com>
    
        * gnome-default-applications-properties.glade: Make dialog title
        match .desktop label.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 90d759948a038117c0fe64b08d17345f58a72526
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 28 20:51:22 2002 +0000

    Construct list example from a single string. Fixes bug #72761.
    
    2002-03-28  Richard Hestilow  <hestilow@ximian.com>
    
        * control/control.c (create_form): Construct list example
        from a single string. Fixes bug #72761.

 capplets/theme-switcher/ChangeLog         |  5 +++++
 capplets/theme-switcher/control/control.c | 21 +++++++++++++--------
 2 files changed, 18 insertions(+), 8 deletions(-)

commit 86cfb778f17982409a9749d3ea1fecccec587dd5
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Mar 28 20:29:23 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 +
 po/pl.po     | 874 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 421 insertions(+), 458 deletions(-)

commit 3a721152dd3fab702cea6b9319e6feeafc35ec99
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Thu Mar 28 19:42:46 2002 +0000

    1.99.6
    
    Thu Mar 28 14:35:12 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * configure.in (RELEASE): 1.99.6

 ChangeLog    |   4 ++
 configure.in |   2 +-
 po/az.po     | 133 +++++++++++++++++++++++--------------------------
 po/ca.po     | 146 ++++++++++++++++++++++++++---------------------------
 po/cs.po     | 145 ++++++++++++++++++++++++++---------------------------
 po/da.po     | 160 +++++++++++++++++++++++++++++++----------------------------
 po/de.po     | 138 +++++++++++++++++++++++++--------------------------
 po/el.po     | 147 ++++++++++++++++++++++++++----------------------------
 po/en_GB.po  | 117 ++++++++++++++++++-------------------------
 po/es.po     | 140 +++++++++++++++++++++++++--------------------------
 po/et.po     | 160 +++++++++++++++++++++++++++++++----------------------------
 po/fi.po     |  76 +++++++++++++++++++---------
 po/fr.po     | 143 +++++++++++++++++++++++++---------------------------
 po/ga.po     | 134 +++++++++++++++++++++++--------------------------
 po/gl.po     | 148 ++++++++++++++++++++++++++----------------------------
 po/hr.po     | 134 +++++++++++++++++++++++--------------------------
 po/hu.po     | 141 ++++++++++++++++++++++++----------------------------
 po/it.po     | 146 ++++++++++++++++++++++++++---------------------------
 po/ja.po     | 142 +++++++++++++++++++++++++---------------------------
 po/ko.po     |  66 +++++++++++++++++-------
 po/lt.po     | 144 ++++++++++++++++++++++++++---------------------------
 po/lv.po     | 149 +++++++++++++++++++++++++++----------------------------
 po/ms.po     | 156 ++++++++++++++++++++++++++++++---------------------------
 po/nl.po     | 155 ++++++++++++++++++++++++++++-----------------------------
 po/nn.po     | 144 ++++++++++++++++++++++++++---------------------------
 po/no.po     | 145 +++++++++++++++++++++++++++--------------------------
 po/pl.po     | 157 ++++++++++++++++++++++++++++++---------------------------
 po/pt.po     | 155 ++++++++++++++++++++++++++++-----------------------------
 po/pt_BR.po  | 132 +++++++++++++++++++++++-------------------------
 po/ro.po     | 155 ++++++++++++++++++++++++++++-----------------------------
 po/ru.po     | 150 +++++++++++++++++++++++++++----------------------------
 po/sk.po     |  93 ++++++++++++++++++----------------
 po/sl.po     | 155 ++++++++++++++++++++++++++++-----------------------------
 po/sv.po     | 155 ++++++++++++++++++++++++++++-----------------------------
 po/tr.po     | 131 +++++++++++++++++++++++-------------------------
 po/uk.po     | 115 ++++++++++++++++++------------------------
 po/wa.po     | 142 +++++++++++++++++++++++++---------------------------
 po/zh_CN.po  | 155 ++++++++++++++++++++++++++++-----------------------------
 po/zh_TW.po  | 146 +++++++++++++++++++++++++++--------------------------
 39 files changed, 2546 insertions(+), 2610 deletions(-)

commit 7c4fed53419511c8a0e94bb44578eef40e48cbac
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Thu Mar 28 16:28:06 2002 +0000

    Updated Korean translation.
    
        * ko.po: Updated Korean translation.

 po/ChangeLog |   4 +
 po/ko.po     | 803 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 380 insertions(+), 427 deletions(-)

commit 653e2d9127c2faf24f452a4383f6b1ea1597854c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Mar 28 14:27:13 2002 +0000

    somehow the font settings were removed. Re add.
    
    Thu Mar 28 09:18:40 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-daemon.c: somehow the font settings were
        removed.  Re add.

 gnome-settings-daemon/ChangeLog               | 5 +++++
 gnome-settings-daemon/Makefile.am             | 2 ++
 gnome-settings-daemon/gnome-settings-daemon.c | 5 +++++
 3 files changed, 12 insertions(+)

commit 6f5025e9fb2e959414d91e794f2c77667edfecae
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Thu Mar 28 12:16:47 2002 +0000

    Fixed default apps combos to work on single-item list, made these
    insensitive, if < 1 items

 capplets/default-applications/ChangeLog            |   8 ++
 .../gnome-default-applications-properties.c        | 158 +++++++++------------
 2 files changed, 72 insertions(+), 94 deletions(-)

commit 27095fe23619122e149d2877843e2ec22a1f0c35
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Thu Mar 28 01:37:53 2002 +0000

    Fixed typo in default applications capplet, that made it to ignore
    editor setting

 capplets/default-applications/ChangeLog                      |  5 +++++
 .../gnome-default-applications-properties.c                  | 12 ++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

commit 25e832d7168010a448a6fc95fba935f0b915e4c4
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 28 01:10:53 2002 +0000

    Add mnemonics.
    
    2002-03-27  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties.glade: Add mnemonics.
    
        * sound-properties-capplet.c (create_dialog): Connect to
        properties so we know when to save.

 capplets/sound/ChangeLog                  | 14 ++++++++++++++
 capplets/sound/sound-properties-capplet.c | 10 +++++++++-
 capplets/sound/sound-properties.glade     | 12 ++++++++----
 3 files changed, 31 insertions(+), 5 deletions(-)

commit 7abe45f43b5b1a9f2806dd8bdd92d51b2b467605
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Wed Mar 27 18:52:08 2002 +0000

    Updated Finnish translation.
    
    2002-03-27  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 262 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 133 insertions(+), 133 deletions(-)

commit da9287fb263a9d55ee6183ad46dc7d9607f8dd69
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Mar 27 15:43:09 2002 +0000

    Updated Slovak translation.
    
    2002-03-27  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 274 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 151 insertions(+), 127 deletions(-)

commit 1c1ffb6ab47b8d4842dea3cbf15c9b35eea26fc7
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Mar 27 04:38:08 2002 +0000

    Only show themes if they actually have a keybinding. Also, initialize the
    
    Tue Mar 26 23:27:24 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keybinding-properties.c (setup_dialog): Only show themes
        if they actually have a keybinding.  Also, initialize the keytheme
        correctly.

 capplets/keybindings/ChangeLog                     |  8 ++-
 capplets/keybindings/gnome-keybinding-properties.c | 61 ++++++++++++++++++----
 2 files changed, 58 insertions(+), 11 deletions(-)

commit 73cb8063634d0d5ed0e3e2e528138219f579dd10
Author: Seth Nickell <seth@src.gnome.org>
Date:   Wed Mar 27 00:11:04 2002 +0000

    *** empty log message ***

 capplets/keybindings/ChangeLog             | 5 +++++
 capplets/keybindings/keybinding.desktop.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 51829bd80955440abf494bc8f8348655e4dd84d2
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Mar 27 00:10:38 2002 +0000

    remove screensaver
    
    2002-03-26  jacob berkman  <jacob@ximian.com>
    
        * capplets/Makefile.am (always_built_SUBDIRS): remove screensaver
    
        * capplets/screensaver/: remove as xscreensaver provides these
        things
    
        * configure.in: remove xscreensaver check again as xscreensaver
        supplies the .desktop file for itself
        (AC_OUTPUT): remove capplets/screensaver/Makefile

 ChangeLog                                    |   11 +
 capplets/Makefile.am                         |    2 +-
 capplets/screensaver/.cvsignore              |    3 -
 capplets/screensaver/ChangeLog               | 1123 --------------------------
 capplets/screensaver/Makefile.am             |   14 -
 capplets/screensaver/screensaver-capplet.png |  Bin 3139 -> 0 bytes
 capplets/screensaver/screensaver.desktop.in  |    8 -
 configure.in                                 |    6 -
 po/ChangeLog                                 |    4 +
 po/POTFILES.in                               |    1 -
 10 files changed, 16 insertions(+), 1156 deletions(-)

commit ff128913a45eb3ab20283d4e8ef038d65c55ee7b
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Tue Mar 26 22:56:20 2002 +0000

    Moved font capplet backt o original GUI and made it to work otherwise

 capplets/font/ChangeLog             |  15 ++-
 capplets/font/font-properties.glade | 218 +++++++++---------------------------
 capplets/font/main.c                | 156 +++++++++++++++++++++-----
 3 files changed, 194 insertions(+), 195 deletions(-)

commit c8d6823d9cd7f08866b285acbe9f697d51e39875
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Mar 26 20:33:16 2002 +0000

    The check for xscreensaver got removed, add it back in.
    
    2002-03-26  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: The check for xscreensaver got removed, add it back
        in.

 ChangeLog    | 5 +++++
 configure.in | 1 +
 2 files changed, 6 insertions(+)

commit 8f172b308da49530f3b365c5e6c4ee58ce9e5c69
Author: Dave Camp <dave@ximian.com>
Date:   Tue Mar 26 18:53:49 2002 +0000

    Don't initialize is_nautilus_running here (check it each time in
    
    2002-03-26  Dave Camp  <dave@ximian.com>
    
            * applier.c: (bg_applier_init): Don't initialize
            is_nautilus_running here (check it each time in appy_prefs).
            (bg_applier_apply_prefs): Don't try to apply the background if
            nautilus is running.

 libbackground/ChangeLog | 7 +++++++
 libbackground/applier.c | 9 +++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit b8e874212ceab2c6f25a77a6bf15910c1d506d14
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Mar 26 17:22:22 2002 +0000

    add new .schemas file
    
    2002-03-26  jacob berkman  <jacob@ximian.com>
    
        * schemas/Makefile.am (schema_DATA): add new .schemas file
    
        * schemas/apps_gnome_settings_daemon_screensaver.schemas: settings
        for starting screensaver

 ChangeLog                                          |  7 ++++++
 schemas/Makefile.am                                |  3 ++-
 .../apps_gnome_settings_daemon_screensaver.schemas | 27 ++++++++++++++++++++++
 3 files changed, 36 insertions(+), 1 deletion(-)

commit 222d8a239a3219cd3bce1d206fe72a4f9ff23eac
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Mar 26 17:22:02 2002 +0000

    start xscreensaver, and display an error dialog if it failed
    
    2002-03-26  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-screensaver.[ch]
        (gnome_settings_screensaver_load): start xscreensaver, and display
        an error dialog if it failed
    
        * gnome-settings-daemon.c (gnome_settings_daemon_new): init/load
        screensaver

 gnome-settings-daemon/ChangeLog                    |   9 ++
 gnome-settings-daemon/Makefile.am                  |   2 +
 gnome-settings-daemon/gnome-settings-daemon.c      |   5 +-
 gnome-settings-daemon/gnome-settings-screensaver.c | 119 +++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-screensaver.h |  33 ++++++
 5 files changed, 167 insertions(+), 1 deletion(-)

commit 2a884fd7ade680c2cdc4bcdd1fa2055b2ae576ea
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Tue Mar 26 16:39:05 2002 +0000

    Two minor checks, that fix crash/misbehaviour at broken GConf setups

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 5 ++++-
 capplets/ui-properties/ChangeLog              | 4 ++++
 capplets/ui-properties/gnome-ui-properties.c  | 4 +++-
 4 files changed, 16 insertions(+), 2 deletions(-)

commit 8d24cf9697f40f34285464c7855a7db1e8ea725d
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Tue Mar 26 14:07:09 2002 +0000

    Updated Slovak translation.
    
    2002-03-26  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +++
 po/sk.po     | 105 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 50 insertions(+), 59 deletions(-)

commit 204149c4a01ef067473b8b7d096e3768abb9f364
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Mar 26 08:24:44 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-03-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/no.po | 78 ++++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 56 insertions(+), 22 deletions(-)

commit aceada3be1aefabb8486dc4478a0ed74e673ae2c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Mar 26 08:24:04 2002 +0000

    Fix a string.
    
    2003-03-26  Kjartan Maraas  <kmaraas@gnome.org>
    
        * activate-settings-daemon.c: Fix a string.

 capplets/common/ChangeLog                  | 4 ++++
 capplets/common/activate-settings-daemon.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 8835f45c62b6646837f6c1243ea3da4172f503ce
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Mon Mar 25 22:27:54 2002 +0000

    Fail verbosely instead of silent crashing on certain missing/broken schemas

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 9 +++++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit fc7c0a3f27d2438c2077617c695cec37351e17fd
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Mar 25 20:30:33 2002 +0000

    tell the SM to restart us only after we know we're unique with
    
    2002-03-25  jacob berkman  <jacob@ximian.com>
    
        * factory.c (main): tell the SM to restart us only after we know
        we're unique with bonobo-activation

 gnome-settings-daemon/ChangeLog |  5 +++++
 gnome-settings-daemon/factory.c | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit da000d4a08ae9d6b2f503d1a481e65547040dbfb
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Mar 25 17:07:00 2002 +0000

    oked by jrb new. (volume_from_widget) : new. (setup_dialog) : use them
    
    
    2002-03-25  Jody Goldberg <jody@gnome.org>
    
        oked by jrb
        * gnome-keyboard-properties.c (volume_to_widget) : new.
        (volume_from_widget) : new.
        (setup_dialog) : use them here.

 capplets/keyboard/ChangeLog                   |  6 ++++++
 capplets/keyboard/gnome-keyboard-properties.c | 16 +++++++++++++++-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 85e7f61ad7d29e0f882ab560bfe02e2e089581e5
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Mar 25 16:39:42 2002 +0000

    Only load the necessary toplevel widget in the non-dialog case.
    
    2002-03-25  Jody Goldberg <jody@gnome.org>
    
        * accessibility-keyboard.c (setup_accessX_dialog) : Only load the
          necessary toplevel widget in the non-dialog case.
        (setup_dialog) : pass as_dialog to the sub-init routines.
        (setup_images) : only load widgets appropriate for the current state.
        (setup_ranges) : ditto, and be more vocal about invalid glade.
        (setup_simple_toggles) : ditto.
        (setup_toggles) : ditto.

 capplets/accessibility/keyboard/ChangeLog          |   9 ++
 .../keyboard/accessibility-keyboard.c              | 131 ++++++++++++---------
 2 files changed, 86 insertions(+), 54 deletions(-)

commit 02b2ad66f7821ae6972a995e477350cbc297cde3
Author: Jody Goldberg <jody@gnome.org>
Date:   Mon Mar 25 16:36:11 2002 +0000

    Use gtk_label_new_with_mnemonic and add an accel to the label.
    
    2002-03-25  Jody Goldberg <jody@gnome.org>
    
        * gnome-keyboard-properties.c (setup_accessibility) : Use
          gtk_label_new_with_mnemonic and add an accel to the label.

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit b76209e81ece33d6a45b01cf063d205215656f5d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 25 08:47:13 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-03-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 ++
 po/no.po     | 137 +++++++++++++++++++++++++----------------------------------
 2 files changed, 63 insertions(+), 78 deletions(-)

commit 1cb06ddba20274f1a9b8054056d5369e6b45f6e2
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Mar 25 06:09:43 2002 +0000

    1.99.5
    
    Mon Mar 25 00:51:06 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in (RELEASE): 1.99.5

 ChangeLog                                          |    9 +
 capplets/background/ChangeLog                      |    6 -
 .../keybindings/gnome-keybinding-properties.glade  |    2 +-
 configure.in                                       |    2 +-
 po/az.po                                           | 1639 ++++++--
 po/ca.po                                           | 1770 ++++++--
 po/cs.po                                           | 1677 ++++++--
 po/da.po                                           |  236 +-
 po/de.po                                           | 1668 ++++++--
 po/el.po                                           | 1705 ++++++--
 po/en_GB.po                                        | 2327 +++++------
 po/es.po                                           | 1663 ++++++--
 po/et.po                                           |  237 +-
 po/fi.po                                           |  305 +-
 po/fr.po                                           | 1748 ++++++--
 po/ga.po                                           | 1624 ++++++--
 po/gl.po                                           | 3405 ++++++++-------
 po/hr.po                                           | 1637 ++++++--
 po/hu.po                                           | 3306 +++++++--------
 po/it.po                                           | 3987 +++++++++---------
 po/ja.po                                           | 1706 ++++++--
 po/ko.po                                           | 1329 +++++-
 po/lt.po                                           | 1630 ++++++--
 po/lv.po                                           | 1715 ++++++--
 po/ms.po                                           |  373 +-
 po/nl.po                                           |  850 +++-
 po/nn.po                                           | 1686 ++++++--
 po/no.po                                           |  578 ++-
 po/pl.po                                           |  818 ++--
 po/pt.po                                           |  780 +++-
 po/pt_BR.po                                        | 1601 +++++--
 po/ro.po                                           | 4373 +++++++++++---------
 po/ru.po                                           |  597 ++-
 po/sk.po                                           |  597 ++-
 po/sl.po                                           |  704 +++-
 po/sv.po                                           |  727 +++-
 po/tr.po                                           | 1337 +++++-
 po/uk.po                                           | 1257 +++++-
 po/wa.po                                           | 1668 ++++++--
 po/zh_CN.po                                        |  596 ++-
 po/zh_TW.po                                        | 1673 ++++++--
 41 files changed, 39194 insertions(+), 16354 deletions(-)

commit e15dd87911ad6b26bc4ebb2c1317557db9188981
Author: jacob berkman <jacob@ximian.com>
Date:   Sun Mar 24 19:58:38 2002 +0000

    revert .directory.in.in change as that breaks the build
    
    2002-03-24  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: revert .directory.in.in change as that breaks the
        build

 po/ChangeLog   | 5 +++++
 po/POTFILES.in | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit bec0cee5343831af2709e1188b6cf911dbdb047f
Author: Zbigniew Chyla <cyba@gnome.pl>
Date:   Sun Mar 24 13:11:16 2002 +0000

    Added capplets/keybindings/gnome-keybinding-properties.glade. Renamed
    
    
    2002-03-24  Zbigniew Chyla  <cyba@gnome.pl>
    
        * POTFILES.in:
        Added capplets/keybindings/gnome-keybinding-properties.glade.
        Renamed capplets/desktop-links/*.directory.in.in to *.directory.in
    
        * pl.po: Updated Polish translation by
        GNOME PL Team <translators@gnome.pl>.

 po/ChangeLog   |   9 +++
 po/POTFILES.in |   8 +-
 po/pl.po       | 248 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 3 files changed, 244 insertions(+), 21 deletions(-)

commit 37b4a014eb625bb050d07a50a32671a9178e523e
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Mar 23 23:16:10 2002 +0000

    Added file to CVS.
    
    2002-03-23  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-keybindings.xml: Added file to CVS.
    
        * C/control-center.xml: Added the keybindings capplet so that it will compile.

 help/C/control-center.xml | 11 +++++++++++
 help/ChangeLog            |  6 ++++++
 2 files changed, 17 insertions(+)

commit 5399ce0b1a2bb83852ee37851db75d0573f66099
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Sat Mar 23 04:39:24 2002 +0000

    Add AccessX capplet.

 capplets/Makefile.am                               |   3 +-
 capplets/accessibility/.cvsignore                  |   2 +
 capplets/accessibility/Makefile.am                 |   1 +
 capplets/common/gconf-property-editor.c            |   3 +
 capplets/desktop-links/.cvsignore                  |   4 +
 .../desktop-links/Accessibility.directory.in.in    |   5 +
 capplets/desktop-links/Makefile.am                 |   4 +-
 capplets/desktop-links/accessibility-directory.png | Bin 0 -> 220 bytes
 capplets/keyboard/ChangeLog                        |  10 +
 capplets/keyboard/Makefile.am                      |   4 +-
 capplets/keyboard/gnome-keyboard-properties.c      |  24 +-
 configure.in                                       |   3 +
 gnome-settings-daemon/.cvsignore                   |   5 +
 gnome-settings-daemon/Makefile.am                  |   4 +-
 .../gnome-settings-accessibility-keyboard.c        | 300 +++++++++++++++++++++
 .../gnome-settings-accessibility-keyboard.h        |  32 +++
 gnome-settings-daemon/gnome-settings-daemon.c      |   3 +
 po/ChangeLog                                       |   4 +
 po/POTFILES.in                                     |   4 +
 19 files changed, 403 insertions(+), 12 deletions(-)

commit d37c0f9d73a3cde021821e20d76195410cae18e0
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Mar 23 01:07:27 2002 +0000

    Hooked the background stuff into this file. It builds properly.
    
    2002-03-22  Kevin Breit  <mrproper@ximian.com>
    
        * C/control-center.xml: Hooked the background stuff into this file.  It builds properly.
    
        * C/config-background.xml: Created the file.

 help/C/config-background.xml | 131 +++++++++++++++++++++++++++++++++++++++++++
 help/C/control-center.xml    |   4 +-
 help/ChangeLog               |   6 ++
 3 files changed, 140 insertions(+), 1 deletion(-)

commit 403c9641c9761b4617442c0d9001d143281bf5eb
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Mar 22 22:44:54 2002 +0000

    Make the accessX code visible, but do not enable it quite yet.
    Hopefully the maintainers will actually comment on things soon
    so that I can comment the glue in clear conscience.

 capplets/accessibility/keyboard/.cvsignore         |  11 +
 capplets/accessibility/keyboard/Makefile.am        |  39 ++
 .../keyboard/accessibility-keyboard-bouncekey.png  | Bin 0 -> 2245 bytes
 .../keyboard/accessibility-keyboard-capplet.png    | Bin 0 -> 3385 bytes
 .../keyboard/accessibility-keyboard-mousekey.png   | Bin 0 -> 3160 bytes
 .../keyboard/accessibility-keyboard-slowkey.png    | Bin 0 -> 3200 bytes
 .../keyboard/accessibility-keyboard-stickykey.png  | Bin 0 -> 2364 bytes
 .../keyboard/accessibility-keyboard-togglekey.png  | Bin 0 -> 3239 bytes
 .../keyboard/accessibility-keyboard.c              | 463 +++++++++++++++++++++
 .../keyboard/accessibility-keyboard.desktop.in     |   8 +
 .../keyboard/accessibility-keyboard.h              |  32 ++
 .../gnome-accessibility-keyboard-properties.c      |  67 +++
 .../gnome-accessibility-keyboard-properties.glade2 |   4 +-
 13 files changed, 622 insertions(+), 2 deletions(-)

commit c5e20180dd423e7b6b5c0a5ab6f509cac99f9137
Author: Ole Laursen <olau@hardworking.dk>
Date:   Fri Mar 22 22:11:39 2002 +0000

    Updated Danish translation.
    
    2002-03-22  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 326 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 206 insertions(+), 124 deletions(-)

commit 58fd3f28fde3a571babde7e1319d8ee9eea4aba3
Author: Jody Goldberg <jody@src.gnome.org>
Date:   Fri Mar 22 20:32:15 2002 +0000

    initial commit

 .../gnome-accessibility-keyboard-properties.glade2 | 1464 ++++++++++++++++++++
 1 file changed, 1464 insertions(+)

commit ef5259e0f524411d12ed2cf91ebc9fbf22ce678e
Author: Tivo Leedjrv <toivo@linux.ee>
Date:   Fri Mar 22 19:09:35 2002 +0000

    Updated Estonian translation.
    
    2002-03-22  Tivo Leedjrv  <toivo@linux.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |   4 +
 po/et.po     | 632 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 417 insertions(+), 219 deletions(-)

commit 00450ae29035ae101018acecc40081b1682c3788
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Mar 22 00:40:44 2002 +0000

    Set the window icon.
    
    2002-03-21  Seth Nickell  <snickell@stanford.edu>
    
        * background-properties-capplet.c: (main):
    
        Set the window icon.

 capplets/background/ChangeLog                       | 6 ++++++
 capplets/background/background-properties-capplet.c | 5 +++++
 2 files changed, 11 insertions(+)

commit c05f4f18a3141beecd71b50796f8b5a3d1b96fc4
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Mar 22 00:36:17 2002 +0000

    Recapture some of the more subtle interactions of "Seth's UI". Change
    
    2002-03-21  Seth Nickell  <snickell@stanford.edu>
    
        * background-properties-capplet.c: (string_to_orientation),
        (update_color_widget_labels_and_visibility),
        (peditor_value_changed), (setup_dialog), (create_dialog):
        * background-properties.glade:
    
        Recapture some of the more subtle interactions of "Seth's UI".
        Change colour labels when the gradient orientation changes,
        and use mnemonics so the capplet is accessible. Pad and space
        as designed.
    
        There are still at least two things wrong:
    
        1) Havoc & Jonathan convinced me that the large button with
           label was wrong. This should instead look like:
           http://beauty.stanford.edu/bg_button.png
           The new format should be right for all image selectors, the
           old mechanism had serious usability problems.
        2) "No Picture" should be the first toggle

 capplets/background/ChangeLog                      | 21 ++++++
 .../background/background-properties-capplet.c     | 83 +++++++++++++++++-----
 capplets/background/background-properties.glade    |  9 ++-
 3 files changed, 92 insertions(+), 21 deletions(-)

commit 77d0b55d5336df64e0cd56297ee4089b52a2933c
Author: Kevin Breit <mrproper@ximian.com>
Date:   Thu Mar 21 22:52:22 2002 +0000

    Updated the file with the latest order and amount of things.
    
    2002-03-21  Kevin Breit  <mrproper@ximian.com>
    
        * C/control-center.xml: Updated the file with the latest order and amount of things.

 help/C/control-center.xml | 80 +++++++----------------------------------------
 help/ChangeLog            |  4 +++
 2 files changed, 15 insertions(+), 69 deletions(-)

commit c0ab8f0cb4413996a04904ba7cd1177f27b9f932
Author: Dave Camp <dave@ximian.com>
Date:   Thu Mar 21 16:52:26 2002 +0000

    New functions. (toolbar_detachable_cb): Call show_handlebar.
    
    2002-03-21  Dave Camp  <dave@ximian.com>
    
        * gnome-ui-properties.c: (show_handlebar), (set_toolbar_style),
        (toolbar_style_cb), (set_have_icons): New functions.
        (toolbar_detachable_cb): Call show_handlebar.
        (menus_have_icons_cb): Call set_have_icons.
        (setup_dialog): Connect to the style peditor's value_changed signal,
        and set the initial states of the example widgets.

 capplets/ui-properties/ChangeLog             |   9 +++
 capplets/ui-properties/gnome-ui-properties.c | 106 +++++++++++++++++++++++++--
 2 files changed, 107 insertions(+), 8 deletions(-)

commit e57703533e96e97557c539794c9dd5fb33c4bc41
Author: Dave Camp <dave@ximian.com>
Date:   Thu Mar 21 15:24:20 2002 +0000

    Add the peditor arguments. (setup_dialog): Use locate_pointer instead of
    
    2002-03-21  Dave Camp  <dave@ximian.com>
    
        * gnome-mouse-properties.c (*_{to|from}_gconf): Add the peditor
        arguments.
        (setup_dialog): Use locate_pointer instead of locate_pointer_id.
        (threshold_to_gconf): New function.
        (setup_dialog): Use threshold_to_gconf for motion_threshold and
        drag_threshold.

 capplets/mouse/ChangeLog                |  9 +++++++++
 capplets/mouse/gnome-mouse-properties.c | 26 ++++++++++++++++++--------
 2 files changed, 27 insertions(+), 8 deletions(-)

commit aa0987b3055b34d789f19ffb18d38fa259f2a94b
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Wed Mar 20 22:27:43 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 ++
 po/pl.po     | 243 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 211 insertions(+), 37 deletions(-)

commit 3c7e1c8452f060d8d6fcbba2532773e36c12f157
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Wed Mar 20 20:59:13 2002 +0000

    Updated Finnish translation.
    
    2002-03-20  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 531 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 383 insertions(+), 152 deletions(-)

commit 6b0ec1bccc84f444278df0b4c486048af0e48442
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Wed Mar 20 14:31:58 2002 +0000

    Warning fixes.

 libbackground/preview-file-selection.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 099d2ec80043d081549c11eb6810c986da1545e0
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Wed Mar 20 06:01:21 2002 +0000

    Updated Malay Translation.
    
    2002-03-20  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 ++
 po/ms.po     | 198 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 125 insertions(+), 77 deletions(-)

commit be50597a2562ae5bfed4dfc111519dcf3a19e5db
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Mar 20 03:30:11 2002 +0000

    Link to common.la and not common.a.
    
    2002-03-19  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in (COMMON_LIBS): Link to common.la and not common.a.

 ChangeLog                                          |   4 +
 capplets/background/ChangeLog                      |  16 +
 .../background/background-properties-capplet.c     | 335 +++++--
 capplets/background/background-properties.glade    | 971 +++++++++++++--------
 capplets/common/ChangeLog                          |  14 +
 capplets/common/Makefile.am                        |   8 +-
 capplets/common/gconf-property-editor.c            | 306 ++++++-
 capplets/common/gconf-property-editor.h            |  14 +
 capplets/keyboard/ChangeLog                        |   9 +
 capplets/keyboard/gnome-keyboard-properties.c      |  20 +-
 capplets/ui-properties/ChangeLog                   |   4 +
 capplets/ui-properties/gnome-ui-properties.c       |   4 +-
 configure.in                                       |   2 +-
 libbackground/ChangeLog                            |  20 +
 libbackground/applier.c                            |  78 +-
 libbackground/preferences.c                        |  21 +-
 libbackground/preferences.h                        |   2 +-
 libbackground/preview-file-selection.c             |  53 +-
 libbackground/preview-file-selection.h             |   2 +
 po/ChangeLog                                       |   4 +
 po/POTFILES.in                                     |   1 +
 21 files changed, 1294 insertions(+), 594 deletions(-)

commit a63409393bd4f54c4ba0dcbaf5aec8f0842da7fb
Author: Ole Laursen <olau@hardworking.dk>
Date:   Tue Mar 19 20:01:08 2002 +0000

    Updated Danish translation.
    
    2002-03-19  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 369 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 247 insertions(+), 126 deletions(-)

commit 1171f13e9e84aacb85b427f61dd03de35ed45751
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Tue Mar 19 19:15:49 2002 +0000

    Fix few segfaults on broken schemas - but there are more

 capplets/keyboard/ChangeLog                   | 5 +++++
 capplets/keyboard/gnome-keyboard-properties.c | 8 +++++---
 control-center/ChangeLog                      | 4 ++++
 control-center/capplet-dir.c                  | 7 +++----
 4 files changed, 17 insertions(+), 7 deletions(-)

commit d355d875a765bcea919591c1ba5283c683e7c6c8
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Mon Mar 18 16:50:32 2002 +0000

    Updated Malay Translation by Khairulanuar Abd Majid <khairul@ikhlas.com>
    
    2002-03-18  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation by
    Khairulanuar Abd Majid <khairul@ikhlas.com>

 po/ChangeLog |   5 +
 po/ms.po     | 585 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 333 insertions(+), 257 deletions(-)

commit 8b4d8026b931d074eb4dc90d5486f60ce4423e8e
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Mon Mar 18 04:28:47 2002 +0000

    sync to CVS.
    
    Sun Mar 17 23:26:02 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * capplets/keybindings/eggcellrendererkeys.[ch]: sync to CVS.

 ChangeLog                                  |  4 ++
 capplets/keybindings/eggcellrendererkeys.c | 59 ++++++++++++++++++++++++------
 capplets/keybindings/eggcellrendererkeys.h |  1 +
 3 files changed, 52 insertions(+), 12 deletions(-)

commit b4924a9033431bbf64dc824e77ab171a93726ca0
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Mar 18 04:22:04 2002 +0000

    add eggcellrendererkeys.h
    
    2002-03-17  jacob berkman  <jacob@ximian.com>
    
        * capplets/keybindings/Makefile.am
        (gnome_keybinding_properties_SOURCES): add eggcellrendererkeys.h

 ChangeLog                        | 5 +++++
 capplets/keybindings/Makefile.am | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 4844134d51ac175a8d66babf9b96ff7c6527fd7d
Author: Zbigniew Chyla <cyba@gnome.pl>
Date:   Sun Mar 17 23:35:52 2002 +0000

    Fixed compilation error.
    
    
    2002-03-18  Zbigniew Chyla  <cyba@gnome.pl>
    
        * capplets/common/activate-settings-daemon.c (popup_error_message):
        Fixed compilation error.

 ChangeLog                                  | 5 +++++
 capplets/common/activate-settings-daemon.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit e9b57b010f3a558397cae84f548c32897a113963
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 17 22:15:14 2002 +0000

    Mark a string. #include <config.h>
    
    2002-03-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * activate-settings-daemon.c: Mark a string. #include <config.h>

 capplets/common/ChangeLog                  | 4 ++++
 capplets/common/activate-settings-daemon.c | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 7a64b591a75bae6bc4eefce523a4fd2605957146
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 17 22:08:15 2002 +0000

    Update this some more. Updated Norwegian (bokml) translation.
    
    2002-03-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * POTFILES.in: Update this some more.
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog   |   1 +
 po/POTFILES.in |  12 +++--
 po/no.po       | 137 +++++++++++++++++++++++++++++++++++++++++++++++----------
 3 files changed, 123 insertions(+), 27 deletions(-)

commit bca93ec2d9e368f79cc26145921e8d44616598d2
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sun Mar 17 21:39:37 2002 +0000

    fix typo.
    
    Sun Mar 17 16:30:48 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/keybindings/gnome-keybinding-properties.c
        (create_dialog): fix typo.
    
    I'm never able to import new code w/o screwing something up.  Sigh...

 ChangeLog                                          | 5 +++++
 capplets/keybindings/gnome-keybinding-properties.c | 6 +-----
 2 files changed, 6 insertions(+), 5 deletions(-)

commit ac9331cf2b12063bb3465fde68f611aea006a27f
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sun Mar 17 21:27:09 2002 +0000

    Add new Makefiles ditto Add keybindings dialog
    
    2002-03-17  Jonathan Blandford  <jrb@redhat.com>
    
        * Makefile.am: Add new Makefiles
        * configure.in: ditto
        * capplets/Makefile.am: Add keybindings dialog
    
        * capplets/keybindings/.cvsignore: shut up CVS
    
        * capplets/keybindings/Makefile.am:
        * capplets/keybindings/eggcellrendererkeys.c:
        * capplets/keybindings/eggcellrendererkeys.h:
        * capplets/keybindings/gnome-keybinding-properties.c:
        * capplets/keybindings/gnome-keybinding-properties.glade:
        * capplets/keybindings/keybinding.desktop.in:
        New properties dialog.  Seems to work
    
        * schemas/.cvsignore: shut up CVS
    
        * schemas/Makefile.am:
        * schemas/apps_gnome_keybinding_properties.schemas: New schemas
        file for configuring the keybinding schemas.
        * schemas/background.schemas: Remove unneeded schemas files
        * schemas/peripherals.schemas:
        * schemas/screensaver.schemas:

 ChangeLog                                          |  25 +
 Makefile.am                                        |   2 +-
 capplets/Makefile.am                               |   4 +-
 capplets/background/.cvsignore                     |   5 +-
 capplets/background/ChangeLog                      |   6 +
 capplets/common/ChangeLog                          |   9 +
 capplets/common/Makefile.am                        |   3 +-
 capplets/common/theme-common.c                     |  91 ++++
 capplets/common/theme-common.h                     |  20 +
 capplets/font/ChangeLog                            |   7 +
 capplets/font/font-properties.glade                | 207 ++++++--
 capplets/font/main.c                               |   4 +-
 capplets/keybindings/.cvsignore                    |   4 +
 capplets/keybindings/Makefile.am                   |  21 +
 capplets/keybindings/eggcellrendererkeys.c         | 529 +++++++++++++++++++++
 capplets/keybindings/eggcellrendererkeys.h         |  73 +++
 capplets/keybindings/gnome-keybinding-properties.c | 522 ++++++++++++++++++++
 .../keybindings/gnome-keybinding-properties.glade  | 186 ++++++++
 capplets/keybindings/keybinding.desktop.in         |   7 +
 configure.in                                       |   2 +
 gnome-settings-daemon/ChangeLog                    |   5 +-
 gnome-settings-daemon/gnome-settings-xsettings.c   |   2 +
 schemas/.cvsignore                                 |   2 +
 schemas/Makefile.am                                |   5 +-
 schemas/apps_gnome_keybinding_properties.schemas   |  19 +
 schemas/background.schemas                         | 105 ----
 schemas/peripherals.schemas                        | 163 -------
 schemas/screensaver.schemas                        |  59 ---
 28 files changed, 1704 insertions(+), 383 deletions(-)

commit ee92876cb3860526073a0998293ea927057092e5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 17 21:23:09 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-03-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 52 ++++++++++++++++++++++++++++++++++------------------
 2 files changed, 38 insertions(+), 18 deletions(-)

commit 44fd04b29b62cfe6f6a577448b3e5a10fc63f186
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 17 21:20:04 2002 +0000

    Move include <config.h> to the top.
    
    2002-03-17  Kjartan Maraas  <kmaraas@gnome.org>
    
        * factory.c: Move include <config.h> to the top.

 gnome-settings-daemon/ChangeLog | 4 ++++
 gnome-settings-daemon/factory.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit e63f89609c06be988ab327d1a7c37de2993697f9
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sun Mar 17 21:18:28 2002 +0000

    Added to CVS. I am a dummy, didn't add this.
    
    2002-03-17  Kevin Breit  <mrproper@ximian.com>
    
        * xmldocs.make: Added to CVS.  I am a dummy, didn't add this.

 help/ChangeLog    |  4 +++
 help/xmldocs.make | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 90 insertions(+)

commit 6eff67c9f5a1d3a1a9d93d8777451f0dd39a5f17
Author: Darin Adler <darin@src.gnome.org>
Date:   Sun Mar 17 18:25:35 2002 +0000

    Use G_GNUC_FUNCTION so we're not gcc-specific.
    
        * preferences.c: (bg_preferences_merge_entry):
        Use G_GNUC_FUNCTION so we're not gcc-specific.

 libbackground/ChangeLog     | 5 +++++
 libbackground/preferences.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 65fe6623b52dd1a7692ab8ba9a7215565a9ca014
Author: Wang Jian <lark@src.gnome.org>
Date:   Sun Mar 17 08:10:41 2002 +0000

    *** empty log message ***

 po/ChangeLog |    5 +
 po/zh_CN.po  | 1080 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
 2 files changed, 939 insertions(+), 146 deletions(-)

commit 06603e6de0d3d0592361d8bb2e25dc1a7f09b117
Author: Seth Nickell <seth@src.gnome.org>
Date:   Fri Mar 15 09:24:06 2002 +0000

    Add an enum type for specifying that we don't know the type (i.e. the key
    
    
        * preferences.c: (bg_preferences_load),
        (bg_preferences_merge_entry), (read_wptype_from_string),
        (read_color_from_string), (bg_preferences_get_wptype_as_string):
        * preferences.h:
    
        Add an enum type for specifying that we don't know the type (i.e. the
        key was not available, or set to something invalid). Currently it
        was using -1, which barfs with some compilers that set enums
        to be uint.

 libbackground/preferences.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8e834c8342c78da4bebdf7f452c548148446de76
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Mar 15 09:23:45 2002 +0000

    Add an enum type for specifying that we don't know the type (i.e. the key
    
    2002-03-15  Seth Nickell  <snickell@stanford.edu>
    
        * preferences.c: (bg_preferences_load),
        (bg_preferences_merge_entry), (read_wptype_from_string),
        (read_color_from_string), (bg_preferences_get_wptype_as_string):
        * preferences.h:
    
        Add an enum type for specifying that we don't know the type (i.e. the
        key was not available, or set to something invalid). Currently it
        was using -1, which barfs with some compilers that set enums
        to be uint.

 libbackground/ChangeLog     | 12 ++++++++++++
 libbackground/preferences.c | 21 +++++++++++----------
 2 files changed, 23 insertions(+), 10 deletions(-)

commit c10c6c06cead8129f4bfe341b8f0b4cea88a2670
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Mar 15 03:56:44 2002 +0000

    Committed new schemas patch.
    
    2002-03-14  Richard Hestilow  <hestilow@ximian.com>
    
        * Committed new schemas patch.

 capplets/background/ChangeLog                      |   6 +
 .../background/background-properties-capplet.c     |  88 +++--
 capplets/common/ChangeLog                          |  14 +
 capplets/common/gconf-property-editor.c            | 361 +++++++++++++++++++--
 capplets/common/gconf-property-editor.h            |  32 +-
 libbackground/preferences.c                        | 215 +++++++++---
 libbackground/preferences.h                        |  23 +-
 7 files changed, 629 insertions(+), 110 deletions(-)

commit e89410ab874020062dbbe2601b9a4182af26872a
Author: Kevin Breit <mrproper@ximian.com>
Date:   Thu Mar 14 22:44:45 2002 +0000

    Removed EXTRA_DIST part.
    
    2002-03-14  Kevin Breit  <mrproper@ximian.com>
    
        * Makefile.am: Removed EXTRA_DIST part.

 help/ChangeLog   | 2 ++
 help/Makefile.am | 1 +
 2 files changed, 3 insertions(+)

commit ab403d271991783637df1b05cf57ac05637725e2
Author: Kevin Breit <mrproper@ximian.com>
Date:   Thu Mar 14 22:43:06 2002 +0000

    Made this file work actually. Added a lot of stuff.
    
    2002-03-14  Kevin Breit  <mrproper@ximian.com>
    
        * C/Makefile.am: Made this file work actually.  Added a lot of stuff.

 help/C/Makefile.am | 14 +++++++++++++-
 help/ChangeLog     |  3 ++-
 2 files changed, 15 insertions(+), 2 deletions(-)

commit e4305264b40fb674c750366eb1b0971cb5897a3b
Author: Valek Frob <frob@src.gnome.org>
Date:   Thu Mar 14 22:38:10 2002 +0000

    Updated russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 679 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 664 insertions(+), 19 deletions(-)

commit 41625a6ef343e0858e9b880a38a4f8803d193793
Author: Kevin Breit <mrproper@ximian.com>
Date:   Thu Mar 14 22:33:57 2002 +0000

    Added to cvs.
    
    2002-03-14  Kevin Breit  <mrproper@ximian.com>
    
        * C/Makefile.am: Added to cvs.

 help/C/Makefile.am        | 1 +
 help/C/control-center.xml | 4 ++--
 help/ChangeLog            | 4 ++++
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 18fddc2ef8106e82c461f57c4454caa4a3c11720
Author: Abel Cheung <maddog@linux.org.hk>
Date:   Thu Mar 14 00:13:05 2002 +0000

    Remove obsolete entries that are duplicates of existing entries (with
    
    2002-03-14  Abel Cheung  <maddog@linux.org.hk>
    
        * gl.po, hu.po, it.po, ro.po: Remove obsolete entries that
        are duplicates of existing entries (with identical msgid
        and msgstr).

 po/ChangeLog |  6 ++++++
 po/gl.po     |  3 ---
 po/hu.po     |  3 ---
 po/it.po     |  3 ---
 po/ro.po     | 30 ------------------------------
 5 files changed, 6 insertions(+), 39 deletions(-)

commit db316b1fa002e418f3875fce22f2b8591d14b3fd
Author: Valek Frob <frob@src.gnome.org>
Date:   Wed Mar 13 19:34:30 2002 +0000

    Updated russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 824 +++++++----------------------------------------------------
 2 files changed, 94 insertions(+), 734 deletions(-)

commit 3de3677c7b0018c05497df44fe0de64ea2d920f2
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Mar 13 17:31:20 2002 +0000

    add a dummy field (gnome_settings_daemon_register_callback): cast
    
    2002-03-13  jacob berkman  <jacob@ximian.com>
    
        * gnome-settings-daemon.c (_GnomeSettingsDaemonPrivate): add a
        dummy field
        (gnome_settings_daemon_register_callback): cast functions to
        gpointers as forte does not like this (bug #74349)

 gnome-settings-daemon/ChangeLog               | 7 +++++++
 gnome-settings-daemon/gnome-settings-daemon.c | 5 +++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 608493b3f6de7f09b568c8fdc7f2037d402de8e7
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Mar 13 13:59:11 2002 +0000

    Updated Slovak translation.
    
    2002-03-13  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 ++
 po/sk.po     | 189 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 104 insertions(+), 89 deletions(-)

commit 59d13a601def58ced67591e56b50ca79e7c84916
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Mar 12 22:53:54 2002 +0000

    Move CappletDirViewLayout enum here, remove include to preferences.h.
    
    2002-03-12  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir-view.h: Move CappletDirViewLayout enum here,
        remove include to preferences.h.
    
        * Makefile.am: Remove preferences.h again.

 control-center/ChangeLog          | 7 +++++++
 control-center/Makefile.am        | 1 -
 control-center/capplet-dir-view.h | 8 +++++++-
 3 files changed, 14 insertions(+), 2 deletions(-)

commit c96e22def8f9175eda8c79b81f12faae49c49cfd
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Mar 12 19:12:04 2002 +0000

    comment this out as it makes a call into preferences.c
    
    2002-03-12  jacob berkman  <jacob@ximian.com>
    
        * capplet-dir-view.c (prefs_menu_cb): comment this out as it makes
        a call into preferences.c

 control-center/ChangeLog          | 3 +++
 control-center/capplet-dir-view.c | 2 ++
 2 files changed, 5 insertions(+)

commit a91ae765fec4aa84434cd42f717051a5f4cafd37
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Mar 12 19:06:47 2002 +0000

    add preferences.h back as files depend on it
    
    2002-03-12  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am (gnome2_control_center_SOURCES): add preferences.h
        back as files depend on it

 control-center/ChangeLog   | 5 +++++
 control-center/Makefile.am | 1 +
 2 files changed, 6 insertions(+)

commit 9a668b3c7d7f0b4a3f10d63b96cfb5ad24e0cd94
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Mar 12 16:56:07 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-03-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 ++
 po/no.po     | 219 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 118 insertions(+), 105 deletions(-)

commit a803d676d09b63597bc2f13f19c11aeeee9e7761
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Tue Mar 12 15:12:35 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 +++++
 po/pl.po     | 69 +++++++++++++++++++++++-------------------------------------
 2 files changed, 31 insertions(+), 43 deletions(-)

commit de151bab0fcb176a0f989b9f3a67d732bb8eafcd
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Mar 12 05:20:46 2002 +0000

    Check for changeset != NULL before looking in changeset.
    
    2002-03-11  Richard Hestilow  <hestilow@ximian.com>
    
        * gnome-mouse-properties.c (drawing_area_button_press_event):
        Check for changeset != NULL before looking in changeset.

 capplets/mouse/ChangeLog                | 5 +++++
 capplets/mouse/gnome-mouse-properties.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 5fda24a5e544afe0f34088e613afb3b4593062d9
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Mar 12 04:58:49 2002 +0000

    Remove shell .glade, add .xml. Sorry for the minor string break but the
    
    2002-03-11  Richard Hestilow  <hestilow@ximian.com>
    
        * POTFILES.in: Remove shell .glade, add .xml.
        Sorry for the minor string break but the menu is needed
        for accessibility.

 po/ChangeLog   | 6 ++++++
 po/POTFILES.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 163b9c23b8aa932941de124570f4f84b264345fe
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Mar 12 04:56:21 2002 +0000

    Remove barely-used libglade stuff, replace with BonoboWindow. Add a menu
    
    2002-03-11  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir-view.c: Remove barely-used libglade stuff, replace
        with BonoboWindow. Add a menu with "close" since this is needed
        for accessibility.
    
        * gnomecc-ui.xml: Added.
    
        * Makefile.am: Remove preferences.[ch] from the build. Remove
        libglade stuff. Install gnomecc-ui.xml.
    
        * capplet-dir-view-list.c: Remove any "//" comments.

 control-center/ChangeLog               |  13 ++++
 control-center/Makefile.am             |  13 +---
 control-center/capplet-dir-view-list.c |   5 --
 control-center/capplet-dir-view.c      | 119 ++++++++++-----------------------
 control-center/capplet-dir-view.h      |   3 +-
 control-center/gnomecc-ui.xml          |  16 +++++
 6 files changed, 68 insertions(+), 101 deletions(-)

commit ec08294088fff63c1647c9724bcd0671e98d5af3
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Mar 12 01:35:40 2002 +0000

    Committed patches by Lauris Kaplinski for bugs 73571, 73587, and 71613.
    
    2002-03-11  Richard Hestilow <hestilow@ximian.com>
    
        * Committed patches by Lauris Kaplinski for bugs 73571, 73587,
        and 71613.

 ChangeLog                                          |  5 +++
 capplets/common/Makefile.am                        |  2 +-
 capplets/default-applications/ChangeLog            |  8 ++++
 .../gnome-default-applications-properties.c        | 49 +++++++++++++++++++++-
 capplets/file-types/ChangeLog                      |  7 ++++
 capplets/file-types/mime-edit-dialog.c             |  2 +
 capplets/file-types/mime-type-info.c               |  2 +-
 gnome-settings-daemon/ChangeLog                    |  6 +++
 gnome-settings-daemon/gnome-settings-keyboard.c    | 19 +++++----
 9 files changed, 88 insertions(+), 12 deletions(-)

commit c53bfb9c43556d211b5f9a2f21a2fb9827e5c9f4
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Mar 11 17:17:14 2002 +0000

    add idl/
    
    2002-03-11  jacob berkman  <jacob@ximian.com>
    
        * configure.in (AC_OUTPUT):
        * Makefile.am (SUBDIRS): add idl/

 ChangeLog    | 5 +++++
 Makefile.am  | 2 +-
 configure.in | 1 +
 3 files changed, 7 insertions(+), 1 deletion(-)

commit c230f74ba13fb385de2dbe6d9cfbf22ef2387aaf
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Mar 11 04:52:47 2002 +0000

    hook up toolbar to property

 capplets/ui-properties/gnome-ui-properties.c      | 63 +++++++++++++++++++++--
 capplets/ui-properties/gnome2-ui-properties.glade |  2 +-
 2 files changed, 61 insertions(+), 4 deletions(-)

commit dc4a27cfa7c13efd9b8deaf68ab86b0bdc0d9136
Author: Seth Nickell <seth@src.gnome.org>
Date:   Mon Mar 11 02:57:00 2002 +0000

    Add idl stuff to configure.in

 configure.in | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit dd4595f15d795bbfa3dd70af0a0e7f2cae6ffc31
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Mar 11 02:18:43 2002 +0000

    Dum de dum. Forgot to cvs add.
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
        * GNOME_SettingsDaemon.server.in:
    
        Dum de dum. Forgot to cvs add.

 gnome-settings-daemon/ChangeLog                      | 6 ++++++
 gnome-settings-daemon/GNOME_SettingsDaemon.server.in | 9 +++++++++
 2 files changed, 15 insertions(+)

commit fb48a0c4e5ecc27baa7876a03f1c4b5b8c60f7f4
Author: Havoc Pennington <hp@pobox.com>
Date:   Mon Mar 11 02:15:38 2002 +0000

    define ORBIT_IDL and IDL flags so gnome-settings-daemon will build
    
    2002-03-10  Havoc Pennington  <hp@pobox.com>
    
        * configure.in (ORBIT_IDL): define ORBIT_IDL and IDL flags so
        gnome-settings-daemon will build

 ChangeLog    | 5 +++++
 configure.in | 9 +++++++++
 2 files changed, 14 insertions(+)

commit 024ad269ad89d950f7fbb29ee7019a1c159aac0b
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Mar 11 01:52:13 2002 +0000

    Activate the settings daemon if its not already running.
    
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
        * main.c: (main):
        * sound-properties-capplet.c: (main):
    
        Activate the settings daemon if its not already running.

 capplets/sound/ChangeLog                  | 7 +++++++
 capplets/sound/main.c                     | 4 ++++
 capplets/sound/sound-properties-capplet.c | 4 ++++
 3 files changed, 15 insertions(+)

commit eacc848769f0f2316cea4ae4ab2547e30bbcbfae
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Mar 11 01:48:31 2002 +0000

    Activate the settings daemon if its not already running.
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-keyboard-properties.c: (main):
    
        Activate the settings daemon if its not already running.

 capplets/keyboard/ChangeLog                   | 6 ++++++
 capplets/keyboard/gnome-keyboard-properties.c | 3 +++
 2 files changed, 9 insertions(+)

commit a4e49d3f74095123bae6ca3b9136fa994fd17ab9
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Mar 11 01:46:13 2002 +0000

    Activate the settings daemon if its not already running.
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
        * gnome-mouse-properties.c: (main):
    
        Activate the settings daemon if its not already running.

 capplets/mouse/ChangeLog                | 6 ++++++
 capplets/mouse/gnome-mouse-properties.c | 4 ++++
 2 files changed, 10 insertions(+)

commit 006261e34123d83faa08e0d84bb5c8d5ea7feecb
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Mar 11 01:45:11 2002 +0000

    Add new client interface for activating the settings daemon if its not
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * activate-settings-daemon.c: (popup_error_message),
        (activate_settings_daemon):
        * activate-settings-daemon.h:
    
        Add new client interface for activating the settings daemon
        if its not already running.

 capplets/common/ChangeLog                  | 10 ++++++
 capplets/common/Makefile.am                |  1 +
 capplets/common/activate-settings-daemon.c | 54 ++++++++++++++++++++++++++++++
 capplets/common/activate-settings-daemon.h |  9 +++++
 4 files changed, 74 insertions(+)

commit 8717066fbd4dbc4574482cb06f89fd3a3b234fb4
Author: Seth Nickell <seth@src.gnome.org>
Date:   Mon Mar 11 01:44:21 2002 +0000

    Add IDL for SettingsDaemon

 idl/GNOME_SettingsDaemon.idl | 13 +++++++++++++
 idl/Makefile.am              |  3 ++-
 2 files changed, 15 insertions(+), 1 deletion(-)

commit 3831d63e7745a7b632f13b46b816b650ea7da384
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Mar 11 01:44:03 2002 +0000

    Make the settings daemon a singleton BonoboObject so capplets can detect
    
    2002-03-10  Seth Nickell  <snickell@stanford.edu>
    
            Make the settings daemon a singleton BonoboObject so capplets
        can detect whether its running and activate it if its not.
    
        * Makefile.am:
        * factory.c: (main):
        * gnome-settings-daemon.c: (awake_impl), (finalize),
        (gnome_settings_daemon_class_init), (gnome_settings_daemon_init),
        (gnome_settings_daemon_new):
        * gnome-settings-daemon.h:
    
        Convert the settings-daemon into a BonoboObject and add code to
        register it with bonobo-activation. Still has a main loop that can
        be run normally to launch the settings daemon.

 gnome-settings-daemon/ChangeLog               | 16 ++++++
 gnome-settings-daemon/Makefile.am             | 32 ++++++++++-
 gnome-settings-daemon/factory.c               | 48 ++++++++++++++++
 gnome-settings-daemon/gnome-settings-daemon.c | 83 ++++++++++++++++++++-------
 gnome-settings-daemon/gnome-settings-daemon.h | 34 +++++++++++
 5 files changed, 192 insertions(+), 21 deletions(-)

commit fb94a4c2de3f140957539b7c04013c3e7d556573
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Mar 10 22:26:14 2002 +0000

    Added missing file. Updated Swedish translation.
    
    2002-03-10  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Added missing file.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |  5 +++++
 po/POTFILES.in |  1 +
 po/sv.po       | 70 +++++++++++++++++++++++++++++-----------------------------
 3 files changed, 41 insertions(+), 35 deletions(-)

commit 4470d4a83dcd0ddf1d37e5f94d9d599c18140e73
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Mar 10 19:19:47 2002 +0000

    Updated Slovenian translation

 po/sl.po | 125 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 63 insertions(+), 62 deletions(-)

commit 0335c74339ba706543b47eadf5800ebbd8abd99b
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Sun Mar 10 15:04:22 2002 +0000

    Fixed carsh on keypresses in icon view, added item activation on enter

 capplets/mouse/gnome-mouse-properties.c |  1 +
 control-center/capplet-dir-view-list.c  | 16 +++++++++++++++-
 libbackground/applier.c                 |  4 ++--
 3 files changed, 18 insertions(+), 3 deletions(-)

commit ed6922aae02cbdc5bf768c5c1f35bd5c1ea09833
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Mar 10 00:38:36 2002 +0000

    Hook up the previewing file selector to the FileEntry.
    
    2002-03-09  Richard Hestilow  <hestilow@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Hook up
        the previewing file selector to the FileEntry.

 capplets/background/ChangeLog                       | 5 +++++
 capplets/background/background-properties-capplet.c | 3 +++
 2 files changed, 8 insertions(+)

commit 18e6eb221fdb18f08b1b58b8b7dd853563a28c99
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Mar 10 00:37:09 2002 +0000

    Added.
    
    2002-03-09  Richard Hestilow  <hestilow@ximian.com>
    
        * preview-file-selection.[ch]: Added.
    
        * Makefile.am: Compile preview-file-selection.c.
    
        * preferences.c (bg_preferences_init): Initialize adjust_opacity
        to FALSE.

 libbackground/ChangeLog                |   9 ++
 libbackground/Makefile.am              |   5 +-
 libbackground/preferences.c            |   2 +-
 libbackground/preview-file-selection.c | 273 +++++++++++++++++++++++++++++++++
 libbackground/preview-file-selection.h |  61 ++++++++
 5 files changed, 347 insertions(+), 3 deletions(-)

commit 2aea2f0f33748d8240355f79e7edae1b7dcc3962
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sat Mar 9 22:28:11 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |  5 +++++
 po/pl.po     | 18 +++---------------
 2 files changed, 8 insertions(+), 15 deletions(-)

commit ee4d5b6c69dc7a86482cc1b5ab1aaa7c9dd77a92
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Mar 9 20:19:14 2002 +0000

    Remove preview option and button, this makes no sense with instant apply.
    
    2002-03-09  Richard Hestilow  <hestilow@ximian.com>
    
        * gtk-theme-selector.glade, main.c: Remove preview option
        and button, this makes no sense with instant apply.
        (select_cb): Just call apply_cb.

 capplets/theme-switcher/ChangeLog                |   6 +
 capplets/theme-switcher/gtk-theme-selector.glade | 303 +++++++++++++----------
 capplets/theme-switcher/main.c                   |  46 ++--
 3 files changed, 197 insertions(+), 158 deletions(-)

commit b0c3e85b9c80b029549bbbce01fb6feaf82ec5d7
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Mar 9 17:23:48 2002 +0000

    Fixed Swedish translation.
    
    2002-03-09  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixed Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 9ff8bb288d1123eb532f6b3f474fad8f70fba7e8
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Mar 9 05:38:41 2002 +0000

    Don't install cd properties capplet .desktop file. It should be picked up
    
    2002-03-08  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Don't install cd properties capplet .desktop file. It should
        be picked up by the vfolder legacy support if installed on
        the system, and otherwise we shouldn't display it anyway
        since the person doesn't have the capplet.

 capplets/desktop-links/ChangeLog   | 9 +++++++++
 capplets/desktop-links/Makefile.am | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 9ca62bd0c1bdd8a62fe7ba76deedcf2c04a1af31
Author: Ole Laursen <olau@hardworking.dk>
Date:   Fri Mar 8 21:38:17 2002 +0000

    Updated Danish translation.
    
    2002-03-08  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 +
 po/da.po     | 954 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 716 insertions(+), 242 deletions(-)

commit 2471cf4ed40ca3c5afc054ef59f93f88e21f1c0c
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Mar 8 21:23:37 2002 +0000

    1.99.4
    
    2002-03-08  Richard Hestilow <hestilow@ximian.com>
    
        * RELEASE: 1.99.4

 ChangeLog                                     | 4 ++++
 configure.in                                  | 2 +-
 gnome-settings-daemon/Makefile.am             | 2 --
 gnome-settings-daemon/gnome-settings-daemon.c | 3 ---
 4 files changed, 5 insertions(+), 6 deletions(-)

commit a8008ad042d0eb75722d423a53ef43fdb2597c03
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Mar 8 21:03:50 2002 +0000

    Add "--crapplet" flag to xscreensaver-demo.
    
    2002-03-08  Richard Hestilow  <hestilow@ximian.com>
    
        * screensaver.desktop.in: Add "--crapplet" flag to xscreensaver-demo.

 capplets/screensaver/ChangeLog              | 4 ++++
 capplets/screensaver/screensaver.desktop.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5077a1b23ed5d4bd2949d532f0dc3f415296af69
Author: Kevin Breit <mrproper@ximian.com>
Date:   Fri Mar 8 16:11:52 2002 +0000

    Added this file to CVS.
    
    2002-03-08  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-default-apps.xml: Added this file to CVS.
    
        * C/config-sound.xml: Added this file to CVS.

 help/C/config-default-apps.xml | 119 +++++++++++++++++++++++++++++++++++++++++
 help/C/config-sound.xml        |  47 ++++++++++++++++
 help/ChangeLog                 |   6 +++
 3 files changed, 172 insertions(+)

commit 52f9637f2c184e5b3ed438710fa87850fa4a8265
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Mar 8 02:30:27 2002 +0000

    Updated Slovenian translation

 po/sl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5dc718198b80f0588357ba58bc48b757e62042db
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Mar 8 02:27:47 2002 +0000

    updated sl language

 po/sl.po | 3813 +++++++++++++++++---------------------------------------------
 1 file changed, 1060 insertions(+), 2753 deletions(-)

commit 09ad7fc6c4d6b8604e6bc917694379606a3bcdba
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Mar 8 01:26:31 2002 +0000

    Okay, so I'm an idiot.
    
    2002-03-07  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties-capplet.c (main): Okay, so I'm an idiot.

 capplets/sound/sound-properties-capplet.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 9baad113aa0d060434d61893a6c10d23244ca98c
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 7 22:58:10 2002 +0000

    Okay, so I'm an idiot.
    
    2002-03-07  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties-capplet.c (main): Okay, so I'm an idiot.

 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/sound-properties-capplet.c | 4 ++++
 2 files changed, 8 insertions(+)

commit 5c7e9d3719584946fe29632af00a058c27eceb95
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Thu Mar 7 12:01:40 2002 +0000

    nl.po Dutch translation updated by Huib Kleinhout.
    
    2002-03-07 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    * nl.po Dutch translation updated by Huib Kleinhout.

 po/ChangeLog |    4 +
 po/nl.po     | 3066 ++++++++++++++++------------------------------------------
 2 files changed, 818 insertions(+), 2252 deletions(-)

commit 3b0c70343ed017753e33b89da13930b13fe65568
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Thu Mar 7 09:54:07 2002 +0000

    Updated Slovak translation.
    
    2002-03-07  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |  4 ++++
 po/sk.po     | 57 +++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 47 insertions(+), 14 deletions(-)

commit 1c6664a71ba328e73eca55a46b0828777f891aea
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Mar 7 01:55:39 2002 +0000

    Remove textdomain stuff. I'm not 100% certain this is correct, but none of
    
    2002-03-06  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties-capplet.c (main): Remove textdomain stuff.
        I'm not 100% certain this is correct, but none of the other capplets
        have it.

 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 4 ----
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 9a3e95aa2d024458506c63c02cbb7e647f8691a4
Author: Lauris Kaplinski <lauris@ximian.com>
Date:   Thu Mar 7 01:22:59 2002 +0000

    Do not include unused <esd.h>
    
    2002-03-07  Lauris Kaplinski  <lauris@ximian.com>
    
        * sound-properties-capplet.c: Do not include unused <esd.h>

 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/sound-properties-capplet.c | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 6f6491172662b8c514aa5d52bcb906d579b8eec7
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Mar 7 01:04:04 2002 +0000

    Updated Swedish translation.
    
    2002-03-07  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit bc884c8c0db8ef1e7f1ba4d88e81c0f0c270fa67
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   Wed Mar 6 20:14:58 2002 +0000

    CVS_SILENT

 po/tr.po | 43 +++++++++++++++++++++----------------------
 1 file changed, 21 insertions(+), 22 deletions(-)

commit 672884c4fff0ebfe6416dc7172217c540994a267
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Mar 6 19:25:40 2002 +0000

    Remove legacy-applications. Fixes bug #72997.
    
    2002-03-06  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am: Remove legacy-applications. Fixes bug #72997.

 capplets/desktop-links/ChangeLog   | 4 ++++
 capplets/desktop-links/Makefile.am | 5 ++---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 4720327aec3b8e2c149bfe7bc66ee0ba0ec17248
Author: Miles Lane <miles@megapathdsl.net>
Date:   Wed Mar 6 18:17:33 2002 +0000

    gnome-settings-daemon.c -- Correct the gnome_program_init() call to
    
    2002-03-06  Miles Lane  <miles@megapathdsl.net>
    
        * gnome-settings-daemon.c -- Correct the gnome_program_init()
          call to specify the correct program name.  Specify the
          restart command, so that the session manager knows how
          to restart the daemon if it is killed for any reason.

 gnome-settings-daemon/ChangeLog               | 7 +++++++
 gnome-settings-daemon/gnome-settings-daemon.c | 5 ++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit ef8f75e828ec395cf0bcec15e62886b957b53afd
Author: Valek Frob <frob@src.gnome.org>
Date:   Wed Mar 6 11:26:41 2002 +0000

    Updated russian translation.

 po/ChangeLog |    4 +
 po/ru.po     | 2216 ++++++++++++++++++++++++----------------------------------
 2 files changed, 916 insertions(+), 1304 deletions(-)

commit fdd4a3bd1ddd68f7e0cb9921cf1e75ee32d6cea8
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Mar 6 01:49:42 2002 +0000

    remove -I intl
    
    2002-03-05  jacob berkman  <jacob@ximian.com>
    
        * configure.in (EXTRA_CFLAGS): remove -I intl

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 942e5f6459922308bb91c0f7c24875a57a70f617
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Mar 6 01:48:20 2002 +0000

    clean up; remove some duplicate / obsolete paths and bogus INCLUDE path
    
    2002-03-05  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am: clean up; remove some duplicate / obsolete paths
        and bogus INCLUDE path

 control-center/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 96905286064cbd79838f251696c1ab6e9305799b
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Mar 6 01:04:41 2002 +0000

    AC_SUBST GNOMECC_CFLAGS and GNOMECC_LIBS.
    
    2002-03-05  Richard Hestilow <hestilow@ximian.com>
    
        * configure.in: AC_SUBST GNOMECC_CFLAGS and GNOMECC_LIBS.

 ChangeLog    | 4 ++++
 configure.in | 3 +++
 2 files changed, 7 insertions(+)

commit e01a6b6d0476adaee0bbdd6909386e8c2cf90570
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Mar 5 19:47:29 2002 +0000

    clean up; remove some duplicate / obsolete paths and bogus INCLUDE path
    
    2002-03-05  jacob berkman  <jacob@ximian.com>
    
        * Makefile.am: clean up; remove some duplicate / obsolete paths
        and bogus INCLUDE path

 control-center/ChangeLog   |  5 +++++
 control-center/Makefile.am | 16 +++++-----------
 2 files changed, 10 insertions(+), 11 deletions(-)

commit b2ecc2281524cb771feb74e8871a57a3ea65d326
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Mar 5 19:32:28 2002 +0000

    using $GETTEXT_PACKAGE-2 is redundant
    
    2002-03-05  jacob berkman  <jacob@ximian.com>
    
        * configure.in: using $GETTEXT_PACKAGE-2 is redundant

 ChangeLog    |  4 ++++
 configure.in | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit e0c7ed40015d507fc74584c493fbeb3c91cae3d2
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Tue Mar 5 15:32:40 2002 +0000

    Updated Slovak translation.
    
    2002-03-05  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 4441 +++++++++++++++-------------------------------------------
 2 files changed, 1096 insertions(+), 3349 deletions(-)

commit 064f14349a18a12f429c883302937413c048b974
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Tue Mar 5 01:00:07 2002 +0000

    Updated Portuguese translation.
    
    2002-03-05  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 882 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 820 insertions(+), 66 deletions(-)

commit 68d6549ba89d86a974dbd8cf0fecc21a966c9144
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Mon Mar 4 23:18:22 2002 +0000

    Updated Finnish translation.
    
    2002-03-05  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |   4 +
 po/fi.po     | 696 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 687 insertions(+), 13 deletions(-)

commit e93fb5bd3c1a228441cf096394e7299026916ba3
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Mon Mar 4 16:49:45 2002 +0000

    Updated Slovak translation.
    
    2002-03-04  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 4071 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
 2 files changed, 3526 insertions(+), 549 deletions(-)

commit c9d814c9ef59085775c69611583d7d51f0cbb4ee
Author: Wang Jian <lark@src.gnome.org>
Date:   Mon Mar 4 15:33:57 2002 +0000

    *** empty log message ***

 po/ChangeLog |    5 +
 po/zh_CN.po  | 1553 ++++++++--------------------------------------------------
 2 files changed, 207 insertions(+), 1351 deletions(-)

commit 795b18f06abebdf194335f75dad3be95dbf0b092
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Mon Mar 4 09:30:10 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 159 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 107 insertions(+), 52 deletions(-)

commit 0fcd6532975efbc10dc3463d39165532c4b9d1a7
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon Mar 4 08:54:36 2002 +0000

    Add support for bridging WM settings, currently supports
    
    2002-03-04  Anders Carlsson  <andersca@gnu.org>
    
        * Makefile.am:
        * gnome-settings-daemon.c: (main):
        * gnome-settings-wm.c: (set_number_of_workspaces),
        (set_workspace_names), (wm_callback), (gnome_settings_wm_init),
        (gnome_settings_wm_load):
        * gnome-settings-wm.h:
        Add support for bridging WM settings, currently supports
        _NET_NUMBER_OF_DESKTOPS and _NET_DESKTOP_NAMES.

 gnome-settings-daemon/ChangeLog               | 11 ++++
 gnome-settings-daemon/Makefile.am             |  2 +
 gnome-settings-daemon/gnome-settings-daemon.c | 11 ++--
 gnome-settings-daemon/gnome-settings-wm.c     | 86 +++++++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-wm.h     | 33 ++++++++++
 5 files changed, 139 insertions(+), 4 deletions(-)

commit d4d99fea714ef972d2684df9f6198f8bb51c34b4
Author: Alexander Larsson <alla@lysator.liu.se>
Date:   Mon Mar 4 04:06:48 2002 +0000

    Save wallpaper-enabled too.
    
    2002-03-03  Alexander Larsson  <alla@lysator.liu.se>
    
        * preferences.c (bg_preferences_save):
        Save wallpaper-enabled too.

 libbackground/ChangeLog     | 5 +++++
 libbackground/preferences.c | 1 +
 2 files changed, 6 insertions(+)

commit 5d73af20c25e07298dc92c9ea80b4e25f521765f
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Mar 3 19:40:45 2002 +0000

    Fixed Swedish translation.
    
    2002-03-03  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixed Swedish translation.

 po/ChangeLog | 4 ++++
 po/sv.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 31b0edf32cf3623be25cbbbf8b2b46ae8aadce52
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Mar 3 18:44:41 2002 +0000

    Updated Swedish translation.
    
    2002-03-03  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 915 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 701 insertions(+), 218 deletions(-)

commit 9ccdbc44052dbb1c3e76cdea81d66e48c73b573e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Mar 3 08:01:20 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-03-03  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +++
 po/no.po     | 115 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 63 insertions(+), 56 deletions(-)

commit 1f453554bf37fbea2c2913cdf1508b3ad6643e52
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sun Mar 3 01:33:45 2002 +0000

    Small fix of en_GB.po

 po/ChangeLog | 5 +++++
 po/en_GB.po  | 3 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

commit 13db4923e7bea3bd9d2d02137003348a8bfcb453
Author: Tivo Leedjrv <leedjarv@interest.ee>
Date:   Sat Mar 2 18:55:09 2002 +0000

    Updated Estonian translation.
    
    2002-03-02  Tivo Leedjrv  <leedjarv@interest.ee>
    
            * et.po: Updated Estonian translation.

 po/ChangeLog |    4 +
 po/et.po     | 3785 +++++++++++++++++-----------------------------------------
 2 files changed, 1116 insertions(+), 2673 deletions(-)

commit a71dbfe46ff25d9596f63edc080e129a9a17b87f
Author: Pauli Virtanen <pauli.virtanen@hut.fi>
Date:   Fri Mar 1 15:04:38 2002 +0000

    Updated Finnish translation.
    
    2002-03-01  Pauli Virtanen  <pauli.virtanen@hut.fi>
    
        * fi.po: Updated Finnish translation.

 po/ChangeLog |    4 +
 po/fi.po     | 1918 ++++------------------------------------------------------
 2 files changed, 127 insertions(+), 1795 deletions(-)

commit 02d01cc16f4ef91e844b50dfa1c5377c32eb953c
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Thu Feb 28 17:25:35 2002 +0000

    Updated Malay Translation. (lepas ni khai buat)
    
    2002-02-28  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation.
    (lepas ni khai buat)

 po/ChangeLog |   4 +
 po/ms.po     | 787 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 2 files changed, 754 insertions(+), 37 deletions(-)

commit 3e10c0f81303f020f90eab93ba6a6399392881d0
Author: Zbigniew Chyla <cyba@gnome.pl>
Date:   Thu Feb 28 15:11:56 2002 +0000

    s/gnome_desktop_item_get_string/gnome_desktop_item_get_localestring (use
    
    2002-02-28  Zbigniew Chyla  <cyba@gnome.pl>
    
        * capplet-dir.c (capplet_new, capplet_dir_new):
        s/gnome_desktop_item_get_string/gnome_desktop_item_get_localestring
        (use translated version of GNOME_DESKTOP_ITEM_NAME).

 control-center/ChangeLog     | 6 ++++++
 control-center/capplet-dir.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 9dff4da17518c51c3cb1fb77f284b2086fcafacc
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Feb 28 11:12:12 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 +
 po/pl.po     | 728 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 373 insertions(+), 360 deletions(-)

commit c024b8123e559ae88d2ea669f22412958618e015
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:23:39 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g Add missing AC_DEFINE_UNQUOTED so that
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * root-manager/root-manager-helper.c: s/PACKAGE/GETTEXT_PACKAGE/g
        * configure.in: Add missing AC_DEFINE_UNQUOTED so that GETTEXT_PACKAGE
        ends up in config.h. Also s/PACKAGE/GETTEXT_PACKAGE/g

 ChangeLog                          |  6 ++++++
 acconfig.h                         |  2 +-
 configure.in                       | 14 ++++++++------
 root-manager/root-manager-helper.c |  6 +++---
 4 files changed, 18 insertions(+), 10 deletions(-)

commit 0a292d246942ae0f4a81f0394f7ff58adfad0f17
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:20:28 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * main.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/font/ChangeLog           | 4 ++++
 capplets/font/main.c              | 6 +++---
 capplets/rollback/ChangeLog       | 4 ++++
 capplets/rollback/main.c          | 6 +++---
 capplets/theme-switcher/ChangeLog | 4 ++++
 capplets/theme-switcher/main.c    | 6 +++---
 control-center/ChangeLog          | 4 ++++
 control-center/main.c             | 6 +++---
 8 files changed, 28 insertions(+), 12 deletions(-)

commit 9244dedd856b615e812d8d34027d0dbae6dca514
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:19:53 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g Same here.
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * main.c: s/PACKAGE/GETTEXT_PACKAGE/g
        * gnome-ui-properties.c: Same here.

 capplets/ui-properties/ChangeLog             | 5 +++++
 capplets/ui-properties/gnome-ui-properties.c | 6 +++---
 capplets/ui-properties/main.c                | 6 +++---
 3 files changed, 11 insertions(+), 6 deletions(-)

commit cdd8985d770b6cf6cca4c83d58249ea1b2731b10
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:18:25 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * sound-properties-capplet.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/prefs-widget.c             | 2 +-
 capplets/sound/sound-properties-capplet.c | 6 +++---
 3 files changed, 8 insertions(+), 4 deletions(-)

commit 75db1e44bd3c7235c77c9cc5c5b0cd17eade74c1
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:17:05 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-mouse-properties.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/mouse/ChangeLog                | 4 ++++
 capplets/mouse/gnome-mouse-properties.c | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 919f38d85fcfc26fdf5b50239d377a73d25ca450
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:16:27 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-keyboard-properties.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/keyboard/ChangeLog                   | 4 ++++
 capplets/keyboard/gnome-keyboard-properties.c | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit b70c4fc68490d15e209cd429ab4970cab8ecf299
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:15:07 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * file-types-applet.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/file-types/ChangeLog            | 4 ++++
 capplets/file-types/file-types-capplet.c | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 9d5d9145f4e5ae60a9a6e50ab350a3d653bfe97e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:14:18 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * gnome-default-applications-properties.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/default-applications/ChangeLog                             | 4 ++++
 .../default-applications/gnome-default-applications-properties.c    | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 06e9c965a8833937155c253346bd085d1703eb5a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:13:26 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * capplet-util.c: s/PACKAGE/GETTEXT_PACKAGE/g

 capplets/common/ChangeLog      | 4 ++++
 capplets/common/capplet-util.c | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 1074a1f27e732fc72694458eb5c069d9c182aedf
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:12:44 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g Same here.
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * background-properties-capplet.c (main): s/PACKAGE/GETTEXT_PACKAGE/g
        * main.c: Same here.

 capplets/background/ChangeLog                       | 5 +++++
 capplets/background/background-properties-capplet.c | 6 +++---
 capplets/background/main.c                          | 6 +++---
 3 files changed, 11 insertions(+), 6 deletions(-)

commit 2cd2e13cb75ac1514f2560e97d67b8a42ec08464
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:11:46 2002 +0000

    s/PACKAGE/GETTEXT_PACKAGE/g Same here.
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * config-archiver.c: s/PACKAGE/GETTEXT_PACKAGE/g
        * config-manager.c: Same here.

 archiver/ChangeLog         | 5 +++++
 archiver/config-archiver.c | 6 +++---
 archiver/config-manager.c  | 6 +++---
 3 files changed, 11 insertions(+), 6 deletions(-)

commit eff3f2b4a660a240fa1d2326e899dd46ce508d6d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Feb 27 22:09:32 2002 +0000

    Updated Norwegian (bokml) translation. Added missing file.
    
    2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.
        * POTFILES.in: Added missing file.

 po/ChangeLog   |  5 +++++
 po/POTFILES.in |  1 +
 po/no.po       | 52 +++++++++++++++++++++++++++++++++++++++++++---------
 3 files changed, 49 insertions(+), 9 deletions(-)

commit f0e0d2fbd48e1810ff050e23ccf077ad6ae79525
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Wed Feb 27 16:54:48 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog | 5 +++++
 po/pl.po     | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 3125d192e724facc8db70533978964dbf6687727
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Wed Feb 27 16:43:26 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/pl.po | 811 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 417 insertions(+), 394 deletions(-)

commit ff4ccdc4d11798fe3e9c7f4c50b7ba8bc895f603
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Feb 27 13:20:02 2002 +0000

    Updated Slovak translation.
    
    2002-02-27  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 2854 +++-------------------------------------------------------
 2 files changed, 139 insertions(+), 2719 deletions(-)

commit 69d5d378699ac2501b458389f8b9fd3e67e39472
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Feb 27 02:52:56 2002 +0000

    Fixed Swedish translation.
    
    2002-02-27  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Fixed Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 40 ++++++++++++++++++++--------------------
 2 files changed, 24 insertions(+), 20 deletions(-)

commit 46fc0d80f25e995d85e9383dd0f660d415d8fc1e
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Wed Feb 27 01:53:18 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |   5 ++
 po/pl.po     | 207 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 100 insertions(+), 112 deletions(-)

commit 4245926937eafe903590281738f4c06689a8b878
Author: Christian Rose <menthos@menthos.com>
Date:   Tue Feb 26 09:04:55 2002 +0000

    Updated Swedish translation.
    
    2002-02-26  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 252 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 162 insertions(+), 94 deletions(-)

commit c280a64347a5e52c6974ba9e4c1dfaa71b2955bc
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Feb 26 00:41:21 2002 +0000

    Updated Slovenian translation

 po/sl.po | 4456 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 2641 insertions(+), 1815 deletions(-)

commit 71b08d9ff4829f6127eab4919ef70f440c675564
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sun Feb 24 21:54:03 2002 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |    5 +
 po/pl.po     | 2281 +++++++++++++++++++++++++---------------------------------
 2 files changed, 1005 insertions(+), 1281 deletions(-)

commit d2f3b62d36da19a0954b812195144e1dc6c99751
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Feb 23 13:52:21 2002 +0000

    Remove translatable="yes" from icon labels. Remnant of a bug in
    
    2002-02-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * capplets/default-applications/gnome-default-applications-properties.glade:
        Remove translatable="yes" from icon labels. Remnant of a bug in
        libglade-convert. (Thanks to James).
        * capplets/file-types/file-types-properties.glade: Same
        * capplets/keyboard/gnome-keyboard-properties.glade: Same
        * capplets/mouse/gnome-mouse-properties.glade: Same.
        * capplets/ui-properties/gnome2-ui-properties.glade: Same
        * control-center/gnomecc.glade: Same

 ChangeLog                                          | 11 +++++
 .../gnome-default-applications-properties.glade    |  2 +-
 capplets/file-types/file-types-properties.glade    | 18 ++++----
 capplets/keyboard/gnome-keyboard-properties.glade  |  2 +-
 capplets/mouse/gnome-mouse-properties.glade        |  4 +-
 capplets/ui-properties/gnome2-ui-properties.glade  |  2 +-
 control-center/gnomecc.glade                       |  6 +--
 po/no.po                                           | 50 +++++++---------------
 8 files changed, 43 insertions(+), 52 deletions(-)

commit 49184e23fa59a7177aa54454de7e8ac7b57fd528
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Feb 23 13:21:30 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-02-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 919 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 706 insertions(+), 217 deletions(-)

commit 10f87f647fed7829e24508fb63860f914d7a9eb0
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Feb 23 13:04:28 2002 +0000

    Updated Danish translation.
    
    2002-02-23  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 184 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 132 insertions(+), 56 deletions(-)

commit bc353d83350ccb8c01d26b2b4601e231e813749f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Feb 23 04:42:10 2002 +0000

    Add function bg_preferences_save.
    
    2002-02-22  Richard Hestilow  <hestilow@ximian.com>
    
        * preferences.[ch]: Add function bg_preferences_save.

 libbackground/ChangeLog     |  4 ++++
 libbackground/preferences.c | 38 ++++++++++++++++++++++++++++++++++++++
 libbackground/preferences.h |  2 ++
 3 files changed, 44 insertions(+)

commit ca36de699e9bdfb6c8023c2013a8908fb20d82f9
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Fri Feb 22 17:02:48 2002 +0000

    Updated Malay Translation.
    
    2002-02-22  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 ++
 po/ms.po     | 168 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 122 insertions(+), 50 deletions(-)

commit f99890cc8ab26d21b129a423d901406b8fdb16a3
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 21 23:53:45 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-02-22  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 ++
 po/no.po     | 176 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 129 insertions(+), 51 deletions(-)

commit ca24c7ab51e23e29c067a28bdbd00704b6cfc899
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Feb 21 23:48:26 2002 +0000

    Remove calls to deprecated functions gtk_visual_push|pop_visual().
    
    2002-02-22  Kjartan Maraas  <kmaraas@gnome.org>
    
        * root-manager/root-manager-wrap.c: Remove calls to deprecated
        functions gtk_visual_push|pop_visual().

 ChangeLog                        | 5 +++++
 root-manager/root-manager-wrap.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 1e8996cc35e2671dabc1d8dd5cc0ef7fed49e90b
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Thu Feb 21 14:20:00 2002 +0000

    Update...

 po/ChangeLog |    4 +
 po/tr.po     | 1620 +++++-----------------------------------------------------
 2 files changed, 134 insertions(+), 1490 deletions(-)

commit 2113a56ae2a7a39fbdee26c367ef99d0d2b704d9
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Wed Feb 20 17:25:24 2002 +0000

    Removed '\' from the end of comment that cause problems for some people

 control-center/ChangeLog   | 6 ++++++
 control-center/Makefile.am | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b4e13fdaf54b1e931434e3835046dcfadc922f07
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Feb 20 10:42:55 2002 +0000

    use the proper executable name.
    
    2002-02-20  Mark McLoughlin  <mark@skynet.ie>
    
            * file-types.desktop.in: use the proper executable name.

 capplets/file-types/ChangeLog             | 4 ++++
 capplets/file-types/file-types.desktop.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 03509906b606420d0443eb19f562164b62a0d737
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Feb 20 05:11:10 2002 +0000

    Hook up cursor code.
    
    Tue Feb 19 23:52:17 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-mouse-properties.c (cursor_font_changed): Hook up cursor code.
    
    Tue Feb 19 23:53:06 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-font.c: set the font path and handle cursors.

 capplets/mouse/ChangeLog                      |   4 +
 capplets/mouse/Makefile.am                    |   9 +-
 capplets/mouse/cursor-large-white.pcf.gz      | Bin 0 -> 4068 bytes
 capplets/mouse/cursor-large.pcf.gz            | Bin 0 -> 3636 bytes
 capplets/mouse/cursor-white.pcf.gz            | Bin 0 -> 5222 bytes
 capplets/mouse/gnome-mouse-properties.c       | 207 ++++++++++++++++++++++++--
 capplets/mouse/gnome-mouse-properties.glade   |   4 +-
 gnome-settings-daemon/ChangeLog               |   4 +
 gnome-settings-daemon/Makefile.am             |   2 +
 gnome-settings-daemon/gnome-settings-daemon.c |   3 +
 gnome-settings-daemon/gnome-settings-font.c   | 174 ++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-font.h   |  25 ++++
 12 files changed, 419 insertions(+), 13 deletions(-)

commit 57cb400a751cf723caeebca533f23ea6b0e37557
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Wed Feb 20 01:34:02 2002 +0000

    Updated traditional Chinese translation

 po/ChangeLog |    4 +
 po/zh_TW.po  | 2578 +++++++++++++---------------------------------------------
 2 files changed, 566 insertions(+), 2016 deletions(-)

commit 596bc8bdc66a87c8cd5f59b5da8f1081f442c97f
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Tue Feb 19 21:15:21 2002 +0000

    Added simple (but do anyone really need more complex thing?) session management
    to control-center shell

 control-center/ChangeLog          | 12 ++++++++++++
 control-center/capplet-dir-view.c | 14 ++++++++++----
 control-center/main.c             | 30 ++++++++++++++++++++++++++++++
 control-center/preferences.c      | 14 ++++++++++++++
 control-center/preferences.h      |  2 ++
 5 files changed, 68 insertions(+), 4 deletions(-)

commit f23439d2be86425b1881a8d6ff1ee53fc8010fd8
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Tue Feb 19 18:52:53 2002 +0000

    Updated Malay Translation.
    
    2002-02-20  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation.

 po/ChangeLog |  4 +++
 po/ms.po     | 94 ++++++++++++++++--------------------------------------------
 2 files changed, 28 insertions(+), 70 deletions(-)

commit 7a41b12b12f340b7b46535c7947d289468d43813
Author: Kevin Breit <mrproper@ximian.com>
Date:   Tue Feb 19 16:56:40 2002 +0000

    Wrote the documentation for this. Added to CVS.
    
    2002-02-19  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-cds.xml: Wrote the documentation for this.  Added to CVS.
    
        * C/config-html.xml: Fixed a typo that caused building to break.
    
        * C/control-center.xml: Added behavior and cds documentation to the list.

 help/C/config-behavior.xml | 54 ++++++++++++++++++++++++++++++++++++++
 help/C/config-cds.xml      | 64 ++++++++++++++++++++++++++++++++++++++++++++++
 help/C/config-html.xml     |  2 +-
 help/C/control-center.xml  |  9 ++++---
 help/ChangeLog             |  8 ++++++
 5 files changed, 133 insertions(+), 4 deletions(-)

commit 25c6a268015ba49a391a373539f5dc24d06a7dfc
Author: jacob berkman <jacob@ximian.com>
Date:   Mon Feb 18 05:24:08 2002 +0000

    remove session .desktop file
    
    2002-02-18  jacob berkman  <jacob@ximian.com>
    
        * POTFILES.in: remove session .desktop file

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 2b3314202e6d017e2e71809cc1bc3e2957082420
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Feb 18 01:04:07 2002 +0000

    Retrieve the icon here
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_new): Retrieve the icon here

 capplets/file-types/ChangeLog        | 1 +
 capplets/file-types/mime-type-info.c | 2 ++
 2 files changed, 3 insertions(+)

commit 7b893ea56a14bbf8c129896c243986254674ef75
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Feb 18 00:54:58 2002 +0000

    Try to find the icon from the MIME type. (mime_type_info_get_icon_path):
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (get_icon_pixbuf): Try to find the icon from
        the MIME type.
        (mime_type_info_get_icon_path): Fetch the icon name from the MIME
        type if necessary
        (get_icon_pixbuf): Call get_real_icon_path
        (get_real_icon_path): Implement. Factor from
        mime_type_info_get_icon_path
        (mime_type_info_get_icon_path): Call get_real_icon_path

 capplets/file-types/ChangeLog        |  9 +++++
 capplets/file-types/mime-type-info.c | 77 ++++++++++++++++++++++--------------
 2 files changed, 56 insertions(+), 30 deletions(-)

commit ad9f46de5f4ec060b531b6281e3816656c71a7a0
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Mon Feb 18 00:54:24 2002 +0000

    fix i18n
    
    2002-02-18  Gediminas Paulauskas <menesis@delfi.lt>
    
        * main.c: fix i18n
    
    2002-02-18  Gediminas Paulauskas <menesis@delfi.lt>
    
        * ChangeLog: added
        * main.c: correct i18n

 capplets/font/ChangeLog           | 5 +++++
 capplets/font/main.c              | 6 +++++-
 capplets/theme-switcher/ChangeLog | 4 ++++
 capplets/theme-switcher/main.c    | 7 ++++++-
 4 files changed, 20 insertions(+), 2 deletions(-)

commit 0a5a1694321b2587d5cbe6ed80f06420419eac1f
Author: Gediminas Paulauskas <menesis@src.gnome.org>
Date:   Mon Feb 18 00:50:06 2002 +0000

    remove session completely

 capplets/desktop-links/.cvsignore | 2 --
 1 file changed, 2 deletions(-)

commit 2437c9d5183cfac6265caf6f2101159c09304283
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Feb 18 00:30:48 2002 +0000

    Change menu name to "Preferred Applications" which faired better in user
    
    2002-02-17  Seth Nickell  <snickell@stanford.edu>
    
        * default-applications.desktop.in:
    
        Change menu name to "Preferred Applications" which faired
        better in user testing.

 capplets/default-applications/ChangeLog                       | 7 +++++++
 capplets/default-applications/default-applications.desktop.in | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 021f859a7e0dd67ffad8b22c0216e559e611420e
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Feb 18 00:28:07 2002 +0000

    Remove session stuff, it is now properly done up in gnome-session.
    
    2002-02-17  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Remove session stuff, it is now properly done up in gnome-session.

 capplets/desktop-links/ChangeLog   | 6 ++++++
 capplets/desktop-links/Makefile.am | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit d3bf7369bfc28a9e85f9006a330a6777a33c668f
Author: Seth Nickell <seth@src.gnome.org>
Date:   Mon Feb 18 00:15:18 2002 +0000

    Add an icon

 capplets/font/Makefile.am                |   8 +++++++-
 capplets/font/font-capplet.png           | Bin 0 -> 646 bytes
 capplets/font/font-properties.desktop.in |   2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit f256bed98ca87521ab26a04189359cde24cf08fe
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Sun Feb 17 23:59:57 2002 +0000

    Updated Lithuanian translation.
    
    2002-02-18  Gediminas Paulauskas <menesis@delfi.lt>
    
        * lt.po: Updated Lithuanian translation.

 po/ChangeLog |    4 +
 po/lt.po     | 2798 ++++++++++++++++++++--------------------------------------
 2 files changed, 944 insertions(+), 1858 deletions(-)

commit fad54c22d6b1e7d6c684f53d1d1ee4618d7505ce
Author: Gediminas Paulauskas <menesis@src.gnome.org>
Date:   Sun Feb 17 23:19:11 2002 +0000

    make intltool-update -M happy

 po/POTFILES.ignore |  1 -
 po/POTFILES.skip   | 21 +++++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

commit e48aab4399d0652e009430af23cb16e8162f8dcd
Author: Gediminas Paulauskas <menesis@src.gnome.org>
Date:   Sun Feb 17 23:05:10 2002 +0000

    more silence

 capplets/background/.cvsignore            | 5 +----
 capplets/default-applications/.cvsignore  | 3 +--
 capplets/desktop-links/.cvsignore         | 9 ++++++++-
 capplets/desktop-links/Sawfish/.cvsignore | 5 +++++
 capplets/file-types/.cvsignore            | 3 +--
 capplets/keyboard/.cvsignore              | 4 +---
 capplets/mouse/.cvsignore                 | 4 +---
 capplets/screensaver/.cvsignore           | 7 -------
 capplets/sound/.cvsignore                 | 5 +----
 capplets/theme-switcher/.cvsignore        | 3 +--
 capplets/ui-properties/.cvsignore         | 5 ++---
 control-center/.cvsignore                 | 7 ++-----
 gnome-settings-daemon/.cvsignore          | 2 +-
 13 files changed, 25 insertions(+), 37 deletions(-)

commit f81c1a2a30966d315fff4f78a540f33575aef25d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Feb 17 22:49:30 2002 +0000

    Only add the timeout for cleanup if we are in a root renderer; we don't
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (bg_applier_apply_prefs): Only add the timeout for
        cleanup if we are in a root renderer; we don't need it for
        preview

 libbackground/ChangeLog | 2 ++
 libbackground/applier.c | 3 +--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 8d1236a2d26589ee8cd170e2cd1e8ff444add161
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Feb 17 22:46:45 2002 +0000

    We need to reload the wallpaper pixbuf if it is enabled and not loaded
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (need_wallpaper_load_p): We need to reload the
        wallpaper pixbuf if it is enabled and not loaded
        (cleanup_cb): Free bg_applier->p->pixbuf too

 libbackground/ChangeLog |  3 +++
 libbackground/applier.c | 13 +++++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit e336b75473021e1fbf4de05efa51afa10fb4a185
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Feb 17 20:34:51 2002 +0000

    Switch to instant apply; remove apply button
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (main)
        (dialog_button_clicked_cb): Switch to instant apply; remove apply
        button

 capplets/background/ChangeLog                       |  6 ++++++
 capplets/background/background-properties-capplet.c | 10 ++--------
 2 files changed, 8 insertions(+), 8 deletions(-)

commit 323e20bead2e1bc92210aaa0150f93e2aadb75af
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Feb 17 20:34:33 2002 +0000

    We don't need a root pixmap if neither a wallpaper nor a gradient is
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (need_root_pixmap_p): We don't need a root pixmap if
        neither a wallpaper nor a gradient is enabled
        (render_to_screen): Use set_back_pixmap/set_background when just
        setting a color with a root applier
        (need_root_pixmap_p): If the last preferences structure had
        neither gradient nor wallpaper enabled, we need a new root pixmap

 libbackground/ChangeLog |  9 +++++++++
 libbackground/applier.c | 26 +++++++++++++++++++-------
 2 files changed, 28 insertions(+), 7 deletions(-)

commit e31e31be03f22fffb82774b7a182dbefbf46b4bd
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Feb 17 20:06:53 2002 +0000

    Set the object value to NULL if the icon is NULL
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-types-model.c (mime_types_model_get_value): Set the object
        value to NULL if the icon is NULL
    
        * mime-type-info.c (get_icon_pixbuf): Give up if it can't find
        nautilus/i-regular-24.png
        (mime_type_info_get_icon): Only ref the pixbuf if non-NULL

 capplets/file-types/ChangeLog          | 7 +++++++
 capplets/file-types/mime-type-info.c   | 6 +++++-
 capplets/file-types/mime-types-model.c | 9 ++++++++-
 3 files changed, 20 insertions(+), 2 deletions(-)

commit 6016be681e3135889469a480d819e0b84df8988b
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Sun Feb 17 18:51:25 2002 +0000

    remove deprecated GNOME_COMMON_INIT, GNOME_PLATFORM_GNOME_2, fix warnings
    
    2002-02-17  Gediminas Paulauskas <menesis@delfi.lt>
    
        * configure.in: remove deprecated GNOME_COMMON_INIT,
        GNOME_PLATFORM_GNOME_2, fix warnings macros.

 ChangeLog    | 5 +++++
 configure.in | 7 +------
 2 files changed, 6 insertions(+), 6 deletions(-)

commit 0018db8569415838d869aa8c026592178ca4ef39
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Feb 17 18:48:49 2002 +0000

    Fill the name entry with the description, not the name field
    
    2002-02-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-category-edit-dialog.c (fill_dialog): Fill the name entry
        with the description, not the name field
    
        * mime-types-model.c (mime_types_model_get_value): Use description
        field when returning the description column for a category
    
        * mime-type-info.c (mime_type_info_set_category_name): Accept
        pointer to category description and pass that to get_category
        (mime_category_info_new): Initialize description; accept pointer
        to description
        (get_category): Accept a pointer to the description and initialize
        the category with that as well if necessary
        (get_category_description): Implement. Copy from
        get_category_name, but use the translated description name
    
        * mime-type-info.h (struct _MimeCategoryInfo): Add description
        field; holds the translated name
    
        * mime-type-info.c (mime_category_info_get_full_description):
        Implement. Copy from mime_category_info_get_full_name, but use
        description field rather than name field
        (mime_type_info_get_category_name): Use _get_full_description
        rather than _get_full_name

 capplets/file-types/ChangeLog                   | 26 +++++++++
 capplets/file-types/mime-category-edit-dialog.c |  2 +-
 capplets/file-types/mime-edit-dialog.c          |  2 +-
 capplets/file-types/mime-type-info.c            | 77 +++++++++++++++++++++----
 capplets/file-types/mime-type-info.h            |  4 ++
 capplets/file-types/mime-types-model.c          |  2 +-
 6 files changed, 99 insertions(+), 14 deletions(-)

commit b2ef3b30894f8b94242ca98f1d38a2cfc79b21d1
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Feb 16 02:29:36 2002 +0000

    Rewrote this for Gnome 2.
    
    2002-02-15  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-behavior.xml: Rewrote this for Gnome 2.

 help/C/control-center.xml | 2 +-
 help/ChangeLog            | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ad12a43bc9fc1c49d46ad3740c532fdc5370e0cf
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Feb 15 02:00:34 2002 +0000

    Committed slackware compilation patch from fflewddur@dropline.net.
    
    2002-02-14  Richard Hestilow  <hestilow@ximian.com>
    
        * Committed slackware compilation patch from
        fflewddur@dropline.net.

 ChangeLog                  |    5 +
 capplets/sound/Makefile.am |    4 +-
 configure.in               |    5 +-
 po/az.po                   |  867 ++++---
 po/ca.po                   |  950 +++----
 po/cs.po                   |  942 +++----
 po/da.po                   |  210 +-
 po/de.po                   |  829 +++---
 po/el.po                   |  952 +++----
 po/es.po                   |  828 +++---
 po/fi.po                   |  111 +-
 po/fr.po                   |  946 +++----
 po/ga.po                   |  854 ++++---
 po/hr.po                   |  860 ++++---
 po/ja.po                   |  934 +++----
 po/ko.po                   |  101 +-
 po/lv.po                   |  917 +++----
 po/ms.po                   |  206 +-
 po/nl.po                   |  127 +-
 po/nn.po                   |  884 ++++---
 po/no.po                   |   95 +-
 po/pl.po                   |  835 +++---
 po/pt.po                   |  100 +-
 po/pt_BR.po                |  818 +++---
 po/ru.po                   |  834 +++---
 po/sk.po                   | 6005 +++++++++++++++++++++-----------------------
 po/sl.po                   |  836 +++---
 po/sv.po                   |  898 ++++---
 po/tr.po                   |  839 ++++---
 po/uk.po                   |  795 +++---
 po/wa.po                   |  839 ++++---
 po/zh_CN.po                |  815 +++---
 po/zh_TW.po                |  905 +++----
 33 files changed, 13716 insertions(+), 12430 deletions(-)

commit 0308dd0c594f4bb63186202edb51dbacd551733b
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Feb 15 01:28:19 2002 +0000

    file converter.py was initially added on branch gnome-1-4-branch.

commit 63c4dfaee41662da6be9b938f3b2f06a34796549
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Feb 15 01:28:19 2002 +0000

    file cinnamon-control-center-1.6_background-properties.schemas was initially added on branch gnome-1-4-branch.

commit 59a911cd95f57916915749c8b1ac7221372ea2ed
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Feb 15 01:28:19 2002 +0000

    file cinnamon-control-center-1.6_keyboard-properties.schemas was initially added on branch gnome-1-4-branch.

commit ccafe1088309900181eb471d7099653f37c35480
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Feb 15 01:28:19 2002 +0000

    file cinnamon-control-center-1.6_mouse-properties.schemas was initially added on branch gnome-1-4-branch.

commit 01775b3bc8ad399da53ebc596e95092df50a6778
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Feb 15 01:28:19 2002 +0000

    file cinnamon-control-center-1.6_sound-properties.schemas was initially added on branch gnome-1-4-branch.

commit f10263de7355a81374b71fe4a8ac6ac5f1043f3f
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Thu Feb 14 13:29:09 2002 +0000

    Excluded capplet-dir-view-tree from SOURCES so the whole thing builds
    deprecated clean now.

 control-center/ChangeLog               | 19 +++++++++++++++++++
 control-center/Makefile.am             |  3 ++-
 control-center/capplet-dir-view-tree.c |  4 ----
 control-center/capplet-dir-view.c      |  6 +++++-
 control-center/capplet-dir.c           |  1 -
 control-center/main.c                  |  1 -
 control-center/preferences.c           |  4 +++-
 control-center/preferences.h           |  2 ++
 8 files changed, 31 insertions(+), 9 deletions(-)

commit 1eef9d7561b8db1ca2cc4a06f679d4a46fbd96e1
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Wed Feb 13 16:52:18 2002 +0000

    Replaced all deprecated methods except 2 GtkCTree instances with gnome-2
    alternatives.

 capplets/background/ChangeLog                      |  5 ++
 .../background/background-properties-capplet.c     |  4 +-
 capplets/common/ChangeLog                          |  4 ++
 capplets/common/gconf-property-editor.c            |  3 +-
 control-center/ChangeLog                           | 13 +++++
 control-center/capplet-dir-view-tree.c             |  4 ++
 control-center/capplet-dir-view.c                  | 24 ++++++---
 control-center/preferences.c                       | 40 +++++++++++---
 gnome-settings-daemon/ChangeLog                    |  4 ++
 gnome-settings-daemon/gnome-settings-xsettings.c   |  1 +
 libbackground/ChangeLog                            | 15 ++++++
 libbackground/applier.c                            | 61 ++++++++++++++--------
 libbackground/preferences.c                        |  5 ++
 13 files changed, 145 insertions(+), 38 deletions(-)

commit 25e515ba6a6319862b4eb0dfa0606e56d2616993
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Feb 12 07:01:00 2002 +0000

    add session management.
    
    Tue Feb 12 01:34:19 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-daemon.c (main): add session management.

 gnome-settings-daemon/ChangeLog               | 4 ++++
 gnome-settings-daemon/gnome-settings-daemon.c | 6 ++++++
 2 files changed, 10 insertions(+)

commit a6e8bdd1c311dee36f1d9b3efddd5a962a8cfcb2
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Tue Feb 12 06:26:36 2002 +0000

    oops

 libbackground/applier.c     | 116 ++++++++++++++++++++++++++++++--------------
 libbackground/preferences.c | 101 +++++++++-----------------------------
 libbackground/preferences.h |  15 +-----
 3 files changed, 103 insertions(+), 129 deletions(-)

commit 31ac49063fa4928a81657b9ca4ede30dd184c175
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Feb 12 06:16:11 2002 +0000

    Committed instant-apply patch sans background.
    
    2002-02-11  Richard Hestilow  <hestilow@ximian.com>
    
        * Committed instant-apply patch sans background.

 ChangeLog                                          |   4 +
 capplets/common/gconf-property-editor.c            |  14 ++-
 capplets/default-applications/ChangeLog            |  11 ++
 ...gnome-default-applications-properties-structs.c |   5 +-
 .../gnome-default-applications-properties.c        | 102 +++++++-----------
 .../gnome-default-applications-properties.glade    |  12 ---
 capplets/keyboard/gnome-keyboard-properties.c      |  43 ++++++--
 capplets/keyboard/gnome-keyboard-properties.glade  |  19 +---
 capplets/mouse/gnome-mouse-properties.c            |  15 ++-
 capplets/mouse/gnome-mouse-properties.glade        |   8 +-
 capplets/sound/ChangeLog                           |   7 ++
 capplets/sound/sound-properties-capplet.c          |   9 +-
 capplets/theme-switcher/ChangeLog                  |   7 ++
 capplets/theme-switcher/gtk-theme-selector.glade   |  13 +--
 capplets/theme-switcher/main.c                     |  12 ++-
 capplets/ui-properties/gnome-ui-properties.c       |   8 +-
 capplets/ui-properties/gnome2-ui-properties.glade  |  12 ---
 libbackground/applier.c                            | 116 +++++++--------------
 libbackground/preferences.c                        | 101 ++++++++++++++----
 libbackground/preferences.h                        |  15 ++-
 20 files changed, 270 insertions(+), 263 deletions(-)

commit 95d4480dc2680940a5452c76743fd103481ebffe
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Feb 12 05:07:45 2002 +0000

    Move splashdir to gnomecc-2.
    
    2002-02-11  Richard Hestilow  <hestilow@ximian.com>
    
        * control-center/Makefile.am: Move splashdir to gnomecc-2.
    
        * Makefile.am: Remove idl from subdirs.
    
        * configure.in: Bump version to 0.9.3.
    
        * RELEASE - 0.9.3

 ChangeLog                  | 10 ++++++++++
 Makefile.am                | 10 +++++-----
 configure.in               |  5 ++---
 control-center/Makefile.am |  4 ++--
 4 files changed, 19 insertions(+), 10 deletions(-)

commit de141b8a8a228677d39cabce959217fc64450b04
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Feb 12 00:58:45 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2002-02-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 366 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 187 insertions(+), 183 deletions(-)

commit 3d297e9ed3f7e404f8ab14b9cceacc5c1c620459
Author: Kevin Breit <mrproper@ximian.com>
Date:   Tue Feb 12 00:31:26 2002 +0000

    Finished documenting this. The advanced tab is covered. It could use some
    
    2002-02-11  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-screensaver.xml: Finished documenting this.  The advanced tab is covered.  It could use some more revision, but oh well!  That is for the future.

 help/C/config-screensaver.xml | 99 ++++++++++++++++++++++++++++++++++++++++---
 help/ChangeLog                |  4 ++
 2 files changed, 98 insertions(+), 5 deletions(-)

commit b172e7ee363b448adf8e6505ff80349cd2e6c676
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Feb 11 05:11:54 2002 +0000

    Convert to apply/close, and commit a UI string fix from
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * Convert to apply/close, and commit a UI string
        fix from fflewddur@dropline.net.

 capplets/default-applications/ChangeLog            |  5 ++++
 .../gnome-default-applications-properties.c        | 12 +-------
 .../gnome-default-applications-properties.glade    | 32 +++-------------------
 3 files changed, 10 insertions(+), 39 deletions(-)

commit e3e83d8ff350c30abc76a561a234890d342a2e90
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Feb 11 05:06:10 2002 +0000

    Patch from fflewddur <fflewddur@dropline.net> to fix some strings.
    
    Sun Feb 10 23:39:30 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-default-applications-properties.glade: Patch from
        fflewddur <fflewddur@dropline.net> to fix some strings.

 capplets/default-applications/ChangeLog                              | 5 +++++
 .../default-applications/gnome-default-applications-properties.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit a0beefbcbf9b369a5d23c0f8992807dfeae1d33f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Feb 11 04:41:20 2002 +0000

    Make dialog Apply/Close.
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * Make dialog Apply/Close.

 capplets/keyboard/ChangeLog                       |  4 +++
 capplets/keyboard/gnome-keyboard-properties.c     | 32 +++++++++++++++++------
 capplets/keyboard/gnome-keyboard-properties.glade |  9 ++++---
 capplets/ui-properties/gnome2-ui-properties.glade |  6 ++---
 4 files changed, 36 insertions(+), 15 deletions(-)

commit b0200af14bac7b805920b93a35eeec70376929c3
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Feb 11 04:38:16 2002 +0000

    Create changeset.
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * gnome-ui-properties.c (main): Create changeset.

 capplets/ui-properties/ChangeLog             | 4 ++++
 capplets/ui-properties/gnome-ui-properties.c | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit e911f2f502e9c11712dd8d406aa209f8d2729a68
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Feb 11 04:23:42 2002 +0000

    Make dialog Apply/Close.
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * Make dialog Apply/Close.

 capplets/ui-properties/ChangeLog             |  4 ++++
 capplets/ui-properties/gnome-ui-properties.c | 11 +++++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 42c170078bddadd4a888c8fb91dde25d0bdec3d7
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Mon Feb 11 04:13:39 2002 +0000

    Reverting changes back to hovinen's pre-seth-ui setup.

 .../background/background-properties-capplet.c     | 765 +++----------------
 capplets/background/background-properties.glade    | 845 ++++++---------------
 libbackground/applier.c                            | 116 ++-
 libbackground/preferences.c                        | 101 +--
 libbackground/preferences.h                        |  15 +-
 5 files changed, 451 insertions(+), 1391 deletions(-)

commit 8062a0559330d4f8795185c4497618254e2dee84
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sun Feb 10 23:58:17 2002 +0000

    Did a bit of work on this. I still need to work on the advanced tab
    
    2002-02-10  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-screensaver.xml: Did a bit of work on this.  I still need to work on the advanced tab though.  I added the file to CVS.

 help/C/config-html.xml        | 198 ++++++++++++++++++++++++++++++++++++++++++
 help/C/config-screensaver.xml | 165 +++++++++++++++++++++++++++++++++++
 help/ChangeLog                |   4 +
 3 files changed, 367 insertions(+)

commit 76e374890d609c08b7de6751e26e9ab241fa2d4f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Feb 10 13:33:48 2002 +0000

    Updated Norwegian (bokml) translation. Added some files.
    
    2002-02-10  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.
        * POTFILES.in: Added some files.

 po/ChangeLog   |   5 ++
 po/POTFILES.in |   2 +
 po/no.po       | 189 ++++++++++++++++++++++++++++++++-------------------------
 3 files changed, 112 insertions(+), 84 deletions(-)

commit c6e987d38bf40843783278f19c4f273f2fb1a4b0
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Feb 10 08:02:00 2002 +0000

    Added font capplet.
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * Added font capplet.

 ChangeLog                                        |  4 ++
 capplets/Makefile.am                             |  2 +-
 capplets/font/.cvsignore                         |  6 +++
 capplets/font/Makefile.am                        | 19 +++++++
 capplets/font/font-properties.desktop.in         |  8 +++
 capplets/font/font-properties.glade              | 62 +++++++++++++++++++++
 capplets/font/main.c                             | 69 ++++++++++++++++++++++++
 configure.in                                     |  1 +
 gnome-settings-daemon/ChangeLog                  |  4 ++
 gnome-settings-daemon/gnome-settings-xsettings.c |  2 +
 10 files changed, 176 insertions(+), 1 deletion(-)

commit 94370f57022a21c4f5c94a4a3dadeda16ea38ef3
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Feb 10 07:39:40 2002 +0000

    Added font editor.
    
    2002-02-10  Richard Hestilow  <hestilow@ximian.com>
    
        * gconf-property-editor.[ch]: Added font editor.

 capplets/common/ChangeLog               |  4 ++
 capplets/common/gconf-property-editor.c | 97 +++++++++++++++++++++++++++++++++
 capplets/common/gconf-property-editor.h |  5 ++
 3 files changed, 106 insertions(+)

commit 2ff827ab7c9424098f6c06ae5719d9d64cf034d1
Author: Pauli Virtanen <ptvirtan@cc.hut.fi>
Date:   Sat Feb 9 21:47:30 2002 +0000

    Updated Finnish translation and converted it to UTF-8.
    
    2002-02-09  Pauli Virtanen  <ptvirtan@cc.hut.fi>
    
        * fi.po: Updated Finnish translation and converted it to UTF-8.

 po/ChangeLog |    4 +
 po/fi.po     | 2380 ++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 1555 insertions(+), 829 deletions(-)

commit a2dd51815effb677bf8f3fa9e1e4f2a49f8549c8
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Sat Feb 9 11:52:11 2002 +0000

    Jan-Willem Harmanny: Updated Dutch translation of control-center and fixed
    
    2002-02-09 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    
    * nl.po: Jan-Willem Harmanny: Updated Dutch translation of
      control-center and fixed some small things in metatheme translation.

 po/ChangeLog |    4 +
 po/nl.po     | 4327 ++++++++++++++++------------------------------------------
 2 files changed, 1211 insertions(+), 3120 deletions(-)

commit 1b2cb07bf1bab6d984f842e20e2c5ffc1a15cf15
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sat Feb 9 06:13:59 2002 +0000

    Convert korean translation to UTF-8 encoding

 ChangeLog      |   5 ++
 configure.in   |   2 +-
 po/ChangeLog   |   4 +
 po/POTFILES.in |   1 -
 po/ko.po       | 266 ++++++++++++++++++++++++++++-----------------------------
 5 files changed, 143 insertions(+), 135 deletions(-)

commit fd79332e7d6cf387bf0c98365f800f200f1c9333
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sat Feb 9 05:23:16 2002 +0000

    hook up buttons.
    
    Fri Feb  8 23:53:10 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-keyboard-properties.c (dialog_response): hook up buttons.

 capplets/keyboard/ChangeLog                       |  4 ++++
 capplets/keyboard/gnome-keyboard-properties.c     | 14 +++++++++++++-
 capplets/keyboard/gnome-keyboard-properties.glade |  2 ++
 3 files changed, 19 insertions(+), 1 deletion(-)

commit 85591323194fc692e54249789404079854ffce9e
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Feb 9 03:22:34 2002 +0000

    Updated for XML and the new user interface.
    
    2002-02-08  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-mouse.xml: Updated for XML and the new user interface.
    
        * C/config-kbd.xml: Reworded things.
        Updated to be Gnome 2.0 ready.
    
        * C/config-hints.xml: Added to CVS

 help/C/config-hints.xml |  64 ++++++++++++++++++
 help/C/config-kbd.xml   | 173 ++++++++++++++++++++++++++++++++++++++++++++++++
 help/C/config-mouse.xml | 117 ++++++++++++++++++++++++++++++++
 help/ChangeLog          |   7 ++
 4 files changed, 361 insertions(+)

commit 791fe08572598addf7cb155464ca44c522e45c90
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Feb 9 01:42:45 2002 +0000

    Added to CVS. It's ready to go for XML.
    
    2002-02-08  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-default-apps.xml: Added to CVS.  It's ready to go for XML.
    
        * C/control-center.xml: Changed this to use xml files instead of sgml

 help/C/control-center.xml | 15 +++++++--------
 help/ChangeLog            |  4 ++++
 2 files changed, 11 insertions(+), 8 deletions(-)

commit a410927797930293ee6aa945c10d6664d1eb48b1
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Feb 9 01:37:21 2002 +0000

    Added to CVS. This is now XMLified with complete Gnome 2 documentation for
    
    2002-02-08  Kevin Breit  <mrproper@ximian.com>
    
        * C/config-sound.xml: Added to CVS.  This is now XMLified with complete Gnome 2 documentation for the sound capplet.

 help/C/control-center.xml | 2 +-
 help/ChangeLog            | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 02fa0440e28ad5349c27e86be9453d2cd150611a
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Feb 9 01:33:32 2002 +0000

    Ignore nautilus if run with --use-shell.
    
    2002-02-08  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (main): Ignore nautilus if run with --use-shell.

 control-center/ChangeLog |  4 ++++
 control-center/main.c    | 11 ++++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit 3ce6af943043286fbac2680a2785705a7feddac0
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Feb 9 01:20:59 2002 +0000

    Added to CVS. Should be XML valid.
    
    2002-02-08  Kevin Breit  <mrproper@ximian.com>
    
        * C/control-center.xml: Added to CVS.  Should be XML valid.

 help/C/control-center.xml | 424 ++++++++++++++++++++++++++++++++++++++++++++++
 help/ChangeLog            |   2 +
 2 files changed, 426 insertions(+)

commit 9488edff3619055e986a5b318ae195ee1b6e6780
Author: Kevin Breit <mrproper@ximian.com>
Date:   Sat Feb 9 01:18:28 2002 +0000

    Removed file from CVS. Will be replacing shortly.
    
    2002-02-08  Kevin Breit  <mrproper@ximian.com>
    
        * C/control-center.sgml: Removed file from CVS.  Will be replacing shortly.

 help/C/control-center.sgml | 359 ---------------------------------------------
 help/ChangeLog             |   3 +
 2 files changed, 3 insertions(+), 359 deletions(-)

commit 97ce2a3f279c8e73658b9402d643f8ec26868fc2
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Feb 8 07:05:04 2002 +0000

    install cursor images.
    
    Fri Feb  8 01:41:40 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * Makefile.am (pixmap_DATA): install cursor images.

 capplets/mouse/ChangeLog                |  4 ++++
 capplets/mouse/Makefile.am              | 14 +++++++++-----
 capplets/mouse/gnome-mouse-properties.c | 29 +++++++++++++++++++++++++----
 3 files changed, 38 insertions(+), 9 deletions(-)

commit 96d7f7d1a8b4a12870dc441180eaa5e6afbe0d54
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Feb 7 06:15:03 2002 +0000

    Add "timeout" field. (bg_apply_cleanup_cb): Added.
    
    2002-02-07  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c (BGApplierPrivate): Add "timeout" field.
        (bg_apply_cleanup_cb): Added.
        (bg_applier_apply_prefs): Add/reset timeout for cleanup function
        if we load a pixbuf.

 libbackground/ChangeLog |  7 +++++++
 libbackground/applier.c | 27 +++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

commit 54d7e22f6059d6c5762bc1a353e22e25c9d2f7e3
Author: Seth Nickell <snickell@stanford.edu>
Date:   Thu Feb 7 05:46:36 2002 +0000

    More fixes. Change layout in glade a bit, make DND work, fix widget
    
    2002-02-06  Seth Nickell  <snickell@stanford.edu>
    
        * background-properties-capplet.c: (drag_motion_cb),
        (drag_leave_cb), (drag_data_received_cb),
        (change_background_type_toggles), (set_background_picture),
        (quit_cb), (main):
        * background-properties.glade:
        * background-properties.glade1:
    
        More fixes. Change layout in glade a bit, make DND work,
        fix widget previews.

 capplets/background/ChangeLog                      |  12 +
 .../background/background-properties-capplet.c     |  31 ++-
 capplets/background/background-properties.glade    | 254 ++++++++++-----------
 capplets/background/background-properties.glade1   | 150 ++++++------
 4 files changed, 240 insertions(+), 207 deletions(-)

commit 35522f6f30bdbc2020fece07df2180ccb17c1d07
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Feb 7 05:45:05 2002 +0000

    remove ko from ALL_LINGUAS as it seems to be broken.
    
    Thu Feb  7 00:20:38 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in (GETTEXT_PACKAGE): remove ko from ALL_LINGUAS as it
        seems to be broken.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d9fbc9b5654a253cb14d6fc1df536ea192e2bd63
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Thu Feb 7 02:45:06 2002 +0000

    Updated Korean translation

 po/ChangeLog |    4 +
 po/ko.po     | 3694 +++++++++-------------------------------------------------
 2 files changed, 530 insertions(+), 3168 deletions(-)

commit f37383264cd3a7d4fa0c8f363cc8bb97d66e99d8
Author: Mark McLoughlin <mark@skynet.ie>
Date:   Wed Feb 6 13:35:27 2002 +0000

    change Exec from gnomecc to gnome2-control-center.
    
    2002-02-06  Mark McLoughlin  <mark@skynet.ie>
    
            * gnomecc.desktop.in: change Exec from gnomecc to
            gnome2-control-center.

 control-center/ChangeLog          | 5 +++++
 control-center/gnomecc.desktop.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit d8f4cd7fabb6a68f90dc73d8912a7395c54b237a
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Wed Feb 6 00:13:15 2002 +0000

    Updated Portuguese translation.
    
    2002-02-06  Duarte Loreto  <happyguy_pt@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 2279 ++++++++++++++--------------------------------------------
 2 files changed, 531 insertions(+), 1752 deletions(-)

commit 8c65931b04f61b6cbfbc1f50d4b2448cf5357c4a
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Feb 5 22:16:31 2002 +0000

    change to be parallel installable
    
    2002-02-05  jacob berkman  <jacob@ximian.com>
    
        * configure.in (GETTEXT_PACKAGE): change to be parallel
        installable
    
        * control-center2.png:
        * Makefile.am (pixmap_DATA): rename to be parallel installable

 ChangeLog          |   8 ++++++++
 Makefile.am        |   6 +++---
 configure.in       |   2 +-
 control-center.png | Bin 3464 -> 0 bytes
 4 files changed, 12 insertions(+), 4 deletions(-)

commit 008d65f13495f82d3e01cab75363498fc22c39b2
Author: jacob berkman <jacob@ximian.com>
Date:   Tue Feb 5 22:16:10 2002 +0000

    use control-center2.png
    
    2002-02-05  jacob berkman  <jacob@ximian.com>
    
        * gnomecc.desktop.in (Icon):
        * capplet-dir.c (find_icon): use control-center2.png

 control-center/ChangeLog          | 5 +++++
 control-center/capplet-dir.c      | 4 ++--
 control-center/gnomecc.desktop.in | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

commit 533c0f416bb53ca96312986845e8a82dde1745b5
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Tue Feb 5 11:13:58 2002 +0000

    Fix crash on NULL values from GConf

 capplets/background/ChangeLog                      |  2 +
 .../background/background-properties-capplet.c     | 41 ++++++++++----------
 capplets/default-applications/ChangeLog            |  3 ++
 .../gnome-default-applications-properties.c        |  6 +--
 capplets/mouse/ChangeLog                           |  1 +
 capplets/mouse/gnome-mouse-properties.c            |  2 +-
 libbackground/ChangeLog                            |  3 ++
 libbackground/preferences.c                        | 44 +++++++++++-----------
 8 files changed, 55 insertions(+), 47 deletions(-)

commit 084879bb45c0b7ff8d1f00b46430813394a9d841
Author: Marius Andreiana <mandreiana@yahoo.com>
Date:   Tue Feb 5 09:12:18 2002 +0000

    updated and converted to UTF-8
    
    2002-02-05  Marius Andreiana  <mandreiana@yahoo.com>
    
        * ro.po: updated and converted to UTF-8

 po/ChangeLog |    4 +
 po/ro.po     | 1360 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 684 insertions(+), 680 deletions(-)

commit 35e192827a01e0d14427faec515f257854d9c3f5
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Mon Feb 4 17:48:43 2002 +0000

    Lot of little fixes to make it to compile without most of the deprecated stuff

 capplets/background/ChangeLog                      | 11 ++++++
 .../background/background-properties-capplet.c     | 39 +++++++++++---------
 capplets/default-applications/ChangeLog            |  5 +++
 .../gnome-default-applications-properties.c        |  9 ++---
 capplets/file-types/ChangeLog                      | 14 ++++++++
 capplets/file-types/mime-category-edit-dialog.c    |  5 +--
 capplets/file-types/mime-edit-dialog.c             | 31 ++++++++--------
 capplets/file-types/mime-type-info.c               |  3 +-
 capplets/file-types/service-edit-dialog.c          | 31 +++++++++-------
 capplets/file-types/service-info.c                 |  1 +
 capplets/mouse/ChangeLog                           |  6 ++++
 capplets/mouse/gnome-mouse-properties.c            |  7 ++--
 capplets/sound/ChangeLog                           |  7 ++++
 capplets/sound/sound-properties-capplet.c          | 11 +++---
 capplets/theme-switcher/ChangeLog                  | 10 ++++++
 capplets/theme-switcher/control/control.c          | 15 ++++----
 capplets/theme-switcher/main.c                     | 12 ++++---
 capplets/ui-properties/ChangeLog                   |  4 +++
 capplets/ui-properties/gnome-ui-properties.c       |  2 +-
 control-center/ChangeLog                           | 15 ++++++++
 control-center/capplet-dir-view-list.c             | 28 +++++++--------
 control-center/capplet-dir-view-tree.c             |  4 +--
 control-center/capplet-dir.c                       | 15 ++++----
 control-center/main.c                              |  1 +
 control-center/preferences.c                       | 20 +++++------
 gnome-settings-daemon/ChangeLog                    |  9 +++++
 .../gnome-settings-locate-pointer.c                |  6 ++--
 gnome-settings-daemon/gnome-settings-sound.c       |  5 ++-
 libbackground/ChangeLog                            |  7 ++++
 libbackground/applier.c                            | 42 ++++++++++++++--------
 libbackground/preferences.c                        |  3 ++
 31 files changed, 254 insertions(+), 124 deletions(-)

commit 679900bb5fcf1fab071ba96c81e6247cf5d87d23
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Feb 2 18:07:07 2002 +0000

    Updated Danish translation and converted it to UTF-8.
    
    2002-02-02  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation and converted it to UTF-8.

 po/ChangeLog |    4 +
 po/da.po     | 1992 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 1029 insertions(+), 967 deletions(-)

commit c527ff973d74c8ae076387a327d20971ee75e48d
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Feb 1 23:46:19 2002 +0000

    Change to Jimmac's alternate behavior icon.
    
    2002-02-01  Seth Nickell  <snickell@stanford.edu>
    
        * behavior-capplet.png:
    
        Change to Jimmac's alternate behavior icon.

 capplets/ui-properties/ChangeLog            |   6 ++++++
 capplets/ui-properties/Makefile.am          |   8 +++++++-
 capplets/ui-properties/behavior-capplet.png | Bin 3327 -> 2227 bytes
 capplets/ui-properties/behavior.desktop.in  |   2 +-
 4 files changed, 14 insertions(+), 2 deletions(-)

commit 353b2d861f668a9afc6141030d62f85eda0f4702
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Thu Jan 31 17:43:02 2002 +0000

    Updated Malay Translation.
    
    2002-01-31  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 869 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 488 insertions(+), 385 deletions(-)

commit 88b613f88914ac1b576c477273e350cff356615b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jan 30 22:33:27 2002 +0000

    Updated Norwegian (bokml) translation. Added some files.
    
    2002-01-30  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.
        * POTFILES.in: Added some files.

 po/ChangeLog   |   5 +
 po/POTFILES.in |  82 ++---
 po/no.po       | 954 ++++++++++++++++++++++++++++++---------------------------
 3 files changed, 549 insertions(+), 492 deletions(-)

commit e5f8f56583c36d0448f1b2efef5d2fa4ff60b748
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Jan 30 15:03:59 2002 +0000

    Updated Slovak translation.
    
    2002-01-30  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 5979 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 3182 insertions(+), 2801 deletions(-)

commit e386e05455813d5c8d6ab3e40d6254d7184194ec
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 29 19:58:04 2002 +0000

    Remove panel.desktop.in.in.
    
    2002-01-28  Richard Hestilow <hestilow@ximian.com>
    
        * po/POTFILES.in: Remove panel.desktop.in.in.

 ChangeLog      | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit b4c2693a436f0365bad3f250a2444b6258056a58
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jan 29 13:29:30 2002 +0000

    Pack the icon and description in the same column
    
    2002-01-29  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (create_dialog): Pack the icon and
        description in the same column

 capplets/file-types/ChangeLog            |  5 +++++
 capplets/file-types/file-types-capplet.c | 27 +++++++++++++--------------
 2 files changed, 18 insertions(+), 14 deletions(-)

commit 498332a582de9039599992e9fccecbb9e463d96c
Author: Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
Date:   Tue Jan 29 13:10:12 2002 +0000

    nl.po Updated translations for several modules removed duplicate from
    
    2002-01-29 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
    
    * nl.po Updated translations for several modules
      removed duplicate from cinnamon-control-center po file

 po/nl.po | 4754 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 3166 insertions(+), 1588 deletions(-)

commit c0210d9c2dac429aa0390b8e463744b9e3048bf6
Author: Seth Nickell <snickell@stanford.edu>
Date:   Tue Jan 29 05:23:39 2002 +0000

    Remove this. Its now properly done up in gnome-core.
    
    2002-01-28  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * panel-capplet.png:
        * panel.desktop.in.in:
    
        Remove this. Its now properly done up in gnome-core.

 capplets/desktop-links/ChangeLog   | 8 ++++++++
 capplets/desktop-links/Makefile.am | 1 -
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 5fe3e402795ef71f6cf0d907efaf85a0a057784a
Author: Seth Nickell <snickell@stanford.edu>
Date:   Tue Jan 29 04:48:25 2002 +0000

    Read control center directory structure out of GnomeVFS instead of
    
    2002-01-28  Seth Nickell  <snickell@stanford.edu>
    
        * control-center/capplet-dir.c: (capplet_new), (capplet_dir_new),
        (capplet_dir_entry_destroy), (read_entries),
        (get_root_capplet_dir):
        * control-center/capplet-dir.h:
    
        Read control center directory structure out of GnomeVFS instead of
        directly off the disk.
    
        Also deal with pixmaps more uniformly, and properly load them
        out of PREFIX/share/pixmaps when they aren't an absolute path.
    
        * capplets/desktop-links/Sawfish/appearance-properties.desktop.in:
        * capplets/desktop-links/Sawfish/bindings-properties.desktop.in:
        * capplets/desktop-links/Sawfish/focus-properties.desktop.in:
        * capplets/desktop-links/Sawfish/match-properties.desktop.in:
        * capplets/desktop-links/Sawfish/maximize-properties.desktop.in:
        * capplets/desktop-links/Sawfish/meta-properties.desktop.in:
        * capplets/desktop-links/Sawfish/misc-properties.desktop.in:
        * capplets/desktop-links/Sawfish/move-properties.desktop.in:
        * capplets/desktop-links/Sawfish/placement-properties.desktop.in:
        * capplets/desktop-links/Sawfish/sound-properties.desktop.in:
        * capplets/desktop-links/Sawfish/workspace-properties.desktop.in:
        * capplets/ui-properties/behavior.desktop.in.in:
    
        Add a Categories Field.
    
        * capplets/desktop-links/Makefile.am:
        * capplets/desktop-links/Sawfish/Makefile.am:
        * capplets/file-types/Makefile.am:
        * capplets/theme-switcher/Makefile.am:
        * capplets/ui-properties/Makefile.am:
        * control-center/Gnome.directory.in.in:
        * control-center/Makefile.am:
    
        Install directory files into PREFIX/share/gnome/vfolders, the standard
        vfolder description location.

 ChangeLog                                          |  39 +
 capplets/background/.cvsignore                     |   4 +-
 capplets/background/ChangeLog                      |  20 +
 capplets/background/Makefile.am                    |   3 +
 .../background/background-properties-capplet.c     | 736 ++++++++++++++++---
 capplets/background/background-properties.glade    | 797 +++++++++++++++------
 capplets/background/background-properties.glade1   | 741 ++++++++++++++-----
 capplets/background/background-properties.xml      |   3 +-
 capplets/desktop-links/Makefile.am                 |  15 +-
 capplets/file-types/Makefile.am                    |   2 +-
 capplets/theme-switcher/Makefile.am                |   2 +-
 capplets/ui-properties/Makefile.am                 |   2 +-
 capplets/ui-properties/behavior.desktop.in         |   2 +-
 control-center/Gnome.directory.in.in               |   5 -
 control-center/Makefile.am                         |  20 +-
 control-center/capplet-dir.c                       | 160 +++--
 control-center/capplet-dir.h                       |   3 +-
 gnome-settings-daemon/ChangeLog                    |   6 +
 gnome-settings-daemon/Makefile.am                  |   3 +
 libbackground/ChangeLog                            |  13 +
 libbackground/applier.c                            | 100 +--
 libbackground/preferences.c                        |  96 ++-
 libbackground/preferences.h                        |  15 +-
 po/ChangeLog                                       |  20 +
 po/POTFILES.in                                     |   1 -
 25 files changed, 2087 insertions(+), 721 deletions(-)

commit 788e46daacc36681eac4214f5c220a759db87430
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 29 04:33:41 2002 +0000

    Bump version to 1.99.2.
    
    2002-01-28  Richard Hestilow <hestilow@ximian.com>
    
        * configure.in: Bump version to 1.99.2.
    
        * RELEASE: 1.99.2

 ChangeLog      |  4 ++--
 configure.in   |  2 +-
 po/POTFILES.in |  9 ++-------
 po/az.po       |  4 ++--
 po/ca.po       |  4 ++--
 po/cs.po       |  4 ++--
 po/da.po       |  4 ++--
 po/de.po       |  4 ++--
 po/el.po       |  4 ++--
 po/es.po       |  4 ++--
 po/fi.po       |  4 ++--
 po/fr.po       |  4 ++--
 po/ga.po       |  4 ++--
 po/hr.po       |  4 ++--
 po/ja.po       |  4 ++--
 po/lv.po       |  4 ++--
 po/ms.po       |  5 +++--
 po/nn.po       |  5 +++--
 po/no.po       |  4 ++--
 po/pl.po       |  4 ++--
 po/pt.po       |  3 ++-
 po/pt_BR.po    |  4 ++--
 po/ru.po       |  4 ++--
 po/sk.po       |  4 ++--
 po/sl.po       |  4 ++--
 po/sv.po       | 12 ++++++------
 po/tr.po       |  4 ++--
 po/uk.po       |  4 ++--
 po/wa.po       |  4 ++--
 po/zh_CN.po    |  4 ++--
 po/zh_TW.po    |  4 ++--
 31 files changed, 67 insertions(+), 69 deletions(-)

commit d1982335111dd82ca00fd1e02797bd331ab8299c
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jan 29 03:35:11 2002 +0000

    install globally
    
    Mon Jan 28 22:18:34 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-ui-properties.c (create_dialog): install globally

 capplets/ui-properties/ChangeLog             | 4 ++++
 capplets/ui-properties/Makefile.am           | 2 +-
 capplets/ui-properties/gnome-ui-properties.c | 4 ++--
 3 files changed, 7 insertions(+), 3 deletions(-)

commit f250835f2e5874f135a6003912fe4839024c768c
Author: Jonathan Blandford <jrb@gnome.org>
Date:   Tue Jan 29 03:26:23 2002 +0000

    completely rethink this dialog
    
    Mon Jan 28 22:09:30 2002  Jonathan Blandford  <jrb@gnome.org>
    
        * gnome-ui-properties.c: completely rethink this dialog

 capplets/ui-properties/ChangeLog                   |   4 +
 capplets/ui-properties/Makefile.am                 |   7 +-
 capplets/ui-properties/gnome-ui-properties.c       | 144 ++++++
 capplets/ui-properties/gnome2-ui-properties.glade  | 502 +++++++++++++++++++++
 .../ui-properties/toolbar-menu-properties.glade    | 374 +++++++++++++++
 5 files changed, 1025 insertions(+), 6 deletions(-)

commit b1ee65a8ef1a6839f574323cb1d1e9c019f23b95
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 29 01:13:34 2002 +0000

    Bump version to 1.99.1.
    
    2002-01-28  Richard Hestilow <hestilow@ximian.com>
    
        * configure.in: Bump version to 1.99.1.
    
        * RELEASE: 1.99.1

 ChangeLog    |    6 +
 configure.in |    2 +-
 po/az.po     | 5764 ++++++++++++++++++++++++-----------------------------
 po/ca.po     | 6286 +++++++++++++++++++++++++++-------------------------------
 po/cs.po     | 3774 +++++++----------------------------
 po/da.po     | 6144 ++++++++++++++++++++++++++------------------------------
 po/de.po     | 3762 ++++++++++-------------------------
 po/el.po     | 3916 +++++++++---------------------------
 po/es.po     | 3845 ++++++++++-------------------------
 po/fi.po     | 3840 +++++++++--------------------------
 po/fr.po     | 3950 ++++++++++--------------------------
 po/ga.po     | 3609 ++++++---------------------------
 po/hr.po     | 3671 ++++++----------------------------
 po/ja.po     | 3750 +++++++----------------------------
 po/lv.po     | 3809 ++++++++++-------------------------
 po/ms.po     |    2 +-
 po/nn.po     |  195 +-
 po/no.po     | 4304 ++++++++++++++--------------------------
 po/pl.po     | 3666 +++++++++-------------------------
 po/pt_BR.po  | 3713 +++++++++-------------------------
 po/ru.po     | 3760 +++++++++--------------------------
 po/sk.po     | 5931 ++++++++++++++++++++++++++----------------------------
 po/sl.po     | 4410 ++++++++++++++++------------------------
 po/sv.po     |  143 +-
 po/tr.po     | 3887 +++++++++++-------------------------
 po/uk.po     |  436 +++-
 po/wa.po     | 3889 ++++++++++--------------------------
 po/zh_CN.po  | 3839 ++++++++++-------------------------
 po/zh_TW.po  | 4040 ++++++++++++-------------------------
 29 files changed, 30990 insertions(+), 67353 deletions(-)

commit 888b9aa6379377fb5bc0e7f0ca15c974e4ced238
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 29 00:18:55 2002 +0000

    Link to libbackground.la.
    
    2002-01-28  Richard Hestilow  <hestilow@ximian.com>
    
        * Link to libbackground.la.

 capplets/background/ChangeLog     | 4 ++++
 capplets/background/Makefile.am   | 2 +-
 gnome-settings-daemon/ChangeLog   | 4 ++++
 gnome-settings-daemon/Makefile.am | 2 +-
 4 files changed, 10 insertions(+), 2 deletions(-)

commit e699ee819e357ef93a6a43a6e61760f351b08c78
Author: Duarte Loreto <happyguy_pr@hotmail.com>
Date:   Mon Jan 28 23:28:05 2002 +0000

    Updated Portuguese translation.
    
    2002-01-28  Duarte Loreto <happyguy_pr@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 12 +++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit a809ef2f800498f07e8218104c8883fbc8999c7e
Author: Duarte Loreto <happyguy_pr@hotmail.com>
Date:   Mon Jan 28 23:25:14 2002 +0000

    Updated Portuguese translation.
    
    2002-01-28  Duarte Loreto <happyguy_pr@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/pt.po | 502 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 414 insertions(+), 88 deletions(-)

commit 60a80d18bd6a222178fcecfa1103f079ecbc77c0
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   Mon Jan 28 23:20:10 2002 +0000

    Fixed a i18n glitch (missing space between two words)
    
    2002-01-28  Duarte Loreto <happyguy_pt@hotmail.com>
    
            * mime-edit-dialog.c: Fixed a i18n glitch (missing space between two words)

 capplets/file-types/ChangeLog          | 4 ++++
 capplets/file-types/mime-edit-dialog.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 854bba1f071c0afbec2fb1d48bb04fef798d6917
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 28 23:13:42 2002 +0000

    Include gconf-client.h, add trailing NULLs to all gconf_client calls (for
    
    2002-01-28  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c: Include gconf-client.h, add trailing NULLs to all
        gconf_client calls (for GError).

 capplets/theme-switcher/ChangeLog |  5 +++++
 capplets/theme-switcher/main.c    | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit e7be78a1bd062745f0d10aafcddd3fcc41811858
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 28 22:40:28 2002 +0000

    Use libtool to create the static library, thus allowing shlibs to link to
    
    2002-01-28  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am: Use libtool to create the static library, thus
        allowing shlibs to link to libbackground (needed for metatheme).

 libbackground/ChangeLog   | 5 +++++
 libbackground/Makefile.am | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 4366b65be5df85c2b0084836cf3b77ac5154bde8
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Mon Jan 28 20:25:53 2002 +0000

    Updated Malay Translation.
    
    2002-01-28  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 ++
 po/ms.po     | 221 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 170 insertions(+), 55 deletions(-)

commit a02d04c48b4938320cb6a5f2d31216da5d1d8d52
Author: Laszlo Peter <laca@ireland.sun.com>
Date:   Mon Jan 28 19:55:29 2002 +0000

    s/__FUNCTION__/G_GNUC_FUNCTION/ ditto ditto ditto change "test $x == y" to
    
    2002-01-28  Laszlo Peter  <laca@ireland.sun.com>
    
        * archiver/location.c: s/__FUNCTION__/G_GNUC_FUNCTION/
        * capplets/common/capplet-util.c: ditto
        * capplets/common/capplet-util.h: ditto
        * libbackground/preferences.c: ditto
        * applets/common/wrapper-script.in: change "test $x == y" to
          "test $x = y" for portability

 ChangeLog                         | 9 +++++++++
 archiver/location.c               | 6 +++---
 capplets/common/capplet-util.c    | 2 +-
 capplets/common/capplet-util.h    | 4 ++--
 capplets/common/wrapper-script.in | 2 +-
 libbackground/preferences.c       | 2 +-
 6 files changed, 17 insertions(+), 8 deletions(-)

commit 66fa37fc6ef44a324f5846bdcc25f90a90dcb53b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 19:08:14 2002 +0000

    Set custom program entry and needs terminal here
    
    2002-01-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-edit-dialog.c (populate_app_list): Set custom program
        entry and needs terminal here
    
        * service-info.c (service_info_using_custom_app): Implement
    
        * service-edit-dialog.c (populate_app_list): Add destroy notify
        for app
    
        * service-info.[ch]: Eliminate custom_line and needs_terminal; use
        app for that

 capplets/file-types/ChangeLog             | 11 ++++++
 capplets/file-types/service-edit-dialog.c | 52 +++++++++++++++++++------
 capplets/file-types/service-info.c        | 63 +++++++++++++++++++++++++------
 capplets/file-types/service-info.h        |  3 +-
 4 files changed, 105 insertions(+), 24 deletions(-)

commit 049ab3cb3117697a7320739a86fcb1589366c164
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 18:45:27 2002 +0000

    Use gnome_vfs_application_registry_get_applications
    
    2002-01-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (populate_application_list): Use
        gnome_vfs_application_registry_get_applications

 capplets/file-types/ChangeLog          | 3 +++
 capplets/file-types/mime-edit-dialog.c | 5 +++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit a2b1d26374bd235a65e9679d8ad2368cc2fb0452
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 18:39:42 2002 +0000

    Implement
    
    2002-01-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_using_custom_app)
        (mime_category_info_using_custom_app): Implement
    
        * mime-edit-dialog.c (store_data): Update: don't use custom_line,
        needs_terminal
    
        * mime-type-info.[ch]: Eliminate custom_line and needs_terminal;
        will use default_action for that now

 capplets/file-types/ChangeLog                   |  14 ++
 capplets/file-types/mime-category-edit-dialog.c |  33 ++--
 capplets/file-types/mime-edit-dialog.c          |  37 +++--
 capplets/file-types/mime-type-info.c            | 194 ++++++++++++------------
 capplets/file-types/mime-type-info.h            |   7 +-
 5 files changed, 159 insertions(+), 126 deletions(-)

commit 31dd650951998c5fb0c6c4558bf0bb7cb58126d5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 17:34:25 2002 +0000

    Don't set tmp1 with the full category name, free tmp too
    
    2002-01-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_category_info_save): Don't set tmp1 with
        the full category name, free tmp too
        (mime_category_info_load_all): strdup app->command
        (get_gconf_base_name): Don't put /default-action-id after the key
        name
    
        * category-names.h: Update category names

 capplets/file-types/ChangeLog        |  8 ++++++++
 capplets/file-types/category-names.h | 21 ++++++++++++++++-----
 capplets/file-types/mime-type-info.c |  7 +++----
 3 files changed, 27 insertions(+), 9 deletions(-)

commit 2073f4108fbeb829e554e6ba15f23313510d2b5f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 16:43:40 2002 +0000

    Fix logic (mime_type_info_load_all): Don't load default_action if
    
    2002-01-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (update_subcategories): Fix logic
        (mime_type_info_load_all): Don't load default_action if
        custom_line is set
    
        * mime-category-edit-dialog.c (store_data): Call
        mime_category_info_update
        (store_data): Don't notify the model -- nothing there could have
        changed
    
        * mime-type-info.c (mime_category_info_update): Implement
        (update_subcategories): Update; split from set_subcategory_ids
    
        * mime-category-edit-dialog.c (populate_application_list): Notify
        destruction with gnome_vfs_mime_application_free
        (store_data): Store default action
        (store_data): Store custom line, needs terminal
        (populate_application_list): Set needs_terminal_toggle
    
        * mime-type-info.c (mime_type_info_get_use_category):
        Implement. Factor from mime_type_info_load_all
        (find_possible_supported_apps, reduce_supported_app_list): Use
        mime_type_info_get_use_category
        (get_gconf_base_name): Replace parentheses with '-'
        (mime_category_info_load_all): Only load default action, custom
        line if not already loaded
    
        * mime-edit-dialog.c (populate_component_list): Use get_all_components
        (populate_application_list): Use get_all_applications

 capplets/file-types/ChangeLog                   |  31 ++++++
 capplets/file-types/TODO_NOTES                  |   2 -
 capplets/file-types/mime-category-edit-dialog.c |  40 +++++--
 capplets/file-types/mime-edit-dialog.c          |   4 +-
 capplets/file-types/mime-type-info.c            | 139 +++++++++++++++---------
 capplets/file-types/mime-type-info.h            |   3 +
 6 files changed, 156 insertions(+), 63 deletions(-)

commit 77558b138daa71e611624bfc1d3394ed1f32c854
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jan 28 07:58:19 2002 +0000

    Add Categories field.
    
    2002-01-27  Seth Nickell  <snickell@stanford.edu>
    
        * gtk-theme-selector.desktop.in.in:
    
        Add Categories field.

 capplets/theme-switcher/ChangeLog                     | 6 ++++++
 capplets/theme-switcher/gtk-theme-selector.desktop.in | 1 +
 2 files changed, 7 insertions(+)

commit b28ff0a7d4435da563b16b19432df2167353bb23
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jan 28 07:20:31 2002 +0000

    Add Categories field.
    
    2002-01-27  Seth Nickell  <snickell@stanford.edu>
    
        * behavior.desktop.in:
    
        Add Categories field.

 capplets/ui-properties/ChangeLog           | 6 ++++++
 capplets/ui-properties/behavior.desktop.in | 1 +
 2 files changed, 7 insertions(+)

commit 6af0d75aebc425f472d3b8c85a13fe81fd2ddd08
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jan 28 07:17:07 2002 +0000

    Add categories field.
    
    2002-01-27  Seth Nickell  <snickell@stanford.edu>
    
        * cd.desktop.in.in:
        * legacy-applications.desktop.in.in:
        * panel.desktop.in.in:
        * session.desktop.in.in:
    
        Add categories field.

 capplets/desktop-links/ChangeLog                         | 9 +++++++++
 capplets/desktop-links/cd.desktop.in.in                  | 1 +
 capplets/desktop-links/legacy-applications.desktop.in.in | 1 +
 3 files changed, 11 insertions(+)

commit 7f372be24c80c9979a81dee64e027f26e4622948
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jan 28 07:16:24 2002 +0000

    Add Categories field.
    
    2002-01-27  Seth Nickell  <snickell@stanford.edu>
    
        * file-types.desktop.in:
    
        Add Categories field.

 capplets/file-types/ChangeLog             | 6 ++++++
 capplets/file-types/file-types.desktop.in | 1 +
 2 files changed, 7 insertions(+)

commit 6b34436f3e07c1c8c2dbb871844caa8989d67c28
Author: Seth Nickell <snickell@stanford.edu>
Date:   Mon Jan 28 06:50:23 2002 +0000

    Add categories field to .desktop file.
    
    2002-01-27  Seth Nickell  <snickell@stanford.edu>
    
        * sound.desktop.in:
    
        Add categories field to .desktop file.

 capplets/sound/ChangeLog        | 6 ++++++
 capplets/sound/sound.desktop.in | 1 +
 2 files changed, 7 insertions(+)

commit f4e6703fe97ff88eae555cc02765dc6a95065385
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 02:56:07 2002 +0000

    Implement (main): Connect to dialog_done_cb
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (dialog_done_cb): Implement
        (main): Connect to dialog_done_cb
    
        * mime-edit-dialog.c (mime_edit_dialog_class_init): Add done
        signal
        (response_cb): Emite done signal

 capplets/file-types/ChangeLog            | 13 ++++++++++++
 capplets/file-types/file-types-capplet.c | 36 +++++++++++++++++++++++++++-----
 capplets/file-types/mime-edit-dialog.c   | 18 ++++++++++++++++
 capplets/file-types/mime-edit-dialog.h   |  2 ++
 capplets/file-types/mime-type-info.c     |  4 ++--
 5 files changed, 66 insertions(+), 7 deletions(-)

commit fadeef3e41d70bcd1df0300a741e987438729c40
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 28 02:29:44 2002 +0000

    Always set run_program to TRUE
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-info.c (service_info_load_all): Always set run_program
        to TRUE
    
        * service-edit-dialog.c (fill_dialog): Disable look at content toggle

 capplets/file-types/ChangeLog             | 5 +++++
 capplets/file-types/TODO_NOTES            | 4 ++--
 capplets/file-types/service-edit-dialog.c | 4 ++++
 capplets/file-types/service-info.c        | 4 ++++
 4 files changed, 15 insertions(+), 2 deletions(-)

commit 04270a79b5c8171b54088227c77bf2349893f00b
Author: Christian Rose <menthos@menthos.com>
Date:   Sun Jan 27 21:29:53 2002 +0000

    Updated and converted to UTF-8.
    
    2002-01-27  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated and converted to UTF-8.

 po/ChangeLog |    4 +
 po/sv.po     | 4518 ++++++++++++++++++++--------------------------------------
 2 files changed, 1542 insertions(+), 2980 deletions(-)

commit 1346c8811be17ec66f954d4813e3120c00401cec
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 20:34:00 2002 +0000

    Call _get_mime_application
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_category_info_load_all): Call
        _get_mime_application

 capplets/file-types/ChangeLog        | 3 +++
 capplets/file-types/mime-type-info.c | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 00c28ff09078b64983ce0e499032ce47f8f55a58
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 20:08:22 2002 +0000

    Added capplets/file-types/category-names.h
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * POTFILES.in: Added capplets/file-types/category-names.h

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 09ba137cf2c40b6eb1d8d162650184ebe8b36855
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 20:07:30 2002 +0000

    Invoke gettext macro on the category name
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-types-model.c (mime_types_model_get_value): Invoke gettext
        macro on the category name
    
        * category-names.h: Add this file

 capplets/file-types/ChangeLog          |  3 +++
 capplets/file-types/Makefile.am        |  2 +-
 capplets/file-types/TODO_NOTES         |  1 -
 capplets/file-types/category-names.h   | 16 ++++++++++++++++
 capplets/file-types/mime-types-model.c |  2 +-
 5 files changed, 21 insertions(+), 3 deletions(-)

commit f815a95d18add00b4cef26a788835ceaa121cde4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 20:00:34 2002 +0000

    Typo bug fix
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (get_gconf_base_name): Typo bug fix

 capplets/file-types/mime-type-info.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9b549da9bfbbe6edda934ae66ead0c7492a0924c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 19:54:56 2002 +0000

    Implement
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (get_gconf_base_name): Implement
    
        * mime-category-edit-dialog.c (fill_dialog): Disable
        use_category_toggle if this is a toplevel category
        (populate_application_list, default_action_changed_cb)
        (use_category_toggled_cb, update_sensitivity): Set widget
        sensitivity based on various values
    
        * mime-type-info.c (mime_type_info_load_all)
        (mime_category_info_load_all): Check use_[parent_]cat_loaded
        (mime_category_info_load_all): Override use_parent_category with
        FALSE if this is a toplevel category

 capplets/file-types/ChangeLog                    | 16 +++++++
 capplets/file-types/file-types-properties.glade  | 28 ++++++-----
 capplets/file-types/file-types-properties.glade1 | 14 ++++++
 capplets/file-types/mime-category-edit-dialog.c  | 47 +++++++++++++++----
 capplets/file-types/mime-type-info.c             | 60 +++++++++++++++++-------
 capplets/file-types/mime-type-info.h             |  2 +
 6 files changed, 129 insertions(+), 38 deletions(-)

commit e34f1df77499b467f27ea8dd024c008583c70710
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Sun Jan 27 19:52:23 2002 +0000

    Updated Malay Translation.
    
    2002-01-27  Hasbullah Bin Pit <sebol@ikhlas.com>
    
            * ms.po: Updated Malay Translation.

 po/ChangeLog |   4 +
 po/ms.po     | 358 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 332 insertions(+), 30 deletions(-)

commit 3e7ed33e4176289eca90646d6560b4705e44d68d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 19:09:37 2002 +0000

    Don't set subcategory ids unless use_parent_category is set
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (set_subcategory_ids): Don't set subcategory
        ids unless use_parent_category is set
        (mime_category_info_save, mime_category_info_load_all): Get/set
        use_parent_category
        (reduce_supported_app_list, find_possible_supported_apps): Check
        use_parent_category field

 capplets/file-types/ChangeLog        |  7 ++++++
 capplets/file-types/TODO_NOTES       |  1 -
 capplets/file-types/mime-type-info.c | 43 ++++++++++++++++++++++++++----------
 capplets/file-types/mime-type-info.h |  2 ++
 4 files changed, 40 insertions(+), 13 deletions(-)

commit 569a91f30c3907519868d2032bc8099a672c646d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 19:02:15 2002 +0000

    Use mime_category_info_get_full_name
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (choose_cat_cb): Use
        mime_category_info_get_full_name
    
        * mime-type-info.c (mime_type_info_load_all, mime_type_info_save):
        Rename override_category as use_category; give it the opposite
        meaning
        (reduce_supported_app_list, find_possible_supported_apps): Update
        according to the above
        (set_subcategory_ids): Implement
        (mime_category_info_save): Implement
        (mime_category_info_load_all): Implement
        (mime_category_info_get_full_name): Implement; copy from
        mime_type_info_get_category_name
        (mime_type_info_get_category_name): Call
        mime_category_info_get_full_name

 capplets/file-types/ChangeLog          |  10 +++
 capplets/file-types/mime-edit-dialog.c |   2 +-
 capplets/file-types/mime-type-info.c   | 152 ++++++++++++++++++++++++++++-----
 capplets/file-types/mime-type-info.h   |   1 +
 4 files changed, 143 insertions(+), 22 deletions(-)

commit c51fe98a6d7604bc2e403480cb727713eef21af2
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Jan 27 18:44:05 2002 +0000

    Rename as MAINTAINERCLEANFILES.
    
    2002-01-27  Richard Hestilow <hestilow@ximian.com>
    
        * Makefile.am (CLEANFILES): Rename as MAINTAINERCLEANFILES.

 ChangeLog   | 4 ++++
 Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit aade47f766344129a8589662a3ef2e275cc5a04c
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Jan 27 18:42:15 2002 +0000

    Include string.h. (create_form): Defer modifying default rc files until
    
    2002-01-27  Richard Hestilow  <hestilow@ximian.com>
    
        * control/control.c: Include string.h.
        (create_form): Defer modifying default rc files until property is set.
        (set_prop_cb): Set default files here instead.

 capplets/theme-switcher/ChangeLog         |  6 +++
 capplets/theme-switcher/control/control.c | 72 +++++++++++++++----------------
 2 files changed, 42 insertions(+), 36 deletions(-)

commit e83a9693b34f0a9a838d637f48ef1e11d6561ff0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 18:37:07 2002 +0000

    Rename override_category as use_category; give it the opposite meaning
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_load_all, mime_type_info_save):
        Rename override_category as use_category; give it the opposite
        meaning
        (reduce_supported_app_list, find_possible_supported_apps): Update
        according to the above

 capplets/file-types/ChangeLog          |  6 ++++++
 capplets/file-types/TODO_NOTES         |  1 -
 capplets/file-types/mime-edit-dialog.c |  6 +++---
 capplets/file-types/mime-type-info.c   | 24 ++++++++++++------------
 capplets/file-types/mime-type-info.h   |  2 +-
 5 files changed, 22 insertions(+), 17 deletions(-)

commit 5b53898068ffe7aa085cf188ed5f8708669d031d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 17:41:06 2002 +0000

    Set use_category_defaults_toggle (store_data): Set override_category
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (fill_dialog): Set
        use_category_defaults_toggle
        (store_data): Set override_category
        (mime_edit_dialog_init): Connect to
        use_category_defaults_toggled_cb
        (use_category_defaults_toggle_cb): Implement
        (default_action_changed_cb, populate_application_list)
        (populate_component_list): Call update_sensitivity; set
        sensitivity-controlling flags
        (update_sensitivity): Implement

 capplets/file-types/ChangeLog             | 19 +++++++++++
 capplets/file-types/TODO_NOTES            |  3 --
 capplets/file-types/mime-edit-dialog.c    | 55 ++++++++++++++++++++++++-------
 capplets/file-types/mime-type-info.c      | 17 +++++++++-
 capplets/file-types/mime-type-info.h      |  2 ++
 capplets/file-types/service-edit-dialog.c |  4 +++
 6 files changed, 85 insertions(+), 15 deletions(-)

commit e32444ef56d8b201ee8ff2589b9651d37ca276b6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 16:58:43 2002 +0000

    Call get_service_info to handle case where the service was created and not
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-edit-dialog.c (validate_data): Call get_service_info to
        handle case where the service was created and not yet committed
    
        * mime-type-info.c (get_mime_type_info, get_mime_type_info_int):
        Implement
    
        * mime-edit-dialog.c (validate_data): Check if the MIME type is
        already known and we are adding a new type
    
        * service-edit-dialog.c (service_edit_dialog_init): Change dialog
        title
    
        * file-types-capplet.c (edit_count_cb): Rename from count_cb
        (selection_changed_cb): Initialize count
        (selection_changed_cb): Iterate on remove_count_cb and use that to
        set the sensitivity of the remove button
        (create_dialog): Desensitize the remove button

 capplets/file-types/ChangeLog             | 18 +++++++++++++++++
 capplets/file-types/TODO_NOTES            |  1 -
 capplets/file-types/file-types-capplet.c  | 24 ++++++++++++++++++++---
 capplets/file-types/mime-edit-dialog.c    |  9 +++++++++
 capplets/file-types/mime-type-info.c      | 32 +++++++++++++++++++++++++++++++
 capplets/file-types/mime-type-info.h      |  4 +++-
 capplets/file-types/service-edit-dialog.c |  4 ++--
 capplets/file-types/service-info.c        | 12 ++++++++++++
 capplets/file-types/service-info.h        |  2 ++
 9 files changed, 99 insertions(+), 7 deletions(-)

commit ee69787f7d5a001b3d7a91173e5f7b496d4a5ae1
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 16:30:07 2002 +0000

    Set the parent field (model_entry_remove_child): Reset the parent field
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * model-entry.c (model_entry_insert_child): Set the parent field
        (model_entry_remove_child): Reset the parent field
        (model_entry_remove_child): Set up the path before removing the
        entry from the list

 capplets/file-types/ChangeLog     | 5 +++++
 capplets/file-types/model-entry.c | 9 +++++++--
 2 files changed, 12 insertions(+), 2 deletions(-)

commit 6a3797bfc57ac2e7552cec78ab1305e8ca12f60e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Jan 27 16:18:36 2002 +0000

    Accept model (get_services_category_entry): Accept model
    
    2002-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-info.c (load_all_services): Accept model
        (get_services_category_entry): Accept model
        (service_info_new): Accept model
        (get_services_category_entry): Set the parent pointer
    
        * model-entry.c (get_model_entries): Accept model
    
        * mime-type-info.c (mime_type_info_new, load_all_mime_types):
        Accept model
    
        * mime-edit-dialog.c (store_data): Don't perform notification
    
        * model-entry.c (model_entry_insert_child)
        (model_entry_remove_child): Perform notification here
    
        * mime-type-info.c (mime_type_info_set_category_name): Accept
        model for notification purposes
        (get_category): Ditto; notify the model that the new category has
        been created
    
        * mime-types-model.c (mime_types_model_iter_parent): Make the
        iterator invalid if the parent is the root node
    
        * mime-edit-dialog.c (collect_filename_extensions): Return NULL if
        there are no nodes in the tree at all

 capplets/file-types/ChangeLog             | 28 +++++++++++++++++++
 capplets/file-types/file-types-capplet.c  |  6 +----
 capplets/file-types/mime-edit-dialog.c    | 45 ++++++++++---------------------
 capplets/file-types/mime-type-info.c      | 37 ++++++++++++-------------
 capplets/file-types/mime-type-info.h      | 11 +++++---
 capplets/file-types/mime-types-model.c    | 14 +++++-----
 capplets/file-types/model-entry.c         | 29 ++++++++++++++++----
 capplets/file-types/model-entry.h         |  8 +++---
 capplets/file-types/service-edit-dialog.c | 16 +++++------
 capplets/file-types/service-info.c        | 15 ++++++-----
 capplets/file-types/service-info.h        |  9 ++++---
 11 files changed, 126 insertions(+), 92 deletions(-)

commit ffc7207157a514be5f95d569db8c74b88a981ef9
Author: Roy-Magne Mo <rmo@src.gnome.org>
Date:   Sun Jan 27 01:37:03 2002 +0000

    Updated Norwegian nynorsk translation

 po/ChangeLog |    4 +
 po/nn.po     | 4382 ++++++++++++++++------------------------------------------
 2 files changed, 1191 insertions(+), 3195 deletions(-)

commit 9fadbbf597406a418f46f26a9a34506d10e06a75
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Jan 26 20:03:42 2002 +0000

    Updated Slovenian translation

 po/sl.po | 2710 +++++++++++++++++++++++++-------------------------------------
 1 file changed, 1097 insertions(+), 1613 deletions(-)

commit 54d540dd47bf1c3a482192ecced66bdb1f6886d2
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Jan 26 18:30:32 2002 +0000

    Free the structure if the user clicks cancel and this is an add dialog
    
    2002-01-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-edit-dialog.c (response_cb): Free the structure if the
        user clicks cancel and this is an add dialog
    
        * mime-edit-dialog.c (response_cb): Free the structure if the user
        clicks cancel and this is an add dialog
    
        * service-info.c (load_all_services): Call
        model_entry_insert_child here
        (service_info_new): Don't call model_entry_insert_child
        (get_services_category_entry): Make this public
    
        * service-edit-dialog.c (store_data): Call
        model_entry_insert_child here

 capplets/file-types/ChangeLog                    | 21 ++++++++
 capplets/file-types/TODO_NOTES                   | 15 +++---
 capplets/file-types/file-types-capplet.c         | 20 +++-----
 capplets/file-types/file-types-properties.glade1 | 10 +---
 capplets/file-types/mime-edit-dialog.c           |  3 ++
 capplets/file-types/model-entry.c                | 40 +++++++++++++++
 capplets/file-types/model-entry.h                |  4 ++
 capplets/file-types/service-edit-dialog.c        |  4 ++
 capplets/file-types/service-info.c               | 64 ++++++++++++++++--------
 capplets/file-types/service-info.h               |  2 +
 10 files changed, 132 insertions(+), 51 deletions(-)

commit d8c77523243b3217d7e76100632a62b0abdc6a29
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Jan 26 16:24:45 2002 +0000

    Implement (find_possible_supported_apps): Implement
    
    2002-01-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (intersect_lists, reduce_supported_app_list)
        (mime_category_info_find_apps): Implement
        (find_possible_supported_apps): Implement
    
        * mime-category-edit-dialog.c (mime_category_edit_dialog_init):
        Use mime_category_edit_widget for the dialog source
    
        * model-entry.c (model_entry_remove_from_dirty_list): Accept a
        ModelEntry structure
    
        * mime-category-edit-dialog.c (store_data): Call
        model_entry_append_to_dirty_list
    
        * service-edit-dialog.c (store_data): Call
        model_entry_append_to_dirty_list

 capplets/file-types/ChangeLog                    |  67 ++++++
 capplets/file-types/TODO_NOTES                   |   8 +-
 capplets/file-types/file-types-capplet.c         |  29 ++-
 capplets/file-types/file-types-properties.glade  | 278 ++++++++++++++++++++++-
 capplets/file-types/file-types-properties.glade1 | 261 ++++++++++++++++++++-
 capplets/file-types/mime-category-edit-dialog.c  |  71 +++---
 capplets/file-types/mime-category-edit-dialog.h  |   4 +-
 capplets/file-types/mime-edit-dialog.c           |  56 ++---
 capplets/file-types/mime-edit-dialog.h           |   2 +-
 capplets/file-types/mime-type-info.c             | 183 ++++++++++-----
 capplets/file-types/mime-type-info.h             |  27 ++-
 capplets/file-types/mime-types-model.c           |   5 +-
 capplets/file-types/model-entry.c                |  45 ++++
 capplets/file-types/model-entry.h                |   6 +
 capplets/file-types/service-edit-dialog.c        | 167 ++++++++++++--
 capplets/file-types/service-edit-dialog.h        |   3 +-
 capplets/file-types/service-info.c               |  59 +----
 capplets/file-types/service-info.h               |   6 +-
 18 files changed, 1029 insertions(+), 248 deletions(-)

commit fbdb86b15163f81d218cf3e2595ac51e2a07798f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 25 20:55:44 2002 +0000

    Desensitize component select (populate_application_list): Desensitize
    
    2002-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-category-edit-dialog.c (fill_dialog): Desensitize component
        select
        (populate_application_list): Desensitize application select if
        there are no applications
        (fill_dialog): Flip logic on category defaults toggle sensitivity
    
        * service-edit-dialog.c (populate_app_list): Desensitize program
        select if there are no programs
        (fill_dialog): Use service_info_get_description for description
        entry

 capplets/file-types/ChangeLog                   | 11 +++++++++++
 capplets/file-types/TODO_NOTES                  |  2 ++
 capplets/file-types/mime-category-edit-dialog.c |  7 ++++++-
 capplets/file-types/service-edit-dialog.c       |  6 ++++--
 4 files changed, 23 insertions(+), 3 deletions(-)

commit e9c8acc492a840664cff94f259962178fa6284eb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 25 20:27:10 2002 +0000

    Construct an iterator if the one given is NULL (store_data): Don't notify
    
    2002-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (store_data): Construct an iterator if the
        one given is NULL
        (store_data): Don't notify row deletion if the object was not in
        the model to begin with
        (store_data): Don't fetch the old path if this is an add dialog
        (populate_component_list): Desensitize the component select box if
        there are no components
        (populate_application_list): Ditto
    
        * mime-type-info.c (mime_type_info_new): Initialize the parent
        field even if the mime type field is NULL
        (mime_type_info_get_category_name): Don't crash if the parent
        field is NULL
    
        * mime-edit-dialog.c (store_data): Generate random MIME type if
        not already set
        (validate_data): Implement. Make sure all the data entered are valid
        (response_cb): Call validate_data
    
        * file-types-capplet.c (remove_cb): Check the entry type and
        notify the tree of the deletion; update according to earlier
        changes
    
        * mime-edit-dialog.c: Add property is-add
        (setup_add_dialog): Implement
        (add_ext_cb): Clear the entry after adding
        (choose_cat_cb): Pack the tree in a scrolled window
        (choose_cat_cb): Set the minimum size on the dialog to 300x300

 capplets/file-types/ChangeLog                    |  29 ++++
 capplets/file-types/TODO_NOTES                   |   7 +-
 capplets/file-types/file-types-capplet.c         |  18 ++-
 capplets/file-types/file-types-properties.glade  | 102 +++++++++------
 capplets/file-types/file-types-properties.glade1 |  93 +++++++------
 capplets/file-types/mime-edit-dialog.c           | 160 ++++++++++++++++++++---
 capplets/file-types/mime-type-info.c             |   4 +-
 7 files changed, 299 insertions(+), 114 deletions(-)

commit 7b769d453f8258869ee7b652117e60fec96fb019
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 25 17:27:02 2002 +0000

    Free icon_path
    
    2002-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_free): Free icon_path
    
        * mime-edit-dialog.c (fill_dialog): Set icon entry with the full
        path of the icon
    
        * mime-type-info.c (mime_type_info_get_icon_path):
        Implement. Factor from get_pixbuf
    
        * mime-edit-dialog.c (store_data): Reset the icon pixbufs so that
        they get reloaded
    
        * mime-type-info.c (get_icon_pixbuf): Use
        gnome_vfs_icon_path_from_filename and install the nautilus/ hack
        from the old capplet *sigh*

 capplets/file-types/ChangeLog          | 17 ++++++
 capplets/file-types/mime-edit-dialog.c | 18 +++++--
 capplets/file-types/mime-type-info.c   | 94 ++++++++++++++++++++++------------
 capplets/file-types/mime-type-info.h   |  2 +
 4 files changed, 93 insertions(+), 38 deletions(-)

commit 1a3c89e42007b1a3234c8805d8f25b49c1bba23e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 25 16:12:01 2002 +0000

    Code cleanup; create our own model rather than using GtkTreeStore Update
    
    2002-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.[ch], mime-types-model.[ch], service-info.[ch]:
        Code cleanup; create our own model rather than using GtkTreeStore
        * All: Update to reflect the above

 capplets/file-types/ChangeLog                   |   8 +
 capplets/file-types/Makefile.am                 |   1 +
 capplets/file-types/TODO_NOTES                  |  14 +-
 capplets/file-types/file-types-capplet.c        |  67 +-
 capplets/file-types/mime-category-edit-dialog.c |  34 +-
 capplets/file-types/mime-edit-dialog.c          | 130 ++--
 capplets/file-types/mime-edit-dialog.h          |   5 +-
 capplets/file-types/mime-type-info.c            | 432 +++++++++----
 capplets/file-types/mime-type-info.h            |  49 +-
 capplets/file-types/mime-types-model.c          | 811 ++++++++++++++----------
 capplets/file-types/mime-types-model.h          |  77 ++-
 capplets/file-types/model-entry.c               | 127 ++++
 capplets/file-types/model-entry.h               |  66 ++
 capplets/file-types/service-edit-dialog.c       |  55 +-
 capplets/file-types/service-edit-dialog.h       |   3 +-
 capplets/file-types/service-info.c              | 289 ++++++---
 capplets/file-types/service-info.h              |  23 +-
 17 files changed, 1456 insertions(+), 735 deletions(-)

commit 7e937b1ca27f4f069e4f69657af40f4f51968c89
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Jan 22 21:29:21 2002 +0000

    Keep ACLOCAL_FLAGS around, and actually use the gnome-vfs cflags/libs.
    
    Tue Jan 22 16:20:21 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: Keep ACLOCAL_FLAGS around, and actually use the
        gnome-vfs cflags/libs.

 ChangeLog    | 5 +++++
 configure.in | 5 ++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit be83a3ec51cdd9ec8cf744ebecbe8deaee2a7841
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 22 03:13:30 2002 +0000

    Remerge control-center-plus.
    
    2002-01-21  Richard Hestilow <hestilow@ximian.com>
    
        * Remerge control-center-plus.

 ChangeLog                                          |    4 +
 capplets/Makefile.am                               |    4 +-
 capplets/desktop-links/Makefile.am                 |   72 +-
 capplets/desktop-links/screensaver.desktop.in      |    8 -
 capplets/file-types/Makefile.am                    |    4 +-
 capplets/file-types/libuuid/Makefile.am            |    2 +-
 capplets/screensaver/Makefile.am                   |   33 +-
 capplets/screensaver/XScreenSaver_ad.h             |  952 -----------
 capplets/screensaver/blank-screen.png              |  Bin 372 -> 0 bytes
 capplets/screensaver/checked-disabled.xpm          |   22 -
 capplets/screensaver/checked.xpm                   |   22 -
 capplets/screensaver/daemon.c                      |   77 -
 capplets/screensaver/daemon.h                      |   34 -
 capplets/screensaver/expr.c                        |  363 ----
 capplets/screensaver/expr.h                        |   36 -
 capplets/screensaver/gnome-startup.c               |   45 -
 capplets/screensaver/gnome-startup.h               |   26 -
 capplets/screensaver/main.c                        |  263 ---
 capplets/screensaver/no-hack.png                   |  Bin 2250 -> 0 bytes
 capplets/screensaver/pref-file.c                   |  660 --------
 capplets/screensaver/pref-file.h                   |   33 -
 capplets/screensaver/preferences.c                 |  910 ----------
 capplets/screensaver/preferences.h                 |  129 --
 capplets/screensaver/prefs-widget.c                | 1064 ------------
 capplets/screensaver/prefs-widget.h                |   76 -
 capplets/screensaver/preview.c                     |  457 -----
 capplets/screensaver/preview.h                     |   39 -
 capplets/screensaver/rc-parse.c                    |  634 -------
 capplets/screensaver/rc-parse.h                    |   52 -
 capplets/screensaver/resources.c                   |  158 --
 capplets/screensaver/resources.h                   |   37 -
 capplets/screensaver/screensaver-prefs-dialog.c    | 1779 --------------------
 capplets/screensaver/screensaver-prefs-dialog.h    |   84 -
 capplets/screensaver/screensaver-properties.glade  | 1041 ------------
 capplets/screensaver/screensaver.desktop.in        |    2 +-
 capplets/screensaver/screensavers/.cvsignore       |   10 -
 capplets/screensaver/screensavers/3d_clock.xml     |   23 -
 capplets/screensaver/screensavers/Makefile.am      |  158 --
 capplets/screensaver/screensavers/README           |   97 --
 capplets/screensaver/screensavers/TODO             |    3 -
 capplets/screensaver/screensavers/ant.xml          |   75 -
 capplets/screensaver/screensavers/atlantis.xml     |    8 -
 capplets/screensaver/screensavers/attraction.xml   |   48 -
 capplets/screensaver/screensavers/blaster.xml      |    8 -
 capplets/screensaver/screensavers/blitspin.xml     |   22 -
 capplets/screensaver/screensavers/bouboule.xml     |   26 -
 capplets/screensaver/screensavers/braid.xml        |   15 -
 capplets/screensaver/screensavers/bsod.xml         |   14 -
 capplets/screensaver/screensavers/bubble3d.xml     |    8 -
 capplets/screensaver/screensavers/bubbles.xml      |   24 -
 capplets/screensaver/screensavers/bumps.xml        |    8 -
 capplets/screensaver/screensavers/cage.xml         |    8 -
 capplets/screensaver/screensavers/ccurve.xml       |    8 -
 capplets/screensaver/screensavers/compass.xml      |   17 -
 capplets/screensaver/screensavers/coral.xml        |   20 -
 capplets/screensaver/screensavers/cosmos.xml       |    8 -
 capplets/screensaver/screensavers/critical.xml     |    8 -
 capplets/screensaver/screensavers/crystal.xml      |   32 -
 capplets/screensaver/screensavers/cynosure.xml     |   23 -
 capplets/screensaver/screensavers/dangerball.xml   |    8 -
 capplets/screensaver/screensavers/decayscreen.png  |  Bin 23608 -> 0 bytes
 capplets/screensaver/screensavers/decayscreen.xml  |   19 -
 capplets/screensaver/screensavers/deco.xml         |   18 -
 capplets/screensaver/screensavers/deluxe.xml       |    8 -
 capplets/screensaver/screensavers/demon.xml        |    8 -
 capplets/screensaver/screensavers/discrete.xml     |   23 -
 capplets/screensaver/screensavers/distort.png      |  Bin 58680 -> 0 bytes
 capplets/screensaver/screensavers/distort.xml      |   10 -
 capplets/screensaver/screensavers/drift.xml        |   29 -
 .../screensaver/screensavers/electricsheep.xml     |   10 -
 capplets/screensaver/screensavers/epicycle.xml     |   19 -
 capplets/screensaver/screensavers/extrusion.xml    |    6 -
 capplets/screensaver/screensavers/fadeplot.xml     |   27 -
 capplets/screensaver/screensavers/flag.xml         |   51 -
 capplets/screensaver/screensavers/flame.xml        |   28 -
 capplets/screensaver/screensavers/flow.xml         |    8 -
 capplets/screensaver/screensavers/forest.xml       |   24 -
 capplets/screensaver/screensavers/galaxy.xml       |    8 -
 capplets/screensaver/screensavers/gears.xml        |    9 -
 capplets/screensaver/screensavers/gflux.xml        |    8 -
 capplets/screensaver/screensavers/glplanet.xml     |    8 -
 capplets/screensaver/screensavers/gltext.xml       |    9 -
 capplets/screensaver/screensavers/goban.xml        |    6 -
 capplets/screensaver/screensavers/goop.xml         |   27 -
 capplets/screensaver/screensavers/grav.xml         |   26 -
 capplets/screensaver/screensavers/greynetic.xml    |   15 -
 capplets/screensaver/screensavers/halo.xml         |   32 -
 capplets/screensaver/screensavers/helix.xml        |   15 -
 capplets/screensaver/screensavers/hopalong.xml     |   23 -
 capplets/screensaver/screensavers/hyperball.xml    |    8 -
 capplets/screensaver/screensavers/hypercube.xml    |   19 -
 capplets/screensaver/screensavers/ifs.xml          |   15 -
 capplets/screensaver/screensavers/imsmap.xml       |   10 -
 capplets/screensaver/screensavers/interference.xml |    8 -
 capplets/screensaver/screensavers/jigsaw.png       |  Bin 15194 -> 0 bytes
 capplets/screensaver/screensavers/jigsaw.xml       |   14 -
 capplets/screensaver/screensavers/julia.xml        |   23 -
 capplets/screensaver/screensavers/kaleidescope.xml |   24 -
 capplets/screensaver/screensavers/kumppa.xml       |    8 -
 capplets/screensaver/screensavers/lament.xml       |    8 -
 capplets/screensaver/screensavers/laser.xml        |   19 -
 capplets/screensaver/screensavers/lightning.xml    |   15 -
 capplets/screensaver/screensavers/lisa.xml         |   27 -
 capplets/screensaver/screensavers/lissie.xml       |    8 -
 capplets/screensaver/screensavers/lmorph.xml       |   26 -
 capplets/screensaver/screensavers/loop.xml         |    8 -
 capplets/screensaver/screensavers/magic.pl.in      |  505 ------
 capplets/screensaver/screensavers/maze.xml         |   28 -
 capplets/screensaver/screensavers/moebius.xml      |    8 -
 capplets/screensaver/screensavers/moire.xml        |   23 -
 capplets/screensaver/screensavers/moire2.xml       |    8 -
 capplets/screensaver/screensavers/molecule.xml     |    9 -
 capplets/screensaver/screensavers/morph3d.xml      |    8 -
 capplets/screensaver/screensavers/mountain.xml     |    8 -
 capplets/screensaver/screensavers/munch.xml        |   28 -
 capplets/screensaver/screensavers/nerverot.xml     |    9 -
 capplets/screensaver/screensavers/noseguy.xml      |    8 -
 capplets/screensaver/screensavers/pedal.xml        |   24 -
 capplets/screensaver/screensavers/penetrate.xml    |    8 -
 capplets/screensaver/screensavers/penrose.xml      |   12 -
 capplets/screensaver/screensavers/petri.xml        |    9 -
 capplets/screensaver/screensavers/phosphor.xml     |    8 -
 capplets/screensaver/screensavers/pipes.xml        |    8 -
 capplets/screensaver/screensavers/pulsar.xml       |    9 -
 capplets/screensaver/screensavers/pyro.xml         |   20 -
 capplets/screensaver/screensavers/qix.xml          |   50 -
 capplets/screensaver/screensavers/rd-bomb.xml      |    9 -
 capplets/screensaver/screensavers/ripples.xml      |   10 -
 capplets/screensaver/screensavers/rocks.xml        |    8 -
 capplets/screensaver/screensavers/rorschach.xml    |   12 -
 capplets/screensaver/screensavers/rotor.xml        |    8 -
 capplets/screensaver/screensavers/rotzoomer.xml    |   10 -
 capplets/screensaver/screensavers/rubik.xml        |    8 -
 capplets/screensaver/screensavers/rubiks_cube.xml  |    7 -
 capplets/screensaver/screensavers/shadebobs.xml    |    8 -
 capplets/screensaver/screensavers/sierpinski.xml   |   19 -
 capplets/screensaver/screensavers/sierpinski3d.xml |    8 -
 capplets/screensaver/screensavers/slidescreen.xml  |    8 -
 capplets/screensaver/screensavers/slip.png         |  Bin 39859 -> 0 bytes
 capplets/screensaver/screensavers/slip.xml         |    8 -
 capplets/screensaver/screensavers/sonar.xml        |    8 -
 capplets/screensaver/screensavers/speedmine.xml    |   16 -
 capplets/screensaver/screensavers/sphere.xml       |    8 -
 capplets/screensaver/screensavers/spiral.xml       |   27 -
 capplets/screensaver/screensavers/spotlight.xml    |    8 -
 capplets/screensaver/screensavers/sproingies.xml   |    8 -
 capplets/screensaver/screensavers/squiral.xml      |    8 -
 capplets/screensaver/screensavers/ssystem.xml      |    6 -
 capplets/screensaver/screensavers/stairs.xml       |    8 -
 capplets/screensaver/screensavers/starfish.xml     |   31 -
 capplets/screensaver/screensavers/starwars.xml     |    8 -
 capplets/screensaver/screensavers/stonerview.xml   |    8 -
 capplets/screensaver/screensavers/strange.xml      |    8 -
 .../screensaver/screensavers/superquadrics.xml     |    8 -
 capplets/screensaver/screensavers/swirl.xml        |    8 -
 capplets/screensaver/screensavers/t3d.xml          |    8 -
 capplets/screensaver/screensavers/triangle.xml     |   15 -
 capplets/screensaver/screensavers/truchet.xml      |    8 -
 capplets/screensaver/screensavers/vidwhacker.png   |  Bin 103023 -> 0 bytes
 capplets/screensaver/screensavers/vidwhacker.xml   |   11 -
 capplets/screensaver/screensavers/vines.xml        |   15 -
 capplets/screensaver/screensavers/wander.xml       |    9 -
 capplets/screensaver/screensavers/webcollage.png   |  Bin 138943 -> 0 bytes
 capplets/screensaver/screensavers/webcollage.xml   |   11 -
 .../screensaver/screensavers/whirlwindwarp.xml     |    8 -
 capplets/screensaver/screensavers/whirlygig.xml    |    8 -
 capplets/screensaver/screensavers/worm.xml         |    8 -
 capplets/screensaver/screensavers/xaos.xml         |    6 -
 capplets/screensaver/screensavers/xdaliclock.xml   |    6 -
 capplets/screensaver/screensavers/xearth.xml       |    6 -
 capplets/screensaver/screensavers/xfishtank.xml    |    6 -
 capplets/screensaver/screensavers/xflame.xml       |    8 -
 capplets/screensaver/screensavers/xjack.xml        |    8 -
 capplets/screensaver/screensavers/xlyap.xml        |    8 -
 capplets/screensaver/screensavers/xmatrix.xml      |    8 -
 capplets/screensaver/screensavers/xmountains.xml   |    9 -
 capplets/screensaver/screensavers/xrayswarm.xml    |    8 -
 capplets/screensaver/screensavers/xroger.xml       |   11 -
 capplets/screensaver/screensavers/xsnow.xml        |    6 -
 capplets/screensaver/screensavers/xspirograph.xml  |    8 -
 capplets/screensaver/screensavers/xteevee.xml      |    8 -
 capplets/screensaver/screensavers/zoom.xml         |    9 -
 capplets/screensaver/selection-dialog.c            |  306 ----
 capplets/screensaver/selection-dialog.h            |   61 -
 capplets/screensaver/unchecked-disabled.xpm        |   22 -
 capplets/screensaver/unchecked.xpm                 |   22 -
 capplets/theme-switcher/Makefile.am                |    4 +-
 capplets/theme-switcher/control/Makefile.am        |    4 +-
 capplets/ui-properties/Makefile.am                 |    4 +-
 configure.in                                       |   14 +
 po/POTFILES.in                                     |   36 +
 191 files changed, 135 insertions(+), 12150 deletions(-)

commit 836434f1f05c201d413f0fcf94e8ba0b23641920
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 21 22:44:12 2002 +0000

    Use nautilus as the shell if it is already running.
    
    2002-01-21  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c: Use nautilus as the shell if it is already running.

 control-center/ChangeLog |  4 +++
 control-center/main.c    | 72 ++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 74 insertions(+), 2 deletions(-)

commit 6b980e6eaa3ff3a51a612aa8c26a43fe75b1ff15
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon Jan 21 21:57:50 2002 +0000

    Add support for changing themes.
    
    2002-01-21  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-settings-xsettings.c: Add support for changing themes.

 gnome-settings-daemon/ChangeLog                  | 4 ++++
 gnome-settings-daemon/gnome-settings-xsettings.c | 5 ++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit a080e40edcc3786e416ba0245364b55d2fb129ad
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon Jan 21 21:46:55 2002 +0000

    Get the theme name right.
    
    2002-01-21  Anders Carlsson  <andersca@gnu.org>
    
        * main.c: Get the theme name right.

 capplets/theme-switcher/ChangeLog |  2 ++
 capplets/theme-switcher/main.c    | 22 ++++++++++++++++++----
 2 files changed, 20 insertions(+), 4 deletions(-)

commit 95e2f514bd0666a38b54d9b153f7a7e482d38b7f
Author: Hasbullah Bin Pit <sebol@ikhlas.com>
Date:   Mon Jan 21 17:40:32 2002 +0000

    Added Malay (ms)to ALL_LINGUAS. Added Malay Translation. Hmmm, I'm
    
    2002-01-21  Hasbullah Bin Pit <sebol@ikhlas.com>
    
    * configure.ini: Added Malay (ms)to ALL_LINGUAS.
    * po/ms.po: Added Malay Translation.
    Hmmm, I'm suprised, the string number  reduced dramatically...

 ChangeLog    |   5 ++
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/ms.po     | 251 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 261 insertions(+), 1 deletion(-)

commit cae7461c17b2d46736714e6fc6d00f049e22d2df
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon Jan 21 17:04:44 2002 +0000

    Use a GtkTreeView instead of a clist.
    
    2002-01-21  Anders Carlsson  <andersca@gnu.org>
    
        * control/control.c (create_form): Use a GtkTreeView instead of a
        clist.

 capplets/theme-switcher/ChangeLog         |  5 +++
 capplets/theme-switcher/control/control.c | 68 +++++++++++++++++++------------
 2 files changed, 48 insertions(+), 25 deletions(-)

commit 003cade85b094592d513d74a02e5bec34520b81d
Author: Anders Carlsson <andersca@gnu.org>
Date:   Mon Jan 21 14:17:03 2002 +0000

    motion_threshold is supposed to be an int.
    
    2002-01-21  Anders Carlsson  <andersca@gnu.org>
    
        * schemas/peripherals.schemas: motion_threshold is supposed
        to be an int.

 ChangeLog                   | 5 +++++
 schemas/peripherals.schemas | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 958dd10596e693b5007dab203d08d3bcc1a54e4b
Author: Seth Nickell <seth@src.gnome.org>
Date:   Mon Jan 21 08:31:28 2002 +0000

    d'oh!

 control-center/ChangeLog          | 6 ------
 control-center/gnomecc.desktop.in | 2 +-
 2 files changed, 1 insertion(+), 7 deletions(-)

commit d5d2f1de7b89d2af1a9d5a82e78cb1b172dd432c
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 21 07:16:19 2002 +0000

    Complete rewrite.
    
    2002-01-21  Richard Hestilow  <hestilow@ximian.com>
    
        * Complete rewrite.

 capplets/theme-switcher/ChangeLog                  |   4 +
 capplets/theme-switcher/Makefile.am                |  21 +-
 capplets/theme-switcher/da.h                       |  76 ---
 capplets/theme-switcher/da.h-67648                 |  76 ---
 capplets/theme-switcher/demo.c                     | 219 -------
 capplets/theme-switcher/demo.c-45827               | 219 -------
 capplets/theme-switcher/file.c                     | 535 -----------------
 capplets/theme-switcher/file.c-98078               | 535 -----------------
 capplets/theme-switcher/globals.c                  |   5 -
 capplets/theme-switcher/globals.c-53032            |   5 -
 .../theme-switcher/gtk-theme-selector.desktop.in   |   2 +-
 .../gtk-theme-selector.desktop.in.in               |   2 +-
 capplets/theme-switcher/gtk-theme-selector.glade   | 140 +++++
 capplets/theme-switcher/gui.c                      | 650 ---------------------
 capplets/theme-switcher/gui.c-6060                 | 650 ---------------------
 capplets/theme-switcher/install.c                  |  82 ---
 capplets/theme-switcher/install.c-64828            |  82 ---
 capplets/theme-switcher/lister.c                   | 218 -------
 capplets/theme-switcher/lister.c-42011             | 218 -------
 capplets/theme-switcher/main.c                     | 250 +++++++-
 capplets/theme-switcher/signals.c                  |  14 -
 capplets/theme-switcher/signals.c-20981            |  14 -
 22 files changed, 385 insertions(+), 3632 deletions(-)

commit d56503be2a5e237775965ac199b0ba5c43cd3874
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Jan 21 06:38:45 2002 +0000

    Move locate_pointer out.
    
    Mon Jan 21 01:29:57 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-keyboard.c: Move locate_pointer out.
    
        * gnome-settings-mouse.c: Move locate_pointer in.  Clean up code.
        Remove print statements.

 capplets/common/gconf-property-editor.c          |   3 +-
 capplets/keyboard/gnome-keyboard-properties.c    |  25 ++---
 gnome-settings-daemon/ChangeLog                  |   7 ++
 gnome-settings-daemon/gnome-settings-keyboard.c  | 130 -----------------------
 gnome-settings-daemon/gnome-settings-mouse.c     | 111 +++++++++++++++++--
 gnome-settings-daemon/gnome-settings-xsettings.c |   1 -
 6 files changed, 122 insertions(+), 155 deletions(-)

commit 5a8613bc689a69dd532c0013e0475910b39cf292
Author: Duarte Loreto <happyguy_pr@hotmail.com>
Date:   Sat Jan 19 18:14:47 2002 +0000

    Updated Portuguese translation.
    
    2002-01-19  Duarte Loreto <happyguy_pr@hotmail.com>
    
            * pt.po: Updated Portuguese translation.

 po/ChangeLog |    4 +
 po/pt.po     | 2481 ++++++++++++++--------------------------------------------
 2 files changed, 605 insertions(+), 1880 deletions(-)

commit 4669c9317d7bb9efb81bc6b8fcf37d597523eca0
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Jan 19 15:18:33 2002 +0000

    Install icons into the pixmaps directory so the Panel & Nautilus will pick
    
    2002-01-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Install icons into the pixmaps directory so the Panel
        & Nautilus will pick up on them.

 capplets/sound/ChangeLog   | 7 +++++++
 capplets/sound/Makefile.am | 3 +++
 2 files changed, 10 insertions(+)

commit 58be34e064c9377b5a43e13b17dc51b716938893
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Jan 19 15:16:24 2002 +0000

    Install the icon into the standard pixmaps dir so the Panel & Nautilus
    
    2002-01-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Install the icon into the standard pixmaps dir so
        the Panel & Nautilus will pick up on it.

 capplets/screensaver/ChangeLog   | 7 +++++++
 capplets/screensaver/Makefile.am | 3 +++
 2 files changed, 10 insertions(+)

commit d5ee896e9f4774333c535f6e00017452e90393bd
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Jan 19 15:15:43 2002 +0000

    Install the icon into the pixmaps dir so the Panel & Nautilus will pick up
    
    2002-01-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Install the icon into the pixmaps dir so
        the Panel & Nautilus will pick up on it.

 capplets/default-applications/ChangeLog   | 7 +++++++
 capplets/default-applications/Makefile.am | 3 +++
 2 files changed, 10 insertions(+)

commit 9a79b122dc102781930632d86df3c43669289462
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Jan 19 15:14:50 2002 +0000

    Install icon into the standard pixmaps directory so that Panel & Nautilus
    
    2002-01-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
    
        Install icon into the standard pixmaps directory
        so that Panel & Nautilus will pick up on it.

 capplets/keyboard/ChangeLog   | 7 +++++++
 capplets/keyboard/Makefile.am | 3 +++
 capplets/mouse/Makefile.am    | 4 ++++
 3 files changed, 14 insertions(+)

commit d70db57e129243fd61609652f3a288ef4d9a4bf7
Author: Seth Nickell <snickell@stanford.edu>
Date:   Sat Jan 19 15:13:25 2002 +0000

    Start nautilus at the preference:/// URI.
    
    2002-01-19  Seth Nickell  <snickell@stanford.edu>
    
        * gnomecc.desktop.in:
    
        Start nautilus at the preference:/// URI.

 control-center/ChangeLog          | 6 ++++++
 control-center/gnomecc.desktop.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 8b6718bbf286943f87463087d2736567885f949e
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Fri Jan 18 16:34:12 2002 +0000

    Updated Ukrainian translation

 po/uk.po | 4346 ++------------------------------------------------------------
 1 file changed, 113 insertions(+), 4233 deletions(-)

commit 0ece97fc84bab1508874bc61531d64f759ccc99d
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Thu Jan 17 21:04:46 2002 +0000

    fixed AA of the wrench

 ChangeLog           |   4 ++++
 control-center.png  | Bin 3757 -> 3464 bytes
 control-center2.png | Bin 3757 -> 3464 bytes
 3 files changed, 4 insertions(+)

commit 6d98c6de31c8ab71b470de48a062ea91796d5fe9
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Thu Jan 17 21:02:20 2002 +0000

    fix the icon anti-aliasing

 control-center/ChangeLog          |   4 ++++
 control-center/control-center.png | Bin 2125 -> 2068 bytes
 2 files changed, 4 insertions(+)

commit f705ff55400b002a180c46dfa1f289a6cb015692
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Thu Jan 17 20:58:51 2002 +0000

    tweak the icon a bit

 capplets/background/ChangeLog              |   4 ++++
 capplets/background/background-capplet.png | Bin 4235 -> 3977 bytes
 2 files changed, 4 insertions(+)

commit 247a17cc8e52174e0895bddfba81a0bb8ba2ecf7
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 16 17:29:50 2002 +0000

    file config-screensaver.sgml was initially added on branch gnome-1-4-branch.

commit 2f8ce9b2efbe02c65f0f01098b1a5afb9c440ecf
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 16 16:49:12 2002 +0000

    *** empty log message ***

 0 files changed

commit 5ece398f4b987d82e91beb4a29fd5d23c2a088ec
Author: Kevin Breit <mrproper@ximian.com>
Date:   Wed Jan 16 16:48:46 2002 +0000

    Removed this file
    
    2002-01-16  Kevin Breit  <mrproper@ximian.com>
    
        * help/C/cinnamon-control-center.sgml: Removed this file

 ChangeLog                        |  2 ++
 help/C/cinnamon-control-center.sgml | 26 --------------------------
 2 files changed, 2 insertions(+), 26 deletions(-)

commit a6900e27c984a29bff2ff7185287939dc7fd552f
Author: Kevin Breit <mrproper@ximian.com>
Date:   Wed Jan 16 16:47:55 2002 +0000

    Added this file
    
    2002-01-16  Kevin Breit  <mrproper@ximian.com>
    
        * help/C/control-center.sgml: Added this file

 ChangeLog                  |   4 +
 help/C/control-center.sgml | 359 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 363 insertions(+)

commit 7113193d0c9b48f40c737a1b8253492aef745511
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Jan 16 05:43:18 2002 +0000

    clean up directory

 capplets/default-applications/.cvsignore           |   2 +-
 capplets/default-applications/callbacks.c          | 289 --------
 capplets/default-applications/callbacks.h          |  94 ---
 .../default-application-properties.c               | 733 ---------------------
 capplets/default-applications/defaults.h           |  42 --
 .../gnome-default-applications-properties.glade    |   2 +-
 capplets/default-applications/interface.c          | 718 --------------------
 capplets/default-applications/interface.h          |   7 -
 capplets/default-applications/support.c            | 126 ----
 capplets/default-applications/support.h            |  32 -
 10 files changed, 2 insertions(+), 2043 deletions(-)

commit b3ef023780c698af479515b6516264d22600088d
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Tue Jan 15 23:28:23 2002 +0000

    Forgot to add this.

 capplets/desktop-links/screensaver.desktop.in | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 9c985fe0cd01c6f6d4b9fb6cae8c27fa45ab18b4
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 15 20:45:34 2002 +0000

    .
    
    2002-01-15  Richard Hestilow <hestilow@ximian.com>
    
        * (Many "make distcheck" fixes).

 ChangeLog                                          |   4 +
 capplets/Makefile.am                               |   2 +-
 capplets/background/Makefile.am                    |   5 +-
 capplets/default-applications/Makefile.am          |   5 +-
 capplets/desktop-links/Makefile.am                 |   2 +-
 capplets/file-types/Makefile.am                    |   5 +-
 capplets/keyboard/Makefile.am                      |   5 +-
 capplets/mouse/Makefile.am                         |   5 +-
 capplets/screensaver/main.c                        |   2 -
 capplets/sound/Makefile.am                         |   5 +-
 capplets/theme-switcher/Makefile.am                |  11 +-
 .../theme-switcher/gtk-theme-selector.desktop.in   |   7 +
 capplets/ui-properties/Makefile.am                 |   8 +-
 capplets/ui-properties/behavior.desktop.in         |   7 +
 configure.in                                       |   5 +-
 po/POTFILES.in                                     | 167 ++-------------------
 po/az.po                                           |   4 +-
 po/ca.po                                           |   4 +-
 po/cs.po                                           |   4 +-
 po/da.po                                           |   4 +-
 po/de.po                                           |   4 +-
 po/el.po                                           |   4 +-
 po/es.po                                           |   4 +-
 po/fi.po                                           |   4 +-
 po/fr.po                                           |   4 +-
 po/ga.po                                           |   4 +-
 po/hr.po                                           |   4 +-
 po/ja.po                                           |   4 +-
 po/lv.po                                           |   4 +-
 po/nn.po                                           |   4 +-
 po/no.po                                           |   4 +-
 po/pl.po                                           |   4 +-
 po/pt_BR.po                                        |   4 +-
 po/ru.po                                           |   4 +-
 po/sk.po                                           |   4 +-
 po/sl.po                                           |   4 +-
 po/sv.po                                           |   4 +-
 po/tr.po                                           |   4 +-
 po/uk.po                                           |   4 +-
 po/wa.po                                           |   4 +-
 po/zh_CN.po                                        |   4 +-
 po/zh_TW.po                                        |   4 +-
 42 files changed, 113 insertions(+), 236 deletions(-)

commit d3ed7b29b2455d8e22c15f8f04c8ac9f0e463e92
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 21:30:29 2002 +0000

    Updates to pass distcheck

 ChangeLog                  |   2 +
 Makefile.am                |   6 +-
 capplets/Makefile.am       |   2 +-
 control-center/ChangeLog   |   1 +
 control-center/Makefile.am |  24 +-----
 po/az.po                   |   2 +-
 po/ca.po                   |   2 +-
 po/cs.po                   |   2 +-
 po/da.po                   |   2 +-
 po/de.po                   |   2 +-
 po/el.po                   |   2 +-
 po/es.po                   |   2 +-
 po/fi.po                   |   2 +-
 po/fr.po                   |   2 +-
 po/ga.po                   |   2 +-
 po/hr.po                   |   2 +-
 po/ja.po                   |   2 +-
 po/lv.po                   |   2 +-
 po/nn.po                   |   2 +-
 po/no.po                   |   2 +-
 po/pl.po                   |   2 +-
 po/pt_BR.po                | 199 +--------------------------------------------
 po/ru.po                   |   2 +-
 po/sk.po                   |   2 +-
 po/sl.po                   |   2 +-
 po/sv.po                   |   2 +-
 po/tr.po                   |   2 +-
 po/uk.po                   |   2 +-
 po/wa.po                   |   2 +-
 po/zh_CN.po                |   2 +-
 po/zh_TW.po                |   2 +-
 31 files changed, 36 insertions(+), 248 deletions(-)

commit 5aa592f68b95cc292cd6485fc9ddc0e4a5327f7b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 21:13:08 2002 +0000

    Compile common first
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (always_built_SUBDIRS): Compile common first

 ChangeLog            | 2 ++
 capplets/Makefile.am | 6 +++---
 2 files changed, 5 insertions(+), 3 deletions(-)

commit 9bf50c9911b7adc02b66ab0062db511d59e53e87
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 21:12:20 2002 +0000

    Update

 capplets/default-applications/ChangeLog   | 1 +
 capplets/default-applications/Makefile.am | 4 +---
 2 files changed, 2 insertions(+), 3 deletions(-)

commit 33a1451ddc859bc43173d063b4bb17677aff3c59
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jan 14 21:06:03 2002 +0000

    add file so make dist can get it

 capplets/default-applications/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit b75d11e4cb39e5f06d37dc35a6c2dd199cb5486f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 20:57:16 2002 +0000

    Update (desktopfilesdir): Update
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am ($(desktop_in_files)): Update
        (desktopfilesdir): Update
    
        * Sawfish/Makefile.am (pixmapsdir): Update

 capplets/desktop-links/Sawfish/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 48f2f6eea0783d2dacb9a95701e34b1124146c0a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 20:54:10 2002 +0000

    Use control-center-2 for data directory
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (INSTALL_GCONF_CONFIG_SOURCE): Use control-center-2
        for data directory

 ChangeLog    |  5 +++++
 configure.in | 10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 4ca796c91ecd6d142b3c642089dc04ab2b69d21c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 20:50:44 2002 +0000

    Rename binary gnome2-control-center Update
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (bin_PROGRAMS): Rename binary gnome2-control-center
        Update

 control-center/ChangeLog   |  1 +
 control-center/Makefile.am | 14 +++++++-------
 control-center/main.c      |  4 +++-
 3 files changed, 11 insertions(+), 8 deletions(-)

commit 04828ee8cc5e4da816b2f39da709e0da81d6e1dd
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jan 14 20:34:16 2002 +0000

    forgot a file

 ...gnome-default-applications-properties-structs.c | 80 ++++++++++++++++++++++
 .../gnome-default-applications-properties.c        |  2 +-
 2 files changed, 81 insertions(+), 1 deletion(-)

commit 4c56d1ef3f48652e1a5d87cf6f349dd1e9f979ee
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 20:29:51 2002 +0000

    Update Makefile.am

 capplets/default-applications/ChangeLog   | 1 +
 capplets/default-applications/Makefile.am | 4 ++--
 capplets/sound/Makefile.am                | 6 +++---
 3 files changed, 6 insertions(+), 5 deletions(-)

commit a4e4c5cc88483bf43efa3aa0881e0ee7ccb8e760
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 20:26:33 2002 +0000

    Update .desktop.in scheme

 capplets/file-types/file-types.desktop.in          | 7 +++++++
 capplets/file-types/file-types.desktop.in.in       | 7 -------
 capplets/file-types/file-types.desktop.in.in-10478 | 7 -------
 3 files changed, 7 insertions(+), 14 deletions(-)

commit a02f5d7b53f8693e1c7279bd59ab2b7fe5e7916f
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jan 14 20:24:46 2002 +0000

    Rewritten.  Works with new gconf.  Fun Fun.

 capplets/default-applications/Makefile.am          |   18 +-
 .../gnome-default-applications-properties.c        |  643 ++++++++++
 .../gnome-default-applications-properties.glade    | 1326 ++++++++++++++++++++
 3 files changed, 1978 insertions(+), 9 deletions(-)

commit 2f6e28dcddd80eecfa51fc32edbd3101176e60b6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 19:48:43 2002 +0000

    Update to be parallel installable with gnome2-* binary name convention

 capplets/file-types/Makefile.am     | 6 +++---
 capplets/theme-switcher/Makefile.am | 6 +++---
 capplets/ui-properties/Makefile.am  | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

commit ce01a530be871ede7421d8d6fc90ecb41f3bc878
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 19:30:34 2002 +0000

    Renamed binaries with the convention gnome2-* so as to be guaranteed
    fully parallel installable (and consistent)

 capplets/background/ChangeLog                                 |  4 ++++
 capplets/background/Makefile.am                               |  6 +++---
 capplets/background/background.desktop.in                     |  2 +-
 capplets/default-applications/ChangeLog                       |  5 +++++
 capplets/default-applications/Makefile.am                     |  6 +++---
 capplets/default-applications/default-applications.desktop.in |  2 +-
 capplets/keyboard/ChangeLog                                   |  5 +++++
 capplets/keyboard/Makefile.am                                 |  6 +++---
 capplets/keyboard/keyboard.desktop.in                         |  2 +-
 capplets/mouse/Makefile.am                                    |  6 +++---
 capplets/mouse/mouse.desktop.in                               |  2 +-
 control-center/ChangeLog                                      |  4 ++++
 control-center/Makefile.am                                    |  6 +++---
 control-center/gnomecc.desktop.in                             |  2 +-
 gnome-settings-daemon/ChangeLog                               |  1 +
 gnome-settings-daemon/Makefile.am                             | 10 +++++-----
 16 files changed, 44 insertions(+), 25 deletions(-)

commit 912bd0a83ccbd50e2aebf516c0be0b0474947688
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 19:21:24 2002 +0000

    Moved sound.desktop.in.in to sound.desktop.in

 capplets/sound/ChangeLog           | 4 ++++
 capplets/sound/sound.desktop.in    | 7 +++++++
 capplets/sound/sound.desktop.in.in | 7 -------
 3 files changed, 11 insertions(+), 7 deletions(-)

commit 6531b64e1c72694a2f4ce0a9bf64c249c45c5cd0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 18:47:02 2002 +0000

    Update
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * Sawfish/Makefile.am (pixmapsdir): Update

 capplets/desktop-links/Sawfish/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3f8efae18f3adb2f017ea90baf7d25f3ad94c535
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 18:39:01 2002 +0000

    Update
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Update

 capplets/ui-properties/ChangeLog   |  2 ++
 capplets/ui-properties/Makefile.am | 20 ++++----------------
 2 files changed, 6 insertions(+), 16 deletions(-)

commit 57513c09d7d50c7c673fbee03228a3546b12d522
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 18:31:38 2002 +0000

    Added ui-properties back in
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (SUBDIRS): Added ui-properties back in
    
        * capplets/ui-properties/main.c (main): Remove Ximian archiver stuff
    
        * capplets/ui-properties/*.c: Change GNOMECC_blah_DIR to
        CINNAMONCC_DATA_DIR "/blah

 capplets/ui-properties/ChangeLog              |  4 ++
 capplets/ui-properties/main.c                 | 87 +--------------------------
 capplets/ui-properties/prefs-widget-app.c     |  2 +-
 capplets/ui-properties/prefs-widget-dialogs.c |  2 +-
 capplets/ui-properties/prefs-widget-mdi.c     |  2 +-
 capplets/ui-properties/prefs-widget.c         |  2 +-
 6 files changed, 9 insertions(+), 90 deletions(-)

commit 26c2c851073baf9cbc23326d84c73a5e4db39d51
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 14 18:25:44 2002 +0000

    Gnome 2 port. (Settings only halfway work right now.)
    
    2002-01-14  Richard Hestilow  <hestilow@ximian.com>
    
        * Gnome 2 port. (Settings only halfway work right now.)

 capplets/ui-properties/ChangeLog                 |    4 +
 capplets/ui-properties/behavior-properties.glade | 2024 ++++++++++++----------
 capplets/ui-properties/main.c                    |  132 +-
 capplets/ui-properties/preferences.c             |  577 +-----
 capplets/ui-properties/preferences.h             |   36 +-
 capplets/ui-properties/prefs-widget-app.c        |    8 +-
 capplets/ui-properties/prefs-widget-dialogs.c    |    7 +-
 capplets/ui-properties/prefs-widget-mdi.c        |    6 +-
 capplets/ui-properties/prefs-widget.c            |   78 +-
 capplets/ui-properties/prefs-widget.h            |    5 +-
 capplets/ui-properties/ui-properties.glade       | 2024 ++++++++++++----------
 capplets/ui-properties/ui-properties.glade.h     |    7 -
 12 files changed, 2386 insertions(+), 2522 deletions(-)

commit 56d19870d2d4f33e4b5424410601a58e81e95003
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 18:05:34 2002 +0000

    Removed references to obsolete capplets (GNOMECC_CAPPLETS_EXTRA_DIST,
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Removed references to obsolete capplets
        (GNOMECC_CAPPLETS_EXTRA_DIST, GNOMECC_CAPPLETS_CLEANFILES): Update
    
        * capplets/Makefile.am (SUBDIRS): Remove obsolete wm-properties
        and url-properties
    
        * Makefile.am: capplets/theme-selector/Update

 capplets/theme-switcher/ChangeLog   |  4 ++++
 capplets/theme-switcher/Makefile.am | 38 +++++++------------------------------
 2 files changed, 11 insertions(+), 31 deletions(-)

commit 7dc5a3ede19211608ea0b28a0d3cce29e45e2da6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 17:40:19 2002 +0000

    Remove obsolete wm-properties and url-properties
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (SUBDIRS): Remove obsolete wm-properties
        and url-properties

 capplets/file-types/TODO_NOTES | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit b47bd9d7f9e85017c7da07e2a191f123dda2938f
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Jan 14 17:39:15 2002 +0000

    we now depend on esound.
    
    Tue Jan  8 15:00:27 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in (XF86MISC_LIBS): we now depend on esound.
    
        * background-properties-capplet.c (main): Removed call to set up
        session management - obsolete
    
        * gnome-settings-daemon/Makefile.am (INCLUDES): Added missing
        -I$(top_srcdir)
    
        * POTFILES.in: Update

 capplets/background/ChangeLog                      |   5 +
 .../background/background-properties-capplet.c     |   2 -
 configure.in                                       |   1 -
 gnome-settings-daemon/ChangeLog                    |   2 +
 gnome-settings-daemon/Makefile.am                  |   2 +-
 po/ChangeLog                                       |   4 +
 po/POTFILES.in                                     |   2 +-
 po/az.po                                           | 642 +++++++++++-----
 po/ca.po                                           | 816 +++++++++++----------
 po/cs.po                                           | 640 ++++++++++------
 po/da.po                                           | 607 ++++++++++-----
 po/de.po                                           | 578 ++++++++++-----
 po/el.po                                           | 634 ++++++++++------
 po/es.po                                           | 573 ++++++++++-----
 po/fi.po                                           | 571 +++++++++-----
 po/fr.po                                           | 768 ++++++++++---------
 po/ga.po                                           | 579 ++++++++++-----
 po/hr.po                                           | 601 ++++++++++-----
 po/ja.po                                           | 661 ++++++++++-------
 po/lv.po                                           | 749 +++++++++++--------
 po/nn.po                                           | 755 +++++++++++--------
 po/no.po                                           |  15 +-
 po/pl.po                                           | 578 ++++++++++-----
 po/pt_BR.po                                        | 593 ++++++++++-----
 po/ru.po                                           | 590 ++++++++++-----
 po/sk.po                                           |  64 +-
 po/sl.po                                           | 596 ++++++++++-----
 po/sv.po                                           |  24 +-
 po/tr.po                                           | 579 ++++++++++-----
 po/uk.po                                           | 647 ++++++++++------
 po/wa.po                                           | 608 ++++++++++-----
 po/zh_CN.po                                        | 573 ++++++++++-----
 po/zh_TW.po                                        | 761 +++++++++++--------
 schemas/Makefile.am                                |   6 +-
 34 files changed, 9664 insertions(+), 5162 deletions(-)

commit 63979d382051f179c2d3847e9181efc69a537db7
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 17:00:28 2002 +0000

    Removed obsolete default-applications.desktop.in.in

 capplets/default-applications/default-applications.desktop.in.in | 8 --------
 1 file changed, 8 deletions(-)

commit edc068587853fdbf6b050687b1ee82a7348eb532
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jan 14 17:00:07 2002 +0000

    Added missing default-applications.desktop.in

 capplets/default-applications/default-applications.desktop.in | 8 ++++++++
 1 file changed, 8 insertions(+)

commit f0e642c93088e4cac4acc79d0444930d5731cd4f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 16:49:59 2002 +0000

    Enable code to load settings; call gnome_settings_background_load too
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * gnome-settings-daemon.c (main): Enable code to load settings;
        call gnome_settings_background_load too

 gnome-settings-daemon/ChangeLog               | 3 +++
 gnome-settings-daemon/gnome-settings-daemon.c | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit d51ca9a691f95d7807b9e3fb538d0a5f96e85417
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 16:46:48 2002 +0000

    Use the correct key to register the callback
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * gnome-settings-background.c (gnome_settings_background_init):
        Use the correct key to register the callback

 gnome-settings-daemon/ChangeLog                   | 5 +++++
 gnome-settings-daemon/gnome-settings-background.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 09974bbcd7bfcde516f2b815004ce0bc76f5ebaf
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 16:35:16 2002 +0000

    Reparent the iterator if necessary (mime_type_info_update): Don't call
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_update): Reparent the iterator
        if necessary
        (mime_type_info_update): Don't call reinsert_model_entry
    
        * mime-types-model.c (insert_mime_type): Implement. Factor from
        mime_types_model_new

 capplets/file-types/ChangeLog          |  7 ++++
 capplets/file-types/TODO_NOTES         |  2 +
 capplets/file-types/mime-type-info.c   | 14 +++++--
 capplets/file-types/mime-types-model.c | 73 ++++++++++++++++++----------------
 4 files changed, 59 insertions(+), 37 deletions(-)

commit d6d5ff20d9cb8d19b26365672d76aa9883fd1487
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 14 15:28:36 2002 +0000

    Implement. Mostly a copy from the corresponding function in
    
    2002-01-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-category-edit-dialog.c (populate_application_list):
        Implement. Mostly a copy from the corresponding function in
        mime-edit-dialog.c
    
        * mime-types-model.c (get_insertion_point): Make this public
        (find_supported_apps_for_category, reduce_supported_app_list)
        (intersect_lists, find_possible_supported_apps): Implement
    
        * mime-edit-dialog.c (fill_dialog): Fill category_entry
        (choose_cat_cb): Implement
        (mime_edit_dialog_init): Connect choose_button to choose_cat_cb
    
        * mime-type-info.c (mime_type_info_load): Load category name
        (mime_type_info_save): Call reinsert_iter to affect category name
        change
    
        * mime-types-model.c (mime_types_model_new): Add parameter
        is_category_select; TRUE iff this model should be only for
        selecting a category and not list the actual file types or
        Internet services
        (get_category_name): Implement
    
        * mime-edit-dialog.c (mime_edit_dialog_init): Add category_label
        to first size group
    
    2002-01-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (edit_cb, row_activated_cb): Don't try to
        create a category edit dialog if this is the Internet Services
        category
        (count_cb): Only count other than internet services category
    
        * mime-types-model.c (model_entry_is_category): Implement
        (model_entry_is_protocol): Use categories[INTERNET_SERVICES_IDX]
        rather than string
        (model_entry_is_internet_services_category): Implement
    
        * Makefile.am (gnome_file_types_properties_SOURCES): Add
        mime-category-edit-dialog.[ch]
    
        * file-types-capplet.c (edit_cb): Construct a category edit dialog
        if the tree iterator has children
        (row_activated_cb): Ditto

 capplets/file-types/ChangeLog                    |  46 +++
 capplets/file-types/Makefile.am                  |  15 +-
 capplets/file-types/TODO_NOTES                   |   1 +
 capplets/file-types/file-types-capplet.c         |  16 +-
 capplets/file-types/file-types-properties.glade  |  98 ++++--
 capplets/file-types/file-types-properties.glade1 |  92 ++++--
 capplets/file-types/mime-category-edit-dialog.c  | 396 +++++++++++++++++++++++
 capplets/file-types/mime-category-edit-dialog.h  |  59 ++++
 capplets/file-types/mime-edit-dialog.c           |  50 +++
 capplets/file-types/mime-type-info.c             |   8 +-
 capplets/file-types/mime-type-info.h             |   1 +
 capplets/file-types/mime-types-model.c           | 211 +++++++++++-
 capplets/file-types/mime-types-model.h           |  21 +-
 13 files changed, 945 insertions(+), 69 deletions(-)

commit d329aab5064addee951da394b14db4d8e7badbec
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Jan 14 00:32:00 2002 +0000

    Updated Norwegian (bokml) translation.
    
    2001-12-13  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |   4 +
 po/no.po     | 799 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 437 insertions(+), 366 deletions(-)

commit 70df5729daae06c0b710dbe524c09600934ecc16
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 21:18:04 2002 +0000

    Rename to add_mime_cb (create_dialog): Update add_button ->
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (add_cb): Rename to add_mime_cb
        (create_dialog): Update add_button -> add_mime_button

 capplets/file-types/ChangeLog                    |  2 ++
 capplets/file-types/file-types-capplet.c         |  4 ++--
 capplets/file-types/file-types-properties.glade  | 14 ++++++++++++--
 capplets/file-types/file-types-properties.glade1 | 13 +++++++++++--
 4 files changed, 27 insertions(+), 6 deletions(-)

commit 10be28c26f3d8df978df2c903cf4d4067e6712ae
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 21:13:51 2002 +0000

    Implement (count_cb): Implement (create_dialog): Connect changed signal on
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (selection_changed_cb): Implement
        (count_cb): Implement
        (create_dialog): Connect changed signal on treeview selection to
        selection_changed_cb
        (create_dialog): Desensitize edit button
        (remove_cb): Call selection_changed_cb

 capplets/file-types/ChangeLog            |  7 +++++++
 capplets/file-types/TODO_NOTES           |  6 ++++--
 capplets/file-types/file-types-capplet.c | 28 ++++++++++++++++++++++++++++
 3 files changed, 39 insertions(+), 2 deletions(-)

commit b11fd589030c92ed160a050de18a05926337a86f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 20:54:55 2002 +0000

    Set sensitivity of needs_terminal_toggle (store_data): Set needs_terminal
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (default_action_changed_cb): Set sensitivity
        of needs_terminal_toggle
        (store_data): Set needs_terminal
        (fill_dialog): Set needs_terminal_toggle

 capplets/file-types/ChangeLog                    |  7 +++++++
 capplets/file-types/file-types-properties.glade  | 15 +++++++++++++++
 capplets/file-types/file-types-properties.glade1 | 14 ++++++++++++++
 capplets/file-types/mime-edit-dialog.c           | 11 +++++++++--
 capplets/file-types/mime-type-info.c             |  4 +++-
 capplets/file-types/mime-type-info.h             |  1 +
 6 files changed, 49 insertions(+), 3 deletions(-)

commit 6a71b6f339cbd6fd232357c799fdaeaa1099ce40
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 20:45:15 2002 +0000

    Remove from dirty list (mime_type_info_save): Use libuuid to generate a
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_free): Remove from dirty list
        (mime_type_info_save): Use libuuid to generate a unique ID for the
        custom app
        (mime_type_info_load): Check for custom line based on name

 capplets/file-types/ChangeLog        |  3 +++
 capplets/file-types/TODO_NOTES       |  1 +
 capplets/file-types/mime-type-info.c | 41 +++++++++++++++++++++++++-----------
 3 files changed, 33 insertions(+), 12 deletions(-)

commit d3bff505c2f9cd8c11bc1af51be7f3183c71b09e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 20:14:51 2002 +0000

    Remove from dirty list
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_free): Remove from dirty list

 capplets/file-types/ChangeLog        | 2 ++
 capplets/file-types/mime-type-info.c | 1 +
 2 files changed, 3 insertions(+)

commit e037e72d543d9062b14e7ec8c3004c1e7f012394
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 20:13:50 2002 +0000

    Don't check default action id if default action is NULL
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (populate_application_list): Don't check
        default action id if default action is NULL
    
        * mime-type-info.c (mime_type_info_free): Remove data from
        mime_type_table
    
        * service-info.c (service_info_free): Free the info structure
    
        * mime-type-info.c (mime_type_info_load): Ditto below
    
        * service-info.c (service_info_load): Use service_info_table as a
        cache
        (service_info_free): Remove data from service_info_table

 capplets/file-types/ChangeLog          | 14 ++++++++++++++
 capplets/file-types/TODO_NOTES         |  4 +++-
 capplets/file-types/mime-edit-dialog.c |  3 ++-
 capplets/file-types/mime-type-info.c   | 17 +++++++++++++++++
 capplets/file-types/service-info.c     | 20 ++++++++++++++++++++
 5 files changed, 56 insertions(+), 2 deletions(-)

commit 2cebb9f9f0dd07c261d0650eee1a323defb33bcc
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Jan 11 19:51:10 2002 +0000

    added initial TODO

 TODO                                          | 33 +++++++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-daemon.c |  4 ++--
 gnome-settings-daemon/gnome-settings-mouse.c  |  2 --
 3 files changed, 35 insertions(+), 4 deletions(-)

commit fe788d66c63e4a52df96ae6948d16752356ec908
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 19:42:24 2002 +0000

    Use custom_line for program_entry
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (populate_application_list): Use custom_line
        for program_entry

 capplets/file-types/ChangeLog          | 3 +++
 capplets/file-types/TODO_NOTES         | 1 +
 capplets/file-types/mime-edit-dialog.c | 5 +++--
 capplets/file-types/mime-type-info.c   | 2 +-
 4 files changed, 8 insertions(+), 3 deletions(-)

commit 558c9c00f4eee843259010108c8794c82ac30c36
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 19:28:08 2002 +0000

    Read custom_line from default_action (mime_type_info_save): Set custom
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-type-info.c (mime_type_info_load): Read custom_line from
        default_action
        (mime_type_info_save): Set custom line through GnomeVFS app
        registry

 capplets/file-types/ChangeLog          |  5 +++++
 capplets/file-types/TODO_NOTES         |  3 +--
 capplets/file-types/mime-edit-dialog.c |  8 +++++++-
 capplets/file-types/mime-type-info.c   | 28 ++++++++++++++++++++++++----
 4 files changed, 37 insertions(+), 7 deletions(-)

commit 9ae7188b6cec9b1ddbcf744a25414cb7b0edb631
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 18:42:36 2002 +0000

    Implement. Callback for row_activated signal
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (row_activated_cb): Implement. Callback for
        row_activated signal

 capplets/file-types/ChangeLog            |  3 +++
 capplets/file-types/TODO_NOTES           |  2 --
 capplets/file-types/file-types-capplet.c | 19 +++++++++++++++++++
 3 files changed, 22 insertions(+), 2 deletions(-)

commit e0bf4c9e258f18c7ca2b095c148f597c7c019bee
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 18:37:17 2002 +0000

    Don't create a separate dialog; just read from new_ext_entry
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (add_ext_cb): Don't create a separate dialog;
        just read from new_ext_entry

 capplets/file-types/ChangeLog                    |   3 +
 capplets/file-types/TODO_NOTES                   |   1 -
 capplets/file-types/file-types-properties.glade  | 263 +++++++---------------
 capplets/file-types/file-types-properties.glade1 | 273 +++++++++--------------
 capplets/file-types/mime-edit-dialog.c           |  30 +--
 5 files changed, 188 insertions(+), 382 deletions(-)

commit 9cd12bb3c25ce776cb7cc133592ab5735966af43
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 17:47:31 2002 +0000

    Implement
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-info.c (get_apps_for_service_type): Implement
    
        * service-edit-dialog.c (program_changed_cb): Implement
        (service_edit_dialog_init): Connect program_select changed signal
        (populate_app_list): Fill app menu with results from
        get_apps_for_service_type
    
        * service-info.c (fill_service_apps): Implement

 capplets/file-types/ChangeLog                    |  9 +++++
 capplets/file-types/TODO_NOTES                   |  1 +
 capplets/file-types/file-types-properties.glade  |  2 +-
 capplets/file-types/file-types-properties.glade1 |  2 +-
 capplets/file-types/service-edit-dialog.c        | 35 ++++++++++++++++-
 capplets/file-types/service-info.c               | 48 ++++++++++++++++++++++++
 capplets/file-types/service-info.h               |  2 +
 7 files changed, 96 insertions(+), 3 deletions(-)

commit caa4385d600d4709f5360b165bc690291dfbda26
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 16:10:03 2002 +0000

    Retrieve app info from option menu
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-edit-dialog.c (store_data): Retrieve app info from
        option menu

 capplets/file-types/ChangeLog             |  3 +++
 capplets/file-types/TODO_NOTES            |  1 -
 capplets/file-types/service-edit-dialog.c | 14 ++++++++++++++
 3 files changed, 17 insertions(+), 1 deletion(-)

commit cd0aec7eaa3f45e373c4b12a984f3e99dbe249fa
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 16:01:15 2002 +0000

    Commit the changeset (main): Construct a changeset (edit_cb): Pass the
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * file-types-capplet.c (apply_cb): Commit the changeset
        (main): Construct a changeset
        (edit_cb): Pass the changeset to service_info_new
    
        * service-info.c (set_string): Don't set the value if it is NULL
        (service_info_load): Store changeset in info structure
        (service_info_save): Don't require a changeset; use the one stored
        in the structure

 capplets/file-types/ChangeLog             |  7 +++++++
 capplets/file-types/file-types-capplet.c  | 13 ++++++++-----
 capplets/file-types/service-edit-dialog.c |  2 +-
 capplets/file-types/service-info.c        | 17 +++++++++--------
 capplets/file-types/service-info.h        |  5 +++--
 5 files changed, 28 insertions(+), 16 deletions(-)

commit a53fac33f277695542135f062b9776b36367adf9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 15:48:52 2002 +0000

    Don't set the value if it is NULL
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-info.c (set_string): Don't set the value if it is NULL
    
        * service-edit-dialog.c (store_data): Call service_info_save

 capplets/file-types/ChangeLog             | 4 ++++
 capplets/file-types/TODO_NOTES            | 1 +
 capplets/file-types/service-edit-dialog.c | 1 +
 capplets/file-types/service-info.c        | 3 +++
 4 files changed, 9 insertions(+)

commit ee6a2823a4eca6b1dfa204621af54d869bfdb774
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 15:32:10 2002 +0000

    Terminate column list with -1
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * mime-edit-dialog.c (add_ext_cb): Terminate column list with -1
    
        * service-edit-dialog.c (store_data): Call service_info_update
    
        * mime-edit-dialog.c (store_data): Call mime_type_info_update
    
        * mime-type-info.c (mime_type_info_update): Implement. Updates the
        model with data from the structure
    
        * service-info.c (service_info_update): Implement. Updates the
        model with data from the structure
    
        * mime-type-info.c (form_extensions_string): Implement. Factor
        from mime_type_info_save
    
        * service-info.c (service_info_load): Accept model and iter rather
        than protocol name; read protocol name from model
    
        * mime-type-info.c (mime_type_info_load): Accept model and iter
        rather than mime type; read the mime type from the model
    
        * mime-types-model.c (get_icon_pixbuf): Make this public

 capplets/file-types/ChangeLog             |  35 ++++++++
 capplets/file-types/TODO_NOTES            |   4 +-
 capplets/file-types/file-types-capplet.c  |  10 +--
 capplets/file-types/mime-edit-dialog.c    |   3 +-
 capplets/file-types/mime-type-info.c      |  82 ++++++++++++++-----
 capplets/file-types/mime-type-info.h      |  11 ++-
 capplets/file-types/mime-types-model.c    | 129 +++++++++++++++---------------
 capplets/file-types/mime-types-model.h    |   8 +-
 capplets/file-types/service-edit-dialog.c |  10 ++-
 capplets/file-types/service-info.c        |  26 +++++-
 capplets/file-types/service-info.h        |  15 ++--
 11 files changed, 221 insertions(+), 112 deletions(-)

commit b0972292447ca51c32ba591e2cc4ac46ce565aff
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 11 14:17:40 2002 +0000

    Implement (program_sensitive_cb): Implement (response_cb): Call store_data
    
    2002-01-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * service-edit-dialog.c (store_data): Implement
        (program_sensitive_cb): Implement
        (response_cb): Call store_data if response_id is OK
        (service_edit_dialog_init): Connect toggled signal on
        run_program_toggle to program_sensitive_cb
    
        * mime-type-info.h: Add #include gnome-vfs-mime-info.h
    
        * service-edit-dialog.c (populate_app_list): Implement
    
        * mime-edit-dialog.c (populate_component_list): Make sure custom
        menu item is shown

 capplets/file-types/ChangeLog             | 15 ++++++++
 capplets/file-types/TODO_NOTES            |  9 ++++-
 capplets/file-types/mime-edit-dialog.c    |  4 ++-
 capplets/file-types/mime-type-info.h      |  3 ++
 capplets/file-types/service-edit-dialog.c | 57 ++++++++++++++++++++++++++++---
 capplets/file-types/service-info.c        |  4 +--
 capplets/file-types/service-info.h        |  2 +-
 7 files changed, 85 insertions(+), 9 deletions(-)

commit 44aca2c8c39ba3b2276fe1cc6e42ecd97dfac988
Author: Jean Schurger <jschurger@schurger.org>
Date:   Thu Jan 10 19:46:45 2002 +0000

    Check for entry->icon[0] != 0 if (Icon =) in the desktop file. if
    
    2002-01-09  Jean Schurger <jschurger@schurger.org>
    
            * capplet-dir.c (capplet_new): Check for entry->icon[0] != 0
                    if (Icon =) in the desktop file.
                    if entry->icon is a DIR
                    If entry->icon[0] still NULL.

 control-center/ChangeLog     |  7 ++++++
 control-center/capplet-dir.c | 52 ++++++++++++++++++++++++++------------------
 2 files changed, 38 insertions(+), 21 deletions(-)

commit 3e7140488f04564130227c96a639b5320fa00ac9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 10 19:45:08 2002 +0000

    Courtesy of Jean Schurger <jschurger@schurger.org>: Make sure the
    
    2002-01-10  Bradford Hovinen  <hovinen@ximian.com>
    
        Courtesy of Jean Schurger <jschurger@schurger.org>:
        * preferences.c (bg_preferences_merge_entry): Make sure the
        wallpaper filename is non-NULL before doing anything with it

 libbackground/ChangeLog     | 6 ++++++
 libbackground/preferences.c | 1 +
 2 files changed, 7 insertions(+)

commit 936151c14f77b4afd3bf716b1f3b82fbe28c1f7a
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Jan 10 05:55:00 2002 +0000

    Add CFLAGS

 configure.in | 9 +++++++++
 1 file changed, 9 insertions(+)

commit d7ff9fa84d0d30ca59d8e0a4ff028dadf291e5dd
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jan 10 02:26:59 2002 +0000

    weee! locate_cursor works now!!!! speed up animation.
    
    Wed Jan  9 21:22:30 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-keyboard.c (filter): weee!  locate_cursor works
        now!!!!
        * gnome-settings-locate-pointer: speed up animation.

 gnome-settings-daemon/ChangeLog                    |   6 ++
 gnome-settings-daemon/gnome-settings-keyboard.c    | 114 +++++++++++++++++----
 .../gnome-settings-locate-pointer.c                |   2 +-
 3 files changed, 102 insertions(+), 20 deletions(-)

commit c1e45241da2289a69c56ed708c6e43ccf8016afd
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Jan 9 16:34:54 2002 +0000

    Updated Slovak translation.
    
    2002-01-09  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 677 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 408 insertions(+), 273 deletions(-)

commit d7e783e524592ffb33965107d30c3b608752d231
Author: Anders Carlsson <andersca@gnu.org>
Date:   Wed Jan 9 01:08:50 2002 +0000

    Call gconf_client_add_dir.
    
    2002-01-09  Anders Carlsson  <andersca@gnu.org>
    
        * gnome-settings-daemon.c (main): Call gconf_client_add_dir.

 gnome-settings-daemon/ChangeLog               | 4 ++++
 gnome-settings-daemon/gnome-settings-daemon.c | 5 +++++
 2 files changed, 9 insertions(+)

commit 1404424a23720ab7bddbc550cf657cd9ae7edce5
Author: Anders Carlsson <andersca@gnu.org>
Date:   Wed Jan 9 00:06:19 2002 +0000

    Remove missing files.
    
    2002-01-09  Anders Carlsson  <andersca@gnu.org>
    
        * POTFILES.in: Remove missing files.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 5 -----
 2 files changed, 4 insertions(+), 5 deletions(-)

commit f4c5ec56d00d495ead5ff0dbdc3ad9f3841fdc5b
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Jan 8 21:47:16 2002 +0000

    remove unneeded files

 capplets/keyboard/keyboard-properties.c       | 300 -------------
 capplets/keyboard/keyboard-properties.glade   | 597 --------------------------
 capplets/keyboard/keyboard-properties.glade.h |  26 --
 capplets/keyboard/keyboard-properties.glade1  | 533 -----------------------
 capplets/keyboard/keyboard-properties.xml     |  12 -
 capplets/keyboard/main.c                      | 301 -------------
 capplets/keyboard/preferences.c               | 421 ------------------
 capplets/keyboard/preferences.h               |  75 ----
 capplets/keyboard/prefs-widget.c              | 366 ----------------
 capplets/keyboard/prefs-widget.h              |  63 ---
 capplets/mouse/main.c                         | 297 -------------
 capplets/mouse/mouse-properties.xml           |   8 -
 capplets/mouse/preferences.c                  | 441 -------------------
 capplets/mouse/preferences.h                  |  73 ----
 capplets/mouse/prefs-widget.c                 | 337 ---------------
 capplets/mouse/prefs-widget.h                 |  60 ---
 16 files changed, 3910 deletions(-)

commit 98e37477fac3cd87a74dd734f97270385d51978e
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Jan 8 21:25:33 2002 +0000

    Near total rewrite

 capplets/file-types/ChangeLog                    |    4 +
 capplets/file-types/Makefile.am                  |   41 +-
 capplets/file-types/TODO_NOTES                   |    9 +
 capplets/file-types/file-types-capplet.c         | 2062 ++--------------------
 capplets/file-types/file-types-properties.glade  | 1093 ++++++++++++
 capplets/file-types/file-types-properties.glade1 | 1026 +++++++++++
 capplets/file-types/mime-edit-dialog.c           |  561 ++++++
 capplets/file-types/mime-edit-dialog.h           |   60 +
 capplets/file-types/mime-type-info.c             |  193 ++
 capplets/file-types/mime-type-info.h             |   62 +
 capplets/file-types/mime-types-model.c           |  308 ++++
 capplets/file-types/mime-types-model.h           |   45 +
 capplets/file-types/service-edit-dialog.c        |  270 +++
 capplets/file-types/service-edit-dialog.h        |   59 +
 capplets/file-types/service-info.c               |  163 ++
 capplets/file-types/service-info.h               |   55 +
 16 files changed, 4031 insertions(+), 1980 deletions(-)

commit d159298d557b32d406b9e1d8584fa740953ab36f
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Jan 8 21:24:41 2002 +0000

    remove unneeded files, and make naming more consistent

 capplets/mouse/Makefile.am                  |   4 +-
 capplets/mouse/gnome-mouse-properties.c     |   2 +-
 capplets/mouse/gnome-mouse-properties.glade |  17 +-
 capplets/mouse/mouse-properties-capplet.c   | 513 ----------------
 capplets/mouse/mouse-properties.glade       | 868 ----------------------------
 5 files changed, 12 insertions(+), 1392 deletions(-)

commit d317e2704e5aa76ae0c85eb5746f6e0f3e6f3f8a
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Jan 8 21:03:07 2002 +0000

    Add locate-pointer. Initial attempt at locate-pointer. Don't understand
    
    Tue Jan  8 15:50:59 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * Makefile.am: Add locate-pointer.
        * gnome-settings-keyboard.c: Initial attempt at locate-pointer.
        Don't understand XKB enough to figure it out.
        * gnome-settings-locate-pointer.[ch]: Draw the locate pointer
        box.  Pretty snazzy for a useless (but fun) feature.
        * gnome-settings-mouse.c:  Move locate pointer to it's own file.
    
    Tue Jan  8 15:49:15 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * .cvsignore: update
        * Makefile.am: Add gnome-keyboard-properties.c
        * gnome-keyboard-properties.c: New, much nicer capplet.
        * gnome-keyboard-properties.glade: glade file for above.
        * keyboard-bell.png:
        * keyboard-cursor.png:
        * keyboard-repeat.png:
        * keyboard-volume.png: Images for above.  Note,
        keyboard-cursor.png is my pathetic attempt at artwork, and will
        prolly change in the future.
    
    Tue Jan  8 15:47:24 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * .cvsignore: New ignores.
        * gnome-mouse-properties.glade: Update of glade file for cursors
        * mouse-cursor-normal-large.png: New images
        * mouse-cursor-normal.png:
        * mouse-cursor-white-large.png:
        * mouse-cursor-white.png:
        * mouse-properties-capplet.c: (setup_dialog), (create_dialog),
        (main): Add support for new properties.  Don't fully work yet, but
        we'll get it later.
        * mouse-properties.glade: not sure what changed -- need to remove
        this file.

 capplets/keyboard/.cvsignore                       |    3 +-
 capplets/keyboard/ChangeLog                        |   13 +
 capplets/keyboard/Makefile.am                      |   12 +-
 capplets/keyboard/gnome-keyboard-properties.c      |  300 ++++++
 capplets/keyboard/gnome-keyboard-properties.glade  | 1036 ++++++++++++++++++++
 capplets/keyboard/keyboard-bell.png                |  Bin 0 -> 4199 bytes
 capplets/keyboard/keyboard-cursor.png              |  Bin 0 -> 261 bytes
 capplets/keyboard/keyboard-repeat.png              |  Bin 0 -> 3852 bytes
 capplets/keyboard/keyboard-volume.png              |  Bin 0 -> 4655 bytes
 capplets/mouse/.cvsignore                          |    2 +-
 capplets/mouse/ChangeLog                           |   14 +
 capplets/mouse/gnome-mouse-properties.c            |   73 +-
 capplets/mouse/gnome-mouse-properties.glade        |  159 ++-
 capplets/mouse/mouse-cursor-normal-large.png       |  Bin 0 -> 251 bytes
 capplets/mouse/mouse-cursor-normal.png             |  Bin 0 -> 241 bytes
 capplets/mouse/mouse-cursor-white-large.png        |  Bin 0 -> 268 bytes
 capplets/mouse/mouse-cursor-white.png              |  Bin 0 -> 221 bytes
 capplets/mouse/mouse-properties-capplet.c          |   73 +-
 capplets/mouse/mouse-properties.glade              |  164 +++-
 gnome-settings-daemon/ChangeLog                    |    9 +
 gnome-settings-daemon/Makefile.am                  |    2 +
 gnome-settings-daemon/gnome-settings-keyboard.c    |   57 +-
 .../gnome-settings-locate-pointer.c                |  220 +++++
 .../gnome-settings-locate-pointer.h                |   22 +
 gnome-settings-daemon/gnome-settings-mouse.c       |   52 +-
 gnome-settings-daemon/gnome-settings-mouse.h       |    7 -
 26 files changed, 2049 insertions(+), 169 deletions(-)

commit bb15c09c1db4376165eca04e8592ba947749d0d9
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Tue Jan 8 20:34:38 2002 +0000

    file screensaver-capplet.png was initially added on branch gnome-1-4-branch.

commit b6defbf4c29467df968ae8d0de32707e3fe2fdfd
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Tue Jan 8 20:34:38 2002 +0000

    file screensaver.desktop.in.in was initially added on branch gnome-1-4-branch.

commit 9bb7df8eb74a69c436cd0d923b6281782751509b
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Jan 8 20:01:18 2002 +0000

    we now depend on esound.
    
    Tue Jan  8 15:00:27 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in (XF86MISC_LIBS): we now depend on esound.

 ChangeLog                         | 4 ++++
 configure.in                      | 2 +-
 gnome-settings-daemon/Makefile.am | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

commit 53a008eb3c824263e0eb943a51aec394214b7876
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 8 14:58:12 2002 +0000

    Port to GNOME 2.0.
    
    2002-01-08  Richard Hestilow  <hestilow@ximian.com>
    
        * Port to GNOME 2.0.

 capplets/sound/ChangeLog                  |   4 +
 capplets/sound/Makefile.am                |  59 ++------
 capplets/sound/sound-properties-capplet.c | 235 +++++++++++-------------------
 capplets/sound/sound-properties.glade     | 210 +++++++++++++-------------
 4 files changed, 201 insertions(+), 307 deletions(-)

commit 93763d7ddbd787d1ca230156be5f10b11e84a973
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jan 8 14:54:35 2002 +0000

    Initialize libgnomeui, and load sounds.
    
    2002-01-08  Richard Hestilow  <hestilow@ximian.com>
    
        * gnome-settings-daemon.c (main): Initialize libgnomeui,
        and load sounds.
    
        * gnome-settings-sound.c (stop_esd): Just tell esd to let go
        of /dev/dsp.

 gnome-settings-daemon/ChangeLog               |  8 ++++++++
 gnome-settings-daemon/gnome-settings-daemon.c | 10 +++++++---
 gnome-settings-daemon/gnome-settings-sound.c  |  5 +++++
 3 files changed, 20 insertions(+), 3 deletions(-)

commit 7100bcf73fa6224e847c64f58d961aa824410460
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 7 15:05:34 2002 +0000

    Whoops, delete those invalid-dnl'ed lines. This is part of my
    
    2002-01-07  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Whoops, delete those invalid-dnl'ed lines. This
        is part of my use-xscreensaver-demo patch.

 ChangeLog    |  5 +++++
 configure.in | 28 +++-------------------------
 2 files changed, 8 insertions(+), 25 deletions(-)

commit d20fbe6ece9c52607fc89c430d168817ef11db11
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jan 7 14:52:42 2002 +0000

    Add libgnomeui dependency to daemon (it needs gnome-client).
    
    2002-01-04  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Add libgnomeui dependency to daemon
        (it needs gnome-client).

 ChangeLog    |  5 +++++
 configure.in | 53 +++++++++++++++++++++++++----------------------------
 2 files changed, 30 insertions(+), 28 deletions(-)

commit 47a67178018998e0417ba0200a6ac56c9cd3f017
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Jan 7 13:12:48 2002 +0000

    Sorted and added missing files. Updated Swedish translation.
    
    2002-01-07  Christian Rose  <menthos@menthos.com>
    
        * POTFILES.in: Sorted and added missing files.
        * sv.po: Updated Swedish translation.

 po/ChangeLog   |   5 +
 po/POTFILES.in |  41 ++--
 po/sv.po       | 615 ++++++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 450 insertions(+), 211 deletions(-)

commit 63c1b1daaffd34f01c9a9e0eabf56dc8cc7ace43
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sun Jan 6 07:55:41 2002 +0000

    avoid recursive loops by only setting the UI if we're active.
    
    Sun Jan  6 02:52:59 2002  Jonathan Blandford  <jrb@redhat.com>
    
        * gconf-property-editor.c (peditor_select_radio_widget_changed):
        avoid recursive loops by only setting the UI if we're active.

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 2 ++
 2 files changed, 7 insertions(+)

commit 1bd61a6bdb3983d173745dac8c9c622c0baebb1f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Jan 5 20:39:03 2002 +0000

    Only remove from changeset if the changeset is non-NULL
    
    2002-01-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_*_value_changed): Only remove
        from changeset if the changeset is non-NULL

 capplets/common/ChangeLog               |  5 +++++
 capplets/common/gconf-property-editor.c | 22 ++++++++++++++++------
 2 files changed, 21 insertions(+), 6 deletions(-)

commit 68257fcb341a312e26758c9b40d2ec044a0e11e4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 4 20:48:17 2002 +0000

    Implement. Sets the GConf value either in the changeset, or if changeset
    
    2002-01-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_set_gconf_value):
        Implement. Sets the GConf value either in the changeset, or if
        changeset is NULL, directly
        (peditor_*_widget_changed): Use peditor_set_gconf_value
        (gconf_peditor_new_*): Don't complain if changeset is NULL

 capplets/common/ChangeLog                         |  8 +++++
 capplets/common/gconf-property-editor.c           | 36 +++++++++++++----------
 gnome-settings-daemon/ChangeLog                   |  4 +++
 gnome-settings-daemon/gnome-settings-background.c |  4 +--
 gnome-settings-daemon/gnome-settings-background.h |  4 +--
 gnome-settings-daemon/gnome-settings-daemon.c     | 26 ++++++++--------
 gnome-settings-daemon/gnome-settings-daemon.h     |  1 +
 gnome-settings-daemon/gnome-settings-keyboard.c   |  4 +--
 gnome-settings-daemon/gnome-settings-keyboard.h   |  5 ++--
 gnome-settings-daemon/gnome-settings-mouse.c      |  4 +--
 gnome-settings-daemon/gnome-settings-mouse.h      |  4 +--
 gnome-settings-daemon/gnome-settings-sound.c      |  4 +--
 gnome-settings-daemon/gnome-settings-sound.h      |  4 +--
 gnome-settings-daemon/gnome-settings-xsettings.c  |  6 ++--
 gnome-settings-daemon/gnome-settings-xsettings.h  |  4 +--
 15 files changed, 68 insertions(+), 50 deletions(-)

commit 2fc652eb94d9d2ca5d864f870cff29675b35788f
Author: Mikael Hallendal <micke@codefactory.se>
Date:   Fri Jan 4 19:39:51 2002 +0000

    added capplets/default-applications/default-applications.desktop.in to
    
    2002-01-04  Mikael Hallendal  <micke@codefactory.se>
    
            * configure.in: added
            capplets/default-applications/default-applications.desktop.in to
            AC_OUTPUT.

 ChangeLog    | 6 ++++++
 configure.in | 1 +
 2 files changed, 7 insertions(+)

commit d3f81c73309c2c73e0f43623c893f2f369cf899f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 4 18:40:41 2002 +0000

    Check if tmp is NULL before continuing Use terminal/exec for terminal
    
    2002-01-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * default-application-properties.c (edit_read): Check if tmp is
        NULL before continuing
        Use terminal/exec for terminal executable name key

 capplets/default-applications/ChangeLog            |  6 ++++
 .../default-application-properties.c               | 37 ++++++++++++----------
 2 files changed, 26 insertions(+), 17 deletions(-)

commit a70178aebdeec5bb0de51677dccce19e7e0d3254
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jan 4 17:52:10 2002 +0000

    Add libgnomeui dependency to daemon (it needs gnome-client).
    
    2002-01-04  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Add libgnomeui dependency to daemon
        (it needs gnome-client).

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fe80b10e7f9f80d2f160cd894fbd35a2cf27d2d5
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jan 4 17:50:44 2002 +0000

    Added.
    
    2001-01-04  Richard Hestilow  <hestilow@ximian.com>
    
        * gnome-settings-sound.[ch]: Added.
    
        * Makefile.am: Add gnome-settings-sound sources, link to libsounds.
    
        * gnome-settings-daemon.c: Call gnome_settings_sound_init.

 gnome-settings-daemon/ChangeLog               |   8 ++
 gnome-settings-daemon/Makefile.am             |   3 +
 gnome-settings-daemon/gnome-settings-daemon.c |   2 +
 gnome-settings-daemon/gnome-settings-sound.c  | 174 ++++++++++++++++++++++++++
 gnome-settings-daemon/gnome-settings-sound.h  |  33 +++++
 5 files changed, 220 insertions(+)

commit 57d122b33117251d8211b748104f2a020047a4f0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jan 4 14:23:24 2002 +0000

    Use $(CONTROL_{CFLAGS|LIBS}) rather than @CONTROL_{CFLAGS|LIBS}@
    
    2002-01-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * control/Makefile.am (gnome_theme_preview_LDADD): Use
        $(CONTROL_{CFLAGS|LIBS}) rather than @CONTROL_{CFLAGS|LIBS}@

 capplets/theme-switcher/ChangeLog           | 5 +++++
 capplets/theme-switcher/Makefile.am         | 6 +++---
 capplets/theme-switcher/control/Makefile.am | 7 ++-----
 3 files changed, 10 insertions(+), 8 deletions(-)

commit 815c33c0ce4b8ef933edd6d4a6fa918ad9ca479a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 3 23:54:04 2002 +0000

    Remove schemas/Makefile
    
    2002-01-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (AC_OUTPUT): Remove schemas/Makefile

 ChangeLog    | 2 ++
 configure.in | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 48ae8ad7f5e567214b184cc86b52a5ad9f9bf2b4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 3 23:53:26 2002 +0000

    Remove schemas
    
    2002-01-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (SUBDIRS): Remove schemas

 ChangeLog   | 4 ++++
 Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4d346978f547cf9c1efed6bf57d768125a6269bd
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jan 3 21:25:24 2002 +0000

    Check for ditem::icon != NULL before calling gnome_pixmap_file.
    
    2002-01-03  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir.c (capplet_new): Check for ditem::icon != NULL
        before calling gnome_pixmap_file.
    
        * gnomecc.glade: Remove toolbar & menu stuff (this was causing
        runtime glade warnings).

 control-center/ChangeLog               | 8 ++++++++
 control-center/capplet-dir-view-list.c | 2 +-
 control-center/capplet-dir.c           | 8 +++++---
 control-center/gnomecc.glade           | 7 +++----
 4 files changed, 17 insertions(+), 8 deletions(-)

commit ff7a43359d0ce38bc1b485a78ef58073fe09151f
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Thu Jan 3 18:11:19 2002 +0000

    file config-kbd.sgml was initially added on branch gnome-1-4-branch.

commit 86c4ffdbe77985ef72467e45e82f031c13c9ff59
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 2 23:23:23 2002 +0000

    file config-sound.sgml was initially added on branch gnome-1-4-branch.

commit 9d138b778d7b0364bc15d85caf207d25cec6c800
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 2 22:46:33 2002 +0000

    file config-hints.sgml was initially added on branch gnome-1-4-branch.

commit b313eab15fb5bafb530148230a70b68b895f6493
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 2 22:12:47 2002 +0000

    file config-default-apps.sgml was initially added on branch gnome-1-4-branch.

commit 2d82467c017df124d88190a00056338de8bac4ce
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 2 22:12:47 2002 +0000

    file config-html.sgml was initially added on branch gnome-1-4-branch.

commit 58d399d9503feafbadf69917bec2b2fbd16098c2
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 2 22:12:47 2002 +0000

    file config-html.sgml~ was initially added on branch gnome-1-4-branch.

commit c6fa7bad2c9029143c9ea3cc4730d376939c9b9f
Author: Kevin Breit <battery841@src.gnome.org>
Date:   Wed Jan 2 22:12:47 2002 +0000

    file config-mouse.sgml was initially added on branch gnome-1-4-branch.

commit 874db6434cc971978770a0c9ade90c1f35461dbc
Author: Vasif Ismailoglu MD <vasif@src.gnome.org>
Date:   Wed Dec 26 17:51:31 2001 +0000

    az:po * updating

 po/ChangeLog | 26 +++++++++++++++-----------
 po/az.po     | 16 +++++++++-------
 2 files changed, 24 insertions(+), 18 deletions(-)

commit f3133428c8fdaed43792217c91f9f401fbb51d25
Author: Vasif Ismailoglu MD <vasif@src.gnome.org>
Date:   Mon Dec 24 19:40:01 2001 +0000

    updating Azerbajani po file

 po/az.po | 1051 ++++++++++++++++++--------------------------------------------
 1 file changed, 309 insertions(+), 742 deletions(-)

commit a3117bf52cf1b5eb8ffed939df4fd4e5f0d724a5
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Dec 21 06:43:43 2001 +0000

    Add Categories field.
    
    2001-12-20  Seth Nickell  <snickell@stanford.edu>
    
        * mouse.desktop.in:
    
        Add Categories field.

 capplets/mouse/ChangeLog        | 6 ++++++
 capplets/mouse/mouse.desktop.in | 1 +
 2 files changed, 7 insertions(+)

commit 230fdde66381933d9b0c5dfa3cc51e3636be73c2
Author: Seth Nickell <snickell@stanford.edu>
Date:   Fri Dec 21 06:42:42 2001 +0000

    Add Categories field so it shows up correctly in the panel menus.
    
    2001-12-20  Seth Nickell  <snickell@stanford.edu>
    
        * keyboard.desktop.in:
    
        Add Categories field so it shows up correctly in the
        panel menus.

 capplets/keyboard/ChangeLog           | 7 +++++++
 capplets/keyboard/keyboard.desktop.in | 1 +
 2 files changed, 8 insertions(+)

commit f9094a318943bbce562ed38f35bf48b56bee54d6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 21:05:58 2001 +0000

    Update
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse.desktop.in (Icon, Exec): Update

 capplets/mouse/ChangeLog        | 2 ++
 capplets/mouse/mouse.desktop.in | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 064dac63c0d3816dfdc34dd7dc45400a8fa6b7f5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:47:43 2001 +0000

    Disable the wallpaper if we couldn't load it (bg_applier_apply_prefs):
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (bg_applier_apply_prefs): Disable the wallpaper if we
        couldn't load it
        (bg_applier_apply_prefs): Create a clone of the preferences
        structure first and work off of that
        (wallpaper_full_cover_p): Return FALSE if the wallpaper pixbuf is NULL

 libbackground/ChangeLog     |  9 +++++++++
 libbackground/applier.c     | 32 +++++++++++++++++---------------
 libbackground/preferences.c |  7 ++++++-
 3 files changed, 32 insertions(+), 16 deletions(-)

commit 894a0a1c3a1e4b689bbd2183678f5dd545bb8f68
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:32:02 2001 +0000

    Eliminate compiler warnings
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir-view-list.c: Eliminate compiler warnings
    
        * preferences.c: Eliminate compiler warnings
    
        * capplet-dir-view.c: Eliminate compiler warnings
    
        * capplet-dir.c: Eliminate compiler warnings
    
        * main.c: Eliminate compiler warnings

 control-center/ChangeLog               | 12 ++++++++++++
 control-center/capplet-dir-view-list.c | 19 +++++++++++--------
 control-center/capplet-dir-view-tree.c |  2 --
 control-center/capplet-dir-view.c      | 33 ++++++++++++++-------------------
 control-center/capplet-dir.c           | 19 +++++--------------
 control-center/main.c                  |  4 ----
 control-center/preferences.c           |  7 ++-----
 7 files changed, 44 insertions(+), 52 deletions(-)

commit 1afc14e0c4ee0ce5b435d16198c18887a0db40ff
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:23:36 2001 +0000

    Eliminate compiler warnings
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c: Eliminate compiler warnings

 capplets/mouse/ChangeLog                  | 1 +
 capplets/mouse/gnome-mouse-properties.c   | 6 ------
 capplets/mouse/mouse-properties-capplet.c | 6 ------
 3 files changed, 1 insertion(+), 12 deletions(-)

commit 7953e8085ad94fb0e563a1cf4c4ab237a949a6d7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:22:37 2001 +0000

    Eliminate compiler warnings
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c: Eliminate compiler warnings

 capplets/background/ChangeLog                       | 1 +
 capplets/background/background-properties-capplet.c | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

commit bc0283764493d8bd183177cb5b3fe65f42e62613
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:21:39 2001 +0000

    Eliminate compiler warnings
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c: Eliminate compiler warnings
    
        * capplet-util.c: Eliminate compiler warnings

 capplets/common/ChangeLog               | 4 ++++
 capplets/common/capplet-util.c          | 6 ------
 capplets/common/gconf-property-editor.c | 6 ++----
 3 files changed, 6 insertions(+), 10 deletions(-)

commit 575824d32a72cc0688befaa26962c5f93af8319e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:20:03 2001 +0000

    Eliminate compiler warnings
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * All: Eliminate compiler warnings
    
        * gnome-settings-daemon.h: Use __GNOME_SETTINGS_DAEMON_H for the
        enclosing macro

 gnome-settings-daemon/ChangeLog               | 5 +++++
 gnome-settings-daemon/gnome-settings-daemon.c | 5 +++++
 gnome-settings-daemon/gnome-settings-daemon.h | 6 +++---
 gnome-settings-daemon/gnome-settings-mouse.c  | 7 ++-----
 4 files changed, 15 insertions(+), 8 deletions(-)

commit ec0401e89e5fc15618216771f073dbd761642a07
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:17:28 2001 +0000

    Eliminate compiler warnings
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c: Eliminate compiler warnings

 libbackground/ChangeLog | 2 ++
 libbackground/applier.c | 2 --
 2 files changed, 2 insertions(+), 2 deletions(-)

commit fb0d2898558e709ec143f4d165d2f605544c7837
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 20:14:59 2001 +0000

    Fold the callback back in; accept variable argument list with extra
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_peditor_new): Fold the callback
        back in; accept variable argument list with extra parameters
        (gconf_peditor_new_filename): Return the property editor
        (gconf_peditor_new_string_valist): Split this out
        (gconf_peditor_new_string): Call _valist variant
        (gconf_peditor_new*): Update
    
        * */*-properties*.c: Update according to above

 .../background/background-properties-capplet.c     |  12 +-
 capplets/common/ChangeLog                          |   9 ++
 capplets/common/gconf-property-editor.c            | 180 ++++++++++++++++-----
 capplets/common/gconf-property-editor.h            |  28 +++-
 capplets/keyboard/keyboard-properties.c            |  40 ++---
 capplets/mouse/gnome-mouse-properties.c            |  39 +++--
 capplets/mouse/mouse-properties-capplet.c          |  39 +++--
 capplets/screensaver/Makefile.am                   |  19 ++-
 8 files changed, 246 insertions(+), 120 deletions(-)

commit 7ec25076f06a01ae7091a563bdcd8ddcfde56b0a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 19:45:12 2001 +0000

    Add background, screensaver files (install-data-local): Allow
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * schemas/Makefile.am (schema_DATA): Add background, screensaver
        files
        (install-data-local): Allow specification of multiple schema files
    
        * capplets/default-applications/Makefile.am: Clean up

 ChangeLog                                 |  1 +
 capplets/background/Makefile.am           |  2 +-
 capplets/default-applications/ChangeLog   |  2 ++
 capplets/default-applications/Makefile.am | 48 +++++++++----------------------
 capplets/keyboard/Makefile.am             |  2 +-
 capplets/mouse/Makefile.am                |  2 +-
 6 files changed, 20 insertions(+), 37 deletions(-)

commit ac652d54ee94943ba9f27e6eb43f11f071d5b988
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Dec 20 19:10:50 2001 +0000

    Add missing rule for building screensaver.desktop

 capplets/screensaver/Makefile.am | 3 +++
 1 file changed, 3 insertions(+)

commit 7e964d36ec079d5f0c431c855c5a5a0305daeba9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 19:08:15 2001 +0000

    Remove obsolete stuff
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Remove obsolete stuff
    
        * screensavers/Makefile.am (install-data-local): Make sure
        share/control-center/screensavers directory is created
    
        * Replace screensaver.desktop.in.in with screensaver.desktop.in

 capplets/screensaver/ChangeLog                 |  5 +++++
 capplets/screensaver/Makefile.am               | 28 ++++----------------------
 capplets/screensaver/screensaver.desktop.in    |  8 ++++++++
 capplets/screensaver/screensaver.desktop.in.in |  8 --------
 capplets/screensaver/screensavers/Makefile.am  |  3 ++-
 5 files changed, 19 insertions(+), 33 deletions(-)

commit 89b1e89843e296a774dfab7313e8c06a0417d572
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Dec 20 18:58:11 2001 +0000

    Moved background, screensaver schema files to schemas

 ChangeLog                                |   3 +
 capplets/background/background.schema    | 105 -------------------------------
 capplets/screensaver/screensaver.schemas |  59 -----------------
 schemas/Makefile.am                      |   2 +-
 schemas/background.schemas               | 105 +++++++++++++++++++++++++++++++
 schemas/screensaver.schemas              |  59 +++++++++++++++++
 6 files changed, 168 insertions(+), 165 deletions(-)

commit 30389610b41d22659294a2cb06d23c6447fe9373
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 18:52:39 2001 +0000

    Add parameter GNOME_PARAM_APP_DATADIR
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/screensaver/main.c (main): Add parameter
        GNOME_PARAM_APP_DATADIR
    
        * mouse-properties-capplet.c (main): Add parameter
        GNOME_PARAM_APP_DATADIR
    
        * configure.in (GNOMECC_DESKTOP_DIR): Define
        (CINNAMONCC_DATA_DIR): Define
        Remove AC_DEFINE_UNQUOTED for the rest of the directories
    
        * All: Update to reflect above

 ChangeLog                                          |  4 +++
 acconfig.h                                         |  6 +---
 .../background/background-properties-capplet.c     |  2 +-
 capplets/keyboard/keyboard-properties.c            |  2 +-
 capplets/mouse/ChangeLog                           |  1 +
 capplets/mouse/gnome-mouse-properties.c            | 39 ++++++++++++++++------
 capplets/mouse/mouse-properties-capplet.c          | 39 ++++++++++++++++------
 capplets/screensaver/ChangeLog                     |  1 +
 capplets/screensaver/main.c                        |  3 +-
 capplets/screensaver/preferences.c                 |  6 ++--
 capplets/screensaver/prefs-widget.c                |  2 +-
 capplets/screensaver/preview.c                     | 18 ++++++++--
 capplets/screensaver/selection-dialog.c            |  5 ++-
 configure.in                                       | 10 ++----
 control-center/capplet-dir.c                       | 10 ++++--
 15 files changed, 99 insertions(+), 49 deletions(-)

commit 2dd5ccf964a0e30a5d6d7abe9b41f0799a1d1670
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 18:21:12 2001 +0000

    Update (main): Use a GtkDialog rather than a GnomeDialog; don't place a
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * *-properties*.c (dialog_button_clicked_cb): Update
        (main): Use a GtkDialog rather than a GnomeDialog; don't place a
        weak ref on gtk_main_quit

 capplets/background/ChangeLog                      |  3 +++
 capplets/background/Makefile.am                    |  3 +++
 .../background/background-properties-capplet.c     | 26 +++++++++++++++-------
 capplets/keyboard/ChangeLog                        |  4 ++++
 capplets/keyboard/Makefile.am                      |  3 +++
 capplets/keyboard/keyboard-properties.c            | 25 ++++++++++++++-------
 capplets/mouse/ChangeLog                           |  6 +++++
 capplets/mouse/Makefile.am                         |  3 +++
 capplets/mouse/gnome-mouse-properties.c            | 25 ++++++++++++++-------
 capplets/mouse/mouse-properties-capplet.c          | 25 ++++++++++++++-------
 10 files changed, 91 insertions(+), 32 deletions(-)

commit cb0a578f7e48a3782aeb88caa7c9456c89fb12c4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 17:58:44 2001 +0000

    Add
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * schemas/Makefile.am (EXTRA_DIST): Add
    
        * configure.in: Removed capplets/sound/Makefile
    
        * capplets/*/Makefile.am: Compilation fixes

 ChangeLog                                     |    4 +
 capplets/background/Makefile.am               |   12 +-
 capplets/keyboard/Makefile.am                 |    6 +-
 capplets/mouse/Makefile.am                    |   15 +-
 capplets/screensaver/Makefile.am              |    4 +-
 capplets/screensaver/screensavers/Makefile.am |    4 +-
 configure.in                                  |    1 -
 po/az.po                                      | 2434 +++++-----
 po/ca.po                                      | 2519 +++++-----
 po/cs.po                                      | 2293 +++++-----
 po/da.po                                      | 1691 +++----
 po/de.po                                      | 1520 +++----
 po/el.po                                      | 2325 +++++-----
 po/es.po                                      | 2202 +++++----
 po/fi.po                                      | 2228 +++++----
 po/fr.po                                      | 2332 +++++-----
 po/ga.po                                      | 2169 ++++-----
 po/hr.po                                      | 2197 ++++-----
 po/ja.po                                      | 2253 ++++-----
 po/lv.po                                      | 6055 +++++++++++++++----------
 po/nn.po                                      | 1534 +++----
 po/no.po                                      |  478 +-
 po/pl.po                                      | 2660 ++++++-----
 po/pt_BR.po                                   | 2207 +++++----
 po/ru.po                                      | 2327 ++++++----
 po/sk.po                                      |  544 ++-
 po/sl.po                                      | 2307 ++++++----
 po/sv.po                                      |  508 ++-
 po/tr.po                                      |  930 ++--
 po/uk.po                                      | 2241 ++++-----
 po/wa.po                                      | 2256 +++++----
 po/zh_CN.po                                   | 1177 ++---
 po/zh_TW.po                                   |  535 ++-
 schemas/Makefile.am                           |    2 +
 34 files changed, 28401 insertions(+), 23569 deletions(-)

commit a41721b331565b51709e3a343d280c1cffaa6ca1
Author: Hans Petter Jansson <hpj@ximian.com>
Date:   Thu Dec 20 17:09:32 2001 +0000

    Remove rule that prevented install.
    
    2001-12-20  Hans Petter Jansson  <hpj@ximian.com>
    
        * Makefile.am: Remove rule that prevented install.

 capplets/mouse/ChangeLog   | 4 ++++
 capplets/mouse/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 347e6f5603c88cc258cde346715cd16c1f36ff93
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 16:49:17 2001 +0000

    Update
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * POTFILES.in: Update

 po/ChangeLog   |  4 ++++
 po/POTFILES.in | 18 ++++++------------
 2 files changed, 10 insertions(+), 12 deletions(-)

commit f51312135cb5695e8cab3736ab25f5bef991aa95
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Dec 20 15:53:57 2001 +0000

    Replace .desktop.in.in with .desktop.in, as we no longer need the pixmap
    filename substitution in GNOME 2.0

 capplets/background/background.desktop.in    | 8 ++++++++
 capplets/background/background.desktop.in.in | 8 --------
 capplets/keyboard/keyboard.desktop.in        | 7 +++++++
 capplets/keyboard/keyboard.desktop.in.in     | 7 -------
 capplets/mouse/mouse.desktop.in              | 7 +++++++
 capplets/mouse/mouse.desktop.in.in           | 7 -------
 6 files changed, 22 insertions(+), 22 deletions(-)

commit 02397e55aa58b52a98e3b3093340268b8426bd90
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 15:46:08 2001 +0000

    Put gnome-settings-daemon after libbackgrounds
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (SUBDIRS): Put gnome-settings-daemon after
        libbackgrounds
    
        * background-properties-capplet.c: Update
    
        * capplets/background/Makefile.am: Update
    
        * background.desktop.in.in (Exec): Update
    
        * mouse.desktop.in.in (Exec): Update
    
        * capplets/keyboard/Makefile.am: Update
    
        * keyboard.desktop.in.in (Exec): Update
    
        * mouse.desktop.in.in (Exec): Update
    
        * gnome-settings-background.c: Update
    
        * applier.[ch]: Rename applier to bg_applier to avoid possible
        namespace collision

 ChangeLog                                          |   3 +
 Makefile.am                                        |   2 +-
 capplets/background/ChangeLog                      |   6 +
 capplets/background/Makefile.am                    |  56 +--
 .../background/background-properties-capplet.c     |  58 +--
 capplets/background/background.desktop.in.in       |   2 +-
 capplets/keyboard/ChangeLog                        |   6 +
 capplets/keyboard/Makefile.am                      |  51 +-
 capplets/keyboard/keyboard.desktop.in.in           |   2 +-
 capplets/mouse/ChangeLog                           |   4 +
 capplets/mouse/mouse.desktop.in.in                 |   2 +-
 gnome-settings-daemon/ChangeLog                    |   4 +
 gnome-settings-daemon/gnome-settings-background.c  |   8 +-
 libbackground/ChangeLog                            |   3 +
 libbackground/applier.c                            | 512 ++++++++++-----------
 libbackground/applier.h                            |  40 +-
 16 files changed, 354 insertions(+), 405 deletions(-)

commit a2b2b7932aa665a25a49f467dda79b2b115785a3
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 14:24:56 2001 +0000

    Rename preferences to bg_preferences to avoid possible namespace collision
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * libbackground/preferences.[ch]: Rename preferences to
        bg_preferences to avoid possible namespace collision
    
        * All: Update to reflect the above

 .../background/background-properties-capplet.c     | 20 +++---
 gnome-settings-daemon/gnome-settings-background.c  | 12 ++--
 libbackground/ChangeLog                            |  5 ++
 libbackground/applier.c                            | 60 ++++++++---------
 libbackground/applier.h                            | 16 ++---
 libbackground/preferences.c                        | 75 +++++++++++-----------
 libbackground/preferences.h                        | 30 ++++-----
 7 files changed, 112 insertions(+), 106 deletions(-)

commit b65967ac90637c80ae4349c5ee05a82c866b01d8
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Dec 20 14:11:59 2001 +0000

    Add common, background, keyboard, mouse back in
    
    2001-12-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (always_built_SUBDIRS): Add common,
        background, keyboard, mouse back in
    
        * configure.in (PKG_CHECK_MODULES): Remove lines pertaining to the
        archiver, add line for gnome settings daemon
    
        * background-properties-capplet.c (dialog_button_clicked_cb):
        Remove call to apply_settings
        (apply_settings): Remove
        (main): Remove apply_only support
    
        * default-application-properties.c (main): Call gtk_main, not
        capplet_gtk_main
    
        * interface.c: Don't #include capplet-widget.h
    
        * main.c: Don't #include capplet-widget.h or the archiver stuff
        (main): Call gtk_main rather than capplet_gtk_main
        Remove archiver stuff
        (setup_capplet_widget): Don't connect to state_changed_cb
        (state_changed_cb): Remove
        (main): Don't pass cap_options
    
        * gnome-settings-daemon/Makefile.am
        (gnome_settings_daemon_SOURCES): Add
        gnome-settings-{keyboard|background}.[ch]
        (INCLUDES): Add -I$(top_srcdir)/libbackground
        (gnome_settings_daemon_LDADD): Add
        $(top_builddir)/libbackground/libbackground.a
    
        * gnome-settings-daemon.c (main): Initialize keyboard and
        background subsystems
    
        * Added gnome-settings-{keyboard|background}.[ch],
        gnome-settings-daemon/ChangeLog

 ChangeLog                                          |   8 ++
 capplets/Makefile.am                               |   5 +-
 capplets/background/ChangeLog                      |   7 +
 .../background/background-properties-capplet.c     |  38 +----
 capplets/default-applications/ChangeLog            |   7 +
 .../default-application-properties.c               |   2 +-
 capplets/default-applications/interface.c          |   1 -
 capplets/keyboard/Makefile.am                      |   2 +-
 capplets/keyboard/keyboard-properties.c            |  64 ---------
 capplets/mouse/Makefile.am                         |   5 +-
 capplets/screensaver/ChangeLog                     |   9 ++
 capplets/screensaver/main.c                        | 157 +++------------------
 configure.in                                       |  19 +--
 gnome-settings-daemon/ChangeLog                    |  11 ++
 gnome-settings-daemon/Makefile.am                  |  12 +-
 gnome-settings-daemon/gnome-settings-background.c  |  64 +++++++++
 gnome-settings-daemon/gnome-settings-background.h  |  33 +++++
 gnome-settings-daemon/gnome-settings-daemon.c      |   2 +
 gnome-settings-daemon/gnome-settings-keyboard.c    | 106 ++++++++++++++
 gnome-settings-daemon/gnome-settings-keyboard.h    |  33 +++++
 20 files changed, 328 insertions(+), 257 deletions(-)

commit f8125160584a69ea7abde2e6570f7d0a8cffde4d
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Dec 19 22:18:45 2001 +0000

    Remove gnome-hint-properties.desktop.in
    
    2001-12-19  Seth Nickell  <snickell@stanford.edu>
    
        * POTFILES.in:
    
        Remove gnome-hint-properties.desktop.in

 po/ChangeLog   | 6 ++++++
 po/POTFILES.in | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 26f7fd7a09063e7ed36de2a71da2c3b977f36f89
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 21:20:20 2001 +0000

    Comment out; pending removal to gnome-settings-daemon (setup_dialog): Set
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (apply_settings): Comment out; pending
        removal to gnome-settings-daemon
        (setup_dialog): Set conversion functions
        (rate_to_widget, rate_from_widget, delay_to_widget)
        (delay_from_widget): Implement

 capplets/keyboard/ChangeLog             |   8 +++
 capplets/keyboard/keyboard-properties.c | 116 +++++++++++++++++++++++++++-----
 2 files changed, 107 insertions(+), 17 deletions(-)

commit e6e398cbae664423bb2665c99f0c1a194bf36140
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 20:44:11 2001 +0000

    Return FALSE (peditor_*_widget_changed): Just return if we are not fully
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (init_widget_cb): Return FALSE
        (peditor_*_widget_changed): Just return if we are not fully
        initialized
        (init_widget_cb): Set initialized flag
        (struct _GConfPropertyEditorPrivate): Add inited

 capplets/common/ChangeLog               |  7 +++++++
 capplets/common/gconf-property-editor.c | 15 ++++++++++++++-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 9ec85dedd57c6039ed422b344cd32cf340832a00
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 20:19:03 2001 +0000

    Connect to value_changed signal Add properties conv-{to|from}-widget-cb
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_peditor_new_float_range)
        (gconf_peditor_new_int_range): Connect to value_changed signal Add
        properties conv-{to|from}-widget-cb and use those for conversion
        of values to and from the widget
        (peditor_{int|float}_range_value_changed, friends): Combine into
        peditor_numeric_*
        (gconf_peditor_new): Implement. Factor out some common code from
        the various type-specific constructors
        (peditor_*_value_changed): Don't check if the value is the same as
        what is already in the widget; it's not very important
        (peditor_*_value_changed): Remove the key from the changeset
        (gconf_peditor_new_*): Add g_return_val_if_fail macros
        (gconf_peditor_widget_set_guard): Add g_return_if_fail macros
        (gconf_value_float_to_int, gconf_value_int_to_float): Implement
        (gconf_property_editor_set_prop): Store the callback in the
        property editor proper
        (gconf_peditor_new): Put initialization code in an idle handler
    
        * gconf-property-editor.c: Add ui-control property storing the
        object (normally a widget) that controls the property; remove
        object property and replace its function with ui-control

 capplets/common/ChangeLog               |  23 +-
 capplets/common/gconf-property-editor.c | 616 +++++++++++++++++---------------
 capplets/common/gconf-property-editor.h |  18 +-
 3 files changed, 346 insertions(+), 311 deletions(-)

commit e70b2fb62092fc30baddd78b1113ada8b1e6a616
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 20:18:23 2001 +0000

    Update to reflect changes in gconf peditors (setup_dialog): Use
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c (*_{to|from}_gconf): Update to
        reflect changes in gconf peditors
        (setup_dialog): Use numeric_range

 capplets/mouse/ChangeLog                  |  3 +
 capplets/mouse/gnome-mouse-properties.c   | 96 +++++++++++++++++++++----------
 capplets/mouse/mouse-properties-capplet.c | 96 +++++++++++++++++++++----------
 3 files changed, 135 insertions(+), 60 deletions(-)

commit bf698d95b16bc45d6a2b7a9202fe149ed72ff2af
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 14:59:13 2001 +0000

    Remove --apply and --init-session-settings
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c (main): Remove --apply and
        --init-session-settings

 capplets/mouse/ChangeLog                  | 1 +
 capplets/mouse/gnome-mouse-properties.c   | 4 ----
 capplets/mouse/mouse-properties-capplet.c | 4 ----
 3 files changed, 1 insertion(+), 8 deletions(-)

commit 3cacd8d82090f6a275623830ab83fd4ce94d3940
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 14:53:59 2001 +0000

    Connect to value_changed signal
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_peditor_new_float_range)
        (gconf_peditor_new_int_range): Connect to value_changed signal
    
        * capplet-util.c: Comment out most of this file
    
        * gconf-property-editor.c (gconf_peditor_new_int_range): Convert
        to ~_float_range
        (gconf_peditor_new_float_range): Add callbacks for conversion
        between widget's values and GConf values in the signature
        (peditor_float_range_widget_changed): Issue callback, if
        available, to convert from widget's values to GConf values
        (peditor_float_range_value_changed): Vice verca above
        (gconf_peditor_new_int_range, peditor_int_range_widget_changed)
        (peditor_int_range_value_changed): Implement. Copy from float
        versions

 capplets/common/ChangeLog               |  18 +++++
 capplets/common/capplet-util.c          |   8 +++
 capplets/common/gconf-property-editor.c | 123 +++++++++++++++++++++++++++++---
 capplets/common/gconf-property-editor.h |  61 +++++++++-------
 4 files changed, 176 insertions(+), 34 deletions(-)

commit b8fd80b0a185bda5dc55ace26d40b9ee6aca831e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Dec 19 14:53:45 2001 +0000

    Divide by 1000.0, use floats (double_click_to_gconf): Implement
    
    2001-12-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c (double_click_from_gconf): Divide by
        1000.0, use floats
        (double_click_to_gconf): Implement
        (drawing_area_button_press_event): Don't call
        double_click_from_gconf
        (drawing_area_button_press_event): Use response of
        gconf_change_set_check_value to determine if value is in changeset
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c (double_click_from_gconf): Single
        closed-form formula here
        Code reorganization; many changes

 capplets/mouse/ChangeLog                  |   16 +
 capplets/mouse/gnome-mouse-properties.c   |  524 ++++++------
 capplets/mouse/mouse-properties-capplet.c |  524 ++++++------
 capplets/mouse/mouse-properties.glade     | 1265 ++++++++++++++++++-----------
 4 files changed, 1295 insertions(+), 1034 deletions(-)

commit c1a1e50573b94dd96b06269bd3cfa907834be84a
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Dec 19 11:58:34 2001 +0000

    Remove because gnome-core is now installing for the new GNOME CC.
    
    2001-12-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * gnome-hint-properties.desktop.in:
    
        Remove because gnome-core is now installing for the
        new GNOME CC.

 capplets/desktop-links/ChangeLog                        | 8 ++++++++
 capplets/desktop-links/Makefile.am                      | 2 +-
 capplets/desktop-links/gnome-hint-properties.desktop.in | 7 -------
 3 files changed, 9 insertions(+), 8 deletions(-)

commit d214b63fe2a76872671113d208973d02c1daa22e
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Dec 19 11:41:19 2001 +0000

    Add Categories field so this won't show up in the root panel menu.
    
    2001-12-19  Seth Nickell  <snickell@stanford.edu>
    
        * screensaver.desktop.in.in:
    
        Add Categories field so this won't show up in the root
        panel menu.

 capplets/screensaver/ChangeLog                 | 7 +++++++
 capplets/screensaver/screensaver.desktop.in.in | 1 +
 2 files changed, 8 insertions(+)

commit b7e19c96b33b3cf5ca624d9c6db8c33f617d25ad
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Dec 19 11:38:30 2001 +0000

    Add Categories field so it shows up under the Settings submenu in the
    
    2001-12-19  Seth Nickell  <snickell@stanford.edu>
    
        * default-applications.desktop.in.in:
    
        Add Categories field so it shows up under the
        Settings submenu in the panel menus.

 capplets/default-applications/ChangeLog                          | 7 +++++++
 capplets/default-applications/default-applications.desktop.in.in | 1 +
 2 files changed, 8 insertions(+)

commit 3419fa82da21fb4b038ea3c8e518113d7618c5b1
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Dec 19 11:37:18 2001 +0000

    Add Categories field so it goes into the right location in the panel
    
    2001-12-19  Seth Nickell  <snickell@stanford.edu>
    
        * background.desktop.in.in:
    
        Add Categories field so it goes into the right location
        in the panel menus.

 capplets/background/ChangeLog                | 7 +++++++
 capplets/background/background.desktop.in.in | 1 +
 2 files changed, 8 insertions(+)

commit fafd072d0740639d56f1b6e71e64532b6881840e
Author: Seth Nickell <snickell@stanford.edu>
Date:   Wed Dec 19 11:31:56 2001 +0000

    Install into $datadir/applications and add a Categories field to the
    
    2001-12-19  Seth Nickell  <snickell@stanford.edu>
    
        * Makefile.am:
        * gnomecc.desktop.in:
    
        Install into $datadir/applications and add a Categories
        field to the .desktop file.

 control-center/ChangeLog          | 8 ++++++++
 control-center/Makefile.am        | 2 +-
 control-center/gnomecc.desktop.in | 1 +
 3 files changed, 10 insertions(+), 1 deletion(-)

commit f1aa0eed71e1d2b1a305239d5714175d9033a7f0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 21:13:16 2001 +0000

    Don't #include bonobo*.h
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.h: Don't #include bonobo*.h

 capplets/common/ChangeLog      |  2 ++
 capplets/common/capplet-util.h | 12 +++++-------
 2 files changed, 7 insertions(+), 7 deletions(-)

commit 5cf9b9e1786422a5484b9591221cbd507e26e442
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 21:13:03 2001 +0000

    Enable
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (get_legacy_settings): Enable

 capplets/keyboard/ChangeLog             |  1 +
 capplets/keyboard/keyboard-properties.c | 10 ++++++----
 2 files changed, 7 insertions(+), 4 deletions(-)

commit 9cf60515375a7175362ff1bb0296cee70817f5bd
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 21:06:51 2001 +0000

    Use return value of gconf_change_set_check_value to determine if the key
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c: (get_int_from_changeset): Use return
        value of gconf_change_set_check_value to determine if the key
        is in the set

 capplets/keyboard/ChangeLog             | 2 ++
 capplets/keyboard/keyboard-properties.c | 8 +++-----
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 4afd7a226f905c451727a9a8a75b86e6c934820b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 21:03:54 2001 +0000

    Port to GConf/GNOME 2.0. Many changes. (setup_dialog): Use correct widget
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c: Port to GConf/GNOME 2.0. Many changes.
        (setup_dialog): Use correct widget name
        (create_dialog): Use gtk_image_ functions for the volume icon
    
        * keyboard-properties.glade: Remove placeholders

 capplets/keyboard/ChangeLog                 |  2 ++
 capplets/keyboard/keyboard-properties.c     | 13 +++----------
 capplets/keyboard/keyboard-properties.glade | 14 +-------------
 3 files changed, 6 insertions(+), 23 deletions(-)

commit b8d35def7af2fe2f462c6e0d1637d03552c46ef1
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Dec 18 20:43:59 2001 +0000

    Added keyboard schemas

 schemas/peripherals.schemas | 89 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 89 insertions(+)

commit 6d8f83a769bd8e3aecb7a445000ee6739eabe728
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Dec 18 20:15:23 2001 +0000

    Added Glade 1.x version of the keyboard properties file

 capplets/keyboard/keyboard-properties.glade1 | 533 +++++++++++++++++++++++++++
 1 file changed, 533 insertions(+)

commit 819c1d2b8fe37a3ecb5a8c8dc8d53d52b55bf792
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 20:15:03 2001 +0000

    Port to GConf/GNOME 2.0. Many changes.
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c: Port to GConf/GNOME 2.0. Many changes.

 capplets/keyboard/ChangeLog                 |    4 +
 capplets/keyboard/keyboard-properties.c     |  229 +++---
 capplets/keyboard/keyboard-properties.glade | 1116 ++++++++++++++-------------
 3 files changed, 739 insertions(+), 610 deletions(-)

commit cb0a97e5a39aab5bd50f2a926fa7b886f7489bf4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 19:46:26 2001 +0000

    Don't #include bonobo.h
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c: Don't #include bonobo.h

 capplets/background/ChangeLog                       | 1 +
 capplets/background/background-properties-capplet.c | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 0f7c418ab121fd00312ef2f696afdb32c5ec4d00
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 19:37:49 2001 +0000

    Implement
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_int_range_value_changed)
        (peditor_int_range_widget_changed, gconf_peditor_new_int_range):
        Implement

 capplets/common/ChangeLog               |  9 +++--
 capplets/common/gconf-property-editor.c | 60 +++++++++++++++++++++++++++++++--
 capplets/common/gconf-property-editor.h |  3 ++
 3 files changed, 67 insertions(+), 5 deletions(-)

commit 19d945414824cdcc89a8ffdf4f128ee2db9e23ac
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:40:15 2001 +0000

    Use gconf_client rather than gconf_engine
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_load): Use gconf_client rather
        than gconf_engine

 libbackground/ChangeLog     |  1 +
 libbackground/preferences.c | 20 ++++++++++----------
 libbackground/preferences.h |  2 +-
 3 files changed, 12 insertions(+), 11 deletions(-)

commit 1efa46f92869d1c15081430283720835ae3e7ec7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:39:55 2001 +0000

    Use gconf_client rather than gconf_engine
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c: Use gconf_client rather than
        gconf_engine

 capplets/common/ChangeLog               |  1 +
 capplets/common/gconf-property-editor.c | 67 +++++++++++++++++----------------
 capplets/common/gconf-property-editor.h |  2 +-
 3 files changed, 36 insertions(+), 34 deletions(-)

commit 66f47e6a7841ffee06e346e8a1ffb225606fec3d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:39:30 2001 +0000

    Use gconf_client rather than gconf_engine (setup_dialog): Use correct path
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c: Use gconf_client rather than
        gconf_engine
        (setup_dialog): Use correct path for enabled
        (main): Preload the background settings directory for performance

 capplets/background/ChangeLog                      |  5 ++++
 .../background/background-properties-capplet.c     | 34 ++++++++++++----------
 2 files changed, 24 insertions(+), 15 deletions(-)

commit 26aba8a5e3dd31720bc452f70cac37df7f2f9597
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:18:35 2001 +0000

    Use actual signature for the changed signal
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_string_widget_changed): Use
        actual signature for the changed signal

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/gconf-property-editor.c | 6 +-----
 2 files changed, 6 insertions(+), 5 deletions(-)

commit b78df6748e9170a63136014516199703157d9fac
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:18:00 2001 +0000

    Update GConf keys to use /desktop/gnome/background
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c: Update GConf keys to use /desktop/gnome/background

 libbackground/ChangeLog     |  4 ++++
 libbackground/preferences.c | 32 ++++++++++++++++----------------
 2 files changed, 20 insertions(+), 16 deletions(-)

commit 1279ed6dcfc6ffa3b73300bc0c83002b77cfe424
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:17:44 2001 +0000

    Update keys to use /desktop/gnome/background
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * background.schema: Update keys to use /desktop/gnome/background
    
        * background-properties-capplet.c: Update GConf keys to use
        /desktop/gnome/background

 capplets/background/ChangeLog                      |  3 ++
 .../background/background-properties-capplet.c     | 36 +++++++++++-----------
 capplets/background/background.schema              | 36 +++++++++++-----------
 3 files changed, 39 insertions(+), 36 deletions(-)

commit 82a6d012550188bf4ff1418354bbb9936f824aaf
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 16:01:47 2001 +0000

    Remove (create_dialog): Return GladeXML, not GtkWidget (setup_dialog): Put
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (property_change_cb): Remove
        (create_dialog): Return GladeXML, not GtkWidget
        (setup_dialog): Put GladeXML in the signature rather than
        GtkWidget
        (peditor_value_changed): Retrieve color_frame directory rather
        than through Glade
        (real_realize_cb): Ditto
        (setup_dialog): Set color-frame rather than glade-data
        (main): Construct the preview applier here rather than in
        create_dialog
        (main): Unref the applier object when the dialog is destroyed
        (setup_dialog, create_dialog): Put the applier in the signature
        Use weak_ref rather than the destroy signal for all relevant
        objects

 capplets/background/ChangeLog                      |  17 +++
 .../background/background-properties-capplet.c     | 162 +++++++++++----------
 2 files changed, 104 insertions(+), 75 deletions(-)

commit 143d4e48e371e26838e8edcdf4c3860568755dff
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 14:33:23 2001 +0000

    Use GConf (gnomecc_preferences_save): Ditto
    
    2001-12-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (gnomecc_preferences_load): Use GConf
        (gnomecc_preferences_save): Ditto

 control-center/ChangeLog     |  5 +++++
 control-center/preferences.c | 34 ++++++++++++++++++++++------------
 2 files changed, 27 insertions(+), 12 deletions(-)

commit cd7b14dc6b5d869c90cb53a35f4d489c682108aa
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Dec 18 14:20:31 2001 +0000

    Move most of the initialization stuff from capplet_dir_view_new to here
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir-view.c (capplet_dir_view_init): Move most of the
        initialization stuff from capplet_dir_view_new to here
    
        * capplet-dir-view.[ch]: Port to GObject

 control-center/ChangeLog          |   5 +
 control-center/capplet-dir-view.c | 351 ++++++++++++++++++++------------------
 control-center/capplet-dir-view.h |  28 +--
 3 files changed, 208 insertions(+), 176 deletions(-)

commit d69facaef6594c9f52a298f5f3a1ec7aa8009cdc
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 20:47:24 2001 +0000

    Set the pixmap_id correctly if pixmap is NULL or -1.
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (set_root_pixmap): Set the pixmap_id correctly if
        pixmap is NULL or -1.

 libbackground/ChangeLog | 3 +++
 libbackground/applier.c | 5 ++++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit d43d10b25e0d921c6ea554e4fc59094dccf96aae
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 20:33:32 2001 +0000

    Update
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background.desktop.in.in (Exec): Update

 capplets/background/ChangeLog                | 2 ++
 capplets/background/background.desktop.in.in | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 74227fb5dcbb8c0c68ca7cbd88864f3366c2f238
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 20:33:19 2001 +0000

    Remove support for launching capplets (real_launch_control): Remove
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (main): Remove support for launching capplets
        (real_launch_control): Remove
    
        * capplet-dir.c: Remove bonobo capplet utility functions
        (capplet_activate): Don't use capplet_control_launch

 control-center/ChangeLog     |   8 +++
 control-center/capplet-dir.c | 138 ++-----------------------------------------
 control-center/main.c        |  44 +++-----------
 3 files changed, 22 insertions(+), 168 deletions(-)

commit 0fb231b7d01157c62fadabadbdf29e7fc58d378e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 20:01:22 2001 +0000

    Set the sensitivity of the color frame depending on the settings
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (peditor_value_changed): Set
        the sensitivity of the color frame depending on the settings
        (peditor_value_changed): Use correct keys

 capplets/background/ChangeLog                       | 3 +++
 capplets/background/background-properties-capplet.c | 9 +++++++++
 2 files changed, 12 insertions(+)

commit 27097008ce8bfe1fedb80ef637d57e6d28770d57
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 19:33:12 2001 +0000

    Enabled set_guard call
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Enabled
        set_guard call

 capplets/background/ChangeLog                       | 1 +
 capplets/background/background-properties-capplet.c | 5 +----
 2 files changed, 2 insertions(+), 4 deletions(-)

commit 250f23b97b497346e6a60b667b9d8a09ca524c3b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 19:32:15 2001 +0000

    Work correctly with multiple callback signatures
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_string_widget_changed):
        Work correctly with multiple callback signatures
        (gconf_peditor_new_string): Use changed signal

 capplets/common/ChangeLog               |  4 ++++
 capplets/common/gconf-property-editor.c | 28 +++++++++++++++-------------
 capplets/common/gconf-property-editor.h |  3 +--
 3 files changed, 20 insertions(+), 15 deletions(-)

commit 7b408b24fca3ca1b1c9a703bc3bd3dcc66bc745b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 18:33:12 2001 +0000

    Connect missing signal
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Connect
        missing signal

 capplets/background/ChangeLog                       | 1 +
 capplets/background/background-properties-capplet.c | 1 +
 2 files changed, 2 insertions(+)

commit 3504b0d5ab1b1c12d8a072b54f18643ec497cbe5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 18:23:47 2001 +0000

    Use correct keys
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_merge_entry): Use correct keys

 libbackground/ChangeLog     |  4 ++++
 libbackground/preferences.c | 10 ++++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit ac131fc55474725fd29f2a6fa7c4ee208f395699
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 18:23:18 2001 +0000

    Use gtk_option_menu_set_history
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_select_menu_value_changed):
        Use gtk_option_menu_set_history

 capplets/common/ChangeLog               | 2 ++
 capplets/common/gconf-property-editor.c | 4 +---
 2 files changed, 3 insertions(+), 3 deletions(-)

commit aa5de9e7cc306e8aa0617cb1d8eff4ed1c0142e4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 18:18:22 2001 +0000

    Implement (peditor_color_widget_changed): Use correct signature for the
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_property_editor_get_key):
        Implement
        (peditor_color_widget_changed): Use correct signature for the
        signal handler

 capplets/common/ChangeLog               |  9 +++++++++
 capplets/common/gconf-property-editor.c | 28 ++++++++++++----------------
 capplets/common/gconf-property-editor.h |  2 ++
 3 files changed, 23 insertions(+), 16 deletions(-)

commit 7241f0420628857bdda11b6dd90e90d00b4dbd35
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 18:17:57 2001 +0000

    Retrieve the applier from the preferences object and use it to apply
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (peditor_value_changed):
        Retrieve the applier from the preferences object and use it to
        apply settings on the preview widget

 capplets/background/ChangeLog                      |  5 ++++
 .../background/background-properties-capplet.c     | 30 +++++++++++++++++++---
 2 files changed, 31 insertions(+), 4 deletions(-)

commit 182743f90e5aa9749161bdb0fb9fc8b1432d8d2a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 18:17:25 2001 +0000

    s/gtk_object_destroy/g_object_unref/
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (applier_apply_prefs):
        s/gtk_object_destroy/g_object_unref/

 libbackground/ChangeLog | 1 +
 libbackground/applier.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 756102ee52a6aa3bc6e8eb93898f08811ac6dc32
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 17:34:38 2001 +0000

    Apply settings after commiting the change set
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (dialog_button_clicked_cb):
        Apply settings after commiting the change set

 capplets/background/ChangeLog                       | 2 ++
 capplets/background/background-properties-capplet.c | 7 +++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit f8dbd8090f6a1663260dd9a19f0e84d299fab12d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 17:28:23 2001 +0000

    Don't hide opacity controls
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Don't hide
        opacity controls
    
        * background-properties.glade: Remove opacity controls

 capplets/background/ChangeLog                      |  3 +
 .../background/background-properties-capplet.c     |  4 -
 capplets/background/background-properties.glade    | 84 +------------------
 capplets/background/background-properties.glade1   | 97 +---------------------
 4 files changed, 7 insertions(+), 181 deletions(-)

commit 271d455a9866a3385b2eba1deacc9ff0232351b7
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Dec 17 17:21:53 2001 +0000

    Usual update, and convert to UTF-8

 po/ChangeLog |    5 +
 po/zh_TW.po  | 2524 ++++++++++++++++++++++++++++------------------------------
 2 files changed, 1225 insertions(+), 1304 deletions(-)

commit c93c970346335dff7cec01081ad71e4cae5aec45
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 17:06:39 2001 +0000

    Added wallpaper-enabled
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background.schema: Added wallpaper-enabled

 capplets/background/ChangeLog         |  2 ++
 capplets/background/background.schema | 11 +++++++++++
 2 files changed, 13 insertions(+)

commit 933f9f190d419a828a2480198d58125c18c0aeac
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 17:03:42 2001 +0000

    Make sure the pixmap is masked correctly
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (applier_get_preview_widget): Make sure the pixmap is
        masked correctly

 libbackground/ChangeLog |  5 +++++
 libbackground/applier.c | 19 ++++++++++++++-----
 2 files changed, 19 insertions(+), 5 deletions(-)

commit fd0119b1e9c84b1e27ae9f6592e7d4011ab0276e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 16:23:10 2001 +0000

    Use prefs_widget rather than preview placeholder widget
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (create_dialog): Use
        prefs_widget rather than preview placeholder widget
    
        * background-properties.glade: Remove the preview placeholder

 capplets/background/ChangeLog                      |  5 ++
 .../background/background-properties-capplet.c     |  2 +-
 capplets/background/background-properties.glade    | 65 ++++++----------------
 capplets/background/background-properties.glade1   | 59 ++++++--------------
 4 files changed, 41 insertions(+), 90 deletions(-)

commit 1f7b8868dfbf53630ce228c64d3959d591f30700
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Dec 17 14:41:33 2001 +0000

    Use a local stack variable for the color rather than a pointer. Duh.
    
    2001-12-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_color_value_changed): Use a
        local stack variable for the color rather than a pointer. Duh.

 capplets/common/ChangeLog               | 10 ++++++++++
 capplets/common/gconf-property-editor.c | 13 ++++---------
 2 files changed, 14 insertions(+), 9 deletions(-)

commit f666939831cb0bf257e00f0465582a89a3dad4ab
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sun Dec 16 08:24:23 2001 +0000

    Handle mouse properties.

 gnome-settings-daemon/.cvsignore                 |  3 ++
 gnome-settings-daemon/gnome-settings-daemon.c    |  9 ++++
 gnome-settings-daemon/gnome-settings-daemon.h    |  7 ++-
 gnome-settings-daemon/gnome-settings-mouse.c     | 55 +++++++++++++++++++++++-
 gnome-settings-daemon/gnome-settings-xsettings.c | 11 ++++-
 5 files changed, 79 insertions(+), 6 deletions(-)

commit 48afecfd9c5a543e88b5590c6a5547e59bf8e307
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sun Dec 16 08:23:09 2001 +0000

    Rewrote mouse-properties capplet.

 capplets/mouse/Makefile.am                  |  52 +-
 capplets/mouse/double-click-maybe.png       | Bin 0 -> 4491 bytes
 capplets/mouse/double-click-off.png         | Bin 0 -> 4495 bytes
 capplets/mouse/double-click-on.png          | Bin 0 -> 4627 bytes
 capplets/mouse/gnome-mouse-properties.c     | 620 ++++++++++++++--------
 capplets/mouse/gnome-mouse-properties.glade | 790 ++++++++++++++++++++++++++++
 capplets/mouse/mouse-left.png               | Bin 9532 -> 9676 bytes
 capplets/mouse/mouse-properties-capplet.c   | 620 ++++++++++++++--------
 capplets/mouse/mouse-right.png              | Bin 9448 -> 9572 bytes
 9 files changed, 1578 insertions(+), 504 deletions(-)

commit 83162b803944dcdab26ad02d2cf52d473f617eea
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Dec 14 01:27:14 2001 +0000

    Remove all g_print statements. (header_expose_cb): Fix pixbuf clipping.
    
    2001-12-13  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir-view-list.c: Remove all g_print statements.
        (header_expose_cb): Fix pixbuf clipping.
    
        * capplet-dir-view.c (capplet_dir_view_new):
        s/gtk_object_unref/g_object_unref.
    
        * main.c (main): s/bonobo_main/gtk_main.

 control-center/ChangeLog               | 10 ++++++++++
 control-center/capplet-dir-view-list.c | 29 ++++++++++++-----------------
 control-center/capplet-dir-view.c      |  2 +-
 control-center/main.c                  |  2 +-
 4 files changed, 24 insertions(+), 19 deletions(-)

commit 18ba1f45f6a8a63bf1a950b97ec36d04532fa243
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Dec 13 19:45:04 2001 +0000

    Updated Norwegian (bokml) translation. Updated this too.
    
    2001-12-13  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.
        * POTFILES.in: Updated this too.

 po/ChangeLog   |   17 +-
 po/POTFILES.in |    5 +
 po/no.po       | 2207 ++++++++++++++++++++++++++++++--------------------------
 3 files changed, 1205 insertions(+), 1024 deletions(-)

commit a3caf7983f65000f555d1ee52e327cdf62369414
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Thu Dec 13 13:19:06 2001 +0000

    Updated Slovak translation.
    
    2001-12-13  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +++
 po/sk.po     | 102 ++++++++++-------------------------------------------------
 2 files changed, 21 insertions(+), 85 deletions(-)

commit 20c9572efc573e2e146aed7948d4d26f92a46c25
Author: Hector Garcia <hectorg@src.gnome.org>
Date:   Tue Dec 11 15:16:42 2001 +0000

    Updated Spanish Translation.

 po/ChangeLog |   4 ++
 po/es.po     | 194 +++++++++++++++++++++++++----------------------------------
 2 files changed, 86 insertions(+), 112 deletions(-)

commit 336cdd5866db1a3afd49d9aee9e3bc9bb521e9a3
Author: Wang Jian <lark@src.gnome.org>
Date:   Tue Dec 11 15:13:30 2001 +0000

    *** empty log message ***

 po/ChangeLog |    5 +
 po/zh_CN.po  | 1261 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 636 insertions(+), 630 deletions(-)

commit 3204a65152dc40ef3cfec3ab724040472e194964
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Tue Dec 11 12:53:12 2001 +0000

    Updated Slovak translation.
    
    2001-12-11  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 796 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 432 insertions(+), 368 deletions(-)

commit 592b676980c6d158a6d7daaead78fd8c3441fb42
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Dec 10 19:18:36 2001 +0000

    Updated Swedish translation.
    
    2001-12-10  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 665 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 310 insertions(+), 359 deletions(-)

commit f6f9711f6f6a2a33096fdeaf433bb41b43a6e524
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Dec 10 05:31:44 2001 +0000

    use gconf macros.
    
    Sun Dec  9 19:24:47 2001  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: use gconf macros.

 ChangeLog                                        |  4 ++++
 configure.in                                     | 15 ++++-----------
 gnome-settings-daemon/gnome-settings-xsettings.c |  8 ++++----
 schemas/Makefile.am                              |  6 ++----
 4 files changed, 14 insertions(+), 19 deletions(-)

commit 757434ab94990e1d4084a239b5f6e59e401e56cf
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Sun Dec 9 18:50:32 2001 +0000

    Import from gconf-xsettings module. Cleaned up a bunch, and made to work
    
    Sat Dec  8 21:33:10 2001  Jonathan Blandford  <jrb@redhat.com>
    
        * gnome-settings-daemon/gnome-settings-daemon.c (main): Import
        from gconf-xsettings module.  Cleaned up a bunch, and made to work
        with mouse properties too.
    
        * schemas/peripherals.schemas: New location for schemas.  Need to
        write many more.

 ChangeLog                                        |   9 +
 Makefile.am                                      |   3 +-
 configure.in                                     |  22 +-
 gnome-settings-daemon/Makefile.am                |  17 +
 gnome-settings-daemon/gnome-settings-daemon.c    | 180 ++++++++++
 gnome-settings-daemon/gnome-settings-daemon.h    |  34 ++
 gnome-settings-daemon/gnome-settings-mouse.c     | 126 +++++++
 gnome-settings-daemon/gnome-settings-mouse.h     |  32 ++
 gnome-settings-daemon/gnome-settings-xsettings.c | 184 ++++++++++
 gnome-settings-daemon/gnome-settings-xsettings.h |  33 ++
 gnome-settings-daemon/xsettings-common.c         | 261 ++++++++++++++
 gnome-settings-daemon/xsettings-common.h         | 110 ++++++
 gnome-settings-daemon/xsettings-manager.c        | 424 +++++++++++++++++++++++
 gnome-settings-daemon/xsettings-manager.h        |  71 ++++
 schemas/Makefile.am                              |   7 +
 schemas/peripherals.schemas                      |  74 ++++
 16 files changed, 1585 insertions(+), 2 deletions(-)

commit 9f8ed1254fb28f3e92ef96804c6c5b435907cc3f
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Sun Dec 9 12:23:40 2001 +0000

    retrieve translation in utf-8 codeset. Do not setlocale (). remove intl.
    
    2001-12-09  Gediminas Paulauskas <menesis@delfi.lt>
    
        * *.c (main): retrieve translation in utf-8 codeset. Do not
        setlocale ().
        * some Makefile.am (INCLUDES): remove intl.
        (..._LDADD): remove INTLLIBS

 ChangeLog                                                      | 7 +++++++
 archiver/Makefile.am                                           | 3 ---
 archiver/archiver-client.c                                     | 2 +-
 archiver/config-archiver.c                                     | 1 +
 archiver/config-manager.c                                      | 1 +
 archiver/main.c                                                | 1 +
 capplets/background/background-properties-capplet.c            | 1 +
 capplets/background/main.c                                     | 1 +
 capplets/common/Makefile.am                                    | 1 -
 capplets/common/capplet-util.c                                 | 1 +
 capplets/default-applications/default-application-properties.c | 4 ++--
 capplets/keyboard/main.c                                       | 1 +
 capplets/mouse/main.c                                          | 1 +
 capplets/rollback/main.c                                       | 1 +
 capplets/screensaver/main.c                                    | 4 +++-
 capplets/sound/main.c                                          | 1 +
 control-center/Makefile.am                                     | 2 --
 control-center/main.c                                          | 1 +
 libbackground/Makefile.am                                      | 1 -
 root-manager/Makefile.am                                       | 3 +--
 root-manager/root-manager-helper.c                             | 3 +--
 root-manager/root-manager.c                                    | 3 +--
 22 files changed, 27 insertions(+), 17 deletions(-)

commit b045659c8e9641faaac7d4d1480409587dfcc9b9
Author: Gediminas Paulauskas <menesis@delfi.lt>
Date:   Sun Dec 9 12:19:41 2001 +0000

    retrieve translations in utf-8
    
    2001-12-09  Gediminas Paulauskas <menesis@delfi.lt>
    
        * *.c: (main): retrieve translations in utf-8

 capplets/file-types/file-types-capplet.c | 1 +
 capplets/mime-type/mime-type-capplet.c   | 1 +
 capplets/theme-switcher/main.c           | 1 +
 capplets/ui-properties/main.c            | 1 +
 capplets/url-properties/url-properties.c | 1 +
 5 files changed, 5 insertions(+)

commit 3f72d399ea0df870d5584ab4ca5d31a968deecf9
Author: Gediminas Paulauskas <menesis@src.gnome.org>
Date:   Sun Dec 9 12:16:14 2001 +0000

    silent war

 .cvsignore                                 | 9 ++-------
 capplets/theme-switcher/control/.cvsignore | 4 ++++
 libbackground/.cvsignore                   | 2 ++
 po/.cvsignore                              | 2 ++
 4 files changed, 10 insertions(+), 7 deletions(-)

commit e1140e0b47bc517d6852c5c5222c97e03835e3e9
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Sun Dec 9 06:23:33 2001 +0000

    sorry

 capplets/theme-switcher/gtk-theme-switcher.schemas | 47 ++++++++++++++++++++++
 1 file changed, 47 insertions(+)

commit 5642fa5af0640c592b7ba3716e2a1eb73ccf3435
Author: Havoc Pennington <hp@pobox.com>
Date:   Sun Dec 9 05:05:04 2001 +0000

    remove no-longer-existing header gnome-vfs-mime-info.h so it compiles
    
    2001-12-09  Havoc Pennington  <hp@pobox.com>
    
        * file-types-capplet.c: remove no-longer-existing header
        gnome-vfs-mime-info.h so it compiles
    
        * file-types-capplet-dialogs.c: ditto

 capplets/file-types/ChangeLog                    | 7 +++++++
 capplets/file-types/file-types-capplet-dialogs.c | 1 -
 capplets/file-types/file-types-capplet.c         | 1 -
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 16c673a0f7524f99fea5d26ae4950ccab2ea1be0
Author: Havoc Pennington <hp@pobox.com>
Date:   Sun Dec 9 04:44:37 2001 +0000

    add gnome-desktop-2.0 to CFLAGS, add AC_PROG_INTLTOOL
    
    2001-12-08  Havoc Pennington  <hp@pobox.com>
    
        * configure.in (COMMON_MODULES): add gnome-desktop-2.0 to CFLAGS,
        add AC_PROG_INTLTOOL
    
    2001-12-08  Havoc Pennington  <hp@pobox.com>
    
        * POTFILES.in: remove applier.c which doesn't exist
    
    2001-12-08  Havoc Pennington  <hp@pobox.com>
    
        * capplet-dir-view.c: remove unused include that broke stuff
    
        * capplet-dir.c (capplet_activate): fix args to
        gnome_desktop_item_launch
    
    2001-12-08  Havoc Pennington  <hp@pobox.com>
    
        * gnome-startup.h: use G_BEGIN_DECLS so it builds

 ChangeLog                            | 5 +++++
 capplets/screensaver/ChangeLog       | 4 ++++
 capplets/screensaver/gnome-startup.h | 5 ++---
 configure.in                         | 4 +++-
 control-center/ChangeLog             | 7 +++++++
 control-center/capplet-dir-view.c    | 1 -
 control-center/capplet-dir.c         | 2 +-
 po/ChangeLog                         | 4 ++++
 po/POTFILES.in                       | 1 -
 9 files changed, 26 insertions(+), 7 deletions(-)

commit f8cc94520d3095c756729bc455cb6a9523722080
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 9 04:23:35 2001 +0000

    Port to GConf.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * Port to GConf.

 capplets/theme-switcher/ChangeLog                  |  4 ++
 capplets/theme-switcher/Makefile.am                | 14 ++++++-
 .../control/GNOME_Theme_Preview.server.in          |  4 +-
 capplets/theme-switcher/gui.c                      | 44 ++++++++++++----------
 capplets/theme-switcher/gui.c-6060                 | 44 ++++++++++++----------
 5 files changed, 69 insertions(+), 41 deletions(-)

commit bf1d38501d51fe0ad393e9a73233a65823363150
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 9 03:38:35 2001 +0000

    Partial revamp to use bonobo control instead of bug-prone custom socket;
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * Partial revamp to use bonobo control instead of bug-prone
        custom socket; also port away from libcapplet.

 capplets/theme-switcher/ChangeLog                  |   5 +
 capplets/theme-switcher/Makefile.am                |   3 +-
 .../control/GNOME_Theme_Preview.server.in          |  23 +++
 capplets/theme-switcher/control/Makefile.am        |  20 +++
 capplets/theme-switcher/control/control.c          | 189 +++++++++++++++++++++
 capplets/theme-switcher/da.h                       |  13 +-
 capplets/theme-switcher/da.h-67648                 |  13 +-
 capplets/theme-switcher/gui.c                      |  96 +++++++----
 capplets/theme-switcher/gui.c-6060                 |  96 +++++++----
 capplets/theme-switcher/main.c                     |  23 +--
 10 files changed, 371 insertions(+), 110 deletions(-)

commit 5146b73151e764483c99713f4e021fc6a6fdd143
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 9 03:26:21 2001 +0000

    Port to GConf, away from libcapplet.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * Port to GConf, away from libcapplet.

 capplets/wm-properties/ChangeLog               |   4 +
 capplets/wm-properties/wm-list.c               |  25 ++++--
 capplets/wm-properties/wm-properties-capplet.c | 106 ++++++++++++++-----------
 3 files changed, 85 insertions(+), 50 deletions(-)

commit 381e53db7a58a7216c1c30edf7cce1fb819fde20
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 9 00:53:47 2001 +0000

    Port to GConf.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * url-properties.c: Port to GConf.

 capplets/url-properties/ChangeLog        |   4 +
 capplets/url-properties/url-properties.c | 159 +++++++++++++++++--------------
 2 files changed, 90 insertions(+), 73 deletions(-)

commit 60bff1b3b9ea7c210971a3106b579fbe1e80ea26
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 9 00:52:26 2001 +0000

    Port away from libcapplet.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * file-types-capplet.c: Port away from libcapplet.
    
        * file-types-capplet-dialogs.c: Don't include capplet-widget.h.

 capplets/file-types/ChangeLog                    |  6 +++
 capplets/file-types/file-types-capplet-dialogs.c |  1 -
 capplets/file-types/file-types-capplet.c         | 47 ++++++++++++++----------
 3 files changed, 33 insertions(+), 21 deletions(-)

commit 0324d8cebf8fa1a75053ad25e3ea9c284f7111de
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Dec 8 20:12:06 2001 +0000

    Remove bonobo subdirs so people stop yelling at us.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * capplets/Makefile.am: Remove bonobo subdirs so people
        stop yelling at us.

 ChangeLog            | 5 +++++
 capplets/Makefile.am | 3 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 9ea850c68dae7e3adb16ed7aee89b1e9e288d1fe
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Dec 8 20:07:30 2001 +0000

    Fix call to gnome_icon_list_insert. (list_create): Update call to
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir-view-list.c (list_populate): Fix call to
        gnome_icon_list_insert.
        (list_create): Update call to gnome_icon_list_new, and use
        a GtkHPaned instead of a GtkHBox.

 control-center/ChangeLog               |  7 +++++++
 control-center/capplet-dir-view-list.c | 11 +++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit a9a9c6691626978d5f1b9f9e13072fe0a9aec746
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Dec 8 07:01:32 2001 +0000

    Add special gconf defines (gconftool, etc).
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Add special gconf defines (gconftool, etc).

 ChangeLog    |  4 ++++
 configure.in | 20 ++++++++++++++++++++
 2 files changed, 24 insertions(+)

commit 770968fa255aa45dd51ab14b8196f37034a36f6f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Dec 8 06:55:45 2001 +0000

    Port to GConf.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * preferences.c (preferences_load/save): Port to GConf.
    
        * main.c (setup_capplet_widget): Port away from libcapplet,
        use a GtkDialog.
        (main): Call gnome_program_init.
    
        * screensaver.schemas: Added.
    
        * Makefile.am: Install schema file.

 capplets/screensaver/ChangeLog           |  12 +++
 capplets/screensaver/Makefile.am         |   5 +
 capplets/screensaver/main.c              | 176 +++++++++----------------------
 capplets/screensaver/preferences.c       |  61 ++++++++---
 capplets/screensaver/screensaver.schemas |  59 +++++++++++
 5 files changed, 168 insertions(+), 145 deletions(-)

commit 1978e49b89502c4168950b9e0aba8247d2b2c6aa
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Dec 8 06:37:51 2001 +0000

    Port to GConf.
    
    2001-12-08  Richard Hestilow  <hestilow@ximian.com>
    
        * Port to GConf.

 capplets/default-applications/ChangeLog            |   4 +
 capplets/default-applications/callbacks.c          |  34 +-
 .../default-application-properties.c               | 576 ++++++++++-----------
 capplets/default-applications/defaults.h           |  17 +-
 capplets/default-applications/interface.c          |  10 +-
 5 files changed, 314 insertions(+), 327 deletions(-)

commit 8561c302998585df0c1eec2847b835b014333850
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 22:05:36 2001 +0000

    Fix default values
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
            * background.schema: Fix default values

 capplets/background/ChangeLog         |  2 ++
 capplets/background/background.schema | 14 +++++++-------
 2 files changed, 9 insertions(+), 7 deletions(-)

commit 3aa4e58a6b6fefa6242a74c6f6b62fbbe35fba6f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 19:56:51 2001 +0000

    Initialize the error structure
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_load): Initialize the error
        structure

 libbackground/ChangeLog     | 1 +
 libbackground/preferences.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit bf475e937465c3ba87294f007ea7f510aab4dcea
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 19:56:23 2001 +0000

    Connect the destroy signal
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (main): Connect the destroy
        signal
    
        * background.schema: Fix type on opacity schema

 capplets/background/ChangeLog                       | 5 +++++
 capplets/background/background-properties-capplet.c | 1 +
 capplets/background/background.schema               | 2 +-
 3 files changed, 7 insertions(+), 1 deletion(-)

commit 8133132cd2eeb60e283c58fb307b60638929d454
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 19:35:11 2001 +0000

    NULL-terminate the dialog construction parameters
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (main): NULL-terminate the
        dialog construction parameters

 capplets/background/ChangeLog                       | 2 ++
 capplets/background/background-properties-capplet.c | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 58d92fe12a0996c631f6a80b4d5d87e844afa17f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 19:34:21 2001 +0000

    Check if string is non-NULL
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (read_color_from_string): Check if string is
        non-NULL

 libbackground/ChangeLog     |  3 +++
 libbackground/preferences.c | 12 +++++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

commit 4703f9f1a1fd4867834767c330a6a061821fd33a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 19:33:40 2001 +0000

    Make sure value is non-NULL
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (peditor_*_value_changed): Make sure
        value is non-NULL

 capplets/common/ChangeLog               |  1 +
 capplets/common/gconf-property-editor.c | 37 ++++++++++++++++++++-------------
 2 files changed, 24 insertions(+), 14 deletions(-)

commit e3e6ee216f1b2acd7e8db3e6e6dd17b4f70248d5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 19:15:14 2001 +0000

    Make the changeset property a pointer (gconf_property_editor_set_prop):
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_property_editor_class_init):
        Make the changeset property a pointer
        (gconf_property_editor_set_prop): Use g_value_get_object for the
        destroy notify object

 capplets/common/ChangeLog               |  4 ++++
 capplets/common/gconf-property-editor.c | 13 ++++++-------
 2 files changed, 10 insertions(+), 7 deletions(-)

commit bb8f864104bcd8f798925efd8a4cdc3c3b3a7010
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 17:38:07 2001 +0000

    Terminate the parameter list passed to g_object_new with NULL
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_peditor_new_*): Terminate the
        parameter list passed to g_object_new with NULL

 capplets/common/ChangeLog               |  2 ++
 capplets/common/gconf-property-editor.c | 18 +++++++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit 215f0ebb20a22790be5dac704a0ee647d98d0298
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 17:35:00 2001 +0000

    Construct the GC before using it
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (applier_get_preview_widget): Construct the GC
        before using it

 libbackground/ChangeLog | 1 +
 libbackground/applier.c | 1 +
 2 files changed, 2 insertions(+)

commit 56714406297532296e96d937dac4e297ecb43ee4
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Dec 7 17:30:26 2001 +0000

    Added Glade 1.x version of file for future interface tweaking pending
    the creation of a libglade-2.0 -compatible Glade.

 capplets/background/background-properties.glade1 | 398 +++++++++++++++++++++++
 1 file changed, 398 insertions(+)

commit a52a434f78b2c4925bc300660f5d2a4602326998
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 17:29:43 2001 +0000

    Remove use of capplet_init, instead do the initialization ourselves (note:
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (main): Remove use of
        capplet_init, instead do the initialization ourselves (note: this
        means we are no longer a Bonobo control)
        (dialog_button_clicked_cb): Implement
    
        * background-properties.glade: libglade-convert

 capplets/background/ChangeLog                      |   7 +
 .../background/background-properties-capplet.c     |  55 +-
 capplets/background/background-properties.glade    | 885 ++++++++++++---------
 3 files changed, 547 insertions(+), 400 deletions(-)

commit 5ac70e7b7152694acd9a2b1fd19f05e21de27449
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 17:28:28 2001 +0000

    Use correct ordering of setup
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * gconf-property-editor.c (gconf_property_editor_class_init): Use
        correct ordering of setup

 capplets/common/ChangeLog               | 5 +++++
 capplets/common/capplet-util.c          | 2 +-
 capplets/common/capplet-util.h          | 6 ++++++
 capplets/common/gconf-property-editor.c | 8 ++++----
 4 files changed, 16 insertions(+), 5 deletions(-)

commit d2042f6fa9caec396993779fb7c1acd5350d9bf6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Dec 7 17:28:09 2001 +0000

    Initialize object_class properly before using it; install property after
    
    2001-12-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (applier_class_init): Initialize object_class properly
        before using it; install property after {get|set}_property are set

 libbackground/ChangeLog |  5 +++++
 libbackground/applier.c | 13 +++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit abd06447c9e814ab20b6b5ccf58c228f8b644190
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Dec 7 00:04:00 2001 +0000

    Added schema for background properties

 capplets/background/background.schema | 94 +++++++++++++++++++++++++++++++++++
 1 file changed, 94 insertions(+)

commit 669a1e2f3a7dd336ee030743b4c78e39656c75e9
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Dec 6 23:53:58 2001 +0000

    Removed background rendering code from the background capplet and moved it
    to a separate static library.

 Makefile.am                                        |    2 +-
 capplets/background/Makefile.am                    |    8 +-
 capplets/background/applier.c                      | 1416 --------------------
 capplets/background/applier.h                      |   72 -
 .../background/background-properties-capplet.c     |    1 +
 capplets/background/preferences.c                  |  263 ----
 capplets/background/preferences.h                  |   88 --
 configure.in                                       |    1 +
 control-center/capplet-dir-view.c                  |    6 -
 libbackground/Makefile.am                          |   16 +
 libbackground/applier.c                            | 1416 ++++++++++++++++++++
 libbackground/applier.h                            |   72 +
 libbackground/preferences.c                        |  263 ++++
 libbackground/preferences.h                        |   88 ++
 14 files changed, 1861 insertions(+), 1851 deletions(-)

commit 4571311094d5a04b94922010f9cb179735aea715
Author: Owen Taylor <otaylor@redhat.com>
Date:   Tue Dec 4 05:49:20 2001 +0000

    Use G_BEGIN_DECLS/G_END_DECLS.
    
    Tue Dec  4 00:46:45 2001  Owen Taylor  <otaylor@redhat.com>
    
            * file-types-icon-entry.h: Use G_BEGIN_DECLS/G_END_DECLS.

 capplets/file-types/ChangeLog               | 4 ++++
 capplets/file-types/file-types-icon-entry.h | 5 ++---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 41b265298906dd4ff0afba621bfbf8e7b7566b7e
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 2 21:31:22 2001 +0000

    Initial GNOME2 port. ui-preferences is disabled until it is revamped for
    
    2001-12-02  Richard Hestilow  <hestilow@ximian.com>
    
        * Initial GNOME2 port. ui-preferences is disabled until
        it is revamped for gconf, and mime-types will probably be
        permanently disabled though (no gmc).

 capplets/desktop-links/Sawfish/Makefile.am       |   4 +-
 capplets/file-types/Makefile.am                  |   2 +-
 capplets/file-types/file-types-capplet-dialogs.c |  10 +-
 capplets/file-types/file-types-capplet-dialogs.h |   2 +-
 capplets/file-types/file-types-capplet.c         | 126 +++--------------------
 capplets/file-types/file-types-icon-entry.c      |  68 +++---------
 capplets/mime-type/Makefile.am                   |   2 +-
 capplets/theme-switcher/Makefile.am              |   2 +-
 capplets/theme-switcher/da.h                     |   1 -
 capplets/theme-switcher/da.h-67648               |   1 -
 capplets/theme-switcher/gui.c                    |  29 ++----
 capplets/theme-switcher/gui.c-6060               |  29 ++----
 capplets/ui-properties/Makefile.am               |   2 +-
 capplets/ui-properties/preferences.h             |   2 +-
 capplets/url-properties/Makefile.am              |   2 +-
 capplets/wm-properties/Makefile.am               |   6 +-
 capplets/wm-properties/wm-desktops/Makefile.am   |   2 +-
 capplets/wm-properties/wm-exec.c                 |  75 +++++++-------
 capplets/wm-properties/wm-list.c                 |  50 ++++-----
 capplets/wm-properties/wm-properties-capplet.c   |  87 +++++++---------
 capplets/wm-properties/wm-properties.h           |   5 +-
 21 files changed, 170 insertions(+), 337 deletions(-)

commit 4d7fc6d7c043340f658bad2d7e5ea1c56c01d340
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 2 04:56:11 2001 +0000

    Add libsounds stuff. Add libsounds.
    
    2001-12-01  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Add libsounds stuff.
        * Makefile.am (SUBDIRS): Add libsounds.

 ChangeLog    | 5 +++++
 Makefile.am  | 2 +-
 configure.in | 3 +++
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 478912430cb2d76f9c0ef9531bf64986b7a7e972
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Dec 2 04:54:32 2001 +0000

    Initial GNOME2 port.
    
    2001-12-01  Richard Hestilow  <hestilow@ximian.com>
    
        * Initial GNOME2 port.

 capplets/default-applications/ChangeLog           |    4 +
 capplets/default-applications/Makefile.am         |    4 +-
 capplets/default-applications/support.c           |   20 -
 capplets/default-applications/support.h           |    2 -
 capplets/screensaver/ChangeLog                    |    4 +
 capplets/screensaver/Makefile.am                  |    5 +-
 capplets/screensaver/gnome-startup.c              |   45 +
 capplets/screensaver/gnome-startup.h              |   27 +
 capplets/screensaver/main.c                       |    6 +-
 capplets/screensaver/pref-file.c                  |    4 +-
 capplets/screensaver/preferences.c                |   12 +-
 capplets/screensaver/preferences.h                |    2 +-
 capplets/screensaver/prefs-widget.c               |   13 +-
 capplets/screensaver/preview.c                    |   17 +-
 capplets/screensaver/rc-parse.c                   |    6 +-
 capplets/screensaver/resources.c                  |    2 +-
 capplets/screensaver/screensaver-prefs-dialog.c   |   47 +-
 capplets/screensaver/screensaver-prefs-dialog.h   |    2 +-
 capplets/screensaver/screensaver-properties.glade | 1976 +++++++++++----------
 capplets/screensaver/selection-dialog.c           |   12 +-
 capplets/screensaver/selection-dialog.h           |    2 +-
 21 files changed, 1145 insertions(+), 1067 deletions(-)

commit bafad73d36ebc9e5abb3ebb9f1376cc6db7b9ba9
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Sat Dec 1 01:40:14 2001 +0000

    Started German translation from scratch since Kai Lahmann's translation style sucks ass!!

 po/de.po | 1706 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 769 insertions(+), 937 deletions(-)

commit 6e7aa88032359eac0520fcf87f9b4d6fe22ef9e0
Author: Owen Taylor <otaylor@redhat.com>
Date:   Fri Nov 30 20:37:27 2001 +0000

    Added AM_GLIB_GNU_GETTEXT and setting of GETTEXT_PACKAGE. Change from
    
    Fri Nov 30 15:35:39 2001  Owen Taylor  <otaylor@redhat.com>
            * configure.in: Added AM_GLIB_GNU_GETTEXT and
            setting of GETTEXT_PACKAGE.
            * Makefile.am: Change from xml-i18n-extract (etc.)
            to intltool-extract (etc.)

 ChangeLog    | 8 ++++++++
 Makefile.am  | 6 +++---
 configure.in | 5 +++++
 3 files changed, 16 insertions(+), 3 deletions(-)

commit 3aa0f3ae93049cb9fc9a2d5504d3301a57f65013
Author: Christian Rose <menthos@menthos.com>
Date:   Fri Nov 30 15:01:06 2001 +0000

    Updated Swedish translation.
    
    2001-11-30  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 1745 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1028 insertions(+), 721 deletions(-)

commit 2784a861afcebe3d195b2e2dac6c0fe5db3bc454
Author: Miles Lane <miles@megapathdsl.net>
Date:   Thu Nov 29 22:36:16 2001 +0000

    Removed intl/Makefile from AC_OUTPUT since there is no intl subdirectory
    
    2001-11-29  Miles Lane <miles@megapathdsl.net>
        * configure.in: Removed intl/Makefile from AC_OUTPUT
        since there is no intl subdirectory in the repository.:

 ChangeLog    | 5 +++++
 configure.in | 3 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 80f53a52c0a020d4e20a4461459b1416fc81c2eb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Nov 29 14:05:27 2001 +0000

    Disabled archiver
    
    2001-11-29  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Disabled archiver
    
        * Makefile.am (SUBDIRS): Disabled archiver

 ChangeLog    | 6 ++++++
 Makefile.am  | 2 +-
 configure.in | 1 -
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 8e9c8fcf0ed6c450d011a6cce92dce5806c594fb
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Nov 29 00:06:50 2001 +0000

    Update call to gnome_help_display.
    
    2001-11-28  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir-view.c (help_cb): Update call to gnome_help_display.

 control-center/ChangeLog          | 4 ++++
 control-center/capplet-dir-view.c | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit a657b649d283a988cdd523056b755ece653e86de
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Nov 28 23:48:44 2001 +0000

    Remove gtkhtml-2.0 check since we no longer depend on it.
    
    2001-11-28  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Remove gtkhtml-2.0 check since we no longer
        depend on it.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 45c1c240570ebad7c3b52f8c4b92a0c44dba4ab5
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Nov 26 17:06:41 2001 +0000

    Initial port to GNOME2, removal of gtkhtml deps.
    
    2001-11-26  Richard Hestilow  <hestilow@ximian.com>
    
        * Initial port to GNOME2, removal of gtkhtml deps.

 control-center/ChangeLog               |   4 +
 control-center/Makefile.am             |  11 +-
 control-center/capplet-dir-view-list.c | 378 ++++++++++++++++-
 control-center/capplet-dir-view-tree.c |   2 +-
 control-center/capplet-dir-view.c      |  61 +--
 control-center/capplet-dir-view.h      |   1 -
 control-center/capplet-dir.c           |  90 +++--
 control-center/capplet-dir.h           |   4 +-
 control-center/gnomecc.glade           | 720 +++++++++++++++++----------------
 control-center/main.c                  |  10 +-
 control-center/preferences.c           |  38 +-
 control-center/preferences.h           |   2 +
 12 files changed, 869 insertions(+), 452 deletions(-)

commit 575c8e852fee85be5282d0254ec4997e7023187e
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sun Nov 25 14:57:03 2001 +0000

    Compilation fixes.

 capplets/background/Makefile.am | 23 ++++++++++++++---------
 capplets/background/applier.c   |  1 -
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 2ad8f708acf7fc7318f0bb29ab40956a9f15374f
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Nov 25 02:22:45 2001 +0000

    Updated Slovenian translation

 po/sl.po | 181 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 98 insertions(+), 83 deletions(-)

commit 41656bd6f2bba0b2f9d617322de986007fc5f9dc
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Nov 18 08:14:16 2001 +0000

    Add libsounds.a.
    
    2001-11-18  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am (sound_properties_control_LDADD): Add libsounds.a.
    
        * prefs-widget.c (apply_settings): Export our settings to
        gnome-config (needed by gnome-libs). Also save and reload event
        sounds.
        (create_dialog): Add a SoundView on the sound events.
    
        * sound-properties.glade: Add a tab for the sound events.

 capplets/sound/ChangeLog                  |  11 +++
 capplets/sound/prefs-widget.c             |   1 +
 capplets/sound/sound-properties-capplet.c |  85 ++++++++++++++++++++-
 capplets/sound/sound-properties.glade     | 120 +++++++++++++++++++++---------
 4 files changed, 179 insertions(+), 38 deletions(-)

commit f0a798a6cad7d0e156cc432e7828909c3743a200
Author: Ole Laursen <olau@hardworking.dk>
Date:   Mon Nov 12 21:51:06 2001 +0000

    Updated Danish translation.
    
    2001-11-12  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  4 +++
 po/da.po     | 88 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 59 insertions(+), 33 deletions(-)

commit bbe9dc06688266906445711c599e9fcca2c949d3
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Sun Nov 11 14:25:25 2001 +0000

    Updated Slovak translation.
    
    2001-11-11  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 884 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 413 insertions(+), 475 deletions(-)

commit 86192c772e2c4dc2b473aad4cc9fc0eccaa0f64c
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sat Nov 10 20:55:08 2001 +0000

    Removed HAVE_BONOBO from acconfig.h
    
    Fixed capplet Makefile.am's. Some porting for control-center/main.c

 acconfig.h                                | 1 -
 capplets/default-applications/Makefile.am | 2 +-
 capplets/desktop-links/Makefile.am        | 2 +-
 capplets/keyboard/Makefile.am             | 2 +-
 capplets/mouse/Makefile.am                | 2 +-
 capplets/rollback/Makefile.am             | 2 +-
 capplets/screensaver/Makefile.am          | 2 +-
 capplets/sound/Makefile.am                | 2 +-
 control-center/Makefile.am                | 2 +-
 control-center/main.c                     | 6 ------
 10 files changed, 8 insertions(+), 15 deletions(-)

commit 430bb6629941590534381c6d7bb24a4729863d02
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sat Nov 10 20:53:49 2001 +0000

    Removed intl dir from the compile

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 997b226c6fb8b5734b3f6b602d3e379de1c3ac74
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Nov 10 20:53:07 2001 +0000

    Bump version to 1.99.0
    
    2001-10-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Bump version to 1.99.0
    
    2001-10-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Remove intl from SUBDIRS
    
        * */Makefile.am: s/XML_I18N_MERGE/INTLTOOL/g
    
        * capplets/Makefile.am: Remove screensaver from
        always_built_SUBDIRS and add $(SCREENSAVER) to SUBDIRS
    
        * capplets/{background|keyboard|mouse|sound}/Makefile.am:
        Fix so that automake does not choke on these files
    
        * README: Updated to reflect current status porting to GNOME 2
    
        * configure.in: Cleanup for GNOME 2 port
        Allow disabling of screensaver capplet compile if xscreensaver
        is not found
        (AC_OUTPUT): Removed dnl capplets/rollback/Makefile as it caused
        some difficulties

 ChangeLog    |  8 ++++++++
 configure.in | 15 +++++++--------
 2 files changed, 15 insertions(+), 8 deletions(-)

commit d3133da76abc0ed9d944f6b7675bf213d5970dbc
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sat Nov 10 20:52:31 2001 +0000

    GNOME 2.0 port. Changes too numerous to mention.
    
    Removed bonobo-conf support entirely. Added simple GConf-based
    property editors. These will be replaced by PonG when that gets
    ported.

 .../common/Bonobo_Control_Capplet_generic.oaf.in   |   9 -
 capplets/common/ChangeLog                          |   9 +
 capplets/common/Makefile.am                        |   3 +-
 capplets/common/capplet-util.c                     | 340 ++-----------
 capplets/common/capplet-util.h                     |  27 +-
 capplets/common/gconf-property-editor-marshal.c    |  41 ++
 capplets/common/gconf-property-editor-marshal.h    |  15 +
 capplets/common/gconf-property-editor.c            | 545 +++++++++++++++++++++
 capplets/common/gconf-property-editor.h            |  82 ++++
 9 files changed, 735 insertions(+), 336 deletions(-)

commit 467b92037d88056cf7704ebc2635275290ddbc21
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sat Nov 10 20:51:12 2001 +0000

    GNOME 2.0 port. Changes too numerous to mention.

 capplets/background/Makefile.am                    |   2 +-
 capplets/background/applier.c                      | 234 ++++++-------
 capplets/background/applier.h                      |  12 +-
 .../background/background-properties-capplet.c     | 293 ++++++----------
 capplets/background/preferences.c                  | 382 ++++-----------------
 capplets/background/preferences.h                  |  43 +--
 6 files changed, 281 insertions(+), 685 deletions(-)

commit ce9f91ffcf83449ebfa92764a9ab8587b7a04fe8
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Wed Nov 7 14:20:58 2001 +0000

    Updated..

 po/ChangeLog |    4 +
 po/tr.po     | 5826 ++++++++++++++++++++++++----------------------------------
 2 files changed, 2448 insertions(+), 3382 deletions(-)

commit b82a99f402dc12d842f41785a1f0b30bd21210e3
Author: Ole Laursen <olau@hardworking.dk>
Date:   Wed Nov 7 11:58:21 2001 +0000

    Updated Danish translation.
    
    2001-11-07  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |   6 +-
 po/da.po     | 466 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 385 insertions(+), 87 deletions(-)

commit 1de92cc7aa55c5012fec45eac336c80c2b99a525
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Tue Nov 6 18:20:12 2001 +0000

    updated tr.po

 po/ChangeLog |    4 +
 po/tr.po     | 6095 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 3470 insertions(+), 2629 deletions(-)

commit 8a64c7bab274252b74c4d25daa0553ba64a40667
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Nov 2 00:25:39 2001 +0000

    Updated Slovenian translation

 po/sl.po | 77 +++++++++++++++++++++++++++-------------------------------------
 1 file changed, 32 insertions(+), 45 deletions(-)

commit 108120afa1b0e9e866ed73f3f20eb802dc32ec52
Author: Peteris Krisjanis <peterisk@src.gnome.org>
Date:   Thu Nov 1 18:58:30 2001 +0000

    U

 po/ChangeLog |    5 +
 po/lv.po     | 4807 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 2210 insertions(+), 2602 deletions(-)

commit 40cb24b5db319e2b0ac3e8cac383c73d5df9f3ea
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 26 19:18:24 2001 +0000

    Remove #ifdef HAVE_BONOBO instances
    
    2001-10-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c: Remove #ifdef HAVE_BONOBO instances
    
        * capplet-dir.c: Remove #idef HAVE_BONOBO instances

 control-center/ChangeLog     |  6 ++++++
 control-center/capplet-dir.c |  9 +--------
 control-center/main.c        | 10 ----------
 3 files changed, 7 insertions(+), 18 deletions(-)

commit 3611eb3a6a6bb11c1b18643cbbec1625856b48d4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 26 19:17:07 2001 +0000

    Remove screensaver from always_built_SUBDIRS and add $(SCREENSAVER) to
    
    2001-10-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am: Remove screensaver from
        always_built_SUBDIRS and add $(SCREENSAVER) to SUBDIRS
    
        * capplets/{background|keyboard|mouse|sound}/Makefile.am:
        Fix so that automake does not choke on these files

 ChangeLog                       | 6 ++++++
 capplets/Makefile.am            | 8 +++-----
 capplets/background/Makefile.am | 5 ++---
 capplets/keyboard/Makefile.am   | 5 ++---
 capplets/mouse/Makefile.am      | 5 ++---
 capplets/sound/Makefile.am      | 5 ++---
 6 files changed, 17 insertions(+), 17 deletions(-)

commit 816e2de0f248aca59d0ca270b0aea4e87118bd50
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 26 19:15:18 2001 +0000

    Updated to reflect current status porting to GNOME 2
    
    2001-10-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * README: Updated to reflect current status porting to GNOME 2

 ChangeLog |  2 ++
 README    | 13 +++++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 031160b75d019edf695b80a14a4063d2a41ed529
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 26 19:11:30 2001 +0000

    Cleanup for GNOME 2 port Allow disabling of screensaver capplet compile if
    
    2001-10-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Cleanup for GNOME 2 port
        Allow disabling of screensaver capplet compile if xscreensaver
        is not found
        (AC_OUTPUT): Removed dnl capplets/rollback/Makefile as it caused
        some difficulties

 ChangeLog    |   8 ++++
 autogen.sh   |  37 +++++++++++++--
 configure.in | 145 ++++++-----------------------------------------------------
 3 files changed, 54 insertions(+), 136 deletions(-)

commit 21024ab848bce64d70662f5cb0be91d4a639ec7c
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri Oct 26 14:11:40 2001 +0000

    More screensaver description translated.
    
    2001-10-26  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: More screensaver description translated.

 po/ChangeLog |   4 +
 po/sk.po     | 783 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 442 insertions(+), 345 deletions(-)

commit 13419abbcf43ee0916d77d713092f6ab03826303
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Oct 25 18:57:24 2001 +0000

    Updated Polish translation by GNOME PL Team <translators@gnome.pl>

 po/ChangeLog |    5 +
 po/pl.po     | 1659 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 950 insertions(+), 714 deletions(-)

commit 433b6bc0c05277a94043111332d5235d6e461549
Author: Christian Marillat <marillat@src.gnome.org>
Date:   Wed Oct 24 12:49:00 2001 +0000

    Initial debian directory

 debian/changelog                    | 428 ++++++++++++++++++++++++++++++++++++
 debian/control                      |  51 +++++
 debian/copyright                    |  10 +
 debian/libconfig-archiver-dev.files |   3 +
 debian/libconfig-archiver-dev.links |   1 +
 debian/libconfig-archiver0.files    |   1 +
 debian/menu                         |  24 ++
 debian/postinst                     |  10 +
 debian/postrm                       |  10 +
 debian/preinst                      |  10 +
 debian/rules                        | 127 +++++++++++
 11 files changed, 675 insertions(+)

commit 49d9a128832e4955ad428a635f280d4cd0dbd71d
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Wed Oct 24 11:51:43 2001 +0000

    More screensaver description translated.
    
    2001-10-24  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
            * sk.po: More screensaver description translated.

 po/ChangeLog |   4 +++
 po/sk.po     | 106 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 75 insertions(+), 35 deletions(-)

commit b9bb47925f42b70c8e892f0d063f8edaa08837d4
Author: Wang Jian <lark@src.gnome.org>
Date:   Tue Oct 23 04:17:29 2001 +0000

    *** empty log message ***

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/zh_CN.po  | 3145 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3155 insertions(+), 1 deletion(-)

commit 35aa4562458269774eba825af17c2e0bdd560e9b
Author: Christian Rose <menthos@menthos.com>
Date:   Mon Oct 22 01:14:07 2001 +0000

    Updated the Swedish translation somewhat.
    
    2001-10-22  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated the Swedish translation somewhat.

 po/ChangeLog |   4 ++
 po/sv.po     | 206 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 112 insertions(+), 98 deletions(-)

commit b928a309cdca6ba0a874bfa0cabe30545e301e11
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Oct 20 08:24:46 2001 +0000

    updated Azeri file

 po/ChangeLog |  4 +++
 po/az.po     | 84 +++++++++++++-----------------------------------------------
 2 files changed, 22 insertions(+), 66 deletions(-)

commit df78191ec288e94a4cb51a51d54bcb2e82bbd9ec
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 19 03:23:23 2001 +0000

    Put common in always_built_SUBDIRS
    
    2001-10-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (always_built_SUBDIRS): Put common in
        always_built_SUBDIRS
    
        * configure.in (dnl): Remove --enable-bonobo-conf option

 ChangeLog            |  7 +++++++
 capplets/Makefile.am |  4 ++--
 configure.in         | 18 ++++--------------
 3 files changed, 13 insertions(+), 16 deletions(-)

commit 4b9ca59ec992152990614e9e6bffc4c41fee9532
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 19 02:37:29 2001 +0000

    Only swap buttons 1 and 3 in the mapping
    
    2001-10-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c (apply_settings): Only swap buttons 1
        and 3 in the mapping

 capplets/mouse/ChangeLog                  |  5 +++++
 capplets/mouse/gnome-mouse-properties.c   | 17 +++++++++++++----
 capplets/mouse/mouse-properties-capplet.c | 17 +++++++++++++----
 3 files changed, 31 insertions(+), 8 deletions(-)

commit 705002fcd69ba536857bae028ae525f3a34bc828
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Thu Oct 18 23:22:47 2001 +0000

    bcg icon

 capplets/background/ChangeLog              |   4 ++++
 capplets/background/background-capplet.png | Bin 4027 -> 4235 bytes
 2 files changed, 4 insertions(+)

commit caea6d86cec127b84e7586687092d367c19d363e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Oct 18 13:36:48 2001 +0000

    Update listener name
    
    2001-10-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (get_listener_oafiid): Update listener name

 archiver/ChangeLog                |  4 ++++
 archiver/bonobo-config-archiver.c | 14 +-------------
 2 files changed, 5 insertions(+), 13 deletions(-)

commit fd0dba5cec166385c9b45f34e82a0d26d8527979
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Oct 18 13:36:25 2001 +0000

    Update listener name
    
    2001-10-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * Bonobo_Control_Capplet_generic.oaf.in: Update listener name
    
        * capplet-util.c (create_control_cb): Use correct prefix for listener

 capplets/common/Bonobo_Control_Capplet_generic.oaf.in | 2 +-
 capplets/common/ChangeLog                             | 6 ++++++
 capplets/common/capplet-util.c                        | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit 534754d3f343a5edfffd8398625ccff0c27ee897
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Oct 18 13:03:05 2001 +0000

    Make sure the row is unselected before trying to remove it
    
    2001-10-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * url-properties.c: Make sure the row is unselected before trying
        to remove it

 capplets/url-properties/ChangeLog        | 5 +++++
 capplets/url-properties/url-properties.c | 1 +
 2 files changed, 6 insertions(+)

commit 24ac960602ae07fdb28aacb66fb50bc7f53f030b
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Thu Oct 18 11:20:52 2001 +0000

    fix the applet icon

 capplets/screensaver/ChangeLog               |   4 ++++
 capplets/screensaver/screensaver-capplet.png | Bin 4428 -> 3139 bytes
 2 files changed, 4 insertions(+)

commit b8d0c7fdc3071cdd113aca513efcbce4aee4b535
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Tue Oct 16 00:25:41 2001 +0000

    temporary icon

 capplets/desktop-links/advanced-directory.png | Bin 2117 -> 2171 bytes
 control-center/ChangeLog                      |   5 +++++
 control-center/control-center.png             | Bin 4033 -> 2125 bytes
 3 files changed, 5 insertions(+)

commit a34daa89f10dbfe57f060d749ec6e4d0e0675f04
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Mon Oct 15 23:54:05 2001 +0000

    new icon

 capplets/url-properties/ChangeLog       |   4 ++++
 capplets/url-properties/url-capplet.png | Bin 4886 -> 4264 bytes
 2 files changed, 4 insertions(+)

commit f824b0dcc0519656ba3f5edf7d0e6208e16cd488
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Oct 15 16:06:56 2001 +0000

    Updated dated file headers

 control-center/capplet-dir-view-html.c | 4 ++--
 control-center/capplet-dir-view-list.c | 6 +++---
 control-center/capplet-dir-view-tree.c | 6 +++---
 control-center/capplet-dir-view.c      | 4 ++--
 control-center/capplet-dir-view.h      | 4 ++--
 control-center/capplet-dir.c           | 4 ++--
 control-center/capplet-dir.h           | 4 ++--
 control-center/main.c                  | 4 ++--
 control-center/preferences.c           | 4 ++--
 control-center/preferences.h           | 4 ++--
 10 files changed, 22 insertions(+), 22 deletions(-)

commit 3f62f4fa65da40ba531c45d5c60d03b78af04d43
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Mon Oct 15 13:51:15 2001 +0000

    applet icon

 capplets/rollback/ChangeLog            |   4 ++++
 capplets/rollback/rollback-capplet.png | Bin 0 -> 1669 bytes
 2 files changed, 4 insertions(+)

commit a5d2608e56722807372650ceb0daf5b2c33eb224
Author: Larry Ewing <lewing@ximian.com>
Date:   Mon Oct 15 03:20:35 2001 +0000

    set the window icon so that the tasklist will have a pretty picture.
    
    2001-10-14  Larry Ewing  <lewing@ximian.com>
    
        * capplet-dir-view.c (capplet_dir_view_new): set the window icon
        so that the tasklist will have a pretty picture.

 control-center/ChangeLog          | 4 ++++
 control-center/capplet-dir-view.c | 5 +++++
 2 files changed, 9 insertions(+)

commit b6d86f4e9341280cb57ba0b89c7aedb6020d5c96
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Oct 15 00:58:13 2001 +0000

    Usual update and revert to big5 encoding

 po/ChangeLog |    6 +
 po/zh_TW.po  | 2276 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 1224 insertions(+), 1058 deletions(-)

commit a76c2b32e06e3606e0cb4f31cb7b76ddf746c135
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Sun Oct 14 14:49:24 2001 +0000

    Updated Slovak translation.
    
    2001-10-14  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 1478 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 854 insertions(+), 628 deletions(-)

commit 5b60a269a7928aa561e42771249370607bb6d4c4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Oct 13 19:19:16 2001 +0000

    Be paranoid about what we have read from the input file -- make sure the
    
    2001-10-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * lister.c (edit_file_to_use): Be paranoid about what we have read
        from the input file -- make sure the string is always
        NULL-terminated

 capplets/theme-switcher/ChangeLog      | 6 ++++++
 capplets/theme-switcher/lister.c       | 3 +++
 capplets/theme-switcher/lister.c-42011 | 3 +++
 3 files changed, 12 insertions(+)

commit 4b6d9f7f9904c6d21948d3cd04cff07e15247d9d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Oct 13 17:26:48 2001 +0000

    Try to resolve a listener to make sure that something is listening when we
    
    2001-10-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (real_sync): Try to resolve a listener
        to make sure that something is listening when we issue the sync
        event (disabled for now)
        (get_listener_oafiid): Implement (disabled for now)
    
    2001-10-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (get_factory_name): Updated factory name to
        reflect new, expanded roles
    
        * Bonobo_Control_Capplet_generic.oaf.in: Create
    
    2001-09-29  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (create_control_cb): Elimite reference counter --
        it's not necessary
        (create_control_cb): Make this a multi-factory so that we can
        return the listener when needed
        (capplet_init): Set up the listener here rather than in
        get_control_cb; also remove the listener and unref the database
        here
        (quit_cb, real_quit_cb): Remove (thank the gods)
    
    2001-10-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am ($(oaffile)): Make creation of the .oaf file generic
    
    2001-10-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Unref the property bag
        when we are done

 archiver/ChangeLog                                 |   7 +
 archiver/bonobo-config-archiver.c                  |  61 ++++++-
 ...bo_Control_Capplet_background_properties.oaf.in |  29 ----
 capplets/background/ChangeLog                      |   2 +
 capplets/background/Makefile.am                    |   6 +-
 .../common/Bonobo_Control_Capplet_generic.oaf.in   |  30 ++++
 capplets/common/ChangeLog                          |  18 ++
 capplets/common/Makefile.am                        |   2 +-
 capplets/common/capplet-util.c                     | 183 +++++++++------------
 capplets/common/capplet-util.h                     |   2 +-
 ...nobo_Control_Capplet_keyboard_properties.oaf.in |  20 ---
 capplets/keyboard/ChangeLog                        |   4 +
 capplets/keyboard/Makefile.am                      |   7 +-
 .../Bonobo_Control_Capplet_mouse_properties.oaf.in |  21 ---
 capplets/mouse/ChangeLog                           |   4 +
 capplets/mouse/Makefile.am                         |   7 +-
 .../Bonobo_Control_Capplet_sound_properties.oaf.in |  22 ---
 capplets/sound/ChangeLog                           |   4 +
 capplets/sound/Makefile.am                         |   6 +-
 control-center/ChangeLog                           |   5 +
 control-center/capplet-dir.c                       |   1 +
 21 files changed, 232 insertions(+), 209 deletions(-)

commit 99b228af09705a1b3be69877a6dd693480871383
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Oct 13 13:22:38 2001 +0000

    Updated Norwegian (bokmel) translation. Updated Norwegian (nynorsk)
    
    2001-10-13  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokmel) translation.
        * nn.po: Updated Norwegian (nynorsk) translation.

 po/ChangeLog |   5 +
 po/nn.po     | 839 ++++++++++++++++++++++++++++++++++++++---------------------
 po/no.po     |  36 ++-
 3 files changed, 569 insertions(+), 311 deletions(-)

commit e7ecf1fd42bccb6055bbd82e767914615c58081f
Author: Valek Frob <frob@src.gnome.org>
Date:   Sat Oct 13 12:36:50 2001 +0000

    Updated russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 332 +++++++++++++++++++++--------------------------------------
 2 files changed, 124 insertions(+), 212 deletions(-)

commit 516c22f094a77a495031de786f3e8be8e767329b
Author: Ole Laursen <olau@src.gnome.org>
Date:   Sat Oct 13 10:25:41 2001 +0000

    Partiel update of Danish translation.

 po/da.po | 1470 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 939 insertions(+), 531 deletions(-)

commit d42f9b3f79c69426e5a4755e2c57135d980942d4
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Oct 13 05:50:38 2001 +0000

    Backport to GtkCList. Recreate -- something was messed up.
    
    2001-10-13  Richard Hestilow  <hestilow@ximian.com>
    
        * prefs-widget.c: Backport to GtkCList.
        * checked.xpm, unchecked.xpm: Recreate -- something was messed up.

 capplets/screensaver/ChangeLog      |   5 +
 capplets/screensaver/checked.xpm    |  40 ++--
 capplets/screensaver/prefs-widget.c | 384 +++++++++++++-----------------------
 capplets/screensaver/unchecked.xpm  |  40 ++--
 4 files changed, 182 insertions(+), 287 deletions(-)

commit d2650b1049a5a088d33ba348e88fb60760d625a9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Oct 12 14:09:24 2001 +0000

    Notice: I have not tested these changes on machines with support for multiple
    simultaneous visuals. I will revert them if it turns out not to work in that
    case.
    
    Fixes Ximian bugzilla bug #10541
    
    2001-10-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (render_to_screen): Use standard gdk and gdk_pixbuf
        rather than xlib and gdk_pixbuf_xlib
        (make_root_pixmap): Create a GdkPixmap
        (set_root_pixmap): Accept GdkPixmap and convert to X id

 ...bo_Control_Capplet_background_properties.oaf.in |  9 +++
 capplets/background/ChangeLog                      |  7 ++
 capplets/background/applier.c                      | 86 +++++++++++-----------
 3 files changed, 58 insertions(+), 44 deletions(-)

commit c06567a544c094fbe7dc77d89c1d64b6dde567ee
Author: Israel Escalante <israel@ximian.com>
Date:   Fri Oct 12 02:37:55 2001 +0000

    Bump version to 1.5.10
    
    2001-10-11  Israel Escalante  <israel@ximian.com>
    
        * configure.in: Bump version to 1.5.10

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9e1a0b95480dca173907e7fe05acb6ff1b01a1e8
Author: Israel Escalante <israel@ximian.com>
Date:   Thu Oct 11 22:23:22 2001 +0000

    Bump requirement for gtkhtml >=0.15.0 and version to 1.5.9. Committed
    
    2001-10-11  Israel Escalante  <israel@ximian.com>
    
        * configure.in (gnome_cv_use_gnome): Bump requirement for
        gtkhtml >=0.15.0 and version to 1.5.9. Committed patch
        from peter@ximian.com to fix some build issues.

 ChangeLog    |    6 +
 configure.in |   14 +-
 po/az.po     |  159 +--
 po/ca.po     |    2 +-
 po/cs.po     | 4223 +++++++++++++++++++++++++++++++++++++---------------------
 po/da.po     |   69 +-
 po/de.po     |   69 +-
 po/el.po     |   71 +-
 po/es.po     |   65 +-
 po/fi.po     |   53 +-
 po/fr.po     |   76 +-
 po/ga.po     |   70 +-
 po/hr.po     |   65 +-
 po/ja.po     |   68 +-
 po/lv.po     |  893 ++++++-------
 po/nn.po     |  992 +++++---------
 po/no.po     | 1035 ++++++--------
 po/pl.po     |   64 +-
 po/pt_BR.po  |   63 +-
 po/ru.po     |   53 +-
 po/sk.po     |  125 +-
 po/sl.po     |   77 +-
 po/sv.po     |   64 +-
 po/tr.po     |   68 +-
 po/uk.po     |   69 +-
 po/wa.po     |   64 +-
 po/zh_TW.po  |   79 +-
 27 files changed, 4653 insertions(+), 4003 deletions(-)

commit 49a6eb2b32498fca7c7e0a80ed257361bb80cb68
Author: Artis Trops <hornet@navigators.lv>
Date:   Sun Oct 7 18:43:43 2001 +0000

    Added Latvian translation.
    
    2001-10-07  Artis Trops <hornet@navigators.lv>
    
        * lv.po: Added Latvian translation.
    
    2001-10-07  Gediminas Paulauskas <menesis@delfi.lt>
    
        * configure.in (ALL_LINGUAS): added lv

 ChangeLog    |    4 +
 configure.in |   19 +-
 po/ChangeLog |   16 +-
 po/lv.po     | 3389 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 3398 insertions(+), 30 deletions(-)

commit 41b4ec6463b15461a67a30c55329809d97f6fcd7
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Oct 5 22:21:25 2001 +0000

    file ChangeLog was initially added on branch INTRO_PAGE_BRANCH.

commit b622631002fd009d5f6ef193ee67d4404bd27e38
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Oct 5 22:21:25 2001 +0000

    file Makefile.am was initially added on branch INTRO_PAGE_BRANCH.

commit 592cadb69d23c33dac6ec6ba75a7adf8109fc477
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Oct 5 22:21:25 2001 +0000

    file background.png was initially added on branch INTRO_PAGE_BRANCH.

commit e8ce07e858c4744c53ec3252d94d50f0d5b801d1
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Oct 5 22:21:25 2001 +0000

    file faq.html was initially added on branch INTRO_PAGE_BRANCH.

commit 620369ce2713be0dec0e7de7014e6d64783c8a9a
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Fri Oct 5 22:21:25 2001 +0000

    file intro.xml.in was initially added on branch INTRO_PAGE_BRANCH.

commit cb870464b44a0eec989ddc1955eb049c5df3624a
Author: Shaun Merrigan <shaun.merrigan@sun.com>
Date:   Fri Oct 5 10:14:05 2001 +0000

    Only use tm_gmtoffm if __USE_BSD is defined.
    
    2001-10-05  Shaun Merrigan  <shaun.merrigan@sun.com>
    
            * archiver-client.c (location_client_load_rollback_data):
            Only use tm_gmtoffm if __USE_BSD is defined.

 archiver/ChangeLog         | 5 +++++
 archiver/archiver-client.c | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 243e9e42c4901a2e53c9937a014e46ff2c3ab302
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Oct 3 09:48:43 2001 +0000

    updated Catalan file

 po/ca.po | 207 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 87 insertions(+), 120 deletions(-)

commit 2294aef748e3f8b0a99aa7832138991aadb6934c
Author: Israel Escalante <israel@ximian.com>
Date:   Mon Oct 1 22:05:26 2001 +0000

    Removed rollback
    
    
    2001-10-01  Israel Escalante  <israel@ximian.com>
    
        * capplet/Makefile.am (always_built_SUBDIRS): Removed rollback
    
        * po/POTFILES.in: Removed some *.c files that was called and
          don't exist.

 capplets/Makefile.am |  4 +++-
 po/ChangeLog         | 19 ++++++++++++-------
 po/POTFILES.in       |  7 -------
 3 files changed, 15 insertions(+), 15 deletions(-)

commit 8440a28720cb4fcc112ca6819a6f1dc06e9817bf
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Mon Oct 1 21:16:53 2001 +0000

    new application icon

 ChangeLog           |   4 ++++
 control-center.png  | Bin 3296 -> 3757 bytes
 control-center2.png | Bin 3296 -> 3757 bytes
 3 files changed, 4 insertions(+)

commit 6c64f8853eb0e7450a626d56c367553f6cb08fd6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Oct 1 14:15:20 2001 +0000

    Added missing wrapper-script.in

 capplets/common/wrapper-script.in | 9 +++++++++
 1 file changed, 9 insertions(+)

commit e505e72510509f843cda6ac334b747cc7478d363
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Oct 1 14:04:34 2001 +0000

    updated Catalan file

 po/ChangeLog |    4 +
 po/ca.po     | 1096 ++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 803 insertions(+), 297 deletions(-)

commit e5440a5329f5c31740bdd1c4404c23c7f13a59a2
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sun Sep 30 00:56:41 2001 +0000

    Change the default mode to "Select One Only" as opposed to Random From
    
    2001-09-28  Richard Hestilow  <hestilow@ximian.com>
    
        * preferences.c (preferences_load): Change the default mode to
        "Select One Only" as opposed to Random From List. Fixes bug
        #60762.

 capplets/screensaver/ChangeLog     | 6 ++++++
 capplets/screensaver/preferences.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b3c1d8c30355c7c04a475919ead0aee4a0dd5489
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Sep 29 23:55:07 2001 +0000

    Register callbacks after loading the preferences; otherwise they will get
    
    2001-09-29  Richard Hestilow  <hestilow@ximian.com>
    
        * prefs-widget.c (prefs_widget_set_arg): Register
        callbacks after loading the preferences; otherwise they will
        get triggered unnecessarily.
        (selected_cb): Only trigger a change if there really was one.
        Fixes bug #9161.

 capplets/ui-properties/ChangeLog      |  8 ++++++++
 capplets/ui-properties/prefs-widget.c | 14 +++++++++-----
 2 files changed, 17 insertions(+), 5 deletions(-)

commit 5305c8087979c332695a00bc1c22259daaae8bc3
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Sep 29 22:15:31 2001 +0000

    Applied patch from drk@sgi.com to fix bug #60822.
    
    2001-09-29  Richard Hestilow  <hestilow@ximian.com>
    
        * wm-properties-capplet.c: Applied patch from drk@sgi.com
        to fix bug #60822.

 capplets/wm-properties/ChangeLog               | 5 +++++
 capplets/wm-properties/wm-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 019aa00beb4da563ea472697eecf5aaf9539a18e
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Sep 29 22:10:58 2001 +0000

    Use g_strcasecmp, not strcmp. Fixes bug #13539.
    
    2001-09-29  Richard Hestilow  <hestilow@ximian.com>
    
        * gui.c (sort_alpha): Use g_strcasecmp, not strcmp.
        Fixes bug #13539.

 capplets/theme-switcher/ChangeLog  | 5 +++++
 capplets/theme-switcher/gui.c      | 2 +-
 capplets/theme-switcher/gui.c-6060 | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 5a4c5e4188d2df228da7e79278a838cac102fe72
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Sep 29 21:08:51 2001 +0000

    Check if config_tryexec is blank, and if it is, free it and set it to
    
    2001-09-29  Richard Hestilow  <hestilow@ximian.com>
    
        * wm-list.c (wm_list_read_dir): Check if config_tryexec is blank,
        and if it is, free it and set it to NULL.
        (wm_check_present): If there is no config_tryexec, fall back
        on checking the path of the config_exec. Fix for bug #58306.

 capplets/wm-properties/ChangeLog |  7 +++++++
 capplets/wm-properties/wm-list.c | 13 +++++++++++--
 2 files changed, 18 insertions(+), 2 deletions(-)

commit bcf570c7bdf090269fa670e3e7aed5815663b84f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Sep 29 20:45:12 2001 +0000

    Return a GList of ThemeEntry*, and remove extraneous number argument.
    
    2001-09-29  Richard Hestilow  <hestilow@ximian.com>
    
        * lister.c: (list_themes, list_system_themes, list_user_themes):
        Return a GList of ThemeEntry*, and remove extraneous number argument.
        Also, use g_strdup_printf instead of g_snprintf.
    
        * da.h (ThemeEntry): Add a "row" data member.
        * gui.c: Change variables current_theme, current_global_theme,
        initial_theme, and last_theme to ThemeEntry*.
        (make_main): Change GtkList to a GtkCList to avoid scrolling bug.
        (click_entry): Changed to "select_row" callback prototype.
        (delete_entry): Removed.
        (item_destroy_notify): Added in lieu of delete_entry.
        (sort_alpha): Accept ThemeEntry* and not GtkBin*.
        (add_theme_list): Added.
        (update_theme_entries): Use clist functions.

 capplets/theme-switcher/ChangeLog      |  17 +++
 capplets/theme-switcher/da.h           |  13 ++-
 capplets/theme-switcher/da.h-67648     |  13 ++-
 capplets/theme-switcher/gui.c          | 196 +++++++++++++++------------------
 capplets/theme-switcher/gui.c-6060     | 196 +++++++++++++++------------------
 capplets/theme-switcher/lister.c       |  48 ++++----
 capplets/theme-switcher/lister.c-42011 |  48 ++++----
 7 files changed, 253 insertions(+), 278 deletions(-)

commit 2c96d642fb96cc042860f3b78eec2a697910158f
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Sat Sep 29 20:20:47 2001 +0000

    gettext likes to add a Changelog entry

 po/ChangeLog | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 598a876b871fcbbff07d2df061913276796de853
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Sat Sep 29 03:37:51 2001 +0000

    shhhhh

 capplets/background/.cvsignore               | 1 +
 capplets/screensaver/screensavers/.cvsignore | 1 +
 idl/.cvsignore                               | 2 ++
 3 files changed, 4 insertions(+)

commit 77439732b69d9ec69872a5080a299d775a60a526
Author: Israel Escalante <israel@ximian.com>
Date:   Sat Sep 29 00:31:13 2001 +0000

    Bump requirements to bonobo-conf 0.12
    
    2001-09-28  Israel Escalante  <israel@ximian.com>
    
        * configure.in: Bump requirements to bonobo-conf 0.12

 ChangeLog    | 6 +++++-
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 091dc3447c15c8e897d70bf32dca5132f0af1462
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 28 21:27:19 2001 +0000

    Only set tm_gmtoff and tm_zone fields if __USE_BSD is defined
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (parse_line): Only set tm_gmtoff and tm_zone fields
        if __USE_BSD is defined
    
        * util.c (parse_date): Ditto

 archiver/ChangeLog    | 5 +++++
 archiver/config-log.c | 2 ++
 archiver/util.c       | 2 ++
 3 files changed, 9 insertions(+)

commit c01fe3b0acd1dc44a8c0504b80cdc842509bfa71
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Sep 28 21:11:57 2001 +0000

    Committed patch from Carlos Perell Marn <carlos@gnome-db.org> to handle
    
    2001-09-28  Richard Hestilow  <hestilow@ximian.com>
    
        * control-center/capplet-dir-view-html.c:
        Committed patch from Carlos Perell Marn <carlos@gnome-db.org>
        to handle UTF-8 correctly. Sorry it took so long; it got lost in
        my mailbox.

 ChangeLog                              |  7 ++++++
 control-center/ChangeLog               |  4 ++++
 control-center/capplet-dir-view-html.c | 42 ++++++++++++++++++++++++++--------
 3 files changed, 43 insertions(+), 10 deletions(-)

commit 988e42c2274d69df3736a0aee96493c8f8e4f0e7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 28 21:05:16 2001 +0000

    Use BONOBO_RET_EX rather than RETURN_IF_EX; remove the definition of the
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_load_from_bonobo_db):
        (preferences_load_from_bonobo_pbag): Use BONOBO_RET_EX rather than
        RETURN_IF_EX; remove the definition of the latter macro
    
        * applier.c (fill_gradient): Copied from control center 1.4.0
        (render_background): Create the pixbuf first and then pass to
        fill_gradient
        (render_to_screen): Use XLIB_RGB_DITHER_MAX rather than
        GDK_RGB_DITHER_NORMAL

 capplets/background/ChangeLog     |  6 +++++-
 capplets/background/applier.c     |  5 ++---
 capplets/background/preferences.c | 41 ++++++++++++++++++++++-----------------
 3 files changed, 30 insertions(+), 22 deletions(-)

commit 233eec9ccaf4620e3cc19e38e2f2fac6acd9cd07
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 28 21:04:53 2001 +0000

    Store the listener id in the archiver_db structure
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Store the
        listener id in the archiver_db structure
        (bonobo_config_archiver_destroy): Remove the event source
        listener; destroy the XML cache
        (new_rollback_cb): Don't reload everything if we initiated the
        sync ourselves
        (real_sync): Mark that we are currently up to date

 archiver/ChangeLog                |  3 +++
 archiver/bonobo-config-archiver.c | 10 ++++++++++
 archiver/bonobo-config-archiver.h |  1 +
 3 files changed, 14 insertions(+)

commit ca6b2c78e6e08bbe4942ff2b8b4a7175ccd94bbb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 28 18:14:23 2001 +0000

    Use GDK_RGB_DITHER_MAX rather than GDK_RGB_DITHER_NORMAL
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (render_to_screen): Use GDK_RGB_DITHER_MAX rather
        than GDK_RGB_DITHER_NORMAL

 capplets/background/ChangeLog |  6 ++++
 capplets/background/applier.c | 68 ++++++++++++++++++-------------------------
 2 files changed, 34 insertions(+), 40 deletions(-)

commit e383bb82c572f2149f05e1bc1a80dc85d4c7404d
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Sep 28 17:23:25 2001 +0000

    Removed debugging message

 control-center/capplet-dir.c | 2 --
 1 file changed, 2 deletions(-)

commit ce8cb4574bedad53c830a13245f6df18cdd0a3a4
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Sep 28 14:19:30 2001 +0000

    Added ConfigArchiver*

 archiver/.cvsignore | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 99d03c73dd011eb4d268a6b1001f1e1fdcc8b4d9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 28 14:17:25 2001 +0000

    Store the listener id in the archiver_db structure
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Store the
        listener id in the archiver_db structure
        (bonobo_config_archiver_destroy): Remove the event source
        listener; destroy the XML cache

 archiver/ChangeLog                |  7 +++++++
 archiver/bonobo-config-archiver.c | 25 ++++++++++++++++++++++---
 archiver/bonobo-config-archiver.h | 26 ++++++++++++++------------
 3 files changed, 43 insertions(+), 15 deletions(-)

commit a850f20fa78cd7b7ee61e9dd0ef0f510118bf360
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 28 12:30:35 2001 +0000

    Remove -control from the end of the string as well as -capplet
    
    2001-09-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (get_default_moniker): Remove -control from the
        end of the string as well as -capplet
        (get_factory_name): Ditto
        (get_property_name): Ditto
    
        * capplets/*/Makefile.am: Change the binary name to
        *-properties-control and create a wrapper script from
        ../common/wrapper-script.in to be named
        *-properties-capplet
        Remove support for disabling bonobo-conf build

 capplets/background/ChangeLog   |  8 ++++++++
 capplets/background/Makefile.am | 28 ++++++++++------------------
 capplets/common/ChangeLog       |  7 +++++++
 capplets/common/Makefile.am     |  2 +-
 capplets/common/capplet-util.c  |  3 +++
 capplets/keyboard/ChangeLog     |  8 ++++++++
 capplets/keyboard/Makefile.am   | 23 ++++++++---------------
 capplets/mouse/ChangeLog        |  8 ++++++++
 capplets/mouse/Makefile.am      | 27 +++++++++++----------------
 capplets/sound/ChangeLog        |  8 ++++++++
 capplets/sound/Makefile.am      | 24 +++++++++---------------
 control-center/capplet-dir.c    |  2 ++
 12 files changed, 83 insertions(+), 65 deletions(-)

commit b286046683b2d8c92ddc8eb01b6bd3458a290595
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Sep 27 21:03:01 2001 +0000

    bum the requirements for gal >= 0.12 and version to 1.5.
    
        * configure.in (capplet_modules): bum the requirements for gal >= 0.12
        and version to 1.5.

 ChangeLog    | 5 +++++
 configure.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 3719bf087d81124bde4539ec79d5a534c15150b7
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Sep 25 18:48:51 2001 +0000

    updated Azeri file

 po/ChangeLog |   4 ++
 po/az.po     | 219 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 207 insertions(+), 16 deletions(-)

commit 3dc4919796a228eb4e113e293b336b10d3bc42cf
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Sep 25 01:57:28 2001 +0000

    Initialize prefs_widget_parent_class (prefs_widget_destroy): Add more
    
    2001-09-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * prefs-widget.c (prefs_widget_class_init): Initialize
        prefs_widget_parent_class
        (prefs_widget_destroy): Add more paranoid checking to make sure we
        aren't derefing a NULL pointer

 capplets/screensaver/ChangeLog      | 7 +++++++
 capplets/screensaver/prefs-widget.c | 6 ++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit b4d4a62dbbb954c5965075d0e555be4755f213cd
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Sep 25 01:40:39 2001 +0000

    Improved error checking and cleaned up the logic a bit
    
    2001-09-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (legacy_is_modified): Improved error checking and
        cleaned up the logic a bit

 capplets/common/ChangeLog      |  5 +++++
 capplets/common/capplet-util.c | 33 +++++++++++++++++----------------
 2 files changed, 22 insertions(+), 16 deletions(-)

commit e8eded81668e2ce13045db2770edf77262c1aea0
Author: Tambet Ingo <tambet@ximian.com>
Date:   Mon Sep 24 18:24:19 2001 +0000

    Fixed to build with new GAL.
    
    2001-09-24  Tambet Ingo  <tambet@ximian.com>
    
        * prefs-widget.c (prefs_widget_init): Fixed to build with new GAL.

 capplets/screensaver/ChangeLog      |  4 ++++
 capplets/screensaver/prefs-widget.c | 16 +++++++++-------
 2 files changed, 13 insertions(+), 7 deletions(-)

commit 90e4bac6ed59f5be4175ccaab9a4d0be45527f31
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Sep 24 02:10:21 2001 +0000

    Create the root pixmap after we know about the gradient geometry
    
    2001-09-22  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (run_render_pipeline): Create the root pixmap after we
        know about the gradient geometry
        (place_pixbuf):
        (tile_pixbuf): Fix calls to gdk_pixbuf_composite[_color]
        (render_wallpaper): Fix setting of pixbuf_xlate
        (render_background): Fix pixbuf_render_geom here in case the
        gradient geometry is small

 capplets/background/background-properties-capplet.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 668c8566ba3b5cf7b54de322257dc87ad3c7acc4
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Sun Sep 23 18:59:35 2001 +0000

    Small update

 po/nn.po | 923 +++++++++++++++++++++++++++++++++++++++++++--------------------
 po/no.po |  82 +++---
 2 files changed, 677 insertions(+), 328 deletions(-)

commit 2756b27d9121fca538d8a8a88dad68cf96a1a130
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Sep 23 18:52:42 2001 +0000

    Updated Norwegian (bokml) translation. Updated Norwegian (nynorsk)
    
    2001-09-23  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.
        * nn.po: Updated Norwegian (nynorsk) translation.

 po/ChangeLog   |   22 +-
 po/POTFILES.in |    5 +
 po/no.po       | 1153 +++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 739 insertions(+), 441 deletions(-)

commit 44beb0254d7b82197a18b58a99a70a7570d1b446
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Sep 23 00:09:13 2001 +0000

    Updated Slovenian translation

 po/sl.po | 2833 ++------------------------------------------------------------
 1 file changed, 74 insertions(+), 2759 deletions(-)

commit 43b6559753949bff9a8be843f29c3772cb4ae3d6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Sep 22 23:38:10 2001 +0000

    Abort if the object is already destroyed
    
    2001-09-22  Bradford Hovinen  <hovinen@ximian.com>
    
            * bonobo-config-archiver.c (notify_listeners): Abort if the object
            is already destroyed

 archiver/ChangeLog                |  5 +++++
 archiver/bonobo-config-archiver.c | 11 +++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit c8b405679c20711379820c1f9a31035eea2b1f94
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Sep 22 23:37:35 2001 +0000

    Create apply and close buttons to match the setup tools
    
    2001-09-22  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Create apply and close
        buttons to match the setup tools

 control-center/ChangeLog     |  5 +++++
 control-center/capplet-dir.c | 15 ++++++---------
 2 files changed, 11 insertions(+), 9 deletions(-)

commit 1dd4c2daa23218a3c48526aa8c8d7ec9bb8c0e89
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Sep 22 23:36:41 2001 +0000

    Create apply and close buttons, ala the setup tools
    
    2001-09-14  Bradford Hovinen  <hovinen@ximian.com>
    
            * rollback-capplet-dialog.c (rollback_capplet_dialog_init): Create
            apply and close buttons, ala the setup tools

 capplets/rollback/ChangeLog                 |  5 +++++
 capplets/rollback/rollback-capplet-dialog.c | 22 +++++-----------------
 2 files changed, 10 insertions(+), 17 deletions(-)

commit a6802d47afa0eb44c48a8cc778262e0e7e1a6df1
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Sep 22 23:30:40 2001 +0000

    Don't call setup_cb after the first time
    
    2001-09-14  Bradford Hovinen  <hovinen@ximian.com>
    
            * capplet-util.c (set_moniker_cb): Don't call setup_cb after the
            first time

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 4487cd8fccdcf8007da347a9c6c0cf575fa3c88e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Sep 22 22:23:56 2001 +0000

    Create the root pixmap after we know about the gradient geometry
    
    2001-09-22  Bradford Hovinen  <hovinen@ximian.com>
    
            * applier.c (run_render_pipeline): Create the root pixmap after we
            know about the gradient geometry
            (place_pixbuf):
            (tile_pixbuf): Fix calls to gdk_pixbuf_composite[_color]
            (render_wallpaper): Fix setting of pixbuf_xlate
            (render_background): Fix pixbuf_render_geom here in case the
            gradient geometry is small

 capplets/background/ChangeLog | 10 +++++++++
 capplets/background/applier.c | 52 ++++++++++++++++++++++++++++---------------
 2 files changed, 44 insertions(+), 18 deletions(-)

commit 76bac313c510ac241145fb5bfc30e79aff867ae7
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Sat Sep 22 13:01:37 2001 +0000

    Updated Slovak translation.
    
    2001-09-22  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 404 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 212 insertions(+), 196 deletions(-)

commit ee3356381a35585cac21f95d667d09b1a57d6b74
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Sep 22 02:25:59 2001 +0000

    Total reorganization
    
    2001-09-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c: Total reorganization
    
    2001-09-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_save): Move from
        applier.c:output_compat_prefs; it really belongs here
        (preferences_class_init): Don't construct an applier here
    
        * background-properties-capplet.c (setup_dialog): Create a new
        applier for every dialog
        (create_dialog): Create applier locally, just for this one widget
        (apply_settings): Create applier locally and destroy on exit
        (main): Remove call to gnome_window_set_...

 capplets/background/ChangeLog                      |    8 +
 capplets/background/applier.c                      | 1595 ++++++++++----------
 capplets/background/applier.h                      |   15 +-
 .../background/background-properties-capplet.c     |   16 +-
 capplets/background/preferences.c                  |   49 +-
 capplets/background/preferences.h                  |    9 +-
 6 files changed, 873 insertions(+), 819 deletions(-)

commit b90a84da6054d1d0a9ee5b23bae42bb8f5e5fbaa
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Sep 17 13:31:43 2001 +0000

    Create a new applier for every dialog (create_dialog): Create applier
    
    2001-09-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Create a new
        applier for every dialog
        (create_dialog): Create applier locally, just for this one widget
        (apply_settings): Create applier locally and destroy on exit
        (main): Remove call to gnome_window_set_...

 capplets/background/ChangeLog                      |  9 +++++
 .../background/background-properties-capplet.c     | 38 ++++++++++------------
 2 files changed, 26 insertions(+), 21 deletions(-)

commit c1ff88b8c3c7e85eacea51a0d75a4292be0e612f
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Mon Sep 17 00:53:31 2001 +0000

    Fixed.
    
    2001-09-17  Carlos Perell Marn <carlos@gnome-db.org>
    
        * cs.po: Fixed.

 po/ChangeLog | 4 ++++
 po/cs.po     | 3 ---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 5c31978a2803b38296993f4201a9acebf15e7555
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 14 16:52:52 2001 +0000

    Use applier_render_color_p (real_realize_cb): Ditto (get_legacy_settings):
    
    2001-09-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (property_change_cb): Use
        applier_render_color_p
        (real_realize_cb): Ditto
        (get_legacy_settings): Set the wallpaper_enabled flag based on the
        value of wallpaper_filename; use (none) as the default for
        wallpaper_filename

 capplets/background/ChangeLog                       | 3 +++
 capplets/background/background-properties-capplet.c | 7 ++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 862ce9a11b7d5bf89ea08231d69f505cd93b1210
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 14 14:26:47 2001 +0000

    Use applier_render_color_p (real_realize_cb): Ditto
    
    2001-09-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (property_change_cb): Use
        applier_render_color_p
        (real_realize_cb): Ditto
    
        * applier.c (applier_render_color_p): Renamed from
        applier_render_gradient_p; check both solid color and gradient
    
        * preferences.c (preferences_need_color_opts): Removed; use
        applier_render_color_p instead

 capplets/background/ChangeLog                      | 12 ++++++
 capplets/background/applier.c                      |  9 ++++-
 capplets/background/applier.h                      |  2 +-
 .../background/background-properties-capplet.c     | 15 ++------
 capplets/background/preferences.c                  | 44 ----------------------
 5 files changed, 23 insertions(+), 59 deletions(-)

commit 84cbbbff3e90cecd95ca8038c776ef4c0c1897b2
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Sep 14 13:36:50 2001 +0000

    Default to TRUE on enabled; check value of wallpaper_filename to set
    
    2001-09-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_load_from_bonobo_db):
        (preferences_load_from_bonobo_pbag): Default to TRUE on enabled;
        check value of wallpaper_filename to set wallpaper_enabled if
        wallpaper_enabled could not be found
    
        * background-properties-capplet.c (setup_dialog):
        (apply_settings): Check for error condition after creating
        preferences object
    
        * preferences.c (preferences_destroy): Make this static
        (read_color_from_string): Made argument const
        (bonobo_color_to_gdk): Made argument const
        (DB_GET_VALUE): Removed
        (PB_GET_VALUE): Removed
        (preferences_load_from_bonobo_pbag): Use
        local_bonobo_property_bag_client_get_value_{color|filename}
        (preferences_new_from_bonobo_db):
        (preferences_new_from_bonobo_pbag): Deallocate object and return
        NULL if there was an error
        (local_bonobo_property_bag_client_get_value_color):
        (local_bonobo_property_bag_client_get_value_filename): Implement
        (MAKE_GET_SIMPLE): Implement (copy from bonobo-conf)
        (preferences_load_from_bonobo_pbag): Read enabled property
        (preferences_load_from_bonobo_pbag): Forgive wallpaper_enabled and
        enabled not being found
    
        * applier.c (applier_render_gradient_p): Implement
        (applier_destroy): Make this static
    
        * preferences.c (preferences_load_from_bonobo_db): Use
        bonobo_config_get_boolean rather than BONOBO_ARG_GET_BOOLEAN
        (DB_GET_VALUE ()). Ditto bonobo_config_get_long
        (preferences_load_from_bonobo_db): Pass ev pointer to each call to
        bonobo_config_get_*
        (preferences_load_from_bonobo_db): Check ev pointer after each
        call to bonobo_config_get_* and return if an exception is set
        (preferences_load_from_bonobo_db): Allow the enabled flag not to
        be present in the database since some older configurations don't
        have it included
        (all): Remove support for compiling without bonobo-conf

 capplets/background/ChangeLog                      |  43 ++
 capplets/background/applier.c                      |  23 +-
 capplets/background/applier.h                      |  16 +-
 .../background/background-properties-capplet.c     |  20 +-
 capplets/background/preferences.c                  | 648 ++++++---------------
 capplets/background/preferences.h                  |  48 +-
 6 files changed, 271 insertions(+), 527 deletions(-)

commit d64bf8127573b1cb4e59f7b079e895c58d977959
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Sep 12 15:39:02 2001 +0000

    Added storageComplete method to Location, to notify Location that the
    storage of rollback data is complete

 idl/ConfigArchiver.idl | 2 ++
 1 file changed, 2 insertions(+)

commit 26bb0ac9253b93da11ec96e900c7750096751846
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Sep 12 15:38:10 2001 +0000

    Add GNOMECC_DEFAULTS_DIR
    
    2001-09-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * acconfig.h: Add GNOMECC_DEFAULTS_DIR

 acconfig.h | 1 +
 1 file changed, 1 insertion(+)

commit 0c9ba43b5dc39c07565c220a2d6eb62c2ca4ede2
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Sep 12 15:37:49 2001 +0000

    Added rollback
    
    2001-09-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (always_built_SUBDIRS): Added rollback
    
    2001-09-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Use ${real_prefix}/share rather than ${datadir},
        etc.
    
        * acconfig.h: Add GNOMECC_DEFAULTS_DIR
    
        * configure.in (GNOMECC_DEFAULTS_DIR): Define this here

 ChangeLog    | 13 +++++++++++++
 configure.in | 11 +++++++----
 2 files changed, 20 insertions(+), 4 deletions(-)

commit cd3e448631ab952af0b69705011e882f6321351b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Sep 12 15:35:44 2001 +0000

    Free the full moniker to correct memory leak (set_moniker_cb): Disconnect
    
    2001-09-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (set_moniker_cb): Free the full moniker to
        correct memory leak
        (set_moniker_cb): Disconnect old signal handler

 capplets/common/ChangeLog      |  6 ++++++
 capplets/common/capplet-util.c | 32 +++++++++++++++++++++-----------
 2 files changed, 27 insertions(+), 11 deletions(-)

commit c0f066468072e4f1a333b710aadedc2cb687a78a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Sep 12 15:35:23 2001 +0000

    Apply preferences now if the preview widget is already realized
    
    2001-09-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Apply
        preferences now if the preview widget is already realized

 capplets/background/ChangeLog                       | 5 +++++
 capplets/background/background-properties-capplet.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit c57c105d7ee42329c7e459304c1347fb697ec6d4
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Sep 12 15:34:26 2001 +0000

    Added rollback capplet to SUBDIRS

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e495f691818640a8e258bab991e2f3d112a1fbb6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Sep 12 15:33:45 2001 +0000

    Complete rewrite

 capplets/rollback/Makefile.am               |   8 +-
 capplets/rollback/main.c                    |  13 +-
 capplets/rollback/rollback-capplet-dialog.c | 604 ++++++++++++++++++++++++++++
 capplets/rollback/rollback-capplet-dialog.h |  58 +++
 capplets/rollback/rollback.desktop.in       |   6 -
 capplets/rollback/rollback.desktop.in.in    |   7 +
 6 files changed, 684 insertions(+), 12 deletions(-)

commit a3aba9ecbad24bf515fc0cca22ed6c47ea7f0c44
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Sep 12 15:31:23 2001 +0000

    Removed obsolete files

 capplets/rollback/config-manager-dialog.c | 431 ------------------------------
 capplets/rollback/config-manager-dialog.h |  64 -----
 2 files changed, 495 deletions(-)

commit 6ab6caa498e52f3d72ce04d8b54137278c1d5199
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Sep 12 15:30:41 2001 +0000

    Make backend_id const
    
    2001-09-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * archiver-client.c (location_client_store_xml): Make backend_id
        const
    
        * util.c (parse_date): Set the time zone
        (parse_date): Initialize tm_isdst
    
        * archiver-client.c (location_client_store_xml): Call
        ConfigArchiver_Location_storageComplete when done
        (location_client_store_xml): Don't try to save the XML file if
        there was an error getting the storage filename
    
        * location.c (location_storage_complete): Implement
        (impl_ConfigArchiver_Location_storageComplete): Implement
    
        * config-log.c (config_log_get_backend_id_for_id): Make return
        value const
    
    2001-09-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_get_storage_filename): Notify listeners
        that new rollback data is available
    
        * bonobo-config-archiver.c (new_rollback_cb): Implement
        (bonobo_config_archiver_new): Connect above to event source
    
        * location.c (location_store):
        (location_init): Construct an event source and add its interface
    
        * Makefile.am (INCLUDES): Remove -DDEFAULTS_DIR
    
    2001-09-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Accept
        complete moniker as an argument; do the parsing here
    
        * archiver-client.c (location_client_load_rollback_data): Adjust
        time from mktime according to time zone information
    
        * bonobo-moniker-archiver.c (is_leap_year):
        (mod_date_by_str): Implement
        (parse_name): Use correct math for computing offsets
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Don't
        print an error message if the parent moniker is bad
        (bonobo_config_archiver_new): Remove debugging messages
    
        * archiver-client.c (location_client_load_rollback_data): Make
        date and backend_id const
    
        * bonobo-moniker-archiver.c (archiverdb_resolve): Determine date
        from moniker and pass to bonobo_config_archiver_new
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Accept
        date structure as argument

 archiver/ChangeLog                 |  57 +++++++++++
 archiver/Makefile.am               |   1 -
 archiver/archiver-client.c         |  58 +++++++----
 archiver/archiver-client.h         |   6 +-
 archiver/bonobo-config-archiver.c  | 198 +++++++++++++++++++++++++++++--------
 archiver/bonobo-config-archiver.h  |   7 +-
 archiver/bonobo-moniker-archiver.c |  59 ++---------
 archiver/config-log.c              |   2 +-
 archiver/config-log.h              |   2 +-
 archiver/location.c                |  92 +++++++++++++----
 archiver/location.h                |   3 +
 archiver/util.c                    |   4 +
 12 files changed, 345 insertions(+), 144 deletions(-)

commit 7f4dbc6ff6c6baf993128dc9d2eec74d7cb81fa3
Author: Chema Celorio <chema@celorio.com>
Date:   Mon Sep 10 18:57:05 2001 +0000

    substite ${prefix}/share with {datadir} thanks peter@ximian.com
    
    2001-09-10  Chema Celorio  <chema@celorio.com>
    
        * configure.in (GNOMECC_PIXMAPS_DIR): substite ${prefix}/share with {datadir}
        thanks peter@ximian.com

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 8a8e21c009a459b27bfd08f0b12811af12ac62f3
Author: Wang Jian <lark@src.gnome.org>
Date:   Sat Sep 8 16:45:31 2001 +0000

    *** empty log message ***

 ChangeLog          |    4 +
 configure.in       |    2 +-
 po/ChangeLog       |    4 +
 po/zh_CN.GB2312.po | 3514 ----------------------------------------------------
 4 files changed, 9 insertions(+), 3515 deletions(-)

commit 978387067a1809ae53f8d6ac844a197641b95c8d
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Sat Sep 8 01:03:00 2001 +0000

    .

 capplets/mouse/ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit f29d4a950211fc4b9b5477bb49d5732938d92bf0
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Sat Sep 8 00:42:11 2001 +0000

    Redid UI a bit to add new enabled checkbox.
    
    2001-09-07  Richard Hestilow  <hestilow@ximian.com>
    
        * background-properties.glade: Redid UI a bit to add new enabled
        checkbox.
    
        * background-properties.xml: Add default for "wallpaper_enabled".
    
        * preferences.[ch]: New function preferences_need_color_opts.
        (preferences_load_from_bonobo_db): Load wallpaper_enabled from
        bonobo-conf.
        (preferences_load_from_bonobo_pbag): Ditto.
    
        * applier.[ch]: New function applier_get_wallpaper_pixbuf
        (needed by preferences_need_color_opts, else pixbuf gets created
        twice).
    
        * background-properties-capplet.c (real_realize_cb): Set
        color frame sensitivity based on preferences_need_color_opts.
        (property_change_cb): Ditto.
        (setup_dialog): Add peditor/guard for wallpaper_enabled. Also,
        set glade object data on the preferences structure as well.

 capplets/background/ChangeLog                      |  22 +++
 capplets/background/applier.c                      |   9 +-
 capplets/background/applier.h                      |   3 +
 .../background/background-properties-capplet.c     |  35 ++++-
 capplets/background/background-properties.glade    | 166 +++++++++++----------
 capplets/background/background-properties.xml      |   1 +
 capplets/background/preferences.c                  |  62 ++++++--
 capplets/background/preferences.h                  |   4 +
 8 files changed, 212 insertions(+), 90 deletions(-)

commit fee5ad71116048216804b2c1bdda178fdd06489c
Author: Chema Celorio <chema@celorio.com>
Date:   Fri Sep 7 21:45:59 2001 +0000

    dont set the pixmaps (capplet_fool_the_linker):
    
    2001-09-07  Chema Celorio  <chema@celorio.com>
    
        * mouse-properties-capplet.c (create_dialog): dont set the pixmaps
        (capplet_fool_the_linker):
        (mouse_capplet_create_image_widget):
        (mouse_capplet_create_image_widget_canvas): implement.
        This sets antialiased pixmaps for the mouse capplet. Maybe this
        call should in common. Closes bug #58293

 capplets/mouse/gnome-mouse-properties.c   | 85 +++++++++++++++++++++++++++++--
 capplets/mouse/mouse-properties-capplet.c | 85 +++++++++++++++++++++++++++++--
 capplets/mouse/mouse-properties.glade     | 34 ++++++-------
 3 files changed, 179 insertions(+), 25 deletions(-)

commit a6e3b093e376c75db57497dd293016d7a0537179
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Sep 5 10:00:59 2001 +0000

    updated Azeri file

 po/ChangeLog | 4 ++++
 po/az.po     | 9 ++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 243ab12f36c24ce3f8b70c83ae7a485171096985
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue Sep 4 20:37:08 2001 +0000

    Usual update.

 po/ChangeLog |  4 ++++
 po/zh_TW.po  | 21 +++++++++++++++------
 2 files changed, 19 insertions(+), 6 deletions(-)

commit aa885c400bd6009b7427b2b1bd3917485f4e2f25
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue Sep 4 20:08:49 2001 +0000

    Rename all traces of zh_TW.Big5 to zh_TW

 capplets/wm-properties/ChangeLog        | 3 +++
 capplets/wm-properties/wm.desktop.in.in | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 797be7fba6f16b1f3c6db0f2f9116498e30b1510
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Sep 4 18:56:24 2001 +0000

    I hate gettext

 po/ChangeLog | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit 1d03bbd1c5c55c158a240c6bec52e5075d1b4ebb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Sep 4 13:43:48 2001 +0000

    1.5.7
    
    2001-08-29  Bradford Hovinen  <hovinen@ximian.com>
    
            * RELEASE : 1.5.7
    
            * archive.c (foreach_build_list_cb): Don't unref the location if
            it is deleted
            (load_all_locations): Check if the location is marked deleted and
            throw it away if so
    
            * location.c (location_new): Don't unref parent location

 ChangeLog                        |   4 +
 archiver/ChangeLog               |   5 ++
 archiver/archive.c               |  10 ++-
 capplets/background/Makefile.am  |   1 -
 capplets/rollback/Makefile.am    |  53 +++++++------
 capplets/rollback/main.c         |  23 ++++--
 capplets/rollback/rollback.glade | 155 ++++++++++++++++++++++++++++++++-------
 configure.in                     |   2 +-
 po/az.po                         |   2 +-
 po/ca.po                         |   2 +-
 po/da.po                         |   2 +-
 po/de.po                         |   2 +-
 po/el.po                         |   2 +-
 po/es.po                         |   2 +-
 po/fi.po                         |   2 +-
 po/fr.po                         |   2 +-
 po/ga.po                         |   2 +-
 po/hr.po                         |   2 +-
 po/ja.po                         |   2 +-
 po/nn.po                         |   2 +-
 po/no.po                         |   2 +-
 po/pl.po                         |   2 +-
 po/pt_BR.po                      |   2 +-
 po/ru.po                         |   2 +-
 po/sk.po                         |   2 +-
 po/sl.po                         |   2 +-
 po/sv.po                         |   2 +-
 po/tr.po                         |   2 +-
 po/uk.po                         |   2 +-
 po/wa.po                         |   2 +-
 po/zh_TW.po                      |   2 +-
 31 files changed, 209 insertions(+), 90 deletions(-)

commit 608b418c3e2b5c9e287d6cba42897568955249c3
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri Aug 31 11:59:21 2001 +0000

    Rename zh_TW.Big5 -> zh_TW, to prevent future encoding naming problem.

 capplets/mime-type/mime-info.c       | 4 ++--
 capplets/mime-type/new-mime-window.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit eab386057e1ece6f505f98e4410a4cff56186760
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Aug 29 15:12:10 2001 +0000

    Don't unref parent location
    
    2001-08-29  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_new): Don't unref parent location

 archiver/ChangeLog  | 4 ++++
 archiver/location.c | 3 ---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 579d651161d92dd4155391ce06d5a3600fc2fc38
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Aug 29 14:23:01 2001 +0000

    Unref the location given if we are not going to use it
    
    2001-08-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (foreach_build_list_cb): Unref the location given if
        we are not going to use it

 archiver/ChangeLog | 5 +++++
 archiver/archive.c | 2 ++
 2 files changed, 7 insertions(+)

commit 2d8575288284b70ede4392e5c411aba57dce3cf5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Aug 28 13:45:20 2001 +0000

    Retrieve the correct value for wallpaper_types
    
    2001-08-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (get_legacy_settings): Retrieve
        the correct value for wallpaper_types

 capplets/background/ChangeLog                       | 3 +++
 capplets/background/background-properties-capplet.c | 7 ++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 25d51323815a3ef4807865e2fc1da996ea563792
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Aug 28 13:42:49 2001 +0000

    Output the correct value for wallpaperAlign
    
    2001-08-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (output_compat_prefs): Output the correct value for
        wallpaperAlign

 capplets/background/ChangeLog | 3 +++
 capplets/background/applier.c | 3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3c6740ca6fd993a17980c87b8a9f9b0aa821a0fa
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Aug 28 13:32:01 2001 +0000

    Don't adjust the opacity if the opacity setting is invalid
    
    2001-08-28  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_load_from_bonobo_pbag): Don't adjust
        the opacity if the opacity setting is invalid
        (preferences_load_from_bonobo_db): Ditto

 capplets/background/ChangeLog     | 6 ++++++
 capplets/background/preferences.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit a82ec1573c517a69a57baaf374a65860cb41b912
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Aug 28 13:01:54 2001 +0000

    Don't add the location to the list if it is marked deleted
    
    2001-08-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (foreach_build_list_cb): Don't add the location to the
        list if it is marked deleted
        (impl_ConfigArchiver_Archive_createLocation): Do
        CORBA_Object_duplicate rather than bonobo_object_dup_ref
    
        * location.c (location_is_deleted): Implement
    
        * background-properties-capplet.c (setup_dialog): Initialize/free
        the CORBA environment structure
        (real_realize_cb): Put into an idle handler, called by
        realize_2_cb, the new timeout handler
    
        * preferences.c (preferences_load_from_bonobo_pbag):
        (preferences_load_from_bonobo_db): Extract from preferences_new_*
    
        * background-properties-capplet.c (property_change_cb):
        (realize_cb): Accept prefs structure in lieu of
        Bonobo_PropertyBag; don't reload the preferences structure from
        the property bag
        (property_change_cb): Call preferences_apply_event to modify the
        preferences structure appropriately
        (property_change_cb):
        (realize_cb): If the preferences structure is marked destroyed,
        just return
        (setup_dialog): Create a preferences structure from the property
        bag given and use that as the extra data passed to callbacks
        (realize_cb): Put into an idle handler real_realize_cb
    
        * preferences.c (preferences_apply_event): Implement
    
        * applier.c (output_compat_prefs): Make prefs const
    
        * applier.[ch]: Have applier_apply_prefs take a const Preferences
        structure
    
        * preferences.[ch]: Make preferences_clone take a const
        Preferences structure

 archiver/ChangeLog                                 |    9 +
 archiver/archive.c                                 |    6 +-
 archiver/location.c                                |   20 +-
 archiver/location.h                                |    2 +
 capplets/background/ChangeLog                      |   38 +
 capplets/background/applier.c                      |   17 +-
 capplets/background/applier.h                      |    2 +-
 .../background/background-properties-capplet.c     |   96 +-
 capplets/background/preferences.c                  |  120 +-
 capplets/background/preferences.h                  |   50 +-
 po/az.po                                           |   93 +-
 po/ca.po                                           |  102 +-
 po/da.po                                           | 2335 +++++++++++---
 po/de.po                                           | 2341 +++++++++++---
 po/el.po                                           |  102 +-
 po/es.po                                           |  148 +-
 po/fi.po                                           | 2305 +++++++++++---
 po/fr.po                                           | 2375 ++++++++++++---
 po/ga.po                                           | 2369 ++++++++++++---
 po/hr.po                                           |  102 +-
 po/ja.po                                           | 2379 ++++++++++++---
 po/nn.po                                           | 2608 +++++++++++++---
 po/no.po                                           | 2326 +++++++++++---
 po/pl.po                                           | 2647 ++++++++++++----
 po/pt_BR.po                                        |   78 +-
 po/ru.po                                           | 2432 ++++++++++++---
 po/sk.po                                           | 2309 +++++++++++---
 po/sl.po                                           |  124 +-
 po/sv.po                                           | 2333 +++++++++++---
 po/tr.po                                           | 3195 +++++++++++++++-----
 po/uk.po                                           | 2393 ++++++++++++---
 po/wa.po                                           |  102 +-
 po/zh_TW.po                                        |    4 +-
 33 files changed, 29189 insertions(+), 6373 deletions(-)

commit 8b63aee5603c199e007f7dbf6eb8232b039fc3c0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Aug 23 20:10:14 2001 +0000

    1.5.6
    
    2001-08-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * RELEASE : 1.5.6

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 286cb3899a8c1902964c205e16ea77c3315d9e78
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Aug 23 20:09:21 2001 +0000

    Make sure we don't try to do this if we are marked deleted
    
    2001-08-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (do_unload): Make sure we don't try to do this if
        we are marked deleted
        (config_log_delete): Call do_unload to eliminate memory leaks
    
        * location.c (location_delete): Set the deleted flag
    
        * config-log.c (dump_log): Don't try to dump the log if we are
        deleted
    
        * location.c (save_metadata): Don't try to save metadata if we are
        deleted

 archiver/ChangeLog    | 18 ++++++++++++++++--
 archiver/config-log.c |  9 ++++++---
 archiver/location.c   |  5 ++++-
 3 files changed, 26 insertions(+), 6 deletions(-)

commit 0ddf82fefe31bc7a1451b94dadab7c9b8cecb965
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Thu Aug 23 19:35:18 2001 +0000

    pwr_conf_dialog had a fixed size..

 capplets/screensaver/ChangeLog                    |   4 +
 capplets/screensaver/screensaver-properties.glade | 124 +++++++++++-----------
 2 files changed, 65 insertions(+), 63 deletions(-)

commit 74b7c332bcd67826d580ca9786689cce424af757
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Aug 23 19:16:03 2001 +0000

    Don't try to archive the data if the archive is NULL
    
    2001-08-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c: (store_archive_data): Don't try to archive the data
        if the archive is NULL

 capplets/screensaver/ChangeLog | 2 ++
 capplets/screensaver/main.c    | 3 +++
 2 files changed, 5 insertions(+)

commit 768a3d5a467126fa461d1232701c281926e4619f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Aug 23 19:08:26 2001 +0000

    Port to new CORBA interface
    
    2001-08-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c: Port to new CORBA interface

 capplets/screensaver/ChangeLog |  4 +++
 capplets/screensaver/main.c    | 58 ++++++++++++++++++++++++++++++++----------
 2 files changed, 49 insertions(+), 13 deletions(-)

commit 11696dba5aa90ce625e98a38b57cac1cae9bb13e
Author: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>
Date:   Wed Aug 22 21:04:50 2001 +0000

    Updated Brazilian Portuguese translation.
    
    2001-08-22  Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>
    
    * pt_BR.po: Updated Brazilian Portuguese translation.

 po/ChangeLog |    4 +
 po/pt_BR.po  | 5064 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 2398 insertions(+), 2670 deletions(-)

commit 917268be7c75306395a71b51fe58384809a3c2f8
Author: Hans Petter Jansson <hpj@ximian.com>
Date:   Wed Aug 22 19:15:13 2001 +0000

    Fixed include path, libxml -> gnome-xml. It's consistent with the includes
    
    2001-08-22  Hans Petter Jansson  <hpj@ximian.com>
    
        * archiver-client.h: Fixed include path, libxml -> gnome-xml. It's
        consistent with the includes in archiver-client.c, and it stops the build
        breaking here.

 archiver/ChangeLog         | 6 ++++++
 archiver/archiver-client.h | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit fd5b08bb5a7a8ba69403ee42eaba1eda2888d4ed
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Aug 22 13:57:38 2001 +0000

    Bump version to 1.5.6
    
    2001-08-22  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Bump version to 1.5.6

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b37d7f689748eb7949cee1d6b3493e412b89f40c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Aug 22 13:56:23 2001 +0000

    Added exception RollbackDataNotFound Added exception LocationNotFound
    
    2001-08-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * idl/ConfigArchiver.idl: Added exception RollbackDataNotFound
        Added exception LocationNotFound
    
        * archive.c (archive_get_current_location_id): Use
        archive_create_location rather than location_new
        (archive_get_current_location_id): Unref the location once we have
        created it
    
        * archiver-client.c (location_client_load_rollback_data): Don't
        try to parse the XML file if there was an exception
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Make sure
        to release_unref location and archive if aborting
        (bonobo_config_archiver_new): Reinitialize exception structure
        after we have succeeded
    
        * location.c (location_get_rollback_filename): Recurse on parent
        location if parent_chain is set to TRUE
    
        * archive.c (impl_ConfigArchiver_Archive_getLocation): Set the
        LocationNotFound exception if the location returned was NULL
    
        * location.c (impl_ConfigArchiver_Location_getRollbackFilename): Don't try
    
        * archive.c (impl_ConfigArchiver_Archive_getLocation): Don't try
        to CORBA_Object_duplicate the result if it is NULL
        (archive_get_location): Don't try to cast the result of
        location_open before we know whether it is non-NULL
        (impl_ConfigArchiver_Archive_createLocation): Call
        bonobo_object_from_servant on parent_ref->servant
    
        * location.c (location_destroy): Remove debugging message; make
        remaining debugging message more enlightening
    
        * archive.c (archive_get_child_locations): Rename from
        archive_foreach_child_location; rewrite to return a GList of child
        locations
        (impl_ConfigArchiver_Archive_getChildLocations): Use
        archive_get_child_locations
        (archive_destroy): Remove debugging message
    
        * bonobo-moniker-archiver.c (archive_resolve): Remove debugging
        messages
    
        * archive.c (archive_get_location): Remove debugging messages
    
        * config-log.c (dump_log): Remove debugging messages
    
        * archive.c (archive_foreach_child_location): Build a list first
        and then traverse it to avoid screwing up the tree traversal
    
        * mouse-properties-capplet.c (apply_settings): Use a CORBA
        exception structure

 ChangeLog                                 |   5 ++
 archiver/ChangeLog                        |  50 +++++++++++++
 archiver/archive.c                        | 115 +++++++++++++++---------------
 archiver/archive.h                        |   7 +-
 archiver/archiver-client.c                |   5 +-
 archiver/bonobo-config-archiver.c         |   7 +-
 archiver/bonobo-moniker-archiver.c        |  10 +--
 archiver/config-log.c                     |   4 --
 archiver/location.c                       |  19 +++--
 capplets/mouse/ChangeLog                  |   5 ++
 capplets/mouse/gnome-mouse-properties.c   |  15 +++-
 capplets/mouse/mouse-properties-capplet.c |  15 +++-
 idl/ConfigArchiver.idl                    |  11 ++-
 13 files changed, 174 insertions(+), 94 deletions(-)

commit 1b30f14a62edb4f737ddc744c62f1350a018babe
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Wed Aug 22 13:20:44 2001 +0000

    Really remove zh_TW.Big5.po .

 po/zh_TW.Big5.po | 4021 ------------------------------------------------------
 1 file changed, 4021 deletions(-)

commit 3fc40acce4f0e9f32a07de9cd4a1a3bd6931fc37
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Wed Aug 22 13:20:11 2001 +0000

    Convert from zh_TW.Big5 to UTF8 encoded zh_TW file.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/zh_TW.po  | 4050 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 4060 insertions(+), 1 deletion(-)

commit be5fc9d8403e9608e457568da46dc6177fc2dea5
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Aug 20 23:43:10 2001 +0000

    Add dependency on CORBA_SOURCE to archiver-client.c. (clean-local): Add
    
    2001-08-20  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am: Add dependency on CORBA_SOURCE to archiver-client.c.
        (clean-local): Add CORBA_SOURCE to files to be removed.

 archiver/ChangeLog   | 5 +++++
 archiver/Makefile.am | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 4e6a3b89d64ca6686a11f553236e1b94921369b6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Aug 20 15:47:57 2001 +0000

    Added CORBA interface to the archiver

 Makefile.am                             |    2 +-
 archiver/Bonobo_Moniker_archiver.oaf.in |   16 +-
 archiver/ChangeLog                      |   10 +
 archiver/Makefile.am                    |   49 +-
 archiver/archive.c                      |  347 +++++----
 archiver/archive.h                      |   72 +-
 archiver/archiver-client.c              |  422 +++++++++++
 archiver/archiver-client.h              |   46 ++
 archiver/backend-list.c                 |  116 ++-
 archiver/backend-list.h                 |   33 +-
 archiver/bonobo-config-archiver.c       |   90 +--
 archiver/bonobo-config-archiver.h       |   39 +-
 archiver/bonobo-moniker-archiver.c      |  144 ++--
 archiver/config-archiver.c              |  438 +++++++++++
 archiver/config-log.c                   |   55 +-
 archiver/config-log.h                   |    8 +-
 archiver/location.c                     | 1230 ++++++++++++++-----------------
 archiver/location.h                     |  177 ++---
 archiver/util.c                         |   10 +
 archiver/util.h                         |    2 +-
 capplets/common/ChangeLog               |    4 +
 capplets/common/capplet-util.c          |    2 +-
 configure.in                            |    4 +-
 control-center/ChangeLog                |    5 +
 control-center/capplet-dir.c            |    2 +-
 idl/ConfigArchiver.idl                  |  114 +++
 idl/Makefile.am                         |    6 +
 po/POTFILES.in                          |    2 +-
 28 files changed, 2291 insertions(+), 1154 deletions(-)

commit 7c531bc29eb9dce1c30158043f68c6400858debc
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Sat Aug 18 20:48:25 2001 +0000

    Added missing destdir to Makefile.am and fix description in attraction.xml.

 capplets/screensaver/ChangeLog                   | 6 ++++++
 capplets/screensaver/screensavers/Makefile.am    | 2 +-
 capplets/screensaver/screensavers/attraction.xml | 4 ++--
 3 files changed, 9 insertions(+), 3 deletions(-)

commit f9da6580bf82b6fc2fa73caeed127288d2936f78
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Aug 18 18:01:58 2001 +0000

    Updated Slovenian translation

 po/sl.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit fcc156ead23920a661b279c51de89df8f7a6e20e
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Aug 18 17:47:18 2001 +0000

    Updated Slovenian translation

 po/sl.po | 2637 ++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 1959 insertions(+), 678 deletions(-)

commit 7f96f52261c00ff9b47e75045770affc608d5d57
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Aug 18 14:33:39 2001 +0000

    Updated Azeri file, synchronized ALL_LINGUAS list with list of po files
    
    Updated Azeri file,
    synchronized ALL_LINGUAS list with list of po files

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/az.po     | 2410 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 4 files changed, 2234 insertions(+), 186 deletions(-)

commit 11ef06833d1c728f1baded59b2bde2557987adc2
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Fri Aug 17 20:31:03 2001 +0000

    Fixed a string.

 capplets/default-applications/ChangeLog   | 5 +++++
 capplets/default-applications/interface.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 145b5290e9ce2c749122bae0e40b6fe1854a5bbe
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Aug 17 19:00:10 2001 +0000

    Adjust opacity value to 0...255 scale
    
    2001-08-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (renderer_render_wallpaper): Adjust opacity value to
        0...255 scale
    
        * preferences.c (preferences_new_from_bonobo_pbag):
        (preferences_new_from_bonobo_db): Use correct check to disable
        opacity

 capplets/background/ChangeLog     | 9 +++++++++
 capplets/background/applier.c     | 2 +-
 capplets/background/preferences.c | 4 ++--
 3 files changed, 12 insertions(+), 3 deletions(-)

commit aa15cbf3ec356d4b6f266a8bbd338f9e41c93c60
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Thu Aug 16 17:20:07 2001 +0000

    Updated Slovenian translation

 po/sl.po | 198 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 98 insertions(+), 100 deletions(-)

commit 337b881a4ec52c3048b91f0ffbebcf25a272857c
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Mon Aug 13 19:50:02 2001 +0000

    remove XST form echo

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 803f8907e86f039fe35afe6b521445657798d101
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Aug 13 19:35:41 2001 +0000

    Really override enabled this time. Really.
    
    2001-08-13  Richard Hestilow  <hestilow@ximian.com>
    
        * background-properties-capplet.c (setup_dialog): Really
        override enabled this time. Really.

 capplets/background/ChangeLog                       | 5 +++++
 capplets/background/background-properties-capplet.c | 3 ++-
 capplets/background/preferences.c                   | 1 +
 3 files changed, 8 insertions(+), 1 deletion(-)

commit 199846f5c0b61af7a946c3007193caf6dd208920
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Aug 13 18:39:08 2001 +0000

    Only draw disabled message if do_preview. Actually, the user will never
    
    2001-08-13  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c (applier_apply_prefs): Only draw disabled message
        if do_preview. Actually, the user will never see this because
        the correct behavior (which is done) is to assume if they're
        running capplet, prefs->enable should be TRUE. This is because
        we are only honoring enable as a hacker-only setting.
        (output_compat_prefs): Output the correct "Enable" setting.
    
        * background-properties-capplet.c (get_legacy_settings): Support
        the "Enabled" flag.
    
        * preferences.c (preferences_new_from_bonobo_db): Import the
        "enabled" flag. Note that this is not bothered with in the _pbag
        function, because that's from the Proxy settings, which is only
        used for the GUI capplet, which always sets enabled to True, because
        this is a hacker-only option. Got it?
    
        * background-properties.xml: Add "enabled".

 capplets/background/ChangeLog                       | 20 ++++++++++++++++++++
 capplets/background/applier.c                       |  5 +++--
 capplets/background/background-properties-capplet.c |  1 +
 capplets/background/background-properties.xml       |  1 +
 capplets/background/preferences.c                   |  1 +
 5 files changed, 26 insertions(+), 2 deletions(-)

commit 807b75390d8f45d5d871ecba1127b2f85c0c2e7b
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Mon Aug 13 08:37:58 2001 +0000

    Normal msgmerge + update.

 po/ChangeLog     |    6 +-
 po/zh_TW.Big5.po | 2382 ++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 1864 insertions(+), 524 deletions(-)

commit 483bdc635bd8f67024be76749a2d60bece47e6a8
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Aug 12 20:54:08 2001 +0000

    updated Walloon file

 po/ChangeLog |    3 +-
 po/wa.po     | 2749 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 2286 insertions(+), 466 deletions(-)

commit c45d74b860d58bbdd8c8fa8127155a9d8c453423
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Aug 12 19:43:33 2001 +0000

    updated Catalan file
    removed duplicate msgid from el and hr files

 po/ChangeLog |    5 +
 po/ca.po     | 4688 ++++++++++++++++++++++++++++++++++++----------------------
 po/el.po     | 4510 ++++++++++++++++++++++++++++++++++---------------------
 po/hr.po     | 3923 +++++++++++++++++++++++++++++++-----------------
 4 files changed, 8343 insertions(+), 4783 deletions(-)

commit f75ce08da293ae5b5dcabc75586de3b316b26800
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Aug 10 21:51:14 2001 +0000

    1.5.5
    
    2001-08-10  Bradford Hovinen  <hovinen@ximian.com>
    
        * RELEASE : 1.5.5

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5890f11b77526676e861b6387e915970e4e2a8e9
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Aug 10 18:42:41 2001 +0000

    Fix for SM_SELECT_FROM_LIST mode.
    
    2001-08-10  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet/prefs-widget.c (random_timeout_cb): Fix for
          SM_SELECT_FROM_LIST mode.

 capplets/screensaver/ChangeLog      |  5 +++++
 capplets/screensaver/prefs-widget.c | 13 +++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit 0fcf91e2bc99bd14c3aa59f26c09d8cfb9348c2e
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Aug 10 18:28:58 2001 +0000

    Add perms to mkdir.
    
    2001-08-10  Richard Hestilow  <hestilow@ximian.com>
    
        * capplets/screensavers/magic.pl.in: Add perms to mkdir.

 capplets/screensaver/ChangeLog                | 4 ++++
 capplets/screensaver/screensavers/magic.pl.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b35c2cf932fa4dec2a2574564743b7a31078a877
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Aug 10 17:55:36 2001 +0000

    Remove screen.png, which was commented out anyway.
    
    2001-08-10  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am (pixmaps_DATA): Remove screen.png,
          which was commented out anyway.
    
        * preferences.c (screensaver_clone): Added.
          (copy_screensavers): Added.
          (preferences_clone): Copy screensaver list.
          (screensaver_destroy): Destroy new fields.
        * prefs-widget.c (prefs_widget_set_screensavers): Translate
          strings and utf8ize ahead of time.
          (prefs_widget_destroy): Free translated strings.
          (model_value_at): Return pre-translated string.
          (about_cb): Call gettext on desc, name, and title.
        * screensaver-prefs-dialog.c (screensaver_prefs_dialog_new):
          Call gettext on label and desc.
        * capplets/screensavers/Makefile.am: Fixes for make distcheck.
        * capplets/screensavers/magic.pl.in: Fix description parsing bug,
          and fakepreview lost bug.

 capplets/screensaver/ChangeLog                     | 20 +++++++
 capplets/screensaver/Makefile.am                   |  1 -
 capplets/screensaver/preferences.c                 | 69 ++++++++++++++++++++++
 capplets/screensaver/prefs-widget.c                | 46 +++++++++++++--
 capplets/screensaver/screensaver-prefs-dialog.c    |  6 +-
 capplets/screensaver/screensavers/Makefile.am      | 10 ++--
 capplets/screensaver/screensavers/cosmos.xml       |  6 +-
 capplets/screensaver/screensavers/dangerball.xml   |  4 +-
 capplets/screensaver/screensavers/decayscreen.xml  |  7 ++-
 capplets/screensaver/screensavers/distort.xml      |  2 +-
 capplets/screensaver/screensavers/gflux.xml        |  4 +-
 capplets/screensaver/screensavers/gltext.xml       |  4 +-
 capplets/screensaver/screensavers/hyperball.xml    |  4 +-
 capplets/screensaver/screensavers/jigsaw.xml       |  2 +-
 capplets/screensaver/screensavers/magic.pl.in      | 13 ++--
 capplets/screensaver/screensavers/molecule.xml     |  4 +-
 capplets/screensaver/screensavers/rotzoomer.xml    |  4 +-
 capplets/screensaver/screensavers/slidescreen.xml  |  2 +-
 capplets/screensaver/screensavers/slip.xml         |  2 +-
 capplets/screensaver/screensavers/starwars.xml     |  4 +-
 capplets/screensaver/screensavers/stonerview.xml   |  4 +-
 capplets/screensaver/screensavers/vidwhacker.xml   |  2 +-
 capplets/screensaver/screensavers/webcollage.xml   |  3 +-
 .../screensaver/screensavers/whirlwindwarp.xml     |  4 +-
 capplets/screensaver/screensavers/xrayswarm.xml    |  4 +-
 capplets/screensaver/screensavers/zoom.xml         |  4 +-
 26 files changed, 177 insertions(+), 58 deletions(-)

commit 6d643347af6da9bc9d9f62ad00ff390a0a51af9f
Author: Valek Frob <frob@src.gnome.org>
Date:   Fri Aug 10 16:28:12 2001 +0000

    Updated russian translation.

 po/ChangeLog |   4 +
 po/ru.po     | 571 ++++++-----------------------------------------------------
 2 files changed, 58 insertions(+), 517 deletions(-)

commit dfb77b4361c7cc11f704a3b3571f4f96812e8bbb
Author: Aaron Weber <aaron@ximian.com>
Date:   Fri Aug 10 14:45:16 2001 +0000

    New directory: help and documentation. New directory: English help and
    
    2001-08-10  Aaron Weber  <aaron@ximian.com>
    
        * help/: New directory: help and documentation.
        * help/C/: New directory: English help and documentation.
        * help/C/figures: New directory: figures for English help and docs.
        * help/C/cinnamon-control-center.sgml: New file. Empty SGML skeleton.

 ChangeLog                        |  7 +++++++
 help/C/cinnamon-control-center.sgml | 26 ++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

commit 8902bd3632335371cb2833db57d24f6c077defc7
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Fri Aug 10 13:31:10 2001 +0000

    Disabled desktop.png. It doesn't exists. Removed the xml.h generation
    
    2001-08-10  Carlos Perell Marn <carlos@gnome-db.org>
    
            * Makefile.am: Disabled desktop.png. It doesn't exists.
            * screensavers/Makefile.am: Removed the xml.h generation rule.
    
    2001-08-10  Carlos Perell Marn <carlos@gnome-db.org>
    
            * POTFILES.in: Fixed the screensaver files.
            * es.po: Updated Spanish translation.

 capplets/screensaver/ChangeLog                |    5 +
 capplets/screensaver/Makefile.am              |    3 +-
 capplets/screensaver/screensavers/Makefile.am |   11 +-
 po/ChangeLog                                  |    5 +
 po/POTFILES.in                                |  231 +--
 po/es.po                                      | 2505 ++++++++++++++++++-------
 6 files changed, 1956 insertions(+), 804 deletions(-)

commit 1d840a3813a15361be709375be31667f1a128943
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Aug 10 03:36:17 2001 +0000

    Install all pixmaps. (pixmaps_DATA): Add blank-screen.png.
    
    2001-08-09  Richard Hestilow  <hestilow@ximian.com>
    
        * Makeflie.am (EXTRA_DIST): Install all pixmaps.
        (pixmaps_DATA): Add blank-screen.png.
    
        * pref-file.c: Replace "programs" value with a regenerated
        string.
        (print_aligned_row): Added.
        (print_list_to_str): Added.
    
        * preferences.h (Screensaver): Add new fields "filename",
        "compat_command_line", "fakepreview", and "fakes",
        to deal with the new xml storage.
        (Preferences): Add new fields "savers_hash" and "invalidsavers".
    
        * preferences.c (screensaver_list_prepend_dir): Added.
        (screensaver_cmp_func): Added.
        (screensaver_list_load): Added.
        (preferences_new): Initialize savers_hash.
        (clean_saver_list): Added.
        (preferences_load): Load screensavers from xml.
        (parse_arg_default): Added.
        (screensaver_read_xml): Updated for the new format.
        (screensaver_new_from_file): Added.
    
        * prefs-widget.c (double_click_cb): Added.
        (): Remove right click menu, add double click handler.
        (model_is_cell_editable): Fix for etable bug.
        (random_timeout_cb): Avoid vidwhacker and webcollage.
        * preview.c: Optionally show fakepreview if set, and
        deal with compat_command_line, and refresh pixbufs.
        (command_exists): Renamed to rc_command_exists.
    
        * rc-parse.c: (parse_screensaver_list): Merely update
        the existing entries, via the provided hash.
    
        * screensaver-prefs-dialog.c (get_argument_data): Just
        find the xml file using ::filename.
    
        * screensavers/magic.pl.in: Added.
        * screensavers/Makefile.am: Generate .xml.h files for translators,
        and install all .xml files and .png files, and run magic.pl on
        make install.

 ChangeLog                                          |   5 +
 capplets/screensaver/ChangeLog                     |  44 ++
 capplets/screensaver/Makefile.am                   |   4 +-
 capplets/screensaver/pref-file.c                   | 119 +++++
 capplets/screensaver/preferences.c                 | 217 ++++++++-
 capplets/screensaver/preferences.h                 |   9 +
 capplets/screensaver/prefs-widget.c                |  83 +++-
 capplets/screensaver/preview.c                     |  70 ++-
 capplets/screensaver/rc-parse.c                    |  37 +-
 capplets/screensaver/rc-parse.h                    |   4 +-
 capplets/screensaver/screensaver-prefs-dialog.c    |  64 +--
 capplets/screensaver/screensavers/3d_clock.xml     |   2 +-
 capplets/screensaver/screensavers/Makefile.am      | 255 +++++++----
 capplets/screensaver/screensavers/TODO             |   3 +
 capplets/screensaver/screensavers/ant.xml          |   5 +-
 capplets/screensaver/screensavers/atlantis.xml     |   5 +-
 capplets/screensaver/screensavers/attraction.xml   |  12 +-
 capplets/screensaver/screensavers/blaster.xml      |   8 +
 capplets/screensaver/screensavers/blitspin.xml     |   7 +-
 capplets/screensaver/screensavers/bouboule.xml     |   5 +-
 capplets/screensaver/screensavers/braid.xml        |   5 +-
 capplets/screensaver/screensavers/bsod.xml         |   5 +-
 capplets/screensaver/screensavers/bubble3d.xml     |   5 +-
 capplets/screensaver/screensavers/bubbles.xml      |   5 +-
 capplets/screensaver/screensavers/bumps.xml        |   8 +
 capplets/screensaver/screensavers/cage.xml         |   5 +-
 capplets/screensaver/screensavers/ccurve.xml       |   8 +
 capplets/screensaver/screensavers/compass.xml      |   5 +-
 capplets/screensaver/screensavers/coral.xml        |   5 +-
 capplets/screensaver/screensavers/cosmos.xml       |  10 +
 capplets/screensaver/screensavers/critical.xml     |   5 +-
 capplets/screensaver/screensavers/crystal.xml      |   5 +-
 capplets/screensaver/screensavers/cynosure.xml     |   5 +-
 capplets/screensaver/screensavers/dangerball.xml   |   8 +
 capplets/screensaver/screensavers/decayscreen.png  | Bin 0 -> 23608 bytes
 capplets/screensaver/screensavers/decayscreen.xml  |   4 +-
 capplets/screensaver/screensavers/deco.xml         |   5 +-
 capplets/screensaver/screensavers/deluxe.xml       |   5 +-
 capplets/screensaver/screensavers/demon.xml        |   5 +-
 capplets/screensaver/screensavers/discrete.xml     |   5 +-
 capplets/screensaver/screensavers/distort.png      | Bin 0 -> 58680 bytes
 capplets/screensaver/screensavers/distort.xml      |   5 +-
 capplets/screensaver/screensavers/drift.xml        |   5 +-
 .../screensaver/screensavers/electricsheep.xml     |  10 +
 capplets/screensaver/screensavers/epicycle.xml     |   5 +-
 capplets/screensaver/screensavers/extrusion.xml    |   6 +
 capplets/screensaver/screensavers/fadeplot.xml     |   5 +-
 capplets/screensaver/screensavers/flag.xml         |   5 +-
 capplets/screensaver/screensavers/flame.xml        |   5 +-
 capplets/screensaver/screensavers/flow.xml         |   5 +-
 capplets/screensaver/screensavers/forest.xml       |  10 +-
 capplets/screensaver/screensavers/galaxy.xml       |   5 +-
 capplets/screensaver/screensavers/gears.xml        |   6 +-
 capplets/screensaver/screensavers/gflux.xml        |   8 +
 capplets/screensaver/screensavers/glplanet.xml     |   5 +-
 capplets/screensaver/screensavers/gltext.xml       |   9 +
 capplets/screensaver/screensavers/goban.xml        |   6 +
 capplets/screensaver/screensavers/goop.xml         |   5 +-
 capplets/screensaver/screensavers/grav.xml         |   6 +-
 capplets/screensaver/screensavers/greynetic.xml    |   5 +-
 capplets/screensaver/screensavers/halo.xml         |   7 +-
 capplets/screensaver/screensavers/helix.xml        |   5 +-
 capplets/screensaver/screensavers/hopalong.xml     |   5 +-
 capplets/screensaver/screensavers/hyperball.xml    |   8 +
 capplets/screensaver/screensavers/hypercube.xml    |   5 +-
 capplets/screensaver/screensavers/ifs.xml          |   5 +-
 capplets/screensaver/screensavers/imsmap.xml       |   7 +-
 capplets/screensaver/screensavers/interference.xml |   5 +-
 capplets/screensaver/screensavers/jigsaw.png       | Bin 0 -> 15194 bytes
 capplets/screensaver/screensavers/jigsaw.xml       |   5 +-
 capplets/screensaver/screensavers/julia.xml        |   5 +-
 capplets/screensaver/screensavers/kaleidescope.xml |   5 +-
 capplets/screensaver/screensavers/kumppa.xml       |   5 +-
 capplets/screensaver/screensavers/lament.xml       |   5 +-
 capplets/screensaver/screensavers/laser.xml        |   5 +-
 capplets/screensaver/screensavers/lightning.xml    |   5 +-
 capplets/screensaver/screensavers/lisa.xml         |   5 +-
 capplets/screensaver/screensavers/lissie.xml       |   5 +-
 capplets/screensaver/screensavers/lmorph.xml       |   5 +-
 capplets/screensaver/screensavers/loop.xml         |   5 +-
 capplets/screensaver/screensavers/magic.pl.in      | 510 +++++++++++++++++++++
 capplets/screensaver/screensavers/maze.xml         |   5 +-
 capplets/screensaver/screensavers/moebius.xml      |   5 +-
 capplets/screensaver/screensavers/moire.xml        |   5 +-
 capplets/screensaver/screensavers/moire2.xml       |   5 +-
 capplets/screensaver/screensavers/molecule.xml     |   9 +
 capplets/screensaver/screensavers/morph3d.xml      |   5 +-
 capplets/screensaver/screensavers/mountain.xml     |   5 +-
 capplets/screensaver/screensavers/munch.xml        |  12 +-
 capplets/screensaver/screensavers/nerverot.xml     |   9 +
 capplets/screensaver/screensavers/noseguy.xml      |   5 +-
 capplets/screensaver/screensavers/pedal.xml        |   5 +-
 capplets/screensaver/screensavers/penetrate.xml    |   5 +-
 capplets/screensaver/screensavers/penrose.xml      |   9 +-
 capplets/screensaver/screensavers/petri.xml        |   9 +
 capplets/screensaver/screensavers/phosphor.xml     |   8 +
 capplets/screensaver/screensavers/pipes.xml        |   5 +-
 capplets/screensaver/screensavers/pulsar.xml       |   9 +
 capplets/screensaver/screensavers/pyro.xml         |   5 +-
 capplets/screensaver/screensavers/qix.xml          |   8 +-
 capplets/screensaver/screensavers/rd-bomb.xml      |   6 +-
 capplets/screensaver/screensavers/ripples.xml      |  10 +
 capplets/screensaver/screensavers/rocks.xml        |   5 +-
 capplets/screensaver/screensavers/rorschach.xml    |   5 +-
 capplets/screensaver/screensavers/rotor.xml        |   5 +-
 capplets/screensaver/screensavers/rotzoomer.xml    |  10 +
 capplets/screensaver/screensavers/rubik.xml        |   8 +
 capplets/screensaver/screensavers/shadebobs.xml    |   8 +
 capplets/screensaver/screensavers/sierpinski.xml   |   5 +-
 capplets/screensaver/screensavers/sierpinski3d.xml |   8 +
 capplets/screensaver/screensavers/slidescreen.xml  |   5 +-
 capplets/screensaver/screensavers/slip.png         | Bin 0 -> 39859 bytes
 capplets/screensaver/screensavers/slip.xml         |   5 +-
 capplets/screensaver/screensavers/sonar.xml        |   7 +-
 capplets/screensaver/screensavers/speedmine.xml    |  16 +
 capplets/screensaver/screensavers/sphere.xml       |   5 +-
 capplets/screensaver/screensavers/spiral.xml       |   5 +-
 capplets/screensaver/screensavers/spotlight.xml    |   5 +-
 capplets/screensaver/screensavers/sproingies.xml   |   5 +-
 capplets/screensaver/screensavers/squiral.xml      |   5 +-
 capplets/screensaver/screensavers/ssystem.xml      |   6 +
 capplets/screensaver/screensavers/stairs.xml       |   5 +-
 capplets/screensaver/screensavers/starfish.xml     |   6 +-
 capplets/screensaver/screensavers/starwars.xml     |   8 +
 capplets/screensaver/screensavers/stonerview.xml   |   8 +
 capplets/screensaver/screensavers/strange.xml      |   5 +-
 .../screensaver/screensavers/superquadrics.xml     |   5 +-
 capplets/screensaver/screensavers/swirl.xml        |   5 +-
 capplets/screensaver/screensavers/t3d.xml          |   8 +
 capplets/screensaver/screensavers/triangle.xml     |   5 +-
 capplets/screensaver/screensavers/truchet.xml      |   5 +-
 capplets/screensaver/screensavers/vidwhacker.png   | Bin 0 -> 103023 bytes
 capplets/screensaver/screensavers/vidwhacker.xml   |  11 +
 capplets/screensaver/screensavers/vines.xml        |   5 +-
 capplets/screensaver/screensavers/wander.xml       |   9 +
 capplets/screensaver/screensavers/webcollage.png   | Bin 0 -> 138943 bytes
 capplets/screensaver/screensavers/webcollage.xml   |  12 +
 .../screensaver/screensavers/whirlwindwarp.xml     |   8 +
 capplets/screensaver/screensavers/whirlygig.xml    |   8 +
 capplets/screensaver/screensavers/worm.xml         |   5 +-
 capplets/screensaver/screensavers/xaos.xml         |   6 +
 capplets/screensaver/screensavers/xdaliclock.xml   |   6 +
 capplets/screensaver/screensavers/xearth.xml       |   6 +
 capplets/screensaver/screensavers/xfishtank.xml    |   6 +
 capplets/screensaver/screensavers/xflame.xml       |   5 +-
 capplets/screensaver/screensavers/xjack.xml        |   5 +-
 capplets/screensaver/screensavers/xlyap.xml        |   5 +-
 capplets/screensaver/screensavers/xmatrix.xml      |   5 +-
 capplets/screensaver/screensavers/xmountains.xml   |   9 +
 capplets/screensaver/screensavers/xrayswarm.xml    |   8 +
 capplets/screensaver/screensavers/xroger.xml       |   3 +-
 capplets/screensaver/screensavers/xsnow.xml        |   6 +
 capplets/screensaver/screensavers/xspirograph.xml  |   8 +
 capplets/screensaver/screensavers/xteevee.xml      |   8 +
 capplets/screensaver/screensavers/zoom.xml         |   9 +
 configure.in                                       |  20 +
 po/ChangeLog                                       |   6 +
 po/POTFILES.in                                     | 136 ++++++
 158 files changed, 2080 insertions(+), 351 deletions(-)

commit 0496f98555b0652194b6afe85dbf109d2658e9fa
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Aug 9 19:43:29 2001 +0000

    Fixed default delay setting
    
    2001-08-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.xml: Fixed default delay setting

 capplets/keyboard/ChangeLog               | 4 ++++
 capplets/keyboard/keyboard-properties.xml | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 12108b0165558191f1a5e88e815beff25d1b6089
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Aug 9 11:50:14 2001 +0000

    Updated Polish translation

 po/ChangeLog |   4 +
 po/pl.po     | 907 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 457 insertions(+), 454 deletions(-)

commit 86e3de1b95653c74c7efa2c87394840e71b900ef
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Aug 8 16:26:56 2001 +0000

    updated Azeri file

 po/ChangeLog |   4 ++
 po/az.po     | 189 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 91 insertions(+), 102 deletions(-)

commit d700cf883dc503cb4573740fd307ec2ba70f8f86
Author: Kwok-Koon Cheung <baddog@src.gnome.org>
Date:   Tue Aug 7 18:08:09 2001 +0000

    Traditional Chinese translation redone.

 po/ChangeLog     |    4 +
 po/zh_TW.Big5.po | 4558 ++++++++++++++++++++++++------------------------------
 2 files changed, 2044 insertions(+), 2518 deletions(-)

commit 99adc48d8c087bc7445309f1c290ad81ea528a7d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Aug 7 17:01:55 2001 +0000

    Corect behavior when prefix is not explicitly specified
    
    2001-08-07  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Corect behavior when prefix is not explicitly
        specified

 ChangeLog    |   5 +
 configure.in |  14 +-
 po/az.po     |  65 +++--
 po/da.po     |   2 +-
 po/es.po     |  11 +-
 po/fi.po     |   8 +-
 po/ga.po     |   8 +-
 po/ja.po     |   8 +-
 po/no.po     |   9 +-
 po/pl.po     | 767 ++++++++++++++++++++++++++++++-----------------------------
 po/ru.po     |   8 +-
 po/sk.po     |   9 +-
 po/sl.po     | 198 +++++++--------
 po/sv.po     |   9 +-
 po/uk.po     |   8 +-
 15 files changed, 580 insertions(+), 549 deletions(-)

commit 71185520f142d3c33c315c04d4f40ddad7ac8ef4
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Tue Aug 7 08:11:10 2001 +0000

    Updated French translation.

 po/ChangeLog |   16 +-
 po/fr.po     | 2940 ++++++++++++++++++++++++++--------------------------------
 2 files changed, 1345 insertions(+), 1611 deletions(-)

commit 65867f06f205b5ad619892249a7c79f816be892b
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Aug 6 20:32:37 2001 +0000

    Fixed default for opacity setting

 capplets/background/background-properties.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 08ce53848d828b12bab5a2c0c7af8ba535ac04e4
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sun Aug 5 11:24:10 2001 +0000

    Updated translation..

 po/ChangeLog |    4 +
 po/tr.po     | 1535 ++++++++--------------------------------------------------
 2 files changed, 197 insertions(+), 1342 deletions(-)

commit 212641565b66a908d3cedb8ec82bec28fd1575a4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Aug 3 14:48:33 2001 +0000

    Return NULL if file_stream is NULL
    
    2001-08-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (load_log_entry): Return NULL if file_stream is NULL

 archiver/ChangeLog    | 1 +
 archiver/config-log.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit a1c5aa388f086a2450aae6180b1500c525f880bd
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Aug 3 14:38:09 2001 +0000

    Return NULL if fgets returns NULL (dump_log): If both first_old and
    
    2001-08-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (load_log_entry): Return NULL if fgets returns NULL
        (dump_log): If both first_old and log_data are NULL, go ahead and
        dump the file, since nothing has been loaded yet
        (config_log_garbage_collect): Don't bother dumping the log file or
        reloading
    
    2001-08-02  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (config_log_garbage_collect): Implement
        (dump_log): Don't dump the old file if first_old is NULL
    
        * main.c (main): Support --garbage_collect
    
        * location.c (location_garbage_collect):
        (garbage_collect_cb): Implement

 archiver/ChangeLog    |  18 +++++++++
 archiver/config-log.c | 105 +++++++++++++++++++++++++++++++++++++++++++-------
 archiver/config-log.h |  46 ++++++++++++----------
 archiver/location.c   |  39 ++++++++++++++++++-
 archiver/location.h   |   2 +
 archiver/main.c       |  11 ++++++
 6 files changed, 185 insertions(+), 36 deletions(-)

commit 2989b795b377d0b5ea9f6aaf97b3044b19604dc4
Author: Marius Andreiana <mandreiana@yahoo.com>
Date:   Thu Aug 2 18:17:56 2001 +0000

    updated
    
    2001-08-02  Marius Andreiana  <mandreiana@yahoo.com>
    
            * ro.po: updated

 po/ChangeLog |   4 +
 po/ro.po     | 260 +++++++++++++++++++++--------------------------------------
 2 files changed, 95 insertions(+), 169 deletions(-)

commit b06b8131b567b0cc838419eb29f7e241177e7aa2
Author: Jason Leach <jleach@ximian.com>
Date:   Thu Aug 2 15:23:17 2001 +0000

    Give a better URL for pkgconfig.
    
    2001-08-02  Jason Leach  <jleach@ximian.com>
    
        * configure.in: Give a better URL for pkgconfig.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 412f0953c9dcf2b067e9f56ea69ab9eb03ccd0ef
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Wed Aug 1 11:31:49 2001 +0000

    Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 17 ++++++++---------
 2 files changed, 12 insertions(+), 9 deletions(-)

commit 06d16ff13370cba44693f2a7f085f5cddba9de77
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Aug 1 04:02:20 2001 +0000

    Add DISTDIR to install-data-local

 capplets/background/ChangeLog             | 4 ++++
 capplets/background/Makefile.am           | 4 ++--
 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 4 ++--
 capplets/keyboard/ChangeLog               | 4 ++++
 capplets/keyboard/Makefile.am             | 4 ++--
 capplets/mouse/ChangeLog                  | 4 ++++
 capplets/mouse/Makefile.am                | 4 ++--
 capplets/screensaver/ChangeLog            | 4 ++++
 capplets/screensaver/Makefile.am          | 4 ++--
 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/Makefile.am                | 4 ++--
 control-center/ChangeLog                  | 4 ++++
 control-center/Makefile.am                | 6 +++---
 14 files changed, 43 insertions(+), 15 deletions(-)

commit 8dbdcab35ecc592a5f6d79ea2aaee2c4a74410f1
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 31 18:00:39 2001 +0000

    Remove socket-based synchronization system entirely. Switch to using
    
    2001-07-31  Bradford Hovinen  <hovinen@ximian.com>
    
            * config-log.c: Remove socket-based synchronization system
            entirely. Switch to using standard FILE streams for interfacing
            with the configuration log

 archiver/ChangeLog    |   4 +
 archiver/config-log.c | 808 ++++++++------------------------------------------
 2 files changed, 121 insertions(+), 691 deletions(-)

commit d30dd82590de969a7bc6c3af5e7cb3a0b6dcf3ae
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 31 17:19:46 2001 +0000

    Re-enable caching mechanism
    
    2001-07-31  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_get_current_location_id): Re-enable caching
        mechanism

 archiver/ChangeLog | 3 +++
 archiver/archive.c | 4 ----
 2 files changed, 3 insertions(+), 4 deletions(-)

commit 478de4ee418e71948fea14d81320dab7cdc1b72b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 31 16:49:26 2001 +0000

    Eliminate unref mechanism; it is not needed
    
    2001-07-31  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new):
        Eliminate unref mechanism; it is not needed

 archiver/ChangeLog                |  2 ++
 archiver/bonobo-config-archiver.c | 25 -------------------------
 2 files changed, 2 insertions(+), 25 deletions(-)

commit 0f5d8ca6dd6ef31e90245dad67b8e4b600fdca01
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 31 14:41:02 2001 +0000

    Use location_get_config_log rather than config_log_open; don't destroy the
    
    2001-07-31  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (pb_get_fn): Use
        location_get_config_log rather than config_log_open; don't destroy
        the log

 archiver/ChangeLog                | 6 ++++++
 archiver/bonobo-config-archiver.c | 4 +---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 7a711c8ba95b35dd6c276543fa58bbd7981f620f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 31 14:39:32 2001 +0000

    Implement
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_get_config_log): Implement

 archiver/ChangeLog  |  2 ++
 archiver/location.c | 15 +++++++++++++++
 archiver/location.h |  2 ++
 3 files changed, 19 insertions(+)

commit e31a59e98aa468b24d5e94a5a7c4365c6267fb7c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 30 18:47:34 2001 +0000

    1.5.4
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * RELEASE : 1.5.4
    
        * configure.in: Bump libcapplet dependency to 1.5.4

 ChangeLog    | 6 ++++++
 configure.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit d8ef3b859794070a43c5f91f6349151c9e1dd7f8
Author: Ole Laursen <olau@hardworking.dk>
Date:   Mon Jul 30 16:41:02 2001 +0000

    Updated Danish translation.
    
    2001-07-30  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |  8 ++++++--
 po/da.po     | 58 +++++++++++++++++++++++++++-------------------------------
 2 files changed, 33 insertions(+), 33 deletions(-)

commit 8973e3d6be165a5fec6babdb68adbb88c4564268
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 30 15:17:29 2001 +0000

    Call setup_session_mgmt if --apply or --init-session-settings was passed
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (capplet_init): Call setup_session_mgmt if --apply or
        --init-session-settings was passed

 capplets/common/ChangeLog      | 7 +++++++
 capplets/common/capplet-util.c | 5 ++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit bf4c53b1adb6bcbd3cd6a5b0d5db2ecafc5fabc8
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 30 14:47:49 2001 +0000

    Added.
    
    2001-07-30  Richard Hestilow  <hestilow@ximian.com>
    
        * control-center.png: Added.
    
        * Makefile.am: install control-center.png

 ChangeLog           |   6 ++++++
 Makefile.am         |   6 +++++-
 control-center.png  | Bin 0 -> 3296 bytes
 control-center2.png | Bin 0 -> 3296 bytes
 4 files changed, 11 insertions(+), 1 deletion(-)

commit aed49db337958200ddf659ff1ca72e2092347be6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 30 14:25:57 2001 +0000

    Always retrieve the location id from gnome_config
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_get_current_location_id): Always retrieve
        the location id from gnome_config

 archiver/ChangeLog | 2 ++
 archiver/archive.c | 4 ++++
 2 files changed, 6 insertions(+)

commit bd3a67e6b680a9535c13bfb511b1fe221a77263b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 30 14:12:03 2001 +0000

    Use capplet-archive/config/current/location for current location to avoid
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_set_current_location_id): Use
        capplet-archive/config/current/location for current location to
        avoid conflicting with control-center

 archiver/ChangeLog | 4 ++++
 archiver/archive.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit eb938c27259b8cfda066afee4ebfc32a8ea0a040
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 30 13:43:33 2001 +0000

    Make sure to write log when socket_owner not set
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (config_log_write_entry): Make sure to write log
        when socket_owner not set

 archiver/ChangeLog    | 4 +++-
 archiver/config-log.c | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit a817c23277ceb9e3421d75fe6ea5df045ec73095
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 30 13:23:57 2001 +0000

    Close the socket if we couldn't load the log entry (config_log_destroy):
    
    2001-07-30  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (socket_data_cb): Close the socket if we couldn't
        load the log entry
        (config_log_destroy):
        (config_log_open): Disable socket sync system

 archiver/ChangeLog    |  7 +++++++
 archiver/config-log.c | 17 ++++++++++++++---
 2 files changed, 21 insertions(+), 3 deletions(-)

commit ae7524ab3c4f046f9689d0c60bb4b52a46026cc3
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Jul 28 13:53:37 2001 +0000

    Updated Slovenian translation

 po/sl.po | 6195 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 3759 insertions(+), 2436 deletions(-)

commit 8fb5e9265b9dfcd116bb693ea165bd35eaf1a849
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Sat Jul 28 11:19:59 2001 +0000

    Updated Spanish translation.
    
    2001-07-28  Carlos Perell Marn <carlos@gnome-db.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 166 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 84 insertions(+), 86 deletions(-)

commit 016579f39846e98e203669ba1859ebe5a1b2edce
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Sat Jul 28 10:58:08 2001 +0000

    Reverted my utf patch. Sorry :-(
    
    2001-07-28  Carlos Perell Marn <carlos@gnome-db.org>
    
        * capplet-dir-view-html.c: Reverted my utf patch. Sorry :-(

 control-center/ChangeLog               |  4 +++
 control-center/capplet-dir-view-html.c | 47 ++++++++--------------------------
 2 files changed, 15 insertions(+), 36 deletions(-)

commit 62d3745c6bd28c502157de24ea28889860b9a7b2
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Sat Jul 28 10:47:53 2001 +0000

    /s/Configuraiton/Configuration/
    
    2001-07-28  Carlos Perell Marn <carlos@gnome-db.org>
    
        * main.c: /s/Configuraiton/Configuration/

 control-center/ChangeLog               |  4 +++
 control-center/capplet-dir-view-html.c | 47 ++++++++++++++++++++++++++--------
 control-center/main.c                  |  2 +-
 3 files changed, 41 insertions(+), 12 deletions(-)

commit ccbe449d53a135decad81c9a20a04d1ef23b2ac7
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Jul 28 06:44:27 2001 +0000

    updated Azeri file

 po/ChangeLog |    4 +
 po/az.po     | 1519 +++++++---------------------------------------------------
 2 files changed, 165 insertions(+), 1358 deletions(-)

commit dff00a51cfc8d0c5282821569a3c0b86e97f10e1
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Fri Jul 27 23:13:30 2001 +0000

    Updated Polish translation

 po/ChangeLog |   4 +
 po/pl.po     | 857 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 433 insertions(+), 428 deletions(-)

commit 2087f846f075da028927e2a16fa1ed7292390b97
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Jul 27 22:23:44 2001 +0000

    Removed efence bootstrap

 archiver/bonobo-moniker-archiver.c | 2 --
 1 file changed, 2 deletions(-)

commit d9f17ec8c34ea0aac538be43cfbfc947425acef6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 22:21:38 2001 +0000

    Don't unref the event source or the property bag
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_destroy): Don't
        unref the event source or the property bag

 archiver/ChangeLog                 | 3 +++
 archiver/bonobo-config-archiver.c  | 8 +-------
 archiver/bonobo-moniker-archiver.c | 1 +
 3 files changed, 5 insertions(+), 7 deletions(-)

commit 9137adbe176548ed755b890fb1bc0c2411db884d
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Jul 27 22:00:22 2001 +0000

    Backed out the last commit

 capplets/background/ChangeLog                       | 18 ------------------
 capplets/background/applier.c                       |  5 ++---
 capplets/background/background-properties-capplet.c |  1 -
 capplets/background/preferences.c                   |  1 -
 4 files changed, 2 insertions(+), 23 deletions(-)

commit 46547d1812be03454f89bc2f6ddf0291e174db3c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 21:13:47 2001 +0000

    1.5.3
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * RELEASE : 1.5.3
    
        * configure.in: Bump version to 1.5.3

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 po/az.po     | 6 +++---
 po/da.po     | 6 +++---
 po/de.po     | 6 +++---
 po/es.po     | 6 +++---
 po/fi.po     | 6 +++---
 po/ga.po     | 6 +++---
 po/ja.po     | 6 +++---
 po/no.po     | 6 +++---
 po/pl.po     | 6 +++---
 po/ru.po     | 6 +++---
 po/sk.po     | 6 +++---
 po/sv.po     | 6 +++---
 po/uk.po     | 6 +++---
 15 files changed, 46 insertions(+), 40 deletions(-)

commit 4a761386807ed96949d9c8e38e01a17a4349a490
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jul 27 19:34:55 2001 +0000

    Only draw disabled message if do_preview. Actually, the user will never
    
    2001-07-27  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c (applier_apply_prefs): Only draw disabled message
        if do_preview. Actually, the user will never see this because
        the correct behavior (which is done) is to assume if they're
        running capplet, prefs->enable should be TRUE. This is because
        we are only honoring enable as a hacker-only setting.
        (output_compat_prefs): Output the correct "Enable" setting.
    
        * background-properties-capplet.c (get_legacy_settings): Support
        the "Enabled" flag.
    
        * preferences.c (preferences_new_from_bonobo_db): Import the
        "enabled" flag. Note that this is not bothered with in the _pbag
        function, because that's from the Proxy settings, which is only
        used for the GUI capplet, which always sets enabled to True, because
        this is a hacker-only option. Got it?

 capplets/background/ChangeLog                       | 18 ++++++++++++++++++
 capplets/background/applier.c                       |  5 +++--
 capplets/background/background-properties-capplet.c |  1 +
 capplets/background/preferences.c                   |  1 +
 4 files changed, 23 insertions(+), 2 deletions(-)

commit 2d9be3eb4eddeaa3cd302e86cba2d8b95f00bc32
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jul 27 18:21:44 2001 +0000

    Don't go into an infinite loop if there are absolutely no enabled
    
    2001-07-27  Richard Hestilow  <hestilow@ximian.com>
    
        * prefs-widget.c (random_timeout_cb): Don't go into an infinite
        loop if there are absolutely no enabled screensavers.

 capplets/screensaver/ChangeLog      |  5 +++++
 capplets/screensaver/prefs-widget.c | 12 +++++++++---
 2 files changed, 14 insertions(+), 3 deletions(-)

commit d063bb65b07af0ec18a4179fc48eac15d59d0fa9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 18:09:06 2001 +0000

    Fix val_ulong in the gradient case
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (get_legacy_settings): Fix
        val_ulong in the gradient case

 capplets/background/ChangeLog                       | 3 +++
 capplets/background/background-properties-capplet.c | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 6c25caa8cc4265da7f5de881628a8c49a56d12d5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 17:31:37 2001 +0000

    Use timeout when launching desktop entry; idle handler when launching
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_activate): Use timeout when launching
        desktop entry; idle handler when launching Bonobo control

 control-center/ChangeLog     |  3 +++
 control-center/capplet-dir.c | 32 +++++++++++++++++++-------------
 2 files changed, 22 insertions(+), 13 deletions(-)

commit daf686feb0e6730dbf97238f2ce7b8968f3c0c63
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 17:19:58 2001 +0000

    Use MAX_THRESH - threshold value
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties-capplet.c (apply_settings): Use MAX_THRESH -
        threshold value

 capplets/mouse/ChangeLog                  | 3 +++
 capplets/mouse/gnome-mouse-properties.c   | 2 +-
 capplets/mouse/mouse-properties-capplet.c | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

commit 92d3e1119f7af021100f6e35d2f18af6525f333a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 17:16:04 2001 +0000

    Fix mouse speed and acceleration controls to be wider and to use discrete
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties.glade: Fix mouse speed and acceleration
        controls to be wider and to use discrete values

 capplets/mouse/ChangeLog              |   3 +
 capplets/mouse/mouse-properties.glade | 102 +++++++++++++++++-----------------
 2 files changed, 54 insertions(+), 51 deletions(-)

commit 09de3e80a5f9d8c32f8a946c8c6673e82ca8a625
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 17:06:01 2001 +0000

    Change type of right-to-left to ulong
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * mouse-properties.xml: Change type of right-to-left to ulong
    
        * mouse-properties-capplet.c (apply_settings): Use get_ulong
        rather than get_boolean

 capplets/mouse/ChangeLog                  | 5 +++++
 capplets/mouse/gnome-mouse-properties.c   | 2 +-
 capplets/mouse/mouse-properties-capplet.c | 2 +-
 capplets/mouse/mouse-properties.xml       | 2 +-
 4 files changed, 8 insertions(+), 3 deletions(-)

commit 33b38091152a3fb64c076157d9f0b1691e784dca
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 16:02:08 2001 +0000

    1.5.2
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * RELEASE : 1.5.2

 ChangeLog                               |    4 +
 archiver/ChangeLog                      |    4 +
 archiver/tests/ChangeLog                |    4 +
 capplets/background/ChangeLog           |    4 +
 capplets/common/ChangeLog               |    4 +
 capplets/default-applications/ChangeLog |    4 +
 capplets/desktop-links/ChangeLog        |    4 +
 capplets/file-types/ChangeLog           |    4 +
 capplets/keyboard/ChangeLog             |    4 +
 capplets/mime-type/ChangeLog            |    4 +
 capplets/mouse/ChangeLog                |    4 +
 capplets/rollback/ChangeLog             |    4 +
 capplets/screensaver/ChangeLog          |    4 +
 capplets/sound/ChangeLog                |    4 +
 capplets/theme-switcher/ChangeLog       |    4 +
 capplets/ui-properties/ChangeLog        |    4 +
 capplets/url-properties/ChangeLog       |    4 +
 capplets/wm-properties/ChangeLog        |    4 +
 control-center/ChangeLog                |    4 +
 po/ChangeLog                            |    4 +
 po/az.po                                |  112 +++-
 po/da.po                                |   94 ++-
 po/de.po                                |  111 +++-
 po/es.po                                |  104 ++-
 po/fi.po                                |  224 ++++---
 po/ga.po                                |  108 ++-
 po/ja.po                                |  105 ++-
 po/no.po                                |   62 +-
 po/pl.po                                |  764 +++++++++++-----------
 po/ru.po                                | 1090 ++++++++++++++++++-------------
 po/sk.po                                |   32 +-
 po/sv.po                                |   36 +-
 po/uk.po                                |  107 ++-
 33 files changed, 1913 insertions(+), 1116 deletions(-)

commit c45e9f41c68bcebde3fe5df638bcef76ab31ce44
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 15:41:40 2001 +0000

    Remove empty SUBDIRS line
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Remove empty SUBDIRS line

 capplets/theme-switcher/ChangeLog   | 4 ++++
 capplets/theme-switcher/Makefile.am | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 9384ca22994c90706a7f8c9317369d063de41f3c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 15:39:20 2001 +0000

    Update version dependency for libcapplet to 1.5.2
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (capplet_modules): Update version dependency for
        libcapplet to 1.5.2

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit d81fdb9afbc02daed3bb29fc0524e2edecd7f3bb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 15:26:06 2001 +0000

    Removed empty SUBDIRS
    
    2001-07-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Removed empty SUBDIRS

 capplets/desktop-links/ChangeLog   | 4 ++++
 capplets/desktop-links/Makefile.am | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit d72042d890ff57c74bacffb8a165a808df743024
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Fri Jul 27 13:25:07 2001 +0000

    Added control-center/Gnome.directory.in.in.
    
    * POTFILES.in: Added control-center/Gnome.directory.in.in.
    
    * pl.po: Updated Polish translation.

 po/ChangeLog   |    6 +
 po/POTFILES.in |    1 +
 po/pl.po       | 1096 ++++++++++++++++++++++++++++----------------------------
 3 files changed, 552 insertions(+), 551 deletions(-)

commit 71a5496d53b57937f118225f76705901a0574789
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri Jul 27 08:17:18 2001 +0000

    Updated Slovak translation.
    
    2001-07-27  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |   4 +
 po/sk.po     | 543 ++++++++++++++++-------------------------------------------
 2 files changed, 148 insertions(+), 399 deletions(-)

commit 9db70e8ea7a16a1a3d2a39874358e06d5f11847a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 02:49:48 2001 +0000

    Don't try to load the wallpaper if it's not enabled
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (applier_apply_prefs): Don't try to load the wallpaper
        if it's not enabled
    
        * preferences.c (preferences_new_from_bonobo_pbag): Use
        bonobo_property_editor_client_get_value_*
        (preferences_new_from_bonobo_pbag): Set gradient_enabled properly
        from property bag
        (preferences_new_from_bonobo_pbag): Check for wallpaper == "(none)"
        (preferences_new_from_bonobo_db): Ditto above

 capplets/background/ChangeLog     | 10 +++++++++
 capplets/background/applier.c     |  3 ++-
 capplets/background/preferences.c | 43 ++++++++++++++++++++++++++-------------
 capplets/background/preferences.h |  2 +-
 4 files changed, 42 insertions(+), 16 deletions(-)

commit 033680210788ddb9466a00b230d523d7e43b77be
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 02:15:42 2001 +0000

    Restore some lost tweaks from earlier.
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (renderer_render_wallpaper): Restore some lost tweaks
        from earlier.
    
        * preferences.c (preferences_init): strdup the home directory
    
        * applier.c: Store preview widget in the renderer, not the applier
        itself

 capplets/background/ChangeLog                      |  8 ++++++
 capplets/background/applier.c                      | 31 +++++++++++-----------
 capplets/background/applier.h                      |  2 +-
 .../background/background-properties-capplet.c     |  9 ++++---
 capplets/background/preferences.c                  |  2 +-
 5 files changed, 32 insertions(+), 20 deletions(-)

commit 4e921471d44956a18b6c2f4e36b0d4a6d293b3a6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 01:48:44 2001 +0000

    Add a "(none)" string to the history
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (create_dialog): Add a "(none)"
        string to the history

 capplets/background/ChangeLog                       |  5 +++++
 capplets/background/background-properties-capplet.c | 20 ++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)

commit dae9cccc0e2d151db6ea5d0d5648e41e72d52a45
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jul 27 01:43:48 2001 +0000

    Remove all bonobo-conf stuff.
    
    2001-07-26  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c: Remove all bonobo-conf stuff.
    
        * preferences.[ch]: New functions preferences_new_from_bonobo_pbag
        and preferences_new_from_bonobo_db.

 capplets/background/ChangeLog                      |   7 +
 capplets/background/Makefile.am                    |   5 +-
 capplets/background/applier.c                      | 263 ++++-----------------
 capplets/background/applier.h                      |  13 +-
 .../background/background-properties-capplet.c     |  47 ++--
 capplets/background/preferences.c                  |  97 ++++++++
 capplets/background/preferences.h                  |  21 ++
 7 files changed, 207 insertions(+), 246 deletions(-)

commit cf7a5fe5688c625372b09112078d39a5d071b6d9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 01:33:19 2001 +0000

    Tweak borders and padding
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties.glade: Tweak borders and padding

 capplets/background/ChangeLog                   | 2 ++
 capplets/background/background-properties.glade | 7 ++++---
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 5fd3e851db63784f23abad3bc9ab002e97bb7c7a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 01:25:15 2001 +0000

    Remove debugging messages
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_activate): Remove debugging messages

 control-center/ChangeLog     | 2 ++
 control-center/capplet-dir.c | 3 ---
 2 files changed, 2 insertions(+), 3 deletions(-)

commit 4af8d8fa9262495cd8d4c3bdfa7088b2f14507ab
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 27 01:23:26 2001 +0000

    Add flag launching
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.h (struct _Capplet): Add flag launching
    
        * capplet-dir.c (capplet_new): Initialize capplet->launching
        (capplet_reset_cb): Implement. Just reset capplet->launching
        (capplet_activate): Just return if capplet->launching is set;
        otherwise set that flag and add an idle handler to unset it

 control-center/ChangeLog     |  7 +++++++
 control-center/capplet-dir.c | 19 +++++++++++++++++++
 control-center/capplet-dir.h |  1 +
 3 files changed, 27 insertions(+)

commit 0bd8ccb9352ff5aacbdcf0500964dbe6c72371ee
Author: Joakim <joakim@src.gnome.org>
Date:   Fri Jul 27 00:13:40 2001 +0000

    Fixed the delay label to make it more intuitive.

 capplets/keyboard/ChangeLog                 | 5 +++++
 capplets/keyboard/keyboard-properties.glade | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 718678eaf968151bb0e212d835ab0888b51699cf
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 21:22:13 2001 +0000

    Tweak the numbers a bit
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (apply_settings): Tweak the numbers a bit

 capplets/keyboard/ChangeLog             | 1 +
 capplets/keyboard/keyboard-properties.c | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 71942b3edf023d7601fea8ea1e6b94e8048dfb5d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 20:59:58 2001 +0000

    Initialize the other fields of this data structure (apply_settings): Use
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (apply_settings): Initialize the other
        fields of this data structure
        (apply_settings): Use lookup table to get the values to put in
        kbdsettings

 capplets/keyboard/ChangeLog             |  2 ++
 capplets/keyboard/keyboard-properties.c | 11 +++++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit b9b13ebbbcf59973f2324b0c3f675b4d1fff570f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 20:36:30 2001 +0000

    Initialize the other fields of this data structure
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard-properties.c (apply_settings): Initialize the other
        fields of this data structure

 capplets/keyboard/ChangeLog             | 3 +++
 capplets/keyboard/keyboard-properties.c | 2 ++
 2 files changed, 5 insertions(+)

commit ed568135a0a1fb913c7109551e7d075a5e6c663a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 20:08:07 2001 +0000

    Remove bonobo-property-editor-range.[ch]
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (bonobo_sources): Remove bonobo-property-editor-range.[ch]

 capplets/keyboard/ChangeLog                      |  4 ++
 capplets/keyboard/Makefile.am                    |  3 +-
 capplets/keyboard/bonobo-property-editor-range.c | 70 ------------------------
 capplets/keyboard/bonobo-property-editor-range.h |  8 ---
 4 files changed, 5 insertions(+), 80 deletions(-)

commit a057d3d09723002deef4a3d908d39319d8bec855
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 19:56:56 2001 +0000

    Don't sync the database if retrieving legacy setings before creating the
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (capplet_init): Don't sync the database if
        retrieving legacy setings before creating the factory
        (create_control_cb): Create the config database ourselves
        (pf_destroy_cb): Remove evil hackery
        (get_control_cb): Ditto
        (create_control_cb): Support multiple property control objects --
        use a GtkObject called ref_obj to make sure the program quits when
        there are no such objects left
        (capplet_init): Pass default_moniker to factory callback;
        release_unref the db ourselves
        (get_control_cb): Support multiple controls; soak in global
        control and widget variables
        (legacy_is_modified): Remember to unref the property bag
        (quit_cb): Allow being called more than once
        (quit_cb): Unref ref_obj here
        (create_control_cb): Eliminate second signal connection
        (real_quit_cb): Free the pair structure
        (all_done_cb): Implement. Just add gtk_main_quit to the idle
        handler list
        (create_control_cb): Connect destroy signal of ref_obj to
        all_done_cb

 capplets/common/ChangeLog      |  24 +++++++
 capplets/common/capplet-util.c | 148 ++++++++++++++++++++---------------------
 2 files changed, 98 insertions(+), 74 deletions(-)

commit 74b195efee66c3f75292ec63ec0980327eb066b7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 19:00:07 2001 +0000

    Remove debugging code
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (renderer_render_wallpaper): Remove debugging code

 capplets/background/ChangeLog | 1 +
 capplets/background/applier.c | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 2bb839d2774a9e446634c365c3d0bebe185b17d5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 18:40:11 2001 +0000

    Tweak geometry settings (renderer_render_wallpaper): Rendering geometry
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (get_geometry): Tweak geometry settings
        (renderer_render_wallpaper): Rendering geometry fixes

 capplets/background/ChangeLog |  1 +
 capplets/background/applier.c | 13 ++++++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit e590f528181f3c4d5822dec6d04b0cad2a0d8741
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Jul 26 18:12:17 2001 +0000

    Modified Swedish translation. Thanks to Gran Uddeborg
    
    2001-07-26  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Modified Swedish translation. Thanks to
        Gran Uddeborg <goeran@uddeborg.pp.se> for his review.

 po/ChangeLog |  5 +++++
 po/sv.po     | 66 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 37 insertions(+), 34 deletions(-)

commit 976d2563862ff96366d13f33e1a9122e45dbc745
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 17:32:36 2001 +0000

    Stupid, stupid autoconf
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (CC_USE_BONOBO_CONF): Stupid, stupid autoconf

 ChangeLog    | 1 +
 configure.in | 5 ++---
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 804c0a33d5ae9d51e9cac7109028d18544cb2f96
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 17:20:45 2001 +0000

    Tweak geometry settings
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (get_geometry): Tweak geometry settings

 capplets/background/ChangeLog |  3 +--
 capplets/background/applier.c | 15 +++++++--------
 2 files changed, 8 insertions(+), 10 deletions(-)

commit 4e0ca4cae4174fdf481d7934f7297d91579b238c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 17:04:56 2001 +0000

    Make sure not to scale the pixbuf if the wallpaper type is centered
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (renderer_render_wallpaper): Make sure not to scale
        the pixbuf if the wallpaper type is centered

 capplets/background/ChangeLog | 3 +++
 capplets/background/applier.c | 5 +++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 84ca3f9afb57c52f3c306d8d80321d28f496481a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 16:44:43 2001 +0000

    Don't kill oafd for fear that someone may be running Evolution. Kill
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * kill-gnomecc.sh: Don't kill oafd for fear that someone may be
        running Evolution. Kill bonobo-moniker-archiver after everything
        else is dead. Redirect errors to /dev/null. Kill the mouse
        properties capplet, too.

 control-center/ChangeLog       |  5 +++++
 control-center/kill-gnomecc.sh | 21 ++++++++++-----------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 797a8c17a2ee0f4a0f3500d42fd0ef65424b2956
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 16:39:19 2001 +0000

    Don't make the main window modal
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * gnomecc.glade: Don't make the main window modal

 control-center/ChangeLog     | 2 ++
 control-center/gnomecc.glade | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit a220f2948bda76c5a9bfe54006bf401aa4b1f805
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 16:24:36 2001 +0000

    Remove check for capplet already running
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Remove check for capplet
        already running

 control-center/ChangeLog     | 5 +++++
 control-center/capplet-dir.c | 6 ------
 2 files changed, 5 insertions(+), 6 deletions(-)

commit 6dbe99f68a4f106c3b2c96697fa860390d29210b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 16:07:40 2001 +0000

    Accept applier as argument; retrieve property bag from applier
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * background-properties-capplet.c (property_change_cb): Accept
        applier as argument; retrieve property bag from applier
        (realize_cb): Retrieve applier from widget
        (setup_dialog): Store property bag in applier
    
        * applier.c (renderer_new): Store applier inside renderer; accept
        applier as function parameter
    
        * background-properties-capplet.c (create_dialog): Store the
        applier inside the widget
    
        * applier.c (struct _ApplierPrivate ): Define preview_widget here
        rather than globally
        (applier_get_preview_widget): Make this a method of the applier class

 capplets/background/ChangeLog                      | 17 ++++++++
 capplets/background/applier.c                      | 47 ++++++++++++----------
 capplets/background/applier.h                      |  4 +-
 .../background/background-properties-capplet.c     | 19 ++++++---
 4 files changed, 59 insertions(+), 28 deletions(-)

commit 677cf6d0a4b70e74c72d221f54cf6f0f32870db9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 26 15:32:47 2001 +0000

    Fix problem where meaning of --enable-bonobo-conf was the opposite of what
    
    2001-07-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (AC_ARG_ENABLE): Fix problem where meaning of
        --enable-bonobo-conf was the opposite of what it should have been

 ChangeLog    |  5 +++++
 configure.in | 21 ++++++++++++++-------
 2 files changed, 19 insertions(+), 7 deletions(-)

commit 5d708830642feeb7b149964c7d5461da77b57d92
Author: jjranta <jjranta@src.gnome.org>
Date:   Thu Jul 26 09:33:36 2001 +0000

    Updated Finnish translation by Pauli Virtanen.

 po/ChangeLog |    4 +
 po/fi.po     | 1941 ++++++++++++----------------------------------------------
 2 files changed, 408 insertions(+), 1537 deletions(-)

commit eb8d37ad86999f28f272a06b7fa6f62b3abc34df
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 05:41:12 2001 +0000

    remove rollback/main.c, this directory is not building

 po/ChangeLog   | 9 +++++++--
 po/POTFILES.in | 1 -
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 27537ac63163dd32a15c2494737af49878a8b14d
Author: Chema Celorio <chema@celorio.com>
Date:   Thu Jul 26 04:46:25 2001 +0000

    remove the OAF_FILE_IN_RULE and copy it here (bonobo_sources): add
    
    2001-07-25  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am: remove the OAF_FILE_IN_RULE and copy it here
        (bonobo_sources): add bonobo-properties-editor-range.[ch]
    
        * Makefile.am: remove the DESKTOP_IN_RULE and copy the sed here

 capplets/keyboard/ChangeLog   | 1 +
 capplets/keyboard/Makefile.am | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 2e2903d3524b63cf67716296e92afa3313966274
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 03:37:36 2001 +0000

    Update the bonobo conf requirement to 0.9 as we depend on the CVS version

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 09da55190479d0fe01f194b3260da7f592945fa0
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 03:33:40 2001 +0000

    add pixmap_DATA to EXTRA_DIST

 capplets/mouse/ChangeLog   | 5 +++--
 capplets/mouse/Makefile.am | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

commit d9841d52f213df9ee0348b2ad86321a99f2a9d83
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 02:48:16 2001 +0000

    jrb's name had a typo.

 control-center/ChangeLog          | 2 ++
 control-center/capplet-dir-view.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 2437a1f3268eaae2b50ab522aa35b794351176d2
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 02:19:13 2001 +0000

    shh

 capplets/mouse/.cvsignore | 1 +
 1 file changed, 1 insertion(+)

commit 4923571fb6ffc7942e350930a71de99cc8d503cf
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 02:17:26 2001 +0000

    .oaf.in -> .oaf

 .../Bonobo_Control_Capplet_mouse_properties.oaf     | 21 ---------------------
 .../Bonobo_Control_Capplet_mouse_properties.oaf.in  | 21 +++++++++++++++++++++
 2 files changed, 21 insertions(+), 21 deletions(-)

commit 19532780e06d47483b5941d3ce457f308eafaa00
Author: Chema Celorio <chema@celorio.com>
Date:   Thu Jul 26 02:16:46 2001 +0000

    generate the .oaf file from the .oaf.in file The DESKTOP_EXEC_LINE was
    
    2001-07-25  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am : generate the .oaf file from the .oaf.in file
        The DESKTOP_EXEC_LINE was missing the --capplet at the end, add.

 capplets/mouse/Bonobo_Control_Capplet_mouse_properties.oaf | 2 +-
 capplets/mouse/ChangeLog                                   | 5 +++++
 capplets/mouse/Makefile.am                                 | 8 ++++++--
 3 files changed, 12 insertions(+), 3 deletions(-)

commit baba8dddd0181fe7a6b945560d20d9c0a6561659
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 01:49:13 2001 +0000

    Remove the desktop_IN_RULE. Althou it sounds nice cause we have a central
    location to set it up, it causes problems in some configruations.

 capplets/background/ChangeLog             |  1 +
 capplets/background/Makefile.am           | 12 ++++++++++-
 capplets/default-applications/ChangeLog   |  4 ++++
 capplets/default-applications/Makefile.am | 12 ++++++++++-
 capplets/keyboard/ChangeLog               |  2 ++
 capplets/keyboard/Makefile.am             | 13 ++++++++++-
 capplets/mouse/ChangeLog                  |  4 ++++
 capplets/mouse/Makefile.am                | 11 +++++++++-
 capplets/screensaver/ChangeLog            |  4 ++++
 capplets/screensaver/Makefile.am          | 12 ++++++++++-
 capplets/sound/ChangeLog                  |  1 +
 capplets/sound/Makefile.am                | 12 ++++++++++-
 configure.in                              | 36 +++++++++++++++----------------
 13 files changed, 100 insertions(+), 24 deletions(-)

commit 9b77f88b1769a28a16a7dd6e76c120cbca6dc0d9
Author: Chema Celorio <chema@celorio.com>
Date:   Thu Jul 26 01:10:12 2001 +0000

    remove the --enable-bonobo-conf and replace with --disable-bonobo-conf.
    
    2001-07-25  Chema Celorio  <chema@celorio.com>
    
        * configure.in (BONOBO_CHECK): remove the --enable-bonobo-conf and replace with
        --disable-bonobo-conf. The default is now with bonobo-conf

 ChangeLog    |  5 +++++
 configure.in | 36 +++++++++++++++++++++++++++---------
 2 files changed, 32 insertions(+), 9 deletions(-)

commit a4d165d70d62f829a6c3b194c4472216f5a180b2
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 26 00:47:51 2001 +0000

    remove the OAF_FILE_IN_RULE and add it to each Makefile.am

 ChangeLog                       | 4 ++++
 capplets/background/ChangeLog   | 5 +++++
 capplets/background/Makefile.am | 4 +++-
 capplets/keyboard/ChangeLog     | 4 ++++
 capplets/keyboard/Makefile.am   | 5 ++---
 capplets/sound/ChangeLog        | 4 ++++
 capplets/sound/Makefile.am      | 4 +++-
 configure.in                    | 3 ---
 8 files changed, 25 insertions(+), 8 deletions(-)

commit ed8294c2401fcc12f31145c4f415515ab53b97cf
Author: Chema Celorio <chema@celorio.com>
Date:   Thu Jul 26 00:06:09 2001 +0000

    scape correctly the OAF_FILE_IN_RULE, it was not escaped before but for
    
    2001-07-25  Chema Celorio  <chema@celorio.com>
    
        * configure.in (GNOMECC_CAPPLETS_OAF_FILE_IN_RULE): scape correctly the
        OAF_FILE_IN_RULE, it was not escaped before but for some reason it didn't
        generated and error
    
        * capplets/Makefile.am (SUBDIRS): we need to build LIBCOMMON_DIR
        before the capplets cause the capplets link with ../common/libcommon.a

 ChangeLog            | 9 +++++++++
 capplets/Makefile.am | 2 +-
 configure.in         | 7 +------
 3 files changed, 11 insertions(+), 7 deletions(-)

commit 5807802e84f93fd004a1cadb75aafaa7029e1dbb
Author: Chema Celorio <chema@celorio.com>
Date:   Wed Jul 25 22:48:05 2001 +0000

    don't this Gnome.directory.in this will be generated at the users box by a
    
    2001-07-25  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am (EXTRA_DIST): don't this Gnome.directory.in this will
        be generated at the users box by a sed from Gnome.directory.in.in

 control-center/ChangeLog   | 5 +++++
 control-center/Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit eb32a73ea8f243292dfe0943708c4a508b8c8fff
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Jul 25 22:43:27 2001 +0000

    Updated Swedish translation.
    
    2001-07-26  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 +++
 po/sv.po     | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 78 insertions(+), 6 deletions(-)

commit 1662214a25cdc5fcccdc73fb3d56d64e8701a188
Author: Valek Frob <frob@src.gnome.org>
Date:   Wed Jul 25 22:05:13 2001 +0000

    Updated russian translations.

 po/ChangeLog |    4 +
 po/ru.po     | 1054 +++-------------------------------------------------------
 2 files changed, 43 insertions(+), 1015 deletions(-)

commit b5e40d0f707fb66e8ce66dfe4e9de92ac9bcd9b6
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jul 25 19:26:02 2001 +0000

    Updated Norwegian (bokml) translation. Updated Norwegian (nynorsk)
    
    2001-07-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian (bokml) translation.
        * nn.po: Updated Norwegian (nynorsk) translation.
        * POTFILES.in: Updated.

 po/ChangeLog   |   6 ++
 po/POTFILES.in |   8 ++-
 po/no.po       | 224 +++++++++++++++++++++++++++++++++++++--------------------
 3 files changed, 160 insertions(+), 78 deletions(-)

commit 49364fc5f1f3a74fc17d66af2f161ca2a2fa9fe0
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Jul 25 17:44:07 2001 +0000

    Compilation fixes

 control-center/capplet-dir.c | 3 ++-
 control-center/main.c        | 6 +++---
 2 files changed, 5 insertions(+), 4 deletions(-)

commit ab0bce68b1f1d59275d1b2a69734512d6b567d70
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jul 25 17:42:05 2001 +0000

    Fix macro name
    
    2001-07-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * prefs-widget.c (prefs_widget_init): Fix macro name
    
        * main.c (main): Fix macro name

 capplets/sound/ChangeLog      | 6 ++++++
 capplets/sound/main.c         | 3 +--
 capplets/sound/prefs-widget.c | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

commit 49377981141f655dc8781b62a05d98d74eed8959
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jul 25 17:26:17 2001 +0000

    Remove IMLIB check (GNOMECC_CAPPLETS_DESKTOP_IN_RULE): Add sed expression
    
    2001-07-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Remove IMLIB check
        (GNOMECC_CAPPLETS_DESKTOP_IN_RULE): Add sed expression to cover
        macro DESKTOP_EXEC_LINE
        (LIBCOMMON_DIR): Add option --enable-bonobo-conf
    
        * all: Added support for optionally compiling without bonobo-conf enabled

 ChangeLog                                          |   9 +
 acconfig.h                                         |   2 +-
 archiver/Makefile.am                               |   9 +-
 capplets/Makefile.am                               |   6 +-
 capplets/background/ChangeLog                      |   4 +
 capplets/background/Makefile.am                    |  25 +-
 .../background/background-properties-capplet.c     | 277 +++++++++++++
 capplets/background/background.desktop.in.in       |   2 +-
 capplets/background/main.c                         | 430 +++++++++++----------
 capplets/common/Makefile.am                        |   3 +-
 capplets/common/bonobo-property-editor-range.c     |  70 ++++
 capplets/common/bonobo-property-editor-range.h     |   8 +
 capplets/keyboard/Makefile.am                      |  21 +-
 capplets/keyboard/keyboard-properties.c            | 217 +++++++++++
 capplets/keyboard/keyboard.desktop.in.in           |   2 +-
 capplets/keyboard/main.c                           | 391 +++++++++++--------
 .../Bonobo_Control_Capplet_mouse_properties.oaf    |  21 +
 capplets/mouse/ChangeLog                           |   9 +
 capplets/mouse/Makefile.am                         |  32 +-
 capplets/mouse/gnome-mouse-properties.c            | 192 +++++++++
 capplets/mouse/mouse-properties-capplet.c          | 192 +++++++++
 capplets/mouse/mouse-properties.xml                |   8 +
 capplets/mouse/mouse.desktop.in.in                 |   2 +-
 capplets/sound/Makefile.am                         |  19 +-
 capplets/sound/sound.desktop.in.in                 |   2 +-
 configure.in                                       |  78 ++--
 control-center/capplet-dir.c                       |   8 +-
 control-center/main.c                              |  10 +
 28 files changed, 1642 insertions(+), 407 deletions(-)

commit 429b2504b37ef77b5465bde578fb272499d40994
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 10:30:52 2001 +0000

    about to tag

 po/az.po | 333 ++++++++++++++--------
 po/da.po | 125 ++++-----
 po/de.po | 317 +++++++++++++++------
 po/es.po | 317 +++++++++++++++------
 po/ga.po | 311 +++++++++++++--------
 po/ja.po | 344 ++++++++++++++++-------
 po/no.po | 326 ++++++++++++++++------
 po/pl.po | 845 ++++++++++++++++++++++++++-----------------------------
 po/sk.po | 959 +++++++++++++++++++++++++++++++++++++--------------------------
 po/sv.po | 116 +++-----
 po/uk.po | 331 ++++++++++++++--------
 11 files changed, 2667 insertions(+), 1657 deletions(-)

commit 826f131709fc960272ebe2a793f8924131dcd9e5
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 10:03:13 2001 +0000

    new icon

 capplets/background/.cvsignore             |   2 +-
 capplets/background/background-capplet.png | Bin 3897 -> 4027 bytes
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 91e2a0e86bea9a24f4d8521481c997aede7ec2be
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 09:59:51 2001 +0000

    Hide opacity settings for now.
    
    2001-07-25  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (setup_dialog): Hide opacity settings for now.
    
        * background-properties.glade: Rename opacity label.

 capplets/background/ChangeLog                   | 6 ++++++
 capplets/background/background-properties.glade | 2 +-
 capplets/background/main.c                      | 2 ++
 3 files changed, 9 insertions(+), 1 deletion(-)

commit bce60c194e48769d1f26ccf2d530d48ac5f01c6f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 09:31:58 2001 +0000

    New function show_blank_preview.
    
    2001-07-03  Richard Hestilow  <hestilow@ximian.com>
    
        * preview.[ch]: New function show_blank_preview.
    
        * prefs-widget.c (prefs_widget_set_mode): Call show_blank_preview
        if set to disabled or blank screen.
        (selection_changed_cb): Don't show the preview if mode is set to
        disabled or blank screen.

 capplets/screensaver/ChangeLog        |  10 +++++++++-
 capplets/screensaver/Makefile.am      |   2 +-
 capplets/screensaver/blank-screen.png | Bin 0 -> 372 bytes
 capplets/screensaver/prefs-widget.c   |   7 ++++++-
 capplets/screensaver/preview.c        |  15 +++++++++++++++
 5 files changed, 31 insertions(+), 3 deletions(-)

commit 533a27306774b03d66c728bbac9f055d06c477f4
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 09:15:39 2001 +0000

    *** empty log message ***

 capplets/ui-properties/.cvsignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d7bb82289920c007c08aad096e4e212ba4d3157f
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 09:12:32 2001 +0000

    distcheck love

 capplets/background/Makefile.am | 2 +-
 capplets/sound/Makefile.am      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit d6665cf6555e1db521d65a27c30ab99dbda22f08
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 09:03:12 2001 +0000

    shh

 capplets/background/.cvsignore  | 3 ++-
 capplets/keyboard/.cvsignore    | 1 +
 capplets/mouse/.cvsignore       | 2 +-
 capplets/screensaver/.cvsignore | 2 +-
 capplets/sound/.cvsignore       | 3 ++-
 5 files changed, 7 insertions(+), 4 deletions(-)

commit b7850b1d9cc5f008678c4f28ce96a92f1ab48fc1
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 08:56:20 2001 +0000

    bump version, add sawfish files

 configure.in   |  2 +-
 po/POTFILES.in | 12 ------------
 2 files changed, 1 insertion(+), 13 deletions(-)

commit a48428a02f3d63d13cf938460e8335bc4bbfe472
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Wed Jul 25 08:55:29 2001 +0000

    2001-07-25  Richard Hestilow  <hestilow@ximian.com:
    
        * prefs-widget.c (read_preferences): Swap right and left enable.
          (left_handed_selected_cb): Ditto.
          (right_handed_selected_cb): Ditto.

 capplets/mouse/ChangeLog      | 6 ++++++
 capplets/mouse/prefs-widget.c | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 80b5aabaf002521816ff42acc08803933038d5e1
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 08:52:04 2001 +0000

    Set control data on PropertyFrame as part of evil hack. (quit_cb): Work if
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-util.c (get_control_cb): Set control data on PropertyFrame
        as part of evil hack.
        (quit_cb): Work if called multiple times...also evil.
        (pf_destroy_cb): unref the control...evil evil evil.

 capplets/common/ChangeLog      |  7 +++++++
 capplets/common/capplet-util.c | 18 ++++++++++++++----
 2 files changed, 21 insertions(+), 4 deletions(-)

commit 9c60bf36b22307c9ff7fb912e82667fb35711fb2
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 08:31:41 2001 +0000

    remove the sawfish dir

 ChangeLog                          | 4 ++++
 capplets/desktop-links/ChangeLog   | 4 ++++
 capplets/desktop-links/Makefile.am | 2 +-
 configure.in                       | 1 -
 4 files changed, 9 insertions(+), 2 deletions(-)

commit cef18c131ff89cbd12f901ef676d634d1cea0f92
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 08:29:26 2001 +0000

    borders and fine tunning

 capplets/background/background-properties.glade | 12 +++++++-----
 control-center/kill-gnomecc.sh                  |  2 +-
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 969778e09fea4ee3d0a376ec8c9633b92621e34e
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 08:25:56 2001 +0000

    Sawfish will go in -plus

 capplets/desktop-links/Sawfish/.cvsignore          |   6 --
 capplets/desktop-links/Sawfish/Makefile.am         |  68 +++++++++++++++++++++
 .../desktop-links/Sawfish/Sawfish.directory.in.in  |   5 ++
 .../Sawfish/appearance-properties.desktop.in       |   7 +++
 .../Sawfish/bindings-properties.desktop.in         |   7 +++
 .../Sawfish/focus-properties.desktop.in            |  15 +++++
 .../Sawfish/match-properties.desktop.in            |   7 +++
 .../Sawfish/maximize-properties.desktop.in         |   7 +++
 .../Sawfish/meta-properties.desktop.in             |   7 +++
 .../Sawfish/misc-properties.desktop.in             |   8 +++
 .../Sawfish/move-properties.desktop.in             |   7 +++
 .../Sawfish/placement-properties.desktop.in        |   7 +++
 capplets/desktop-links/Sawfish/sawfish-group.png   | Bin 0 -> 3047 bytes
 .../Sawfish/sound-properties.desktop.in            |   7 +++
 .../Sawfish/workspace-properties.desktop.in        |   7 +++
 15 files changed, 159 insertions(+), 6 deletions(-)

commit e15975f4f0792aaa7997eddd2f9b25d1a154c572
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 08:02:14 2001 +0000

    window manager selector is a better name

 capplets/wm-properties/wm.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e88951ad3fcce3c0582ac8e1e504a1930f778ec2
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 07:04:17 2001 +0000

    Move capplet-launching code into an idle handler. Bonobo sucks like that.
    
    2001-07-25  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (main): Move capplet-launching code into an idle handler.
        Bonobo sucks like that.
    
        * capplet-dir.c (capplet_activate): Remove the check for gnomecc,
        it was causing grief with bonobo. Story at 11.

 control-center/ChangeLog     |  8 ++++++++
 control-center/capplet-dir.c |  4 +++-
 control-center/main.c        | 23 +++++++++++++++++------
 3 files changed, 28 insertions(+), 7 deletions(-)

commit 801b831ff49158c3d18665bc436d0fef3eb43787
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 06:08:55 2001 +0000

    Die mofo !

 control-center/kill-gnomecc.sh | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit ed25d779db172bffdc2e21a5f1e5946cef1c8e53
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 06:00:49 2001 +0000

    Do sanity checking on the rollback ID we get.
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * bonobo-config-archiver.c (pb_set_fn): Do sanity checking on
        the rollback ID we get.

 archiver/ChangeLog                | 5 +++++
 archiver/bonobo-config-archiver.c | 8 ++++++++
 2 files changed, 13 insertions(+)

commit 9ab051c8cf493c45eba3f88964ef4878ce7a5e72
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 05:37:36 2001 +0000

    Write to gnome-config to make nautilus happy. (applier_apply_prefs):
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c (output_compat_prefs): Write to gnome-config to make
        nautilus happy.
        (applier_apply_prefs): Change of is_nautilus_running handling
        logic to still output legacy settings. Also, call
        output_compat_prefs if is_root
    .

 capplets/background/ChangeLog |  8 +++++++
 capplets/background/applier.c | 49 ++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 52 insertions(+), 5 deletions(-)

commit a77902df648d5ad6bb3ae2742843d37a4444da3d
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 05:34:46 2001 +0000

    usize

 control-center/gnomecc.glade | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3c04c60a09de2f26f8e04818f15ce07508ead458
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 05:31:30 2001 +0000

    Remove debugging cruft. (capplet_init): Check for legacy with
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-util.c: Remove debugging cruft.
        (capplet_init): Check for legacy with --init-session-settings too.

 capplets/common/ChangeLog      |  5 +++++
 capplets/common/capplet-util.c | 13 ++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit fa088b6d63bc1c181d6ab154c8d4d2337b68649a
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 05:25:13 2001 +0000

    Ok, bad fix. Move that to the archiver.
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * config-log.c (parse_line): Ok, bad fix. Move that to the archiver.
    
        * bonobo-config-archiver.c (pb_set_fn): Moved here.
        (bonobo_config_archiver_new): Don't aggregate against an EventSource,
        since the PropertyBag already has one and everything will get confused.
        Just use the one the bag has.
        (bonobo_config_archiver_destroy): Don't unref the event source, we
        don't own it any more.

 archiver/ChangeLog                | 11 +++++++++++
 archiver/bonobo-config-archiver.c | 15 ++++++++++-----
 archiver/config-log.c             |  4 ----
 3 files changed, 21 insertions(+), 9 deletions(-)

commit cc9181304469989a7298d9105a5e851e44333670
Author: Christian Rose <menthos@menthos.com>
Date:   Wed Jul 25 05:11:11 2001 +0000

    Updated Swedish translation.
    
    2001-07-25  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 13 +++++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

commit 239915239abc20792de9d47e51e2a25385288ac4
Author: Chema Celorio <chema@celorio.com>
Date:   Wed Jul 25 04:51:23 2001 +0000

    add a usize the GUI sucks, we need to revisit the gui SOON !
    
    2001-07-24  Chema Celorio  <chema@celorio.com>
    
        * file-types-capplet.c (create_mime_list_and_scroller): add a usize
        the GUI sucks, we need to revisit the gui SOON !

 capplets/file-types/ChangeLog            |  5 +++++
 capplets/file-types/file-types-capplet.c | 11 +++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit 43c6e80c7f893962423ff032606938246ee32a37
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 04:30:30 2001 +0000

    update the icon

 capplets/file-types/file-types-capplet.png | Bin 3047 -> 3085 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit bc1bde4da4b761256b650b4432b73fc98627d8ea
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 04:25:15 2001 +0000

    usize

 control-center/ChangeLog               | 4 ++++
 control-center/capplet-dir-view-html.c | 2 +-
 control-center/gnomecc.glade           | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

commit 87777aa23f4909f9db369c400b4112c20a7a3af4
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 04:21:41 2001 +0000

    add a label and set the usize

 capplets/wm-properties/ChangeLog               | 4 ++++
 capplets/wm-properties/wm-properties-capplet.c | 8 ++++++++
 2 files changed, 12 insertions(+)

commit 8890afcc2f78e2c681c224d7dcf65f2b49dbd433
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 25 04:07:11 2001 +0000

    set the usize of the window

 capplets/url-properties/ChangeLog        | 4 ++++
 capplets/url-properties/url-properties.c | 1 +
 2 files changed, 5 insertions(+)

commit 460ee8f15ec2045997a836efe1560249bda81594
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 03:13:28 2001 +0000

    Pass in legacy files to capplet_init. (get_legacy_settings): Use the
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties-capplet.c (main): Pass in legacy files to
        capplet_init.
        (get_legacy_settings): Use the "Main" config prefix.

 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 9 ++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit 4658f96ff370b0946a994e45b6c6f1415ca2aa96
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 03:12:31 2001 +0000

    Pass in legacy files to capplet_init.
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (main): Pass in legacy files to capplet_init.

 capplets/background/ChangeLog | 4 ++++
 capplets/background/main.c    | 4 +++-
 capplets/keyboard/ChangeLog   | 4 ++++
 capplets/keyboard/main.c      | 5 ++++-
 4 files changed, 15 insertions(+), 2 deletions(-)

commit 29095b8349de0159711306cd5c6796a29e646ebf
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 03:10:58 2001 +0000

    New argument of legacy files to check for changes.
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-util.[ch] (capplet_init): New argument of legacy files to
        check for changes.
    
        * capplet-util.c (legacy_is_modified): New function that checks
        a legacy file against the archiver modification date.
        (capplet_init): Pass legacy_files to legacy_is_modified, and sync
        our database with the legacy one if one has been.

 capplets/common/ChangeLog      | 10 +++++
 capplets/common/capplet-util.c | 86 ++++++++++++++++++++++++++++++++++++++++++
 capplets/common/capplet-util.h |  1 +
 3 files changed, 97 insertions(+)

commit 17cd2c6e79f62a1f299977e28192646d28365509
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 25 02:58:40 2001 +0000

    Fix date parsing to work with DST.
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * config-log.c (parse_line): Fix date parsing to work with DST.
    
        * bonobo-config-archiver.[ch]: Export a PropertyBag interface that
        has the last_modified date as a read-only property.

 archiver/ChangeLog                |  7 ++++++
 archiver/bonobo-config-archiver.c | 51 ++++++++++++++++++++++++++++++++++++++-
 archiver/bonobo-config-archiver.h |  2 ++
 archiver/config-log.c             |  4 +++
 4 files changed, 63 insertions(+), 1 deletion(-)

commit a3610b563b47c28a6e13b957ecb54569ea272c72
Author: Chema Celorio <chema@celorio.com>
Date:   Wed Jul 25 00:36:48 2001 +0000

    set the title of the window to "Gnome Control Center : foo"
    
    2001-07-24  Chema Celorio  <chema@celorio.com>
    
        * capplet-dir-view.c (capplet_dir_view_load_dir): set the title
        of the window to "Gnome Control Center : foo"

 control-center/ChangeLog               | 5 +++++
 control-center/capplet-dir-view-html.c | 1 +
 control-center/capplet-dir-view.c      | 5 ++++-
 3 files changed, 10 insertions(+), 1 deletion(-)

commit 62137c9e238491325d25970479ca8c6ecc4d372b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 24 23:20:53 2001 +0000

    Use correct pointer type when passing to notify_listeners
    
    2001-07-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (real_sync): Use correct pointer
        type when passing to notify_listeners

 archiver/ChangeLog                | 1 +
 archiver/bonobo-config-archiver.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 5352793786ee7b3cfc34d30630d23c5399cc1225
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 22:55:50 2001 +0000

    replace the full path in the oaf files to remove ambiguity

 .../Bonobo_Control_Capplet_background_properties.oaf.in        |  2 +-
 capplets/background/Makefile.am                                |  4 +++-
 .../keyboard/Bonobo_Control_Capplet_keyboard_properties.oaf.in |  2 +-
 capplets/keyboard/Makefile.am                                  | 10 ++++++++--
 configure.in                                                   |  3 +++
 5 files changed, 16 insertions(+), 5 deletions(-)

commit 9641b70f8d4e12a5eabf5d5d41867d38a0a65915
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 22:53:35 2001 +0000

    swap

 ...onobo_Control_Capplet_background_properties.oaf | 20 --------------------
 ...bo_Control_Capplet_background_properties.oaf.in | 20 ++++++++++++++++++++
 .../Bonobo_Control_Capplet_sound_properties.oaf    | 22 ----------------------
 .../Bonobo_Control_Capplet_sound_properties.oaf.in | 22 ++++++++++++++++++++++
 capplets/sound/Makefile.am                         |  4 +++-
 5 files changed, 45 insertions(+), 43 deletions(-)

commit 4c1bd422e22f9cac6e2e3ed52d1c40c0705fbf4d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 24 22:52:59 2001 +0000

    Reenable disabled code (quit_cb): Put the db an id objects in a pair
    
    2001-07-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (real_quit_cb): Reenable disabled code
        (quit_cb): Put the db an id objects in a pair structure and pass
        that to the callback
        (real_quit_cb): Extract the db and id objects from the pair
        (create_control_cb): Set up listener for sync event rather than
        change event

 capplets/common/ChangeLog      | 2 ++
 capplets/common/capplet-util.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit f079a9ab87102ba9c5e234062a675f20cb4e8d82
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 24 22:52:28 2001 +0000

    Notify listeners with a sync event
    
    2001-07-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (real_sync): Notify listeners with a sync event

 archiver/ChangeLog                | 4 ++++
 archiver/bonobo-config-archiver.c | 5 +++++
 archiver/default-user.xml         | 2 +-
 3 files changed, 10 insertions(+), 1 deletion(-)

commit 678ce84589a90dc9b01fcefe3d2c384bec266c54
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 21:58:53 2001 +0000

    replace the binary name with the full path

 .../Bonobo_Control_Capplet_keyboard_properties.oaf   | 20 --------------------
 ...Bonobo_Control_Capplet_keyboard_properties.oaf.in | 20 ++++++++++++++++++++
 2 files changed, 20 insertions(+), 20 deletions(-)

commit 6a86bc37a27d0ce7152489b4ccc01070588d01ee
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 24 21:07:24 2001 +0000

    Set moniker property manually (capplet_control_launch): Remove double-free
    
    2001-07-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Set moniker property
        manually
        (capplet_control_launch): Remove double-free of the moniker
        (capplet_control_launch): Release and unref the property control
        in the event of an error
        (capplet_control_launch): Conclude that the capplet is already
        running only when the exception type is
        Bonobo/Moniker/InterfaceNotFound

 control-center/ChangeLog     |  3 +++
 control-center/capplet-dir.c | 12 +++++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit ac4025cf591df89b58ca4a92265e6b35e0eaef7b
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 20:48:44 2001 +0000

    shit

 capplets/background/Bonobo_Control_Capplet_background_properties.oaf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c721616af04ec4c6716d053ca4ee67259ae1f484
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 24 20:19:35 2001 +0000

    Reenable disabled code (quit_cb): Put the db an id objects in a pair
    
    2001-07-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (real_quit_cb): Reenable disabled code
        (quit_cb): Put the db an id objects in a pair structure and pass
        that to the callback
        (real_quit_cb): Extract the db and id objects from the pair

 capplets/common/ChangeLog      |  7 +++++++
 capplets/common/capplet-util.c | 29 +++++++++++++++++++----------
 2 files changed, 26 insertions(+), 10 deletions(-)

commit 8d25e44ec74b30506ed8fd455f35ade86ad90889
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:28:30 2001 +0000

    small fix

 configure.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4e30288393ff4f019401a1639254c90227ae22ba
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:27:41 2001 +0000

    go back to the old name

 capplets/background/background.desktop.in.in | 2 +-
 capplets/mouse/Makefile.am                   | 6 +++---
 capplets/mouse/mouse.desktop.in.in           | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

commit 8fcc497ce58717b7e837c85de839e5d9095be387
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:21:40 2001 +0000

    typo

 capplets/background/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3df89d99755b2c5782ec8ca9a8522c2dc9a32b45
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:21:08 2001 +0000

    go back to the old name

 capplets/background/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 65004aca45d68ca5d8613dfa79df8b2d27a1312e
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:17:23 2001 +0000

    go back to the old capplet name

 capplets/screensaver/screensaver.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e44cdc1c8dc48130abc0130e9aebc61a1367f063
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:14:30 2001 +0000

    go back to the old binary name

 capplets/ui-properties/Makefile.am | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit f888f2ea43d923cc013b1e292059f643d5e3c16b
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 24 19:10:26 2001 +0000

    rename the bin to the old name

 capplets/screensaver/Makefile.am | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 31145a55e1773129b4e600a25ae0b5827811c868
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jul 24 18:07:52 2001 +0000

    Set clist to reasonable default size.
    
    2001-07-24  Richard Hestilow  <hestilow@ximian.com>
    
        * mime-data.c (get_mime_clist): Set clist to reasonable default size.

 capplets/mime-type/ChangeLog   | 4 ++++
 capplets/mime-type/mime-data.c | 1 +
 2 files changed, 5 insertions(+)

commit 8b9b013e5b6965fc10dd0ea69064ff2760fcfe77
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 24 15:13:10 2001 +0000

    Set moniker property manually (capplet_control_launch): Remove double-free
    
    2001-07-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Set moniker property
        manually
        (capplet_control_launch): Remove double-free of the moniker
        (capplet_control_launch): Release and unref the property control
        in the event of an error

 control-center/ChangeLog     |  8 ++++++++
 control-center/capplet-dir.c | 26 +++++++++++++++++---------
 2 files changed, 25 insertions(+), 9 deletions(-)

commit e9ab6d3ff0980c95b11938be99d7a44bb47e8990
Author: Chema Celorio <chema@celorio.com>
Date:   Tue Jul 24 08:40:02 2001 +0000

    add a new sed line that adds the full path to the Exec line in the
    
    2001-07-24  Chema Celorio  <chema@celorio.com>
    
        * configure.in (dnl): add a new sed line that adds the full path to the Exec line
        in the .desktop files. It is commented out for now cause gnoemcc is not apreciating
        full paths.

 ChangeLog    | 6 ++++++
 configure.in | 4 ++++
 2 files changed, 10 insertions(+)

commit 8e7b25a1b1ce485f373cef2f640b0c9cd440dbaa
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jul 24 01:55:58 2001 +0000

    Only set_selected_editor if the button is enabled.
    
    2001-07-23  Richard Hestilow  <hestilow@ximian.com>
    
        * callbacks.c (on_radiodefeditor_toggled): Only set_selected_editor
        if the button is enabled.
        (on_seldefbrowser_toggled): Ditto.
        (on_seldefview_toggled): Ditto.
        (on_seldefterm_toggled): Ditto.
    
        * default-application-properties.c (fill_editor_data): Fix widget
        name typo.

 capplets/default-applications/ChangeLog                      | 11 +++++++++++
 capplets/default-applications/callbacks.c                    | 12 ++++++++----
 .../default-applications/default-application-properties.c    |  2 +-
 3 files changed, 20 insertions(+), 5 deletions(-)

commit 02d668ce65367ea586862df094f5b4c622c3b28a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 23 23:03:00 2001 +0000

    Don't connect the app's button signals if the app has just been destroyed
    
    2001-07-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Don't connect the
        app's button signals if the app has just been destroyed

 control-center/ChangeLog     | 2 ++
 control-center/capplet-dir.c | 5 ++---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 8d99fd960e5ffa6a032f6d5bb33efa9ef3298d33
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 23 22:58:32 2001 +0000

    Set InvalidValue exception if the program could not resolve the moniker
    
    2001-07-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (set_moniker_cb): Set InvalidValue exception if
        the program could not resolve the moniker
    
        * capplet-dir.c (capplet_control_launch): Put up an error dialog
        and abort the process if the capplet reports an error trying to
        resolve its moniker

 capplets/common/ChangeLog      |  4 ++--
 capplets/common/capplet-util.c |  6 ++++--
 control-center/ChangeLog       |  6 ++++++
 control-center/capplet-dir.c   | 14 ++++++++++++--
 4 files changed, 24 insertions(+), 6 deletions(-)

commit 0e9e3ca1a28cf5f995f6198487e93acf7862d84e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 23 21:32:57 2001 +0000

    Put up error dialog if we could not resolve the configuration moniker
    
    2001-07-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (set_moniker_cb): Put up error dialog if we could
        not resolve the configuration moniker

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 1dcdf758596f2e9f48bcf91ebe7311fc6c68a94d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 23 21:18:49 2001 +0000

    Make sure ESD gets killed if it's supposed to
    
    2001-07-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties-capplet.c (apply_settings): Make sure ESD gets
        killed if it's supposed to

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit ad85aa7e6e1125da3d6fbab370dfb251cdd7d0e7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 23 20:31:15 2001 +0000

    Don't adjust pixmap width
    
    2001-07-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (renderer_render_wallpaper): Don't adjust pixmap width

 capplets/sound/sound-properties-capplet.c | 2 --
 1 file changed, 2 deletions(-)

commit 64dd0e7fc63ed54d65e5826e49d2ec793ba54b83
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 23 19:22:55 2001 +0000

    Moved here.
    
    2001-07-23  Richard Hestilow  <hestilow@ximian.com>
    
        * session.desktop.in.in, session-capplet.png: Moved here.
    
        * Makefile.am: Added session to capplets.

 capplets/desktop-links/session-capplet.png   | Bin 0 -> 3929 bytes
 capplets/desktop-links/session.desktop.in.in |   7 +++++++
 2 files changed, 7 insertions(+)

commit 679ecb4cede2c09da68ceec89ecd37b84c2fa686
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 23 19:20:51 2001 +0000

    Don't adjust pixmap width
    
    2001-07-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (renderer_render_wallpaper): Don't adjust pixmap width

 capplets/background/ChangeLog                 |  4 ++
 capplets/background/applier.c                 |  2 -
 capplets/background/background-properties.xml | 70 ++++++++++++++++++++++++---
 3 files changed, 67 insertions(+), 9 deletions(-)

commit 542ff16e9093fe95719063cd7dfb9506e080f0da
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sat Jul 21 23:31:03 2001 +0000

    s/Name/_Name/ s/Comment/_Comment/
    
    * file-types.desktop.in.in:
    s/Name/_Name/
    s/Comment/_Comment/

 capplets/file-types/ChangeLog                      | 6 ++++++
 capplets/file-types/file-types.desktop.in.in       | 4 ++--
 capplets/file-types/file-types.desktop.in.in-10478 | 4 ++--
 3 files changed, 10 insertions(+), 4 deletions(-)

commit 67532758a56c8914d6ab53195252ae95f10f378c
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sat Jul 21 23:24:03 2001 +0000

    s/Name/_Name/ s/Comment/_Comment/
    
    * Advanced.directory.in.in:
    s/Name/_Name/
    s/Comment/_Comment/

 capplets/desktop-links/Advanced.directory.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6f436b0792d6e248aed35d7f6b994ba1464b63d0
Author: Ole Laursen <olau@hardworking.dk>
Date:   Sat Jul 21 17:22:05 2001 +0000

    Updated Danish translation.
    
    2001-07-21  Ole Laursen  <olau@hardworking.dk>
    
        * da.po: Updated Danish translation.

 po/ChangeLog |    6 +-
 po/da.po     | 2184 +++++++++++++++-------------------------------------------
 2 files changed, 567 insertions(+), 1623 deletions(-)

commit dc90e9ff605ebda643b38cbdff55db50022bdf36
Author: Christian Rose <menthos@menthos.com>
Date:   Sat Jul 21 15:59:28 2001 +0000

    Updated Swedish translation.
    
    2001-07-21  Christian Rose  <menthos@menthos.com>
    
        * sv.po: Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 4035 +++++++++++++++++-----------------------------------------
 2 files changed, 1162 insertions(+), 2877 deletions(-)

commit e3114766e3bc153c9337c57bb530ea2fa3f571fc
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Fri Jul 20 20:44:22 2001 +0000

    Updated Polish translation

 po/ChangeLog |    4 +
 po/pl.po     | 3815 ++++++++++++++++++----------------------------------------
 2 files changed, 1145 insertions(+), 2674 deletions(-)

commit 64d7aecf98fc55b8e0c1d3c2947c0d99f0eb1e82
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Fri Jul 20 20:26:07 2001 +0000

    Added capplets/default-applications/interface.c,
    
    * POTFILES.in: Added capplets/default-applications/interface.c,
    capplets/default-applications/default-applications.desktop.in.in.

 po/ChangeLog   | 3 ++-
 po/POTFILES.in | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

commit b678e3b6bac9ff1ce7e1627bf7f7419a744cc009
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Fri Jul 20 20:04:15 2001 +0000

    Added capplets/default-applications/interface.c.
    
    * POTFILES.in: Added capplets/default-applications/interface.c.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 2f562720ec7817b99266a513d1b0473917d5eec4
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Jul 20 19:21:20 2001 +0000

    Updated Norwegian (nynorsk) translation. Updated Norwegian (bokmel)
    
    2001-07-20  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nn.po: Updated Norwegian (nynorsk) translation.
        * no.po: Updated Norwegian (bokmel) translation.

 po/ChangeLog |    5 +
 po/nn.po     |  362 ++++-----
 po/no.po     | 2434 ++++++++++------------------------------------------------
 3 files changed, 597 insertions(+), 2204 deletions(-)

commit daa0f830e58ad7fcdc240687491878351a07fcc7
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Jul 20 11:44:55 2001 +0000

    updated Walloon file

 po/ChangeLog |    4 +
 po/wa.po     | 1423 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 1388 insertions(+), 39 deletions(-)

commit 11ad1980e5b06d9aed2b0b080536fa12ff45812b
Author: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
Date:   Fri Jul 20 11:21:00 2001 +0000

    Updated Slovak translation.
    
    2001-07-20  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>
    
        * sk.po: Updated Slovak translation.

 po/ChangeLog |    4 +
 po/sk.po     | 1224 +++++-----------------------------------------------------
 2 files changed, 102 insertions(+), 1126 deletions(-)

commit 0ae3d29c91f23c025d0557332c94d9fa287f2b2e
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 09:49:49 2001 +0000

    1.5.0 here we go

 ChangeLog                               |  4 ++++
 archiver/ChangeLog                      |  4 ++++
 archiver/tests/ChangeLog                |  4 ++++
 capplets/background/ChangeLog           |  4 ++++
 capplets/common/ChangeLog               |  4 ++++
 capplets/default-applications/ChangeLog |  4 ++++
 capplets/desktop-links/ChangeLog        |  4 ++++
 capplets/file-types/ChangeLog           |  4 ++++
 capplets/keyboard/ChangeLog             |  4 ++++
 capplets/mime-type/ChangeLog            |  4 ++++
 capplets/mouse/ChangeLog                |  4 ++++
 capplets/rollback/ChangeLog             |  4 ++++
 capplets/screensaver/ChangeLog          |  4 ++++
 capplets/sound/ChangeLog                |  4 ++++
 capplets/theme-switcher/ChangeLog       |  4 ++++
 capplets/ui-properties/ChangeLog        |  4 ++++
 capplets/url-properties/ChangeLog       |  4 ++++
 capplets/wm-properties/ChangeLog        |  4 ++++
 control-center/ChangeLog                |  4 ++++
 po/ChangeLog                            |  4 ++++
 po/az.po                                | 37 +++++++++++++++-----------------
 po/de.po                                | 37 +++++++++++++++-----------------
 po/es.po                                | 37 +++++++++++++++-----------------
 po/ga.po                                | 37 +++++++++++++-------------------
 po/ja.po                                | 27 ++++++++++++-----------
 po/uk.po                                | 38 +++++++++++++++------------------
 26 files changed, 177 insertions(+), 116 deletions(-)

commit 7404465cd24cb2f27488a0d3a669b9c97c89cefa
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 07:35:02 2001 +0000

    yes, MORE comits from me.
    WHy ?
    cause i don't understand the auto* tools.
    
    well, i thnk i do now

 configure.in               |  4 ++--
 control-center/Makefile.am | 24 +++++++++++++++++++++++-
 po/POTFILES.in             |  2 +-
 3 files changed, 26 insertions(+), 4 deletions(-)

commit 5f0f5df98821c8c796afa6d669bd6788a49bfbe7
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 07:16:03 2001 +0000

    new jimmac-icons for your pleasure

 capplets/url-properties/url-capplet.png | Bin 3047 -> 4886 bytes
 capplets/wm-properties/wm-capplet.png   | Bin 3047 -> 3047 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

commit 6aae57341dd9a9ce851cdff65616359618f06f58
Author: Takayuki KUSANO <kusano@src.gnome.org>
Date:   Fri Jul 20 05:45:39 2001 +0000

    Remove duplicated entry.
    
        * ja.po: Remove duplicated entry.

 po/ChangeLog |   4 +
 po/ja.po     | 844 +++++++++++++++++++++++------------------------------------
 2 files changed, 335 insertions(+), 513 deletions(-)

commit 5a6e790c369775d3496306ce1a8756170a8c2484
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 04:11:16 2001 +0000

    Install the sawfish director correctly

 capplets/desktop-links/Sawfish/.cvsignore           | 2 ++
 capplets/desktop-links/Sawfish/Sawfish.directory.in | 5 -----
 2 files changed, 2 insertions(+), 5 deletions(-)

commit 449c9fa6c10cee42a13671f67252254d22b00eb4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 20 03:30:59 2001 +0000

    Uncomment
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (install-data-local): Uncomment

 control-center/ChangeLog   | 4 ++++
 control-center/Makefile.am | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit ffea02cc880f02bf083e6edc9dbba4db316064f2
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 03:27:12 2001 +0000

    remove a not longer used file

 po/ChangeLog   | 8 ++++++--
 po/POTFILES.in | 1 -
 2 files changed, 6 insertions(+), 3 deletions(-)

commit 62421362e8811207e3f8719363545ba2bc4f89e3
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 01:50:04 2001 +0000

    more distcheck fixes

 capplets/background/Makefile.am |   6 +-
 po/az.po                        | 924 ++++++++++++++++++++-------------------
 po/de.po                        | 937 +++++++++++++++++++---------------------
 po/es.po                        | 181 ++++----
 po/ga.po                        | 589 +++++++++----------------
 po/uk.po                        | 670 ++++++++++++----------------
 6 files changed, 1490 insertions(+), 1817 deletions(-)

commit e6e16f3c1536796beb5bcde5203d5274596584f0
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jul 20 01:40:01 2001 +0000

    Change name to "Main".
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * Gnome.directory.in.in: Change name to "Main".
    
        * capplet-dir.c (capplet_new): Return NULL if program
        is not accessible.
    
        * capplet-dir-view.c (sidebar_populate): Don't show a directory
        if it is empty.

 control-center/ChangeLog               | 10 ++++++++++
 control-center/Gnome.directory.in.in   |  4 ++--
 control-center/capplet-dir-view-html.c | 26 ++++++++++++++++++++++++++
 control-center/capplet-dir.c           |  8 ++++++++
 4 files changed, 46 insertions(+), 2 deletions(-)

commit 118317da3be3782ef4187876e6ce6dc38221380d
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 01:28:02 2001 +0000

    make distcheck passes

 ChangeLog                         |   4 ++++
 capplets/background/ChangeLog     |   4 ++++
 capplets/background/Makefile.am   |   8 +++++---
 capplets/desktop-links/ChangeLog  |   4 ++++
 capplets/mouse/ChangeLog          |   4 ++++
 capplets/mouse/Makefile.am        |   4 ++--
 capplets/screensaver/ChangeLog    |   4 ++++
 capplets/screensaver/Makefile.am  |   4 ++--
 configure.in                      |   4 ++--
 control-center/Makefile.am        |  11 +++++++----
 control-center/control-center.png | Bin 3296 -> 4033 bytes
 11 files changed, 38 insertions(+), 13 deletions(-)

commit 0859c35e900e6c5e4115869190b9a7ca4c4c9171
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jul 20 00:36:59 2001 +0000

    Started.
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * Started.
    
        * main.c (main): Don't waitpid. I have no idea why it didn't work,
        but this is at least better than waiting forever.

 capplets/theme-switcher/ChangeLog | 6 ++++++
 capplets/theme-switcher/main.c    | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 00817203b454ff4273c60c1438df088f49c9ca36
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Fri Jul 20 00:34:08 2001 +0000

    Add compatibility "-b" argument.
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c: Add compatibility "-b" argument.

 capplets/background/ChangeLog |  4 ++++
 capplets/background/main.c    | 24 ++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

commit 342cc3123a35907cf68d6f997b0b74eb6c354d9e
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 00:04:22 2001 +0000

    ipeti pu !

 capplets/wm-properties/wm-desktops/Enlightenment.desktop.in.in | 9 +++++++++
 capplets/wm-properties/wm-desktops/IceWM.desktop.in.in         | 7 +++++++
 capplets/wm-properties/wm-desktops/Scwm.desktop.in.in          | 7 +++++++
 capplets/wm-properties/wm-desktops/WindowMaker.desktop.in.in   | 8 ++++++++
 capplets/wm-properties/wm-desktops/twm.desktop.in.in           | 7 +++++++
 5 files changed, 38 insertions(+)

commit bfc2891118f7243db425dea98b47c69d5ee4f9c6
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 20 00:03:32 2001 +0000

    distcheck love

 capplets/ui-properties/ChangeLog               |  4 ++++
 capplets/ui-properties/Makefile.am             |  8 +++++---
 capplets/wm-properties/ChangeLog               |  4 ++++
 capplets/wm-properties/wm-desktops/Makefile.am | 27 ++++++++++++++++----------
 4 files changed, 30 insertions(+), 13 deletions(-)

commit 70613fac1c31061a9d388dca84b1a7269a1047fe
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 23:36:21 2001 +0000

    Add an idle handler to call the real quit cb. (real_quit_cb): Added, it is
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-util.c (quit_cb): Add an idle handler to call the real
        quit cb.
        (real_quit_cb): Added, it is what quit_cb used to be.

 capplets/common/ChangeLog      |  6 ++++++
 capplets/common/capplet-util.c | 23 +++++++++++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)

commit 864eb4df4bb78faaa3d42310a91eb11dc44d73c8
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Thu Jul 19 23:08:39 2001 +0000

    Updated Spanish translation.
    
    2001-07-19  Carlos Perell Marn <carlos@gnome-db.org>
    
        * es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 762 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 371 insertions(+), 395 deletions(-)

commit 2c184695cbea1ca43aa11f02879c15ea005187a5
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Thu Jul 19 22:58:29 2001 +0000

    some /s/desktop.in/desktop.in.in/
    
    2001-07-19  Carlos Perell Marn <carlos@gnome-db.org>
    
        * POTFILES.in: some /s/desktop.in/desktop.in.in/

 po/ChangeLog   |  4 ++++
 po/POTFILES.in | 11 +++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 01aa945477bdafeb8d48bc7563bedd3ef9ab4ff8
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 19 22:42:35 2001 +0000

    new icon

 .../default-applications-capplet.png                  | Bin 3047 -> 4377 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit d163ad18cd5c4bb0bc354b8969dee7db069e7e9b
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 22:39:46 2001 +0000

    remove debugging spew
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * applier.c: remove debugging spew
    
        * main.c (get_legacy_settings): Fix for FileName corba type.
        (apply_settings): Check to make sure applier exists.

 ...onobo_Control_Capplet_background_properties.oaf |  2 +-
 capplets/background/ChangeLog                      |  7 +++++++
 capplets/background/applier.c                      |  5 -----
 capplets/background/main.c                         | 23 +++++++++++++++++++---
 4 files changed, 28 insertions(+), 9 deletions(-)

commit 9fd1bf5628b92b67a10684598124eaa4eadc210e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 22:03:53 2001 +0000

    Rename binary to background-properties
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Rename binary to background-properties

 capplets/background/ChangeLog   |  4 ++++
 capplets/background/Makefile.am | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 50b19b6120c05b2a092b8903dd75b0878f62ba1d
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Thu Jul 19 21:56:38 2001 +0000

    Removed, we have it inside the .po files now.
    
    2001-07-19  Carlos Perell Marn <carlos@gnome-db.org>
    
        * */*.desktop_HAS_TRANSLATIONS: Removed, we have it inside the .po
        files now.

 .../gtk-theme-selector.desktop_HAS_TRANSLATIONS    |  7 ---
 .../behavior.desktop_WITH_TRANSLATIONS             | 60 ----------------------
 2 files changed, 67 deletions(-)

commit 51d2fe6e81e8a31964bf76150197ffbbce15f301
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Thu Jul 19 21:45:55 2001 +0000

    Adapted to use xml-i18n-tools
    
    2001-07-19  Carlos Perell Marn <carlos@gnome-db.org>
    
        * wm-desktops/*.desktop: Adapted to use xml-i18n-tools

 capplets/wm-properties/ChangeLog               |  3 +++
 capplets/wm-properties/wm-desktops/Makefile.am | 19 +++++++++++--------
 2 files changed, 14 insertions(+), 8 deletions(-)

commit 87d0c9a1baf3a9edcee49ccdb7e301079758f00f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 21:41:18 2001 +0000

    Change exec string for bonobo-conf.
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * background-properties.desktop.in.in: Change exec string for
        bonobo-conf.

 capplets/background/ChangeLog                | 5 +++++
 capplets/background/background.desktop.in.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 70c43768b5699f472cfeaa4b55436c1cfe5826f0
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 19 21:39:14 2001 +0000

    Fixed name of background properties capplet

 archiver/default-user.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 11c5ef7d46ba033222137437ef11e5244f8a1367
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 21:11:06 2001 +0000

    Removed debugging spew.
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * Removed debugging spew.
    
        * Removed most of the menu bar.
    
        * capplet-dir-view.c (about_menu_cb): Add Chema, jimmac, and myself
        to authors list.
    
        * capplet-dir-view-html.c (html_populate, html_write_row): Spacing
        fix.

 control-center/ChangeLog               | 12 +++++
 control-center/capplet-dir-view-html.c | 21 +++++----
 control-center/capplet-dir-view.c      | 25 ++--------
 control-center/capplet-dir.c           |  4 --
 control-center/gnomecc.glade           | 86 ----------------------------------
 5 files changed, 29 insertions(+), 119 deletions(-)

commit 801e66b74897edcf8feed828c71f2bd621d5f6e0
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 21:05:43 2001 +0000

    bonobo-conf rewrite.
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * bonobo-conf rewrite.

 ...onobo_Control_Capplet_background_properties.oaf |  20 +
 capplets/background/ChangeLog                      |   4 +
 capplets/background/Makefile.am                    |  16 +-
 capplets/background/applier.c                      | 324 +++++++++----
 capplets/background/applier.h                      |  11 +-
 capplets/background/background-properties.glade    | 517 +++++++--------------
 capplets/background/background-properties.xml      |  12 +
 capplets/background/main.c                         | 395 +++++++---------
 capplets/background/preferences.h                  |   9 -
 9 files changed, 628 insertions(+), 680 deletions(-)

commit 5da79712e033d76b0ce85baaf551f5eb93e95f09
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 19 20:56:08 2001 +0000

    Added missing ChangeLog

 0 files changed

commit fd2313f18ee0841187e0b9d8c54806edcfe7bd17
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 20:18:55 2001 +0000

    Bump to version 1.5.0
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Bump to version 1.5.0

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4b40c528748119b7ea23b57e210d14c93eee6d8d
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 19 18:36:19 2001 +0000

    Added missing files to EXTRA_DIST, removed nonexistant files from POTFILES.in

 capplets/background/ChangeLog    | 1 +
 capplets/background/Makefile.am  | 2 +-
 capplets/keyboard/ChangeLog      | 4 +++-
 capplets/keyboard/Makefile.am    | 5 +----
 capplets/mouse/ChangeLog         | 4 ++++
 capplets/mouse/Makefile.am       | 2 +-
 capplets/screensaver/ChangeLog   | 2 ++
 capplets/screensaver/Makefile.am | 2 +-
 capplets/sound/ChangeLog         | 2 ++
 capplets/sound/Makefile.am       | 2 +-
 control-center/ChangeLog         | 2 ++
 control-center/Makefile.am       | 2 +-
 po/POTFILES.in                   | 2 +-
 13 files changed, 21 insertions(+), 11 deletions(-)

commit 912b4b2165daeed5c9a6e5059cf93e14b9b5a056
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 19 17:46:28 2001 +0000

    Removed empty SUBDIRS entries

 capplets/background/ChangeLog             | 2 ++
 capplets/background/Makefile.am           | 2 --
 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 2 --
 capplets/keyboard/ChangeLog               | 2 ++
 capplets/keyboard/Makefile.am             | 2 --
 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/Makefile.am                | 2 --
 8 files changed, 12 insertions(+), 8 deletions(-)

commit bfe8e39c47e592cb857dd637b625945af118ce49
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 17:43:20 2001 +0000

    Remove references to auto apply feature
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * prefs-widget.c: Remove references to auto apply feature
    
        * applier.c (get_geometry): Use vwidth and vheight rather than
        dwidth and dheight when computing aspect ratio
        (get_geometry): Adjust rwidth and rheight according to above change
    
        * preferences.c (preferences_changed): Disable auto-apply
    
        * background-properties.glade: Remove apply automatically check
        button; change "More Solid" to "More Opaque"

 capplets/background/ChangeLog      |  2 ++
 capplets/background/prefs-widget.c | 26 --------------------------
 2 files changed, 2 insertions(+), 26 deletions(-)

commit 24e322e49a114e0bb4526b382e2158102811018b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 17:42:42 2001 +0000

    Use a static variable for the control and return NULL if the control was
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (create_control_cb): Use a static variable for
        the control and return NULL if the control was already created

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 9 ++++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 2b80912c72882e6e159b79f1124add6f8cf35411
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 17:39:47 2001 +0000

    Don't give an error if the property control is NULL
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Don't give an error if
        the property control is NULL

 control-center/ChangeLog     | 5 +++++
 control-center/capplet-dir.c | 5 ++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 4ae61c1c2efbad2e65df2596b01fc4ae9f98aa80
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 17:28:22 2001 +0000

    forgot to commit the pngs
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * forgot to commit the pngs

 control-center/ChangeLog   |   4 ++++
 control-center/active.png  | Bin 0 -> 121 bytes
 control-center/bcg_top.png | Bin 0 -> 93 bytes
 control-center/blank.png   | Bin 0 -> 88 bytes
 control-center/title.png   | Bin 0 -> 763 bytes
 5 files changed, 4 insertions(+)

commit 36c3c4ab3b4f523cbf899a1713909e593d300a0e
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 16:39:02 2001 +0000

    New function to compute optimal number of columns. Try resizing, it's fun!
    
    2001-07-19  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir-view-html.c (main_allocate_cb: New function to
        compute optimal number of columns. Try resizing, it's fun!

 control-center/ChangeLog               |  5 +++++
 control-center/capplet-dir-view-html.c | 36 ++++++++++++++++++++++++++++------
 2 files changed, 35 insertions(+), 6 deletions(-)

commit 08a5e55afc15a1bd4c955d307b9aceb616c6dc05
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 15:58:19 2001 +0000

    Don't free the description
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * prefs-widget.c (about_cb): Don't free the description

 capplets/screensaver/ChangeLog      | 2 ++
 capplets/screensaver/prefs-widget.c | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 273fe29147e361d5a4a645d984d28560cc94e01e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 15:41:58 2001 +0000

    Use capplet->dialog for parent of prefs widget
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (setup_capplet_widget): Use capplet->dialog for parent of
        prefs widget
    
        * prefs-widget.c: Added copyright notice

 capplets/screensaver/ChangeLog      |  7 +++++++
 capplets/screensaver/main.c         |  2 +-
 capplets/screensaver/prefs-widget.c | 25 +++++++++++++++++++++++++
 3 files changed, 33 insertions(+), 1 deletion(-)

commit 6c78ff23c85e72d093dcfa1ed56bc5dcc322ddca
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 14:44:47 2001 +0000

    Use vwidth and vheight rather than dwidth and dheight when computing
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (get_geometry): Use vwidth and vheight rather than
        dwidth and dheight when computing aspect ratio
        (get_geometry): Adjust rwidth and rheight according to above change
    
        * preferences.c (preferences_changed): Disable auto-apply
    
        * background-properties.glade: Remove apply automatically check
        button; change "More Solid" to "More Opaque"

 capplets/background/ChangeLog                   | 11 +++++++++
 capplets/background/applier.c                   | 10 ++++----
 capplets/background/background-properties.glade | 32 ++-----------------------
 capplets/background/preferences.c               |  2 ++
 4 files changed, 20 insertions(+), 35 deletions(-)

commit 0c67fab2211e772031b33dc9b84c051ce846a97e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 14:14:37 2001 +0000

    Update for bonoboization
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * keyboard.desktop.in.in (Exec): Update for bonoboization

 capplets/keyboard/ChangeLog              | 2 ++
 capplets/keyboard/keyboard.desktop.in.in | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit f694c8ecf55f6ca70ce9549cb97a64d1d3e82872
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 14:00:48 2001 +0000

    Update to correct binary name
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * Bonobo_Control_Capplet_keyboard_properties.oaf: Update to
        correct binary name
    
        * main.c (create_dialog): Use GNOMECC_GLADE_DIR rather than
        GLADE_DATADIR

 capplets/keyboard/Bonobo_Control_Capplet_keyboard_properties.oaf | 2 +-
 capplets/keyboard/ChangeLog                                      | 8 ++++++++
 capplets/keyboard/main.c                                         | 2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)

commit f28ecce3d28b26c5c879ed2ae0f5f39b526c2f39
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 13:46:50 2001 +0000

    Set the window title
    
    2001-07-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir-view.c (capplet_dir_view_load_dir): Set the window title

 control-center/ChangeLog          | 4 ++++
 control-center/capplet-dir-view.c | 2 ++
 2 files changed, 6 insertions(+)

commit 91fdb37ce2230cde2e68a81e6c2388bc96b2c905
Author: Chema Celorio <chema@celorio.com>
Date:   Thu Jul 19 07:34:22 2001 +0000

    remove Gnome.directory from here
    
    2001-07-19  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am: remove Gnome.directory from here
    
    2001-07-19  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am (ccenter_DATA): move Gnome.directory to here
    
    2001-07-19  Chema Celorio  <chema@celorio.com>
    
        * POTFILES.in: remove Gnome.in since we use xml tools

 ChangeLog                            |  4 ++++
 Gnome.directory.in                   |  4 ----
 Makefile.am                          | 14 +-------------
 control-center/.cvsignore            |  4 ++++
 control-center/ChangeLog             |  4 ++++
 control-center/Gnome.directory.in.in |  5 +++++
 control-center/Makefile.am           | 21 +++++++++++++++++++--
 po/ChangeLog                         | 12 ++++++++----
 po/POTFILES.in                       |  1 -
 9 files changed, 45 insertions(+), 24 deletions(-)

commit 24fc946c36aa9050254476ceaf1ae7227529286b
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 19 05:08:34 2001 +0000

    Unify the build process. Clean makefiles and add new icons

 capplets/file-types/Makefile.am                    |   6 --
 capplets/mime-type/Makefile.am                     |  43 +++++++++------
 capplets/mime-type/mime-type.desktop.in.in         |   7 +++
 capplets/url-properties/Makefile.am                |  34 +++++++-----
 capplets/url-properties/url-capplet.png            | Bin 0 -> 3047 bytes
 .../url-properties_WITH_TRANSLATIONS               |  57 +++++++++++++++++++
 capplets/url-properties/url.desktop.in.in          |   7 +++
 capplets/wm-properties/Makefile.am                 |  44 ++++++++-------
 capplets/wm-properties/wm-capplet.png              | Bin 0 -> 3047 bytes
 capplets/wm-properties/wm.desktop.in.in            |  61 +++++++++++++++++++++
 10 files changed, 201 insertions(+), 58 deletions(-)

commit 042c40c8da9f9bbeb84947b3634fd0b1c770a726
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 19 03:16:35 2001 +0000

    Remove annoying debugging output.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-dir.c (capplet_new): Remove annoying debugging output.
    
        * capplet-dir-view-html.c: Rewritten to use jimmac's new interface.
    
        * bcg_top.png, title.png, blank.png, active.png: Added.
    
        * Makefile.am (splash_DATA): Add new pixmap files.
    
        * gnomecc.glade: Remove ugly toolbar.
    
        * capplet-dir-view.[ch]: Remove toolbar-related code.

 control-center/ChangeLog               |  14 ++
 control-center/Makefile.am             |  11 +-
 control-center/capplet-dir-view-html.c | 238 ++++++++++++++++++++-----------
 control-center/capplet-dir-view.c      |  51 -------
 control-center/capplet-dir-view.h      |  15 --
 control-center/capplet-dir.c           |   2 -
 control-center/gnomecc.glade           | 248 +--------------------------------
 7 files changed, 181 insertions(+), 398 deletions(-)

commit bf60a1825422c142054e4b8429374f4c892da735
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 19 02:17:38 2001 +0000

    Cosmetic fixes so taht all the Makefile.am look the same.

 ChangeLog                                 |  4 ++++
 acconfig.h                                |  1 +
 capplets/background/Makefile.am           |  3 +++
 capplets/default-applications/Makefile.am |  1 +
 capplets/keyboard/Makefile.am             | 20 ++++++++++++--------
 capplets/screensaver/Makefile.am          |  1 +
 capplets/sound/Makefile.am                | 21 +++++++++++++--------
 7 files changed, 35 insertions(+), 16 deletions(-)

commit 5852ff8de204b878ed20028b078bc6bdaf4f4aa0
Author: Chema Celorio <chema@celorio.com>
Date:   Thu Jul 19 02:06:34 2001 +0000

    Clean and unify the Makefiles. Clean configure.in
    
    2001-07-18  Chema Celorio  <chema@celorio.com>
    
        * Clean and unify the Makefiles. Clean configure.in

 capplets/desktop-links/Advanced.directory.in.in    |   5 +
 capplets/desktop-links/cd.desktop.in.in            |   7 +
 .../desktop-links/legacy-applications-capplet.png  | Bin 0 -> 5528 bytes
 .../legacy-applications.desktop.in.in              |   7 +
 capplets/desktop-links/panel.desktop.in.in         |   8 +
 capplets/file-types/.cvsignore                     |   3 +-
 capplets/file-types/Makefile.am                    |  61 +-
 capplets/file-types/file-types-capplet.png         | Bin 0 -> 3047 bytes
 capplets/file-types/file-types.desktop.in.in       |   7 +
 capplets/file-types/file-types.desktop.in.in-10478 |   7 +
 capplets/theme-switcher/.cvsignore                 |   4 +-
 capplets/theme-switcher/Makefile.am                |  47 +-
 .../theme-switcher/gtk-theme-selector-capplet.png  | Bin 0 -> 527 bytes
 capplets/theme-switcher/gtk-theme-selector.desktop |   7 -
 .../gtk-theme-selector.desktop.in.in               |   7 +
 .../gtk-theme-selector.desktop_HAS_TRANSLATIONS    |   7 +
 capplets/ui-properties/.cvsignore                  |   4 +-
 capplets/ui-properties/Makefile.am                 |  59 +-
 capplets/ui-properties/behavior-properties.glade   | 924 +++++++++++++++++++++
 capplets/ui-properties/behavior.desktop            |  60 --
 capplets/ui-properties/behavior.desktop.in.in      |   7 +
 .../behavior.desktop_WITH_TRANSLATIONS             |  60 ++
 capplets/ui-properties/main.c                      |   2 +-
 capplets/ui-properties/prefs-widget-app.c          |   4 +-
 capplets/ui-properties/prefs-widget-dialogs.c      |   4 +-
 capplets/ui-properties/prefs-widget-mdi.c          |   2 +-
 capplets/ui-properties/prefs-widget.c              |   3 +-
 27 files changed, 1138 insertions(+), 168 deletions(-)

commit 81d30f0b82e06dc6cf744ee77f6a48c064c7bd85
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 01:13:23 2001 +0000

    Update for new binary name
    
    2001-07-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * Bonobo_Control_Capplet_sound_properties.oaf: Update for new
        binary name

 capplets/sound/Bonobo_Control_Capplet_sound_properties.oaf | 3 ++-
 capplets/sound/ChangeLog                                   | 5 +++++
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 41429f4685829eaa5347c70d04217c554eb30522
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 19 01:01:58 2001 +0000

    Store listener id in property control (quit_cb): Remove listener before
    
    2001-07-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (create_control_cb): Store listener id in
        property control
        (quit_cb): Remove listener before releasing database
        (set_moniker_cb): Kill any existing db object in case the moniker
        is set more than once
        (set_moniker_cb): Connect destroy signal on pf to pf_destroy_cb
        (pf_destroy_cb): Implement

 capplets/common/ChangeLog                 | 10 +++++++
 capplets/common/capplet-util.c            | 43 +++++++++++++++++++++----------
 capplets/sound/sound-properties-capplet.c |  2 +-
 3 files changed, 41 insertions(+), 14 deletions(-)

commit 084d13f34f7b523e21926937bbd6249f05266a88
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 22:53:24 2001 +0000

    gthtml 0.9 is enough

 configure.in | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit ab84bb620b30451ea81dc505ea181dfbd638c85e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jul 18 21:45:38 2001 +0000

    Updated Norwegian (nynorsk) translation. Updated Norwegian (bokml)
    
    2001-07-18  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nn.po: Updated Norwegian (nynorsk) translation.
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog |    7 +-
 po/nn.po     | 1106 +++++++++++++++++++++++++++++++++++++++++++++-------------
 2 files changed, 868 insertions(+), 245 deletions(-)

commit c9e7a9618de2d99552aee660475cb3af0bf6de30
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 21:13:20 2001 +0000

    new icons

 capplets/mime-type/mime-type-capplet.png           | Bin 0 -> 2188 bytes
 capplets/theme-switcher/theme-switcher-capplet.png | Bin 0 -> 527 bytes
 capplets/ui-properties/behavior-capplet.png        | Bin 0 -> 3327 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

commit 8036afb4f23061b8934779019e2f6eb32477965b
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 20:41:18 2001 +0000

    add new icons from jimmac. This guys rulezZZ

 capplets/desktop-links/advanced-directory.png | Bin 0 -> 2117 bytes
 capplets/desktop-links/cd-capplet.png         | Bin 0 -> 5801 bytes
 capplets/desktop-links/panel-capplet.png      | Bin 0 -> 1371 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

commit 5b06f501b4e885fb15e25e14a1b06b650ee60d40
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 18 18:55:34 2001 +0000

    Revert to old prototype. (setup_dialog): Moved signal_connect on demo
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * main.c (create_dialog): Revert to old prototype.
        (setup_dialog): Moved signal_connect on demo button to here.

 capplets/keyboard/ChangeLog | 5 +++++
 capplets/keyboard/main.c    | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 67abfb5e85ccfa496622859e58c4bb87fd918c9d
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 18 18:52:41 2001 +0000

    Revert that.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties-capplet.c (create_dialog): Revert that.

 capplets/sound/ChangeLog                  | 4 ++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit d5956cd268b4138930461a5eff6cdbe9e4d295ea
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Wed Jul 18 18:51:33 2001 +0000

    Oops.

 capplets/common/capplet-util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cefd029e800f59ef18ae66e03e07c5c3097dbdaf
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 18 18:50:44 2001 +0000

    Revert my last proxy-related change.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-util.[ch]: Revert my last proxy-related change.

 capplets/common/ChangeLog      | 4 ++++
 capplets/common/capplet-util.c | 7 ++-----
 capplets/common/capplet-util.h | 2 +-
 3 files changed, 7 insertions(+), 6 deletions(-)

commit 59a807f174e34abd42f24bc0e986bb63738797b1
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 18 18:36:12 2001 +0000

    Rewritten to use bonobo-conf.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * Rewritten to use bonobo-conf.

 .../Bonobo_Control_Capplet_keyboard_properties.oaf |  20 +
 capplets/keyboard/ChangeLog                        |   4 +
 capplets/keyboard/Makefile.am                      |  17 +-
 capplets/keyboard/bonobo-property-editor-range.c   |  70 +++
 capplets/keyboard/bonobo-property-editor-range.h   |   8 +
 capplets/keyboard/keyboard-properties.glade        | 659 +++++++++++++--------
 capplets/keyboard/keyboard-properties.glade.h      |  26 +
 capplets/keyboard/keyboard-properties.xml          |  12 +
 capplets/keyboard/main.c                           | 386 +++++-------
 9 files changed, 715 insertions(+), 487 deletions(-)

commit 574cfdef9dd43d505536a94115cffe292ef6c3b2
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 18 16:13:15 2001 +0000

    Change to reflect new prototype.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * sound-properties-capplet.c (create_dialog): Change to reflect
        new prototype.

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 3181b13b99dd9a30b8230e4b2a21c20e22c6cefe
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jul 18 16:08:32 2001 +0000

    Add a PropertyBag argument so capplet authors can hook up to the proxy.
    
    2001-07-18  Richard Hestilow  <hestilow@ximian.com>
    
        * capplet-util.h (CreateDialogFn): Add a PropertyBag argument so
        capplet authors can hook up to the proxy.
    
        * capplet-util.c (get_control_cb): Pass the proxy bag to setup_cb.
        (capplet_init): Don't free default_moniker until after we print it.

 capplets/common/ChangeLog      |  8 ++++++++
 capplets/common/capplet-util.c | 11 +++++++----
 capplets/common/capplet-util.h |  2 +-
 3 files changed, 16 insertions(+), 5 deletions(-)

commit 71eeb1347e6e0abbb5fb913c45d629878ec4ef10
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Wed Jul 18 10:51:16 2001 +0000

    3d icon

 capplets/keyboard/ChangeLog            |   4 ++++
 capplets/keyboard/keyboard-capplet.png | Bin 3497 -> 3385 bytes
 2 files changed, 4 insertions(+)

commit e7c670aa05f39066898808455a27cd18b89a9ab6
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Wed Jul 18 09:47:30 2001 +0000

    /s/label/_label, /s/low-label/_low-label/, /s/high-label/_high-label/ &&
    
    2001-07-18  Carlos Perell Marn <carlos@gnome-db.org>
    
        * screensavers/*.xml: /s/label/_label, /s/low-label/_low-label/,
        /s/high-label/_high-label/ && removed the i18n section.

 capplets/screensaver/ChangeLog           |  6 ++++++
 capplets/screensaver/screensavers/README | 24 ++++++------------------
 2 files changed, 12 insertions(+), 18 deletions(-)

commit 2f61b51ea6db810439cb3db40a3125558615865e
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 06:41:57 2001 +0000

    Tu quimica con mi piel hacen carga positiva,
    y cuando me acerco a ti hay una bomba explosiva
    tu boca tiene la sal, mi cuerpo el azucar
    y mi corazon esta busca que te busca

 .cvsignore                               | 1 +
 capplets/default-applications/.cvsignore | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

commit ffbdc83c11a49e8df1c203d2f33f030d514d9bc0
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 06:37:59 2001 +0000

    add a version number for gtkhtml

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ab0fef8323889ce988ff8396b0ae4099f841e8cd
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 06:36:24 2001 +0000

    Fix fix fix fix fix & clean stuff. With their changelog entries for your
    pleasure.

 ChangeLog                                          |   6 +
 acconfig.h                                         |   2 +
 capplets/common/.cvsignore                         |   1 +
 capplets/default-applications/ChangeLog            |   6 +
 capplets/default-applications/Makefile.am          |   2 +-
 .../default-applications.desktop.in.in             |   2 +-
 capplets/mouse/ChangeLog                           |   7 +
 capplets/mouse/mouse-properties.glade              |   2 +
 capplets/mouse/prefs-widget.c                      |   9 +-
 capplets/screensaver/ChangeLog                     |  12 ++
 capplets/screensaver/Makefile.am                   |   2 +-
 capplets/screensaver/expr.c                        |   1 +
 capplets/screensaver/prefs-widget.c                |  12 +-
 capplets/screensaver/screensaver-prefs-dialog.c    |   6 +-
 capplets/screensaver/screensaver.desktop.in.in     |   2 +-
 capplets/screensaver/screensavers/Makefile.am      | 182 ++++++++++-----------
 capplets/screensaver/selection-dialog.c            |   4 +-
 configure.in                                       |  80 +++++----
 control-center/ChangeLog                           |   6 +
 control-center/capplet-dir.c                       |  12 +-
 control-center/main.c                              |  12 +-
 21 files changed, 215 insertions(+), 153 deletions(-)

commit 35d967aed2132b888dae2a391eb916b87435a8ac
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 18 03:21:07 2001 +0000

    clean this mess.

 ChangeLog                                          |   4 ++
 acconfig.h                                         |   1 +
 capplets/background/.cvsignore                     |   5 +-
 capplets/background/ChangeLog                      |   4 ++
 capplets/background/Makefile.am                    |  52 +++++++-------
 .../background/background-properties.desktop.in    |   7 --
 capplets/background/background.desktop.in.in       |   7 ++
 capplets/background/main.c                         |   2 +-
 capplets/background/prefs-widget.c                 |   9 ++-
 capplets/default-applications/ChangeLog            |   4 ++
 capplets/default-applications/Makefile.am          |  47 ++++++------
 .../default-application-properties.desktop.in      |   7 --
 .../default-applications-capplet.png               | Bin 0 -> 3047 bytes
 .../default-applications-properties.glade          |   1 +
 .../default-applications.desktop.in.in             |   7 ++
 capplets/desktop-links/.cvsignore                  |   2 +
 capplets/desktop-links/Sawfish/.cvsignore          |  14 +---
 capplets/keyboard/Makefile.am                      |   5 +-
 capplets/keyboard/prefs-widget.c                   |   2 +-
 capplets/mouse/.cvsignore                          |   5 +-
 capplets/mouse/Makefile.am                         |  10 ++-
 capplets/mouse/prefs-widget.c                      |   2 +-
 capplets/screensaver/.cvsignore                    |   5 +-
 capplets/screensaver/ChangeLog                     |   4 ++
 capplets/screensaver/Makefile.am                   |  80 ++++++++++-----------
 capplets/screensaver/main.c                        |   2 +-
 capplets/screensaver/preview.c                     |   2 +-
 .../screensaver/screensaver-properties.desktop.in  |   7 --
 capplets/screensaver/screensaver.desktop.in.in     |   7 ++
 capplets/sound/.cvsignore                          |   4 +-
 capplets/sound/ChangeLog                           |   4 ++
 capplets/sound/Makefile.am                         |  55 +++++++-------
 capplets/sound/sound-properties.desktop.in         |   7 --
 capplets/sound/sound.desktop.in.in                 |   7 ++
 configure.in                                       |  19 +++--
 po/POTFILES.in                                     |  10 +--
 36 files changed, 214 insertions(+), 196 deletions(-)

commit 20c079a31593a12deeb82132246a41f1d102a033
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 17 23:40:23 2001 +0000

    Sigh, this is NOT FUN

 capplets/mouse/Makefile.am         | 6 +++---
 capplets/mouse/mouse.desktop.in.in | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 4e9c851c46f65c5172fb265f3549f55236068da0
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 17 23:36:52 2001 +0000

    Port mouse to the new Makefile.am struct

 capplets/mouse/Makefile.am | 33 +++++++++++++++++++--------------
 capplets/mouse/main.c      |  2 +-
 2 files changed, 20 insertions(+), 15 deletions(-)

commit 7cd21536aec98f94c8c3fba85a0c7d7a5d9c7da6
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 17 23:32:47 2001 +0000

    fix build

 ChangeLog                                  |  4 +++
 acconfig.h                                 |  1 +
 capplets/keyboard/Makefile.am              | 25 +++++++++--------
 capplets/mouse/Makefile.am                 | 43 +++++++++++-------------------
 capplets/mouse/mouse-properties.desktop.in |  7 -----
 capplets/mouse/mouse.desktop.in.in         |  7 +++++
 configure.in                               | 14 +++++-----
 7 files changed, 49 insertions(+), 52 deletions(-)

commit 84a374efd92c39680b4aef6f8e3f7802736932b7
Author: Chema Celorio <chema@celorio.com>
Date:   Tue Jul 17 22:27:34 2001 +0000

    nice and clean just as we like it
    
    2001-07-17  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am: nice and clean just as we like it

 capplets/background/background-capplet.png         | Bin 0 -> 3897 bytes
 capplets/keyboard/.cvsignore                       |   4 +-
 capplets/keyboard/ChangeLog                        |   4 ++
 capplets/keyboard/Makefile.am                      |  41 +++++---------------
 .../keyboard/keyboard-properties.desktop.in.in     |   7 ----
 capplets/keyboard/keyboard.desktop.in.in           |   7 ++++
 capplets/mouse/mouse-capplet.png                   | Bin 0 -> 3047 bytes
 capplets/screensaver/screensaver-capplet.png       | Bin 0 -> 4428 bytes
 capplets/sound/sound-capplet.png                   | Bin 0 -> 4655 bytes
 configure.in                                       |  43 +++++++++++++++++++--
 10 files changed, 62 insertions(+), 44 deletions(-)

commit fe99988f347e9e644b6db22ac751605fcbe51201
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 22:14:19 2001 +0000

    Add mechanism for quitting once the moniker is no longer in use
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
            * bonobo-config-archiver.c (bonobo_config_archiver_new): Add
            mechanism for quitting once the moniker is no longer in use
            (bonobo_config_archiver_new): Make archive a static variable
            (bonobo_config_archiver_new): Explicitly destroy archive when
            program quits
            (timeout_cb): Remove
    
            * capplet-util.c (get_factory_name):
            (get_default_moniker):
            (get_property_name): Use correct names when the full path was
            specified for the executable

 archiver/ChangeLog                |  4 ++++
 archiver/bonobo-config-archiver.c | 47 +++++++++++++++++----------------------
 archiver/util.h                   |  2 +-
 capplets/common/ChangeLog         |  4 ++++
 capplets/common/capplet-util.c    | 38 +++++++++++++++++++++++--------
 5 files changed, 58 insertions(+), 37 deletions(-)

commit 603e18320dd3afce77226e233d70492ee3aaf49e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 20:09:30 2001 +0000

    Destroy the property control when the control or the widget are destroyed
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (get_control_cb): Destroy the property control when the control or
        the widget are destroyed
        (quit_cb): Implement
        (create_control_cb): Connect destroy signal of property control to
        quit_cb

 capplets/common/ChangeLog      |  7 +++++--
 capplets/common/capplet-util.c | 25 ++++++++++++++++++++-----
 2 files changed, 25 insertions(+), 7 deletions(-)

commit 90ffc8a3e616fd6b902677b146def8c92784f559
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 20:09:05 2001 +0000

    Add mechanism for quitting once the moniker is no longer in use
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Add
        mechanism for quitting once the moniker is no longer in use

 archiver/ChangeLog                |  3 +++
 archiver/bonobo-config-archiver.c | 17 +++++++++++++++--
 2 files changed, 18 insertions(+), 2 deletions(-)

commit 9b494a38812ac1082a4c0fd41f38e04f66a59710
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 20:08:42 2001 +0000

    Explicitly unref the property control
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_cancel_cb):
        (capplet_ok_cb): Explicitly unref the property control

 control-center/ChangeLog     |  5 +++++
 control-center/capplet-dir.c | 12 ++++++++++++
 2 files changed, 17 insertions(+)

commit 7e8f457622f715fed4db152c3fef9e38c8cd7a95
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 19:22:51 2001 +0000

    Remove
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (slave_apprise_data): Remove

 archiver/ChangeLog    |  2 ++
 archiver/config-log.c | 21 ---------------------
 2 files changed, 2 insertions(+), 21 deletions(-)

commit 31a81628c4d7313782893ceee01bc3c77bfbaa84
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 19:08:55 2001 +0000

    strdup the string to remove compiler warnings
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_unregister_location):
        (archive_get_location): strdup the string to remove compiler warnings

 archiver/ChangeLog |  3 +++
 archiver/archive.c | 18 ++++++++++++------
 2 files changed, 15 insertions(+), 6 deletions(-)

commit 313127a2e59f3e952fec4be5af8b1fb71157e5f3
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 19:04:33 2001 +0000

    Use return value (location_store_full_snapshot): Use return value
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_store): Use return value
        (location_store_full_snapshot): Use return value

 archiver/ChangeLog  |  5 +++++
 archiver/location.c | 11 +++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 1e7101f61db120c5790895dd2e81c02613191402
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 18:58:02 2001 +0000

    Implement. Return the property name associated with the capplet
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (get_property_name): Implement. Return the property name
        associated with the capplet
        (set_moniker_cb): Use GTK_BIN (pf)->child rather than
        bonobo_control_get_widget
        (get_control_cb): Quit the program when the control or the widget
        are destroyed

 capplets/common/ChangeLog      | 13 ++++++
 capplets/common/capplet-util.c | 94 ++++++++++++++++++++++++++++++++++--------
 2 files changed, 90 insertions(+), 17 deletions(-)

commit 43d56c8e68d7cf66a0dd960815e68a73ccc985b7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 18:34:44 2001 +0000

    Removed -DGLADE_DATADIR
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (INCLUDES): Removed -DGLADE_DATADIR
    
        * capplet-util.c (create_dialog_cb): Use create_widget_cb rather
        than loading from Glade
        (capplet_init): Accept CreateDialogFn and initialize
        create_dialog_cb
        (close_cb): Don't call gtk_object_destroy (dialog)
        (get_control_cb): Rename from create_dialog_cb
    
        * sound-properties-capplet.c (create_dialog): Implement
        (main): Call glade_gnome_init; pass create_dialog to capplet_init
        (setup_dialog): Retrieve the Glade data from the widget passed to
        this function
        (create_dialog): Make sure dialog is destroyed when widget is
    
        * Makefile.am (EXTRA_DIST): Changed Applications_DATA to
        Applications_in_files
        (INCLUDES): Add -DGLADE_DATADIR

 capplets/common/ChangeLog                 | 11 +++++++
 capplets/common/Makefile.am               |  1 -
 capplets/common/capplet-util.c            | 50 ++++++-------------------------
 capplets/common/capplet-util.h            | 11 ++++---
 capplets/sound/ChangeLog                  |  7 +++++
 capplets/sound/Makefile.am                | 13 ++++----
 capplets/sound/sound-properties-capplet.c | 33 ++++++++++++++++++--
 7 files changed, 70 insertions(+), 56 deletions(-)

commit 63fbbec13b0c130a017094857979afb762006356
Author: Carlos Perelló Marín <carlos@src.gnome.org>
Date:   Tue Jul 17 17:34:48 2001 +0000

    shhhh

 capplets/desktop-links/.cvsignore         |  1 +
 capplets/desktop-links/Sawfish/.cvsignore | 12 ++++++++++++
 2 files changed, 13 insertions(+)

commit 49ea622b917f9a10407b7423d821839ef22af1f3
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Tue Jul 17 17:31:16 2001 +0000

    Now use xml-i18n-tools. ditto
    
    2001-07-17  Carlos Perell Marn <carlos@gnome-db.org>
    
            * gnome-hint-properties.desktop: Now use xml-i18n-tools.
            * Sawfish/*.desktop: ditto
    
    2001-07-17  Carlos Perell Marn <carlos@gnome-db.org>
    
            * *.po: Added the strings from Sawfish .desktop files

 capplets/desktop-links/ChangeLog                   |  5 ++
 capplets/desktop-links/Makefile.am                 |  7 +-
 capplets/desktop-links/Sawfish/Sawfish.directory   | 33 --------
 .../desktop-links/Sawfish/Sawfish.directory.in     |  5 ++
 .../Sawfish/appearance-properties.desktop          | 47 -----------
 .../Sawfish/bindings-properties.desktop            | 47 -----------
 .../desktop-links/Sawfish/focus-properties.desktop | 55 -------------
 .../desktop-links/Sawfish/match-properties.desktop | 47 -----------
 .../Sawfish/maximize-properties.desktop            | 47 -----------
 .../desktop-links/Sawfish/meta-properties.desktop  | 39 ---------
 .../desktop-links/Sawfish/misc-properties.desktop  | 48 -----------
 .../desktop-links/Sawfish/move-properties.desktop  | 47 -----------
 .../Sawfish/placement-properties.desktop           | 47 -----------
 .../desktop-links/Sawfish/sound-properties.desktop | 43 ----------
 .../Sawfish/workspace-properties.desktop           | 47 -----------
 .../desktop-links/gnome-hint-properties.desktop    | 49 ------------
 .../desktop-links/gnome-hint-properties.desktop.in |  7 ++
 po/ChangeLog                                       |  4 +
 po/POTFILES.in                                     | 14 ++++
 po/cs.po                                           | 92 ++++++++++++++++++++++
 po/da.po                                           | 92 ++++++++++++++++++++++
 po/de.po                                           | 92 ++++++++++++++++++++++
 po/el.po                                           | 88 +++++++++++++++++++++
 po/es.po                                           | 76 ++++++++++++++++++
 po/fi.po                                           | 88 +++++++++++++++++++++
 po/fr.po                                           | 80 +++++++++++++++++++
 po/gl.po                                           | 92 ++++++++++++++++++++++
 po/hu.po                                           | 88 +++++++++++++++++++++
 po/it.po                                           | 92 ++++++++++++++++++++++
 po/ja.po                                           | 92 ++++++++++++++++++++++
 po/ko.po                                           | 72 +++++++++++++++++
 po/lt.po                                           |  8 ++
 po/no.po                                           | 92 ++++++++++++++++++++++
 po/pl.po                                           | 92 ++++++++++++++++++++++
 po/pt_BR.po                                        | 88 +++++++++++++++++++++
 po/ro.po                                           | 88 +++++++++++++++++++++
 po/ru.po                                           | 80 +++++++++++++++++++
 po/sk.po                                           | 92 ++++++++++++++++++++++
 po/sl.po                                           |  8 ++
 po/sv.po                                           | 92 ++++++++++++++++++++++
 po/tr.po                                           | 84 ++++++++++++++++++++
 po/uk.po                                           |  8 ++
 po/zh_TW.Big5.po                                   |  8 ++
 43 files changed, 1823 insertions(+), 599 deletions(-)

commit 36cb518fc726480c7d96481cf18f89934e58e842
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 16:49:23 2001 +0000

    Removed capplets/sound/prefs-widget.c Removed root-manager files
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * POTFILES.in: Removed capplets/sound/prefs-widget.c
        Removed root-manager files

 po/ChangeLog   | 12 +++++++++---
 po/POTFILES.in |  8 +-------
 2 files changed, 10 insertions(+), 10 deletions(-)

commit 0e87220f2f953a8a3b0577f69b498c5ba2f5f354
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 16:48:52 2001 +0000

    Changed Applications_DATA to Applications_in_files
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (EXTRA_DIST): Changed Applications_DATA to
        Applications_in_files

 capplets/background/Makefile.am  | 2 +-
 capplets/mouse/ChangeLog         | 5 +++++
 capplets/mouse/Makefile.am       | 2 +-
 capplets/screensaver/ChangeLog   | 5 +++++
 capplets/screensaver/Makefile.am | 2 +-
 capplets/sound/ChangeLog         | 3 +++
 capplets/sound/Makefile.am       | 2 +-
 7 files changed, 17 insertions(+), 4 deletions(-)

commit 049d96af7676ef9629d1879191d700ec6e87de48
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 16:14:23 2001 +0000

    Added header files, including missing defaults.h (EXTRA_DIST): Removed
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (default_application_properties_capplet_SOURCES):
        Added header files, including missing defaults.h
        (EXTRA_DIST): Removed header files

 capplets/default-applications/ChangeLog   |  6 ++++++
 capplets/default-applications/Makefile.am | 21 +++++++++------------
 2 files changed, 15 insertions(+), 12 deletions(-)

commit eb630dcb697a0a697392a5cd7ac58f25cab16f69
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 16:08:27 2001 +0000

    Added missing icons_DATA
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (EXTRA_DIST): Added missing icons_DATA

 capplets/keyboard/ChangeLog   | 4 ++++
 capplets/keyboard/Makefile.am | 9 +++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 8dd9565b08ab4b5739e863c6764c5e0607b68a48
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 15:48:16 2001 +0000

    Disabled rollback capplet
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (AC_OUTPUT): Disabled rollback capplet
    
        * capplets/Makefile.am (always_built_SUBDIRS): Disabled rollback
        capplet compile

 ChangeLog            | 7 +++++++
 capplets/Makefile.am | 4 ++--
 configure.in         | 4 ++--
 3 files changed, 11 insertions(+), 4 deletions(-)

commit 76ce4bd35ae25cac384aa5f00078d168884b4579
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 15:29:57 2001 +0000

    Sensitize events check box only if ESD is already enabled
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties-capplet.c (setup_dialog): Sensitize events
        check box only if ESD is already enabled

 capplets/sound/ChangeLog                  | 3 +++
 capplets/sound/sound-properties-capplet.c | 2 ++
 2 files changed, 5 insertions(+)

commit 18878ac402552dd87994fc9ca182194a44b00d3c
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Jul 17 15:22:54 2001 +0000

    Removed sound-properties.desktop since it's now generated from .desktop.in

 capplets/sound/sound-properties.desktop | 62 ---------------------------------
 1 file changed, 62 deletions(-)

commit 89573fa7343a04a4e43ddd7545c6687153143932
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 17 15:21:23 2001 +0000

    Prune dialog down to the two check buttons
    
    2001-07-17  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties.glade: Prune dialog down to the two check
        buttons

 capplets/sound/ChangeLog                |   5 +
 capplets/sound/sound-properties.desktop |  62 +++++++
 capplets/sound/sound-properties.glade   | 295 ++++----------------------------
 3 files changed, 104 insertions(+), 258 deletions(-)

commit 114970885b6684e6979fd635f322e8fdf7e9acc4
Author: Jakub Steiner <jimmac@src.gnome.org>
Date:   Tue Jul 17 10:31:32 2001 +0000

    hi-res images

 capplets/mouse/ChangeLog       |   4 ++++
 capplets/mouse/mouse-left.png  | Bin 8049 -> 9532 bytes
 capplets/mouse/mouse-right.png | Bin 7894 -> 9448 bytes
 3 files changed, 4 insertions(+)

commit 1da1ce09b7d2b8bed669968674900b5142587485
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 17 08:58:58 2001 +0000

    fix the icon installation

 capplets/keyboard/Makefile.am | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 472c6272cf3dd5e0942fdd435a1577c71ffbd73a
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Tue Jul 17 08:35:15 2001 +0000

    clean the Makefile and start moving stuff to configure.in

 ChangeLog                     |  3 +++
 acconfig.h                    |  1 +
 capplets/keyboard/Makefile.am | 22 +++++-----------------
 capplets/keyboard/main.c      |  2 +-
 configure.in                  | 13 +++++++++++--
 5 files changed, 21 insertions(+), 20 deletions(-)

commit 30b5340397786dfc1ac1a3afcc87d428ab15307e
Author: Chema Celorio <chema@celorio.com>
Date:   Tue Jul 17 07:40:43 2001 +0000

    desktop.in.in -> desktop.in ->desktop so that we can merge the incondir
    
    2001-07-17  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am ($(desktop).in): desktop.in.in -> desktop.in ->desktop
        so that we can merge the incondir path.
        * add keyboard-capplet.png (by jimmac) an use it

 capplets/keyboard/.cvsignore                       |   1 +
 capplets/keyboard/ChangeLog                        |   6 ++++
 capplets/keyboard/Makefile.am                      |  31 +++++++++++++++++----
 capplets/keyboard/keyboard-capplet.png             | Bin 0 -> 3497 bytes
 capplets/keyboard/keyboard-properties.desktop.in   |   7 -----
 .../keyboard/keyboard-properties.desktop.in.in     |   7 +++++
 6 files changed, 39 insertions(+), 13 deletions(-)

commit 7c6642e2f01e5b40ac63954c914d71194e278cda
Author: Chema Celorio <chema@celorio.com>
Date:   Tue Jul 17 07:09:26 2001 +0000

    requre pkg-config 0.8.0 (CINNAMON_CONTROL_CENTER_ICONS_DIR): add
    
    2001-07-17  Chema Celorio  <chema@celorio.com>
    
        * configure.in (vers): requre pkg-config 0.8.0
        (CINNAMON_CONTROL_CENTER_ICONS_DIR): add

 ChangeLog    | 5 +++++
 configure.in | 7 +++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 52934e245569d5703f17843da626cfd05772a63c
Author: Chema Celorio <chema@celorio.com>
Date:   Mon Jul 16 22:43:52 2001 +0000

    is gedit not gEdit plues it is the default editor, not emacs ;-) (Yes, i
    
    2001-07-16  Chema Celorio  <chema@celorio.com>
    
        * default-application-properties.c (possible_editors): is gedit not gEdit
        plues it is the default editor, not emacs ;-) (Yes, i MAY be a little biased
        here)

 capplets/default-applications/ChangeLog            |  6 +++++
 .../default-application-properties.c               | 30 +++++++++++-----------
 2 files changed, 21 insertions(+), 15 deletions(-)

commit c073f5c89dffc2520768bb5a9e90ae2c2387141d
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Mon Jul 16 22:25:36 2001 +0000

    Woops

 capplets/desktop-links/Sawfish/Sawfish.directory | 33 ++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

commit 386e1ec16024f768a0afbed5a08cd7e65059f1bb
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Mon Jul 16 22:22:51 2001 +0000

    sh

 capplets/default-applications/.cvsignore | 6 ++++++
 1 file changed, 6 insertions(+)

commit 1b3566aadf21bd606a2143ee648094b3ce3e29a8
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 16 22:21:11 2001 +0000

    Fix typo in install-data-local.
    
    2001-07-16  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am: Fix typo in install-data-local.

 capplets/default-applications/ChangeLog   | 4 ++++
 capplets/default-applications/Makefile.am | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3cd2a87b923d13cbed16d0c5f60e255802dd9439
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 16 21:22:14 2001 +0000

    Create Makefile in capplets/desktop-links/Sawfish.
    
    2001-07-16  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Create Makefile in capplets/desktop-links/Sawfish.

 ChangeLog                                          |  4 ++
 capplets/desktop-links/ChangeLog                   |  6 +++
 capplets/desktop-links/Makefile.am                 |  2 +
 capplets/desktop-links/README                      |  1 +
 .../Sawfish/appearance-properties.desktop          | 47 ++++++++++++++++++
 .../Sawfish/bindings-properties.desktop            | 47 ++++++++++++++++++
 .../desktop-links/Sawfish/focus-properties.desktop | 55 ++++++++++++++++++++++
 .../desktop-links/Sawfish/match-properties.desktop | 47 ++++++++++++++++++
 .../Sawfish/maximize-properties.desktop            | 47 ++++++++++++++++++
 .../desktop-links/Sawfish/meta-properties.desktop  | 39 +++++++++++++++
 .../desktop-links/Sawfish/misc-properties.desktop  | 48 +++++++++++++++++++
 .../desktop-links/Sawfish/move-properties.desktop  | 47 ++++++++++++++++++
 .../Sawfish/placement-properties.desktop           | 47 ++++++++++++++++++
 .../desktop-links/Sawfish/sound-properties.desktop | 43 +++++++++++++++++
 .../Sawfish/workspace-properties.desktop           | 47 ++++++++++++++++++
 configure.in                                       |  1 +
 16 files changed, 528 insertions(+)

commit ee51ddb4a84c7c870eceb4a91fa57b246b383a8f
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 16 20:51:29 2001 +0000

    Fix call to gnome_capplet_init.
    
    2001-07-16  Richard Hestilow  <hestilow@ximian.com>
    
        * capplets/file-types/file-types-capplet.c: Fix call to
        gnome_capplet_init.
    
        * capplets/mime-type/mime-type-capplet.c: Ditto.
    
        * capplets/ui-properties/main.c: Ditto.
    
        * capplets/theme-switcher: Rename binary, .desktop, etc to
        "gtk-theme-selector". Change description/name in .desktop too.

 capplets/file-types/file-types-capplet.c           |  2 +-
 capplets/mime-type/mime-type-capplet.c             |  2 +-
 capplets/theme-switcher/Makefile.am                | 12 ++---
 capplets/theme-switcher/gtk-theme-selector.desktop |  7 +++
 capplets/theme-switcher/main.c                     |  2 +-
 capplets/theme-switcher/theme-selector.desktop     | 61 ----------------------
 capplets/ui-properties/main.c                      |  2 +-
 7 files changed, 17 insertions(+), 71 deletions(-)

commit fe2c91c11b56aade764dc18645c335b4abf991e5
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 16 18:20:43 2001 +0000

    ChangeLog started.
    
    2001-07-16  Richard Hestilow  <hestilow@ximian.com>
    
        * ChangeLog started.
    
        * default-application-properties.c (main): Pass correct name to
        capplet_widget_init, for .desktop file magic.

 capplets/default-applications/ChangeLog                        | 6 ++++++
 capplets/default-applications/default-application-properties.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 40c36b275c889636a9bb771c08b130be5b4e8879
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Mon Jul 16 18:08:15 2001 +0000

    *** empty log message ***

 0 files changed

commit 856d747ec7d0d71756c74b68d309d48f91fb6f17
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Mon Jul 16 18:07:52 2001 +0000

    Create Makefiles in capplets/desktop-links and
    
    2001-07-16  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Create Makefiles in capplets/desktop-links and
        capplets/default-applications.
    
        * capplets/desktop-links: Added.
    
        * capplets/default-applications: Added.

 ChangeLog                                          |   9 +
 capplets/Makefile.am                               |   3 +-
 capplets/default-applications/Makefile.am          |  32 +
 capplets/default-applications/callbacks.c          | 281 ++++++++
 capplets/default-applications/callbacks.h          |  94 +++
 .../default-application-properties.c               | 756 +++++++++++++++++++++
 .../default-application-properties.desktop.in      |   7 +
 capplets/default-applications/defaults.h           |  43 ++
 capplets/default-applications/interface.c          | 713 +++++++++++++++++++
 capplets/default-applications/interface.h          |   7 +
 capplets/default-applications/support.c            | 146 ++++
 capplets/default-applications/support.h            |  34 +
 capplets/desktop-links/ChangeLog                   |   7 +
 capplets/desktop-links/Makefile.am                 |   8 +
 capplets/desktop-links/README                      |   4 +
 .../desktop-links/gnome-hint-properties.desktop    |  49 ++
 configure.in                                       |   2 +
 17 files changed, 2194 insertions(+), 1 deletion(-)

commit 1a479d08229957128a7eeb76cf586a0c50278dd8
Author: Carlos Perelló Marín <carlos@src.gnome.org>
Date:   Mon Jul 16 17:20:12 2001 +0000

    Fixed

 po/no.po | 1 -
 1 file changed, 1 deletion(-)

commit 068c095238827a62ad6e170864ebbbd20c7b2906
Author: Carlos Perell Marn <carlos@gnome-db.org>
Date:   Mon Jul 16 17:04:18 2001 +0000

    Renamed to *.directory.in to be used with xml-i18n-tools. Renamed to
    
    2001-07-14  Carlos Perell Marn <carlos@gnome-db.org>
    
            * *.directory: Renamed to *.directory.in to be used with
            xml-i18n-tools.
            * *.desktop: Renamed to *.desktop to be used with xml-i18n-tools.
            * *.glade: Modified to not generate the glade.h files.
            * *.glade.h: Removed.
            * Makefile.am: Modify to use xml-i18n-tools
            * configure.in: ditto.
            * autogen.sh: ditto, now we use the macros/autogen.sh
    
    2001-07-14  Carlos Perell Marn <carlos@gnome-db.org>
    
            * .cvsignore: ssshhhh
    
    2001-07-14  Carlos Perell Marn <carlos@gnome-db.org>
    
            * screensavers/*.xml: /s/label/_label, /s/low-label/_low-label/,
            /s/high-label/_high-label/: Changed to let xml-i18n-tools extract
            this labels.
            * extract-labels.c: Removed, now, we use xml-i18n-tools.
            * preferences.c: /s/label/_label, /s/low-label/_low-label/,
            /s/high-label/_high-label/: Changed to sync with the xml changes.
            * screensaver-prefs-dialog.c: ditto.
    
    2001-07-16  Carlos Perell Marn <carlos@gnome-db.org>
    
            * no.po: Solved some conflicts with my patch.
    
    2001-07-14  Carlos Perell Marn <carlos@gnome-db.org>
    
            * POTFILES.in: Updated to reflect the xml-i18n-tools use.
            * *.po: Added the .directory && .desktop translations.
            * update.*: Removed.
            * wa.po: Added.
            * es.po: Updated Spanish translation.

 .cvsignore                                         |    8 +-
 ChangeLog                                          |   13 +-
 Gnome.directory                                    |   63 -
 Gnome.directory.in                                 |    4 +
 Makefile.am                                        |   14 +-
 autogen.sh                                         |  126 +-
 capplets/background/.cvsignore                     |    1 +
 capplets/background/Makefile.am                    |   13 +-
 capplets/background/background-properties.desktop  |   54 -
 .../background/background-properties.desktop.in    |    7 +
 capplets/background/background-properties.glade    |    2 -
 capplets/background/background-properties.glade.h  |   30 -
 capplets/common/.cvsignore                         |    3 +
 capplets/common/ChangeLog                          |    4 +
 capplets/keyboard/.cvsignore                       |    1 +
 capplets/keyboard/Makefile.am                      |   13 +-
 capplets/keyboard/keyboard-properties.desktop      |   61 -
 capplets/keyboard/keyboard-properties.desktop.in   |    7 +
 capplets/keyboard/keyboard-properties.glade        |    2 -
 capplets/keyboard/keyboard-properties.glade.h      |   22 -
 capplets/mouse/.cvsignore                          |    1 +
 capplets/mouse/Makefile.am                         |   13 +-
 capplets/mouse/mouse-properties.desktop            |   61 -
 capplets/mouse/mouse-properties.desktop.in         |    7 +
 capplets/mouse/mouse-properties.glade              |    2 -
 capplets/mouse/mouse-properties.glade.h            |   16 -
 capplets/rollback/.cvsignore                       |    1 +
 capplets/rollback/Makefile.am                      |   13 +-
 capplets/rollback/rollback.desktop                 |    8 -
 capplets/rollback/rollback.desktop.in              |    6 +
 capplets/rollback/rollback.glade                   |    2 -
 capplets/rollback/rollback.glade.h                 |   26 -
 capplets/screensaver/.cvsignore                    |    1 +
 capplets/screensaver/ChangeLog                     |   10 +
 capplets/screensaver/Makefile.am                   |   14 +-
 capplets/screensaver/preferences.c                 |    4 +-
 capplets/screensaver/screensaver-prefs-dialog.c    |   18 +-
 .../screensaver/screensaver-properties.desktop     |   53 -
 .../screensaver/screensaver-properties.desktop.in  |    7 +
 capplets/screensaver/screensaver-properties.glade  |    2 -
 .../screensaver/screensaver-properties.glade.h     |   37 -
 capplets/screensaver/screensavers/3d_clock.xml     |   16 +-
 capplets/screensaver/screensavers/Makefile.am      |  127 +-
 capplets/screensaver/screensavers/ant.xml          |   40 +-
 capplets/screensaver/screensavers/attraction.xml   |   32 +-
 capplets/screensaver/screensavers/blitspin.xml     |   12 +-
 capplets/screensaver/screensavers/bouboule.xml     |   12 +-
 capplets/screensaver/screensavers/braid.xml        |    4 +-
 capplets/screensaver/screensavers/bsod.xml         |    6 +-
 capplets/screensaver/screensavers/bubbles.xml      |   12 +-
 capplets/screensaver/screensavers/compass.xml      |   10 +-
 capplets/screensaver/screensavers/coral.xml        |   10 +-
 capplets/screensaver/screensavers/crystal.xml      |   16 +-
 capplets/screensaver/screensavers/cynosure.xml     |   12 +-
 capplets/screensaver/screensavers/decayscreen.xml  |    6 +-
 capplets/screensaver/screensavers/deco.xml         |    8 +-
 capplets/screensaver/screensavers/discrete.xml     |   10 +-
 capplets/screensaver/screensavers/drift.xml        |   14 +-
 capplets/screensaver/screensavers/epicycle.xml     |   10 +-
 capplets/screensaver/screensavers/extract-labels.c |   96 -
 capplets/screensaver/screensavers/fadeplot.xml     |   14 +-
 capplets/screensaver/screensavers/flag.xml         |   20 +-
 capplets/screensaver/screensavers/flame.xml        |   18 +-
 capplets/screensaver/screensavers/forest.xml       |   10 +-
 capplets/screensaver/screensavers/goop.xml         |   12 +-
 capplets/screensaver/screensavers/grav.xml         |   10 +-
 capplets/screensaver/screensavers/greynetic.xml    |    6 +-
 capplets/screensaver/screensavers/halo.xml         |   16 +-
 capplets/screensaver/screensavers/helix.xml        |    6 +-
 capplets/screensaver/screensavers/hopalong.xml     |   14 +-
 capplets/screensaver/screensavers/hypercube.xml    |   10 +-
 capplets/screensaver/screensavers/ifs.xml          |    4 +-
 capplets/screensaver/screensavers/jigsaw.xml       |    2 +-
 capplets/screensaver/screensavers/julia.xml        |   10 +-
 capplets/screensaver/screensavers/kaleidescope.xml |   12 +-
 capplets/screensaver/screensavers/laser.xml        |    8 +-
 capplets/screensaver/screensavers/lightning.xml    |    4 +-
 capplets/screensaver/screensavers/lisa.xml         |   14 +-
 capplets/screensaver/screensavers/lmorph.xml       |   14 +-
 capplets/screensaver/screensavers/maze.xml         |   20 +-
 capplets/screensaver/screensavers/moire.xml        |   12 +-
 capplets/screensaver/screensavers/munch.xml        |   10 +-
 capplets/screensaver/screensavers/pedal.xml        |   14 +-
 capplets/screensaver/screensavers/pyro.xml         |   10 +-
 capplets/screensaver/screensavers/qix.xml          |   36 +-
 capplets/screensaver/screensavers/rorschach.xml    |   12 +-
 capplets/screensaver/screensavers/sierpinski.xml   |    8 +-
 capplets/screensaver/screensavers/spiral.xml       |   14 +-
 capplets/screensaver/screensavers/starfish.xml     |   18 +-
 capplets/screensaver/screensavers/triangle.xml     |    4 +-
 capplets/screensaver/screensavers/vines.xml        |    4 +-
 capplets/screensaver/screensavers/xroger.xml       |    2 +-
 capplets/sound/.cvsignore                          |    1 +
 capplets/sound/Makefile.am                         |   13 +-
 capplets/sound/sound-properties.desktop            |   62 -
 capplets/sound/sound-properties.desktop.in         |    7 +
 capplets/sound/sound-properties.glade              |    2 -
 capplets/sound/sound-properties.glade.h            |   14 -
 configure.in                                       |    6 +-
 control-center/.cvsignore                          |    1 +
 control-center/Makefile.am                         |    6 +-
 control-center/gnomecc.desktop                     |   62 -
 control-center/gnomecc.desktop.in                  |    7 +
 control-center/gnomecc.glade                       |    2 -
 control-center/gnomecc.glade.h                     |   18 -
 po/ChangeLog                                       |   12 +
 po/POTFILES.in                                     |    9 +-
 po/az.po                                           | 2477 ++++++--------
 po/ca.po                                           |   44 +
 po/cs.po                                           |   48 +
 po/da.po                                           | 2402 ++++++-------
 po/de.po                                           | 2236 ++++++------
 po/el.po                                           |   36 +
 po/en_GB.po                                        |    4 +
 po/es.po                                           | 3591 +++++++-------------
 po/et.po                                           |   48 +
 po/fi.po                                           | 2239 ++++++------
 po/fr.po                                           |   48 +
 po/ga.po                                           | 2391 ++++++-------
 po/gl.po                                           |   44 +
 po/hr.po                                           |    4 +
 po/hu.po                                           |   44 +
 po/it.po                                           |   44 +
 po/ja.po                                           | 2647 +++++++--------
 po/ko.po                                           |   44 +
 po/lt.po                                           |   44 +
 po/nl.po                                           |    4 +
 po/no.po                                           |  914 +++++
 po/pl.po                                           |   48 +
 po/pt.po                                           |   44 +
 po/pt_BR.po                                        |   44 +
 po/ro.po                                           |   44 +
 po/ru.po                                           | 2404 ++++++-------
 po/sk.po                                           | 2417 ++++++-------
 po/sl.po                                           |   48 +
 po/sv.po                                           |   48 +
 po/tr.po                                           | 2253 ++++++------
 po/uk.po                                           | 2500 ++++++--------
 po/update.pl                                       |  166 -
 po/update.sh                                       |   45 -
 po/wa.po                                           |   56 +
 po/zh_CN.GB2312.po                                 |   44 +
 po/zh_TW.Big5.po                                   |   44 +
 143 files changed, 14002 insertions(+), 17349 deletions(-)

commit 1fd58229f3c6de01bba3ca4fdcacbe4215f599ba
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jul 15 21:35:39 2001 +0000

    Added AM_PROG_XML_I18N_TOOLS.
    
    2001-07-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * configure.in: Added AM_PROG_XML_I18N_TOOLS.

 ChangeLog    | 4 ++++
 configure.in | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 26b2dc0ce099d95370d47ad49f9508902500a678
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Sun Jul 15 21:15:39 2001 +0000

    Shh

 .cvsignore | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 834dfe16b13d3b2dbcfd206f8766beba54a44c93
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Jul 15 21:10:30 2001 +0000

    Added Norwegian (nynorsk) translation. Updated Norwegian (bokml)
    
    2001-07-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * nn.po: Added Norwegian (nynorsk) translation.
        * no.po: Updated Norwegian (bokml) translation.

 po/ChangeLog   |    5 +
 po/POTFILES.in |  123 +--
 po/nn.po       | 1037 ++++++++++++++++++++++
 po/no.po       | 2660 ++++++++++++++++++++++----------------------------------
 4 files changed, 2157 insertions(+), 1668 deletions(-)

commit 2d56c92b17cbb39f41552bae7ab126f5c8e5ed7a
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Sat Jul 14 07:21:33 2001 +0000

    typo

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dd5841ccc7d5aa082d3033a9e40895c8160b784e
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Sat Jul 14 03:21:17 2001 +0000

    include the right headers, don't hack arround gnome-xml brokenes

 capplets/screensaver/screensavers/extract-labels.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3cb34369909b99632545ec145e69278e389b896a
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Sat Jul 14 03:05:54 2001 +0000

    we don't need gnome-vfs, remove the check for it

 ChangeLog    | 2 ++
 configure.in | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

commit bc6834b61ff738feeda92b44a41fa714504d625b
Author: Chema Celorio <chema@celorio.com>
Date:   Sat Jul 14 03:04:57 2001 +0000

    check for capplets/common/capplet-util.h
    
    2001-07-13  Chema Celorio  <chema@celorio.com>
    
        * autogen.sh (PKG_NAME): check for capplets/common/capplet-util.h
    
        * configure.in (capplet_modules): pkgconfig 0.8.0 now handles
        gnome-vfs. No need to call gnome-vfs-config.

 ChangeLog    | 7 +++++++
 autogen.sh   | 3 +--
 configure.in | 9 +--------
 3 files changed, 9 insertions(+), 10 deletions(-)

commit 8459555f6568e35e2eccd5a113063f69b0de2f53
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 13 19:58:58 2001 +0000

    Return NULL in the case that the control is already present
    
    2001-07-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-util.c (create_dialog_cb): Return NULL in the case that
        the control is already present
    
        * capplet-dir.c (capplet_control_launch): Accept window_title
        parameter and use it as the title
        (capplet_activate): Pass entry->name to capplet_control_launch
        (capplet_control_launch): Don't print error and use correct test
        for control_ref == CORBA_OBJECT_NIL

 capplets/common/ChangeLog      | 5 +++++
 capplets/common/capplet-util.c | 2 +-
 control-center/ChangeLog       | 2 ++
 control-center/capplet-dir.c   | 4 ++--
 4 files changed, 10 insertions(+), 3 deletions(-)

commit fa695ff9ee88737462a1c6302695aa0d0f6d4193
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 13 19:49:31 2001 +0000

    Accept window_title parameter and use it as the title (capplet_activate):
    
    2001-07-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Accept window_title
        parameter and use it as the title
        (capplet_activate): Pass entry->name to capplet_control_launch

 control-center/ChangeLog     | 6 ++++++
 control-center/capplet-dir.c | 6 +++---
 control-center/capplet-dir.h | 3 ++-
 control-center/main.c        | 2 +-
 4 files changed, 12 insertions(+), 5 deletions(-)

commit 41255aeb6dad38ab2f6878b2a35abcd26637479d
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Fri Jul 13 19:21:52 2001 +0000

    On the way to get a NICE HTML view

 control-center/ChangeLog               |  6 ++++++
 control-center/capplet-dir-view-html.c | 22 ++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 159178f15d7892bd19a043a3e9e03b62c9f92812
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Jul 13 18:51:28 2001 +0000

    Added common library in capplets/common
    Moved code from capplets/sound/sound-properties-capplet.c to common library

 ChangeLog                                 |   6 +
 capplets/Makefile.am                      |   2 +-
 capplets/common/Makefile.am               |  15 ++
 capplets/common/capplet-util.c            | 353 ++++++++++++++++++++++++++++++
 capplets/common/capplet-util.h            | 102 +++++++++
 capplets/sound/Makefile.am                |  16 +-
 capplets/sound/sound-properties-capplet.c | 326 ++-------------------------
 configure.in                              |   1 +
 8 files changed, 499 insertions(+), 322 deletions(-)

commit 5fa0b14bd7b37a2afdc5b7013df771e8a5b0b011
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Fri Jul 13 17:21:49 2001 +0000

    init gconf after oaf

 control-center/main.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 78d0bbfbdb14ab05de26db6651d9fdb03f2140d0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jul 13 17:20:01 2001 +0000

    Resolve configuration database and store in property frame (apply_cb):
    
    2001-07-13  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties-capplet.c (set_moniker_cb): Resolve
        configuration database and store in property frame
        (apply_cb): Retrieve configuration database from property frame
        (create_control_cb): Don't store config database in property
        control
        (create_control_cb): Add listener for property change in config
        database
        (changed_cb): Implement

 capplets/sound/ChangeLog                  | 11 +++++++++++
 capplets/sound/sound-properties-capplet.c | 32 ++++++++++++++++++++++++++-----
 2 files changed, 38 insertions(+), 5 deletions(-)

commit 8ba458e12ef5ca931ce4f70a97918227bebec4bd
Author: jacob berkman <jacob@ximian.com>
Date:   Fri Jul 13 17:19:50 2001 +0000

    initialize gconf if gtkhtml is gconf-enabled
    
    2001-07-13  jacob berkman  <jacob@ximian.com>
    
        * main.c (main): initialize gconf if gtkhtml is gconf-enabled

 control-center/ChangeLog | 4 ++++
 control-center/main.c    | 7 +++++++
 2 files changed, 11 insertions(+)

commit 50d12d5f222046fbe7a3fd7b58ecd140dde4470b
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Fri Jul 13 00:10:32 2001 +0000

    bump the pkg-config version

 .cvsignore   | 3 ++-
 ChangeLog    | 5 +++++
 configure.in | 6 +++---
 3 files changed, 10 insertions(+), 4 deletions(-)

commit 64fe5d975c063e8427438dec2a32c6b5f8d6edb1
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 12 23:04:34 2001 +0000

    Create Makefiles for capplets/desktop-links,
    
    2001-07-12  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Create Makefiles for capplets/desktop-links,
        capplets/default-applications, and capplets/url-properties.
    
        * capplets/desktop-links: Added.
    
        * capplets/default-applications: Added
    
        * capplets/url-properties/ChangeLog: Added
    
        * capplets/*/Makefile.am: Install into Advanced.

 capplets/file-types/Makefile.am                   | 4 ++--
 capplets/mime-type/Makefile.am                    | 4 ++--
 capplets/theme-switcher/Makefile.am               | 4 ++--
 capplets/ui-properties/Makefile.am                | 4 ++--
 capplets/url-properties/url-properties.desktop.in | 7 +++++++
 capplets/wm-properties/Makefile.am                | 4 ++--
 6 files changed, 17 insertions(+), 10 deletions(-)

commit 4f09b084327eb24616ca64be61cc9caa4e881c1a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 21:40:03 2001 +0000

    Disable launch of esd, due to esd's general suckiness
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties-capplet.c (apply_settings): Disable launch of
        esd, due to esd's general suckiness

 capplets/sound/ChangeLog                  | 3 +++
 capplets/sound/sound-properties-capplet.c | 2 ++
 2 files changed, 5 insertions(+)

commit a01cd1f4d7aebcda8d87339b948e5728ef15e0b4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 21:23:03 2001 +0000

    Add check for the correct version of bonobo-conf Bump version number to
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Add check for the correct version of bonobo-conf
        Bump version number to 1.3.10

 ChangeLog    |  5 +++++
 configure.in | 10 +++++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit e9ac4333e764c5cf93891ad026364b12c0ad51bb
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 12 21:07:02 2001 +0000

    Fix exec line

 capplets/sound/sound-properties.desktop | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3db03400d448d2cd504b6b229b4bee7aa732c8a1
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 21:06:24 2001 +0000

    Fix position of capplet name in the Bonobo case (capplet_new): Don't abort
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_activate): Fix position of capplet name
        in the Bonobo case
        (capplet_new): Don't abort if the entry says to run gnomecc

 control-center/ChangeLog     | 6 ++++++
 control-center/capplet-dir.c | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit d6ec57650d9a32cbef9c42e5825acffa1b925904
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 20:32:09 2001 +0000

    Logic fix.
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_get_current_location_id): Logic fix.

 archiver/ChangeLog | 1 +
 archiver/archive.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 85bc24c3f43084cfc82efa6501806c3129d283a7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 20:31:25 2001 +0000

    Clear appropriate global archive pointer
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_destroy): Clear appropriate global archive pointer

 archiver/ChangeLog | 4 ++++
 archiver/archive.c | 5 +++++
 2 files changed, 9 insertions(+)

commit 3804a229dad37fd2286930bfcb49ef6c73d8ee99
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 19:42:51 2001 +0000

    Update to use correct names for settings
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties.xml: Update to use correct names for settings
    
        * sound-properties-capplet.c (set_moniker_cb): Change event_sound
        to event_sounds

 capplets/sound/ChangeLog                  | 7 +++++++
 capplets/sound/sound-properties-capplet.c | 2 +-
 capplets/sound/sound-properties.xml       | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit 021cafaa5f188e768fe49bd31a0f46a6cdb9c419
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 12 19:37:15 2001 +0000

    update to reflect the new location of the scripts

 archiver/ChangeLog   | 4 ++++
 archiver/Makefile.am | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 10e8b799a705ce1dc0c8c30b44a56247c176ac26
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 12 19:15:36 2001 +0000

    Only try to store a full snapshot if we are in a global archive
    
    2001-07-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_get_current_location_id): Only try to store a
        full snapshot if we are in a global archive
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Store
        real_name in archiver_db
        (bonobo_config_archiver_destroy): Use archiver_db->real_name with
        bonobo_url_register

 archiver/ChangeLog                | 10 ++++++++++
 archiver/archive.c                |  4 +++-
 archiver/bonobo-config-archiver.c | 11 +++++++----
 archiver/bonobo-config-archiver.h |  1 +
 4 files changed, 21 insertions(+), 5 deletions(-)

commit 24c947b83c74e4b6f7a903778ae0cde5dd357221
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 12 17:01:14 2001 +0000

    Remove a bunch of stuff from the old control-center.
    
    2001-07-12  Richard Hestilow  <hestilow@ximian.com>
    
        * Makefile.am: Remove a bunch of stuff from the old control-center.
    
        * configure.in: Ditto.
    
        * capplets/Makefile.am: Ditto.
    
        * po/POTFILES.in: Ditto
    
        * autogen.sh: Look for the right directory structure.
    
        * capplets/file-types/Makefile.am: Compile the file-types-* files,
        not nautilus-mime-type-* files (they were renamed.)
    
        * capplets/file-types/*.c: Include the renamed headers.
    
        * capplets/file-types/libuuid/Makefile.am: Change $(GLIB_CFLAGS)
        to @GLIB_CFLAGS@ for pkg-config purposes.

 capplets/file-types/Makefile.am                  | 13 ++++++-------
 capplets/file-types/file-types-capplet-dialogs.c |  4 ++--
 capplets/file-types/file-types-capplet.c         |  6 +++---
 capplets/file-types/file-types-icon-entry.c      |  4 ++--
 capplets/file-types/libuuid/Makefile.am          |  2 +-
 5 files changed, 14 insertions(+), 15 deletions(-)

commit 6efd5666e39816f2f740968bc778e80aa4c1f25d
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 12 14:13:08 2001 +0000

    Indentation tweak

 capplets/sound/sound-properties-capplet.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

commit 8165b4f2096c26dc85aadc8764e8d7ac0696b4fb
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 12 07:55:31 2001 +0000

    bump the version

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 47a3b32008199904bb8ee5a6da9de87b315036e9
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 12 07:37:43 2001 +0000

    The root manager is disabled for now

 ChangeLog    | 5 +++++
 configure.in | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2d866ad94ee9d0089c1ab521598d1bbca681b5b0
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jul 12 05:08:36 2001 +0000

    remove the root-manager for now. added an explanation to Makefile.am

 Makefile.am         | 9 ++++++++-
 archiver/.cvsignore | 4 ++++
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 5852ff34c493531fcceaa1c6d4e80c8828eaa414
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Thu Jul 12 03:02:35 2001 +0000

    Look for libcapplet, not libcapplet2.
    
    2001-07-11  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in (capplet_modules): Look for libcapplet, not
        libcapplet2.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit ab68cdbf40146cdf78ea6317c2b5c5c56258003c
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Wed Jul 11 02:41:21 2001 +0000

    make distcheck fixes

 ChangeLog                          |    6 +-
 capplets/Makefile.am               |    2 +-
 capplets/mouse/Makefile.am         |    2 +-
 capplets/rollback/rollback.glade   |    2 +
 capplets/rollback/rollback.glade.h |   26 +
 po/az.po                           | 3570 ++++++++++++++++----------------
 po/ca.po                           | 3494 ++++++++++++++++---------------
 po/cs.po                           | 3442 +++++++++++++++----------------
 po/da.po                           | 3556 ++++++++++++++++----------------
 po/de.po                           |  109 +-
 po/el.po                           | 3524 ++++++++++++++++---------------
 po/en_GB.po                        | 2447 ++++++++--------------
 po/es.po                           | 3518 ++++++++++++++++---------------
 po/et.po                           | 3384 +++++++++++++++---------------
 po/fi.po                           | 3544 ++++++++++++++++----------------
 po/fr.po                           | 3620 ++++++++++++++++----------------
 po/ga.po                           | 2604 +++++++++--------------
 po/gl.po                           | 3441 +++++++++++++++----------------
 po/hr.po                           | 2914 ++++++++++++--------------
 po/hu.po                           | 3432 +++++++++++++++----------------
 po/it.po                           | 3489 ++++++++++++++++---------------
 po/ja.po                           | 3529 ++++++++++++++++----------------
 po/ko.po                           | 3169 +++++++++++++---------------
 po/lt.po                           | 3443 +++++++++++++++----------------
 po/nl.po                           | 3578 ++++++++++++++++----------------
 po/no.po                           | 3507 ++++++++++++++++---------------
 po/pl.po                           | 3444 +++++++++++++++----------------
 po/pt.po                           | 3201 ++++++++++++++---------------
 po/pt_BR.po                        | 3745 +++++++++++++++++----------------
 po/ro.po                           | 3598 ++++++++++++++++----------------
 po/ru.po                           | 3530 ++++++++++++++++----------------
 po/sk.po                           | 3547 ++++++++++++++++----------------
 po/sl.po                           | 3602 ++++++++++++++++----------------
 po/sv.po                           | 3597 ++++++++++++++++----------------
 po/tr.po                           | 3595 ++++++++++++++++----------------
 po/uk.po                           | 3473 +++++++++++++++----------------
 po/zh_CN.GB2312.po                 | 3982 ++++++++++++++++++------------------
 root-manager/Makefile.am           |    6 +-
 38 files changed, 51677 insertions(+), 54995 deletions(-)

commit 3395c90a5dd98395fac69ec3bc5aa64a54b14aa5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jul 11 02:22:46 2001 +0000

    Add sound-properties
    
    2001-07-10  Bradford Hovinen  <hovinen@ximian.com>
    
            * default-user.xml: Add sound-properties
    
            * sound-properties-capplet.c (get_legacy_settings): Sync database

 archiver/ChangeLog                        | 2 ++
 archiver/Makefile.am                      | 2 +-
 archiver/bonobo-config-archiver.c         | 5 ++++-
 archiver/bonobo-moniker-archiver.c        | 2 --
 archiver/default-user.xml                 | 1 +
 capplets/sound/ChangeLog                  | 1 +
 capplets/sound/sound-properties-capplet.c | 7 +++++++
 7 files changed, 16 insertions(+), 4 deletions(-)

commit e10800015f30f7764baf096683784cf574c1ef7b
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 22:02:42 2001 +0000

    .desktop fixCVS:
    
    .desktop fixCVS: ----------------------------------------------------------------------

 capplets/background/Makefile.am  | 2 +-
 capplets/screensaver/Makefile.am | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit eb0beef189577f117f96f95adaefc885ad4580b9
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 22:02:14 2001 +0000

    .desktop fix

 ChangeLog                     | 5 +++++
 capplets/keyboard/Makefile.am | 2 +-
 capplets/mouse/Makefile.am    | 2 +-
 capplets/sound/Makefile.am    | 2 +-
 4 files changed, 8 insertions(+), 3 deletions(-)

commit 6a9081f916fb602b6d70c92e25e3c52753736f5e
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 22:01:01 2001 +0000

    *** empty log message ***

 capplets/rollback/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 683186e37ea95ce9a5239255e33a3a3795b7318f
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 22:00:16 2001 +0000

    .desktop fixCVS:
    
    .desktop fixCVS: ----------------------------------------------------------------------

 capplets/rollback/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 858feb082496fdc11da294bec19fc3a9006f358f
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 10 18:27:43 2001 +0000

    Make full moniker (apply_settings): Release the return value (main):
    
    2001-07-10  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties-capplet.c (set_moniker_cb): Make full moniker
        (apply_settings): Release the return value
        (main): Support --get-legacy option
        (get_legacy_settings): Implement
        (create_control_cb): Connect apply_cb
        (COPY_FROM_LEGACY): Use bonobo_config_set_...
        (main): Open config database regardless of what operation is
        requested; pass to create_control callback
        (apply_settings): Use bonobo_config_get_...
        (get_legacy_settings):
        (apply_settings): Don't accept CORBA_Environment *ev any more
        (create_control_cb): Store the config database in the property control
        (apply_settings): Use the correct setting name
        (apply_cb): Apply settings and sync
        (apply_settings): Kill esd when requested
    
        * capplet-dir.c (capplet_ok_cb): Notify property control of apply
        action
        (capplet_control_launch): Store PropertyControl in app

 capplets/sound/ChangeLog                  |  14 +++
 capplets/sound/sound-properties-capplet.c | 152 ++++++++++++++++++++++--------
 capplets/sound/sound-properties.xml       |   2 +-
 control-center/ChangeLog                  |   6 ++
 control-center/capplet-dir.c              |  10 ++
 5 files changed, 144 insertions(+), 40 deletions(-)

commit dde0a2329b48e07b173adbde530049f0ebb828d4
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 14:55:21 2001 +0000

    Added German translation

 capplets/rollback/ChangeLog        | 4 ++++
 capplets/rollback/rollback.desktop | 2 ++
 2 files changed, 6 insertions(+)

commit 99034844c4e4f654518920c664414cd3dbb38256
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 14:53:56 2001 +0000

    ooops - forgot

 po/ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 4b6d4d9b59d6326ce7292f41daf73d4b7e42e64d
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 14:53:23 2001 +0000

    Fixed wrong binary name

 capplets/keyboard/ChangeLog                   | 4 ++++
 capplets/keyboard/keyboard-properties.desktop | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f8838be34f2b4fc283be4a5aeac3561f648b33b3
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Tue Jul 10 14:52:05 2001 +0000

    Updated POTFILES.[in|ignore] and Updated German translaion

 po/POTFILES.ignore |   16 -
 po/POTFILES.in     |   12 +-
 po/de.po           | 2688 ++++++++++++++++++----------------------------------
 3 files changed, 939 insertions(+), 1777 deletions(-)

commit 18e8de9ef65face699fb9fd1773554ed3af5f4eb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 10 14:00:15 2001 +0000

    Don't accept PropertyBag interface
    
    2001-07-10  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-moniker-archiver.c (archiver_resolve): Don't accept
        PropertyBag interface
    
        * sound-properties-capplet.c (set_moniker_cb): Make full moniker
    
        * sound-properties.xml: Fixed path name

 archiver/ChangeLog                        | 5 +++++
 archiver/bonobo-config-archiver.c         | 2 +-
 archiver/bonobo-moniker-archiver.c        | 6 ++----
 capplets/sound/ChangeLog                  | 6 ++++++
 capplets/sound/sound-properties-capplet.c | 4 +++-
 capplets/sound/sound-properties.xml       | 2 +-
 6 files changed, 18 insertions(+), 7 deletions(-)

commit 3fb617283b1de1e2e50a90ec7ce02192cafcb528
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 21:22:47 2001 +0000

    Update installation directory
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (gladedir): Update installation directory

 control-center/ChangeLog   | 2 ++
 control-center/Makefile.am | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit f6e592264ed6eeacb3cdd398473d3fe980e80c73
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 21:19:24 2001 +0000

    Add g_return_if_fail macros
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir-view.c (capplet_dir_view_show): Add g_return_if_fail
        macros

 control-center/ChangeLog          | 3 +++
 control-center/capplet-dir-view.c | 3 +++
 2 files changed, 6 insertions(+)

commit bf95474a7c7622f15ea4063fa29e071ab7139a42
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 21:03:02 2001 +0000

    Added Gnome.directory and installation routine
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am: Added Gnome.directory and installation routine

 ChangeLog       |  4 ++++
 Gnome.directory | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am     | 15 ++++++++++++--
 3 files changed, 80 insertions(+), 2 deletions(-)

commit 2c2fafbaad56331a77ca588a520a9e6ff7b6afff
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 19:56:27 2001 +0000

    Use bonobo_object_unref rather than gtk_object_destroy
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Use
        bonobo_object_unref rather than gtk_object_destroy
    
        * bonobo-moniker-archiver.c (archiver_resolve): Allow PropertyBag
        interface as well
        (parse_name): Set *location to NULL when there is no location
    
        * sound-properties.xml: Use 0 and 1 rather than true and false
    
        * capplet-dir.c (capplet_control_launch): Don't convert underscores
        to dashes in moniker

 archiver/ChangeLog                  |  8 ++++++++
 archiver/archive.c                  |  2 +-
 archiver/bonobo-config-archiver.c   |  4 ++--
 archiver/bonobo-moniker-archiver.c  |  9 +++++----
 capplets/sound/ChangeLog            |  2 ++
 capplets/sound/sound-properties.xml |  4 ++--
 control-center/ChangeLog            |  2 ++
 control-center/capplet-dir.c        | 10 +++++-----
 8 files changed, 27 insertions(+), 14 deletions(-)

commit c09362e12a71e1593aca4416ea9a9cceb2d9fae1
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 18:36:10 2001 +0000

    Use .gnome/capplet-archive rather than .gnome/control-center
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_load): Use .gnome/capplet-archive rather than
        .gnome/control-center
    
        * sound-properties-capplet.c (create_control_cb): Implement
        (main): Use create_control_cb
    
        * Bonobo_Control_Capplet_sound_properties.oaf: Use PropertyControl
        interface
    
        * sound-properties-capplet.c (create_dialog_cb): Update signature
        for use as a BonoboPropertyControlGetControlFn
    
        * capplet-dir.c (capplet_control_launch): Create a control by
        first retrieving the PropertyControl and then extracting the
        control from it
        (capplet_control_launch): Connect button signals
        (capplet_cancel_cb): Implement. Just destroy the app widget
        (capplet_ok_cb): Ditto.
        (capplet_control_launch): Don't use a BonoboArg when setting the
        property

 archiver/ChangeLog                                 |  3 ++
 archiver/archive.c                                 |  2 +-
 .../Bonobo_Control_Capplet_sound_properties.oaf    |  5 +--
 capplets/sound/ChangeLog                           |  8 +++++
 capplets/sound/sound-properties-capplet.c          | 19 ++++++++--
 control-center/ChangeLog                           |  9 +++++
 control-center/capplet-dir.c                       | 41 ++++++++++++++++------
 7 files changed, 72 insertions(+), 15 deletions(-)

commit 299c4ed6f4d6e4bc16cf02881168d32cd786a809
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 16:46:31 2001 +0000

    Try to load the defaults file if no rollback data can be found
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.c (bonobo_config_archiver_new): Try to
        load the defaults file if no rollback data can be found
    
        * capplets/sound/Makefile.am (defaults_DATA): Add sound-properties.xml
        (EXTRA_DIST): Add defaults_DATA
    
        * control-center/Makefile.am (INCLUDES): Update directory locations

 archiver/ChangeLog                  |  5 +++++
 archiver/Makefile.am                |  3 ++-
 archiver/bonobo-config-archiver.c   | 14 ++++++++++++--
 capplets/sound/ChangeLog            |  3 +++
 capplets/sound/Makefile.am          | 10 +++++++---
 capplets/sound/sound-properties.xml |  7 +++++++
 control-center/ChangeLog            |  2 ++
 control-center/Makefile.am          | 18 +++++++++---------
 8 files changed, 47 insertions(+), 15 deletions(-)

commit 080ffef4355a5f25d41576efa0d15222202f4ac2
Author: Christopher R. Gabriel <cgabriel@src.gnome.org>
Date:   Mon Jul 9 14:36:58 2001 +0000

    updated italian translation

 po/ChangeLog |   4 +
 po/it.po     | 352 +++++++++++++++++++++++------------------------------------
 2 files changed, 138 insertions(+), 218 deletions(-)

commit 749a018ee9ac8c2cbe3b2203e50911f62bc1566a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 14:14:47 2001 +0000

    Don't destroy the widget -- it's already destroyed
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * sound-properties-capplet.c (close_cb): Don't destroy the widget
        -- it's already destroyed

 capplets/sound/ChangeLog                  | 5 +++++
 capplets/sound/sound-properties-capplet.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 9d08d7b15e0a394417f125b096efe2045f50e31c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 9 14:03:26 2001 +0000

    Terminate the list of properties to set
    
    2001-07-09  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Terminate the list of
        properties to set

 control-center/ChangeLog     | 5 +++++
 control-center/capplet-dir.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 983317bc5ede199aab4d9a270330c719d94ba776
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jul 9 13:29:14 2001 +0000

    New sound properties capplet import

 .../Bonobo_Control_Capplet_sound_properties.oaf    |  20 ++
 capplets/sound/Makefile.am                         |  15 +-
 capplets/sound/sound-properties-capplet.c          | 312 +++++++++++++++++++++
 3 files changed, 343 insertions(+), 4 deletions(-)

commit e80bf50b314ea2d638d7305ebda6db621c5f5b61
Author: Chema Celorio <chema@celorio.com>
Date:   Sat Jul 7 21:29:23 2001 +0000

    add bonobo and bonobox
    
    2001-07-07  Chema Celorio  <chema@celorio.com>
    
        * configure.in (capplet_modules): add bonobo and bonobox

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 0c086fe454d9cd0ada544bc04b2e8cb87d70fe58
Author: Chema Celorio <chema@celorio.com>
Date:   Sat Jul 7 19:25:03 2001 +0000

    require pkg-config 0.7.0 since 0.6.0 is brOKeN
    
    2001-07-07  Chema Celorio  <chema@celorio.com>
    
        * configure.in (vers): require pkg-config 0.7.0 since
        0.6.0 is brOKeN

 ChangeLog    | 5 +++++
 configure.in | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 33cc1312bcb0bc25ec4a7bde63f4bf73081b233e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 5 21:57:01 2001 +0000

    Renamed ximian_archiver to config_archiver
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-manager-dialog.c: Update #include locations

 archiver/Makefile.am                      | 42 +++++++++++++++----------------
 archiver/archive.c                        |  6 ++---
 archiver/config_archiverConf.sh.in        |  4 +++
 archiver/ximian_archiverConf.sh.in        |  4 ---
 capplets/rollback/ChangeLog               |  2 ++
 capplets/rollback/Makefile.am             |  2 +-
 capplets/rollback/config-manager-dialog.c |  6 ++---
 capplets/rollback/rollback-control.c      |  6 ++---
 8 files changed, 37 insertions(+), 35 deletions(-)

commit 691aeeba307d7848e782aeb119a384bab53f9263
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 5 21:51:20 2001 +0000

    Use libglade-gnome rather than libglade
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (capplet_modules): Use libglade-gnome rather than libglade

 ChangeLog    |  1 +
 configure.in | 20 ++++++++++----------
 2 files changed, 11 insertions(+), 10 deletions(-)

commit 00a42ca4f3b940d57743ce8e7b11bf82a03433de
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 5 20:06:12 2001 +0000

    Remove libcapplet Add XIMIAN_ARCHIVER_{LIBDIR|LIBS|INCLUDEDIR} Bump
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (GNOMECC): Remove libcapplet
        Add XIMIAN_ARCHIVER_{LIBDIR|LIBS|INCLUDEDIR}
        Bump version number to 1.3.2

 ChangeLog            |  4 ++++
 Makefile.am          |  2 --
 archiver/Makefile.am |  6 +++---
 configure.in         | 36 ++++++++++++++++++------------------
 4 files changed, 25 insertions(+), 23 deletions(-)

commit 4cf6f3a859595b18b20e909bd82f27544c024566
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 5 17:41:47 2001 +0000

    Use bonobo-conf rather than bonobo-config for include path
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * bonobo-config-archiver.[ch]: Use bonobo-conf rather than
        bonobo-config for include path

 archiver/ChangeLog                | 3 +++
 archiver/bonobo-config-archiver.c | 2 +-
 archiver/bonobo-config-archiver.h | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

commit 07bc9090c8d0982d04865d0fc3b7fd9b2c1a7314
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 5 17:38:11 2001 +0000

    Added missing OAF file

 archiver/Bonobo_Moniker_archiver.oaf.in | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit f76b12f43c5982d8902d71e34d88738a831063bf
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Jul 5 17:37:53 2001 +0000

    Added missing Bonobo config moniker files

 archiver/bonobo-config-archiver.c  | 686 +++++++++++++++++++++++++++++++++++++
 archiver/bonobo-config-archiver.h  |  79 +++++
 archiver/bonobo-moniker-archiver.c | 139 ++++++++
 3 files changed, 904 insertions(+)

commit 78f32849fb5a3663a083da4a9014db61d1f39122
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 5 17:28:56 2001 +0000

    Put po after capplets so that the build doesn't screw up
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (SUBDIRS): Put po after capplets so that the build
        doesn't screw up

 ChangeLog   | 3 +++
 Makefile.am | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit aaaf56e71c0fcfab38fc6ab56193aa0562c5965b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jul 5 17:27:44 2001 +0000

    Removed rules pertaining to sound-properties
    
    2001-07-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am: Removed rules pertaining to
        sound-properties
    
        * capplets/sound-properties-capplet.c (set_moniker_cb): Change
        BonoboPropertyEditor to BonoboPEditor
    
        * configure.in: Update AC_INIT to use correct directory name
        (AC_OUTPUT): Update to current directory structure
    
        * Makefile.am (SUBDIRS): Update to current directory structure
    
        * capplets/Makefile.am (always_built_SUBDIRS): Updated to current
        directory structure
    
        * bonobo-moniker-archiver.c (archiver_resolve): Update call to
        Bonobo_ConfigDatabase_addDatabase
    
        * bonobo-config-archiver.h: Fix include directories
    
        * Makefile.am (INCLUDES): Update to use pkg-config standards; add
        BONOBO_CFLAGS
        Include configuration moniker-related material
        (SUBDIRS): Remove
        (bin_PROGRAMS): Added ximian-archiver
    
        * capplets/keyboard/prefs-widget.c (set_scale): Add appropriate casts
    
        * capplets/rollback/Makefile.am (INCLUDES):
        (rollback_capplet_LDADD): Update to include ximian_archiver stuff
        correctly

 ChangeLog                                          |  16 +
 Makefile.am                                        |   2 +-
 archiver/ChangeLog                                 |  13 +
 archiver/Makefile.am                               |  62 +-
 archiver/config-manager-dialog.c                   | 625 ---------------------
 archiver/config-manager-dialog.h                   |  63 ---
 archiver/create-location-dialog.c                  | 291 ----------
 archiver/create-location-dialog.h                  |  62 --
 archiver/location-list.c                           | 364 ------------
 archiver/location-list.h                           |  68 ---
 archiver/rollback-widget.c                         | 163 ------
 archiver/rollback-widget.h                         |  57 --
 .../Bonobo_Control_Capplet_sound_properties.oaf    |  20 -
 capplets/Makefile.am                               |  42 +-
 capplets/keyboard/ChangeLog                        |   4 +
 capplets/keyboard/prefs-widget.c                   |   4 +-
 capplets/rollback/ChangeLog                        |   6 +
 capplets/rollback/Makefile.am                      |   4 +-
 capplets/rollback/rollback-control.c               |   6 +-
 capplets/rollback/rollback.desktop                 |   6 +
 capplets/screensaver/screensavers/3d_clock.xml.h   |  18 -
 capplets/screensaver/screensavers/ant.xml.h        |  30 -
 capplets/screensaver/screensavers/atlantis.xml.h   |   6 -
 capplets/screensaver/screensavers/attraction.xml.h |  26 -
 capplets/screensaver/screensavers/blitspin.xml.h   |  13 -
 capplets/screensaver/screensavers/bouboule.xml.h   |  15 -
 capplets/screensaver/screensavers/braid.xml.h      |   9 -
 capplets/screensaver/screensavers/bsod.xml.h       |  11 -
 capplets/screensaver/screensavers/bubble3d.xml.h   |   6 -
 capplets/screensaver/screensavers/bubbles.xml.h    |  13 -
 capplets/screensaver/screensavers/cage.xml.h       |   6 -
 capplets/screensaver/screensavers/compass.xml.h    |  13 -
 capplets/screensaver/screensavers/coral.xml.h      |  14 -
 capplets/screensaver/screensavers/critical.xml.h   |   6 -
 capplets/screensaver/screensavers/crystal.xml.h    |  17 -
 capplets/screensaver/screensavers/cynosure.xml.h   |  15 -
 .../screensaver/screensavers/decayscreen.xml.h     |  10 -
 capplets/screensaver/screensavers/deco.xml.h       |  10 -
 capplets/screensaver/screensavers/deluxe.xml.h     |   6 -
 capplets/screensaver/screensavers/demon.xml.h      |   6 -
 capplets/screensaver/screensavers/discrete.xml.h   |  14 -
 capplets/screensaver/screensavers/distort.xml.h    |   6 -
 capplets/screensaver/screensavers/drift.xml.h      |  16 -
 capplets/screensaver/screensavers/epicycle.xml.h   |  12 -
 capplets/screensaver/screensavers/fadeplot.xml.h   |  17 -
 capplets/screensaver/screensavers/flag.xml.h       |  21 -
 capplets/screensaver/screensavers/flame.xml.h      |  18 -
 capplets/screensaver/screensavers/flow.xml.h       |   6 -
 capplets/screensaver/screensavers/forest.xml.h     |  14 -
 capplets/screensaver/screensavers/galaxy.xml.h     |   6 -
 capplets/screensaver/screensavers/gears.xml.h      |   6 -
 capplets/screensaver/screensavers/glplanet.xml.h   |   6 -
 capplets/screensaver/screensavers/goop.xml.h       |  14 -
 capplets/screensaver/screensavers/grav.xml.h       |  13 -
 capplets/screensaver/screensavers/greynetic.xml.h  |  10 -
 capplets/screensaver/screensavers/halo.xml.h       |  17 -
 capplets/screensaver/screensavers/helix.xml.h      |  10 -
 capplets/screensaver/screensavers/hopalong.xml.h   |  15 -
 capplets/screensaver/screensavers/hypercube.xml.h  |  13 -
 capplets/screensaver/screensavers/ifs.xml.h        |   9 -
 capplets/screensaver/screensavers/imsmap.xml.h     |   6 -
 .../screensaver/screensavers/interference.xml.h    |   6 -
 capplets/screensaver/screensavers/jigsaw.xml.h     |   9 -
 capplets/screensaver/screensavers/julia.xml.h      |  14 -
 .../screensaver/screensavers/kaleidescope.xml.h    |  15 -
 capplets/screensaver/screensavers/kumppa.xml.h     |   6 -
 capplets/screensaver/screensavers/lament.xml.h     |   6 -
 capplets/screensaver/screensavers/laser.xml.h      |  12 -
 capplets/screensaver/screensavers/lightning.xml.h  |   9 -
 capplets/screensaver/screensavers/lisa.xml.h       |  17 -
 capplets/screensaver/screensavers/lissie.xml.h     |   6 -
 capplets/screensaver/screensavers/lmorph.xml.h     |  16 -
 capplets/screensaver/screensavers/loop.xml.h       |   6 -
 capplets/screensaver/screensavers/maze.xml.h       |  16 -
 capplets/screensaver/screensavers/moebius.xml.h    |   6 -
 capplets/screensaver/screensavers/moire.xml.h      |  15 -
 capplets/screensaver/screensavers/moire2.xml.h     |   6 -
 capplets/screensaver/screensavers/morph3d.xml.h    |   6 -
 capplets/screensaver/screensavers/mountain.xml.h   |   6 -
 capplets/screensaver/screensavers/munch.xml.h      |  12 -
 capplets/screensaver/screensavers/noseguy.xml.h    |   6 -
 capplets/screensaver/screensavers/pedal.xml.h      |  16 -
 capplets/screensaver/screensavers/penetrate.xml.h  |   6 -
 capplets/screensaver/screensavers/penrose.xml.h    |   6 -
 capplets/screensaver/screensavers/pipes.xml.h      |   6 -
 capplets/screensaver/screensavers/pyro.xml.h       |  14 -
 capplets/screensaver/screensavers/qix.xml.h        |  32 --
 capplets/screensaver/screensavers/rd-bomb.xml.h    |   6 -
 capplets/screensaver/screensavers/rocks.xml.h      |   6 -
 capplets/screensaver/screensavers/rorschach.xml.h  |  18 -
 capplets/screensaver/screensavers/rotor.xml.h      |   6 -
 .../screensaver/screensavers/rubiks_cube.xml.h     |   6 -
 capplets/screensaver/screensavers/sierpinski.xml.h |  12 -
 .../screensaver/screensavers/slidescreen.xml.h     |   6 -
 capplets/screensaver/screensavers/slip.xml.h       |   6 -
 capplets/screensaver/screensavers/sonar.xml.h      |   6 -
 capplets/screensaver/screensavers/sphere.xml.h     |   6 -
 capplets/screensaver/screensavers/spiral.xml.h     |  16 -
 capplets/screensaver/screensavers/spotlight.xml.h  |   6 -
 capplets/screensaver/screensavers/sproingies.xml.h |   6 -
 capplets/screensaver/screensavers/squiral.xml.h    |   6 -
 capplets/screensaver/screensavers/stairs.xml.h     |   6 -
 capplets/screensaver/screensavers/starfish.xml.h   |  17 -
 capplets/screensaver/screensavers/strange.xml.h    |   6 -
 .../screensaver/screensavers/superquadrics.xml.h   |   6 -
 capplets/screensaver/screensavers/swirl.xml.h      |   6 -
 capplets/screensaver/screensavers/triangle.xml.h   |   9 -
 capplets/screensaver/screensavers/truchet.xml.h    |   6 -
 capplets/screensaver/screensavers/vines.xml.h      |   9 -
 capplets/screensaver/screensavers/worm.xml.h       |   6 -
 capplets/screensaver/screensavers/xflame.xml.h     |   6 -
 capplets/screensaver/screensavers/xjack.xml.h      |   6 -
 capplets/screensaver/screensavers/xlyap.xml.h      |   6 -
 capplets/screensaver/screensavers/xmatrix.xml.h    |   6 -
 capplets/screensaver/screensavers/xroger.xml.h     |   7 -
 capplets/sound-properties-capplet.c                | 312 ----------
 configure.in                                       |  31 +-
 po/POTFILES.in                                     | 145 ++---
 118 files changed, 170 insertions(+), 3184 deletions(-)

commit 70f3cc51cc15586b53379a927f804a689db976d6
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jul 3 20:40:58 2001 +0000

    Added. (prefs_widget_init): Connect to "Add" and "Remove"
    
    2001-07-03  Richard Hestilow  <hestilow@ximian.com>
    
        * prefs-widget.c:
          (add_select_cb, screensaver_add_cb, screensaver_remove_cb): Added.
          (prefs_widget_init): Connect to "Add" and "Remove"
    
        * screensaver-prefs-dialog.c (get_basic_screensaver_widget): Replace
        confusing stuff with ultra-simple dialog.
    
        * screensaver-properties.glade[.h]: Remove "Demo" popup item, as it
        is on the settings dialogs and is not easy to manage with
        menu selection anyway. (Too much mouse movement).

 capplets/screensaver/ChangeLog                     |  13 ++
 capplets/screensaver/prefs-widget.c                | 133 +++++++++++++++++----
 capplets/screensaver/screensaver-prefs-dialog.c    |  10 +-
 capplets/screensaver/screensaver-properties.glade  |  12 --
 .../screensaver/screensaver-properties.glade.h     |   1 -
 5 files changed, 132 insertions(+), 37 deletions(-)

commit 3e3422d465c4110d55bf40aba0fcf2112bdfd23c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 3 20:29:56 2001 +0000

    Use GnomeDialog rather than BonoboWindow (capplet_control_launch): Use
    
    2001-07-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Use GnomeDialog rather
        than BonoboWindow
        (capplet_control_launch): Use bonobo_widget_set_property for simplicity
        (capplet_control_launch): Eliminate goto statement with an if...else clause

 control-center/ChangeLog     |  2 ++
 control-center/capplet-dir.c | 40 +++++++---------------------------------
 2 files changed, 9 insertions(+), 33 deletions(-)

commit 0e31da4c76dbc375753b04ac825f1bbbec97ea5c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 3 19:18:51 2001 +0000

    Use GnomeDialog rather than BonoboWindow
    
    2001-07-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Use GnomeDialog rather
        than BonoboWindow
    
        * archiver/Makefile.am (bonobo_moniker_archiver_LDADD): Use @...@
        rather than $(...) for pkg-config's sake

 ChangeLog                    |  4 ++++
 capplets/Makefile.am         | 22 +++++++++++++++++-----
 control-center/ChangeLog     |  3 +++
 control-center/capplet-dir.c | 29 ++++++-----------------------
 4 files changed, 30 insertions(+), 28 deletions(-)

commit 963cbcaff5e09c28a9c5a1524d9dfc6d5a22f6af
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 3 18:06:27 2001 +0000

    Use correct location for Glade data
    
    2001-07-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/Makefile.am (INCLUDES): Use correct location for Glade
        data

 ChangeLog                           |  5 +++++
 capplets/Makefile.am                | 10 +++++-----
 capplets/sound-properties-capplet.c | 19 +++++++++++++++++++
 3 files changed, 29 insertions(+), 5 deletions(-)

commit 9718834cfb446c61607592f00d42c20de8409ab6
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jul 3 17:50:42 2001 +0000

    Add PKG_CHECK_MODULES for SCREENSAVER_CAPPLET.
    
    2001-07-03  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Add PKG_CHECK_MODULES for SCREENSAVER_CAPPLET.

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit 77d73e6a26dfc39b0925a0517b9353e6197523ab
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Tue Jul 3 17:47:36 2001 +0000

    Added.
    
    2001-07-03  Richard Hestilow  <hestilow@ximian.com>
    
        * screensaver-properties.glade[.h]: Added.
    
        * prefs-widget.[ch]: Complete rewrite.
    
        * Makefile.am: Add glade stuff.
    
        * main.c: Call glade_gnome_init.
    
        * pref-file.c: Restart xscreensaver on save.
    
        * screensaver-prefs-dialog.c (screensaver_prefs_dialog_new):
        Change g_strconcat to g_strdup_printf for i18n purposes.

 capplets/screensaver/ChangeLog                     |   15 +
 capplets/screensaver/Makefile.am                   |   14 +-
 capplets/screensaver/main.c                        |    4 +-
 capplets/screensaver/pref-file.c                   |    3 +
 capplets/screensaver/prefs-widget.c                | 2068 +++++++-------------
 capplets/screensaver/prefs-widget.h                |   76 +-
 capplets/screensaver/screensaver-prefs-dialog.c    |    2 +-
 capplets/screensaver/screensaver-properties.glade  | 1021 ++++++++++
 .../screensaver/screensaver-properties.glade.h     |   38 +
 9 files changed, 1779 insertions(+), 1462 deletions(-)

commit 8496ca47a53aef307d81c521de691e6210007f24
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jul 3 17:18:50 2001 +0000

    Connect destroy signal on capplet window to gtk_main_quit
    
    2001-07-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (main): Connect destroy signal on capplet window to
        gtk_main_quit
    
        * capplet-dir.c (capplet_control_launch): Return pointer to
        BonoboWindow
    
        * main.c (main): Check return value of capplet_control_launch
    
        * capplet-dir.c (capplet_control_launch): Use goto to make sure
        all data structures are freed

 capplets/sound-properties-capplet.c | 33 +++++++++++++++++++++++++++------
 configure.in                        |  2 +-
 control-center/ChangeLog            | 13 +++++++++++++
 control-center/capplet-dir.c        | 35 ++++++++++++++++++++++-------------
 control-center/capplet-dir.h        |  2 +-
 control-center/main.c               |  7 ++++++-
 6 files changed, 70 insertions(+), 22 deletions(-)

commit 9a1ac9dd284369179597b4009925ba4373fd5fd1
Author: Tambet Ingo <tambet@ximian.com>
Date:   Mon Jul 2 21:40:38 2001 +0000

    Added display-conf backend.
    
    2001-07-02  Tambet Ingo  <tambet@ximian.com>
    
        * default-global.xml: Added display-conf backend.

 archiver/ChangeLog          | 4 ++++
 archiver/default-global.xml | 1 +
 2 files changed, 5 insertions(+)

commit cd2f26923d1973067c216b2787aeaca4857f89d9
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jul 2 14:46:26 2001 +0000

    Use bonobo_arg_... functions
    
    2001-07-02  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplet-dir.c (capplet_control_launch): Use bonobo_arg_... functions
    
        * main.c (main): Call capplet_control_launch if capplet was specified on CLI
        Use bonobo_main rather than gtk_main
    
        * capplet-dir.c (capplet_control_launch): Fix to use Bonobo_Property_setValue
        (capplet_activate): Support capplet_control_launch; use strlen(...) rather than hardcoding length
        (capplet_control_launch): Replace '-' characters with underscores
    
    Added OAF info file for experimental sound properties capplet

 .../Bonobo_Control_Capplet_sound_properties.oaf    | 20 ++++++++++
 capplets/Makefile.am                               | 12 +++++-
 capplets/ui-properties/prefs-widget-app.c          |  2 +-
 control-center/ChangeLog                           | 13 +++++-
 control-center/capplet-dir.c                       | 46 +++++++++++++++++++---
 control-center/capplet-dir.h                       |  2 +-
 control-center/main.c                              |  4 +-
 7 files changed, 87 insertions(+), 12 deletions(-)

commit a72197926a3bc87098a3bbe48f515ef592e58844
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jun 29 20:48:29 2001 +0000

    Added archiver moniker for bonobo-conf
    Added sample capplet using new moniker
    
    2001-06-29  Bradford Hovinen  <hovinen@ximian.com>
    
            * main.c (main): Support --run-capplet argument on the command line
    
            * capplet-dir.c (capplet_launch): Implement. Currently not called,
            but will be used to launch capplets
    
            * main.c (main): Added OAF and bonobo intialization
    
            * capplets/Makefile.am (bin_PROGRAMS): Add target for
            sound-properties-capplet
            (INCLUDES): Install from new-sound-properties
    
            * configure.in (CAPPLET_{CFLAGS|LIBS}): Add bonobo_conf to each

 ChangeLog                           |    8 +
 Makefile.am                         |    2 +-
 capplets/Makefile.am                |   13 +
 capplets/sound-properties-capplet.c |  272 ++
 capplets/ui-properties/Makefile.am  |    1 +
 configure.in                        |    2 +-
 control-center/ChangeLog            |    9 +
 control-center/capplet-dir.c        |   73 +-
 control-center/capplet-dir.h        |    2 +
 control-center/main.c               |   26 +-
 po/ca.po                            | 2816 +++++++++----
 po/cs.po                            | 2823 +++++++++----
 po/da.po                            |  122 +-
 po/de.po                            |  122 +-
 po/el.po                            |  280 +-
 po/en_GB.po                         | 2348 ++++++++---
 po/es.po                            |  299 +-
 po/et.po                            |  274 +-
 po/fi.po                            |  297 +-
 po/fr.po                            |  311 +-
 po/ga.po                            | 2460 +++++++++---
 po/gl.po                            | 2849 +++++++++----
 po/hr.po                            |  270 +-
 po/hu.po                            | 2833 +++++++++----
 po/it.po                            | 1776 ++++++--
 po/ja.po                            |  298 +-
 po/ko.po                            |   44 +-
 po/lt.po                            | 2806 +++++++++----
 po/nl.po                            |  309 +-
 po/pl.po                            | 1781 ++++++--
 po/pt.po                            | 2799 +++++++++----
 po/pt_BR.po                         | 2427 ++++++++---
 po/ro.po                            | 7603 ++++++++++++++++++-----------------
 po/ru.po                            |  294 +-
 po/sk.po                            |  126 +-
 po/sl.po                            |  122 +-
 po/sv.po                            |   19 +-
 po/tr.po                            |  122 +-
 po/uk.po                            |  364 +-
 po/zh_CN.GB2312.po                  |   21 +-
 40 files changed, 27178 insertions(+), 12245 deletions(-)

commit 828dbf8727fe14096aef654b8d9312548f9cb997
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jun 27 18:40:27 2001 +0000

    Check for pkg-config >= 0.6.0 without the use of a macro -- people were
    
    2001-06-27  Richard Hestilow  <hestilow@ximian.com>
    
        * configure.in: Check for pkg-config >= 0.6.0 without the use of
        a macro -- people were having issues with older versions with
        no macros.

 ChangeLog    |  6 ++++++
 configure.in | 13 +++++++++++++
 2 files changed, 19 insertions(+)

commit 81cbb6d8b69f5477906a17e94ff874c864241a5e
Author: Rachel Hestilow <hestgray@src.gnome.org>
Date:   Wed Jun 27 16:32:18 2001 +0000

    2001-06-27  Richard Hestilow  <hestilow@ximian.com:
    
        * ChangeLog added.
    
        * mouse-properties.glade: New GUI by Anna Dirks.
    
        * mouse-left.png, mouse-right.png: Added.
    
        * Makefile.am: Install pixmaps.
    
        * prefs-widget.c (set_pixmap_file): Added function.
          (threshold_changed_cb, read_preferences): Call new macro
          THRESHOLD_CONVERT, as sensitivity is the reverse of threshold.
          (read_preferences, prefs_widget_init): Change "threshold_entry" to
          sensitivity_entry.
          (prefs_widget_init): Call set_pixmap_file for the new pixmaps.

 capplets/mouse/ChangeLog                |  16 ++
 capplets/mouse/Makefile.am              |   6 +
 capplets/mouse/mouse-left.png           | Bin 0 -> 8049 bytes
 capplets/mouse/mouse-properties.glade   | 409 +++++++++++++++++++-------------
 capplets/mouse/mouse-properties.glade.h |  13 +-
 capplets/mouse/mouse-right.png          | Bin 0 -> 7894 bytes
 capplets/mouse/prefs-widget.c           |  59 +++--
 7 files changed, 316 insertions(+), 187 deletions(-)

commit f3d7412efdf766318892088b0de2f6018930d71b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Jun 25 08:57:27 2001 +0000

    updated Azeri file

 po/ChangeLog |    4 +
 po/az.po     | 2103 ++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 1397 insertions(+), 710 deletions(-)

commit a18fd85bba83275892a8efa615908e5007a55f9d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri Jun 22 16:34:57 2001 +0000

    Return NULL if the location id is NULL (archive_get_current_location_id):
    
    2001-06-22  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_get_current_location): Return NULL if the
        location id is NULL
        (archive_get_current_location_id): Return NULL if storing the
        snapshot results in an error
    
        * location.c (location_store): Add return values for error
        conditions; remove g_warning's and g_critical's
        (location_store_full_snapshot): Folded in store_snapshot_cb; don't
        call location_foreach_backend
        (location_store_full_snapshot): Return error condition; 0 on
        success, -1 if any backend failed
    
        * location-manager-dialog.c (location_manager_dialog_set_arg): Add
        a check to inform the user if the location manager was unable to
        form an initial configuration snapshot

 archiver/ChangeLog  | 19 ++++++++++++++
 archiver/archive.c  | 23 ++++++++++++-----
 archiver/location.c | 74 +++++++++++++++++++++++++++++++----------------------
 archiver/location.h |  4 +--
 4 files changed, 81 insertions(+), 39 deletions(-)

commit 47d682e446d646090ff65328e847a9438af5b3a1
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jun 21 21:48:12 2001 +0000

    Use location_get_changed_backends
    
    2001-06-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_set_current_location): Use
        location_get_changed_backends
    
        * location.c (location_get_changed_backends):
        (location_does_backend_change): Implement
        (create_backends_list):
        (merge_backend_lists): Moved from archive.c
    
        * gui-backend-list.c (gui_backend_list_launch_current): Use
        location_does_backend_change when deciding whether to pass
        --location on the command line

 archiver/ChangeLog    |   8 +++
 archiver/archive.c    |  99 +---------------------------------
 archiver/config-log.c |   5 ++
 archiver/location.c   | 144 +++++++++++++++++++++++++++++++++++++++++++++++++-
 archiver/location.h   |   6 +++
 5 files changed, 162 insertions(+), 100 deletions(-)

commit 22c09dbb522e9d23db9c0884f92cff9e72902ff7
Author: Havoc Pennington <hp@redhat.com>
Date:   Thu Jun 21 16:09:21 2001 +0000

    switch to using pkg-config to find things
    
    2001-06-21  Havoc Pennington  <hp@redhat.com>
    
        * configure.in: switch to using pkg-config to find things
    
        * capplets/*/Makefile.am: clean up crufty flags, adapt to
        configure.in changes

 ChangeLog                           |  7 +++++
 capplets/background/Makefile.am     |  5 ++--
 capplets/file-types/Makefile.am     | 12 ++------
 capplets/keyboard/Makefile.am       |  4 +--
 capplets/mime-type/Makefile.am      |  4 +--
 capplets/mouse/Makefile.am          |  6 ++--
 capplets/rollback/Makefile.am       |  5 ++--
 capplets/screensaver/Makefile.am    |  4 +--
 capplets/sound/Makefile.am          |  4 +--
 capplets/theme-switcher/Makefile.am |  4 +--
 capplets/ui-properties/Makefile.am  |  4 +--
 capplets/url-properties/Makefile.am |  4 +--
 capplets/wm-properties/Makefile.am  |  4 +--
 configure.in                        | 59 +++++++++----------------------------
 control-center/Makefile.am          |  4 +--
 15 files changed, 48 insertions(+), 82 deletions(-)

commit c894d8e52b9aa78c5806c70e6864c22b80750aff
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jun 21 14:48:09 2001 +0000

    Abort if prefs structure is NULL when editing outside the current
    
    2001-06-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-*/main.c (main): Abort if prefs structure is NULL
        when editing outside the current location. Fixes crash when bad
        XML data are supplied.

 ChangeLog                     | 4 ++++
 capplets/background/main.c    | 1 +
 capplets/keyboard/main.c      | 1 +
 capplets/mouse/main.c         | 1 +
 capplets/screensaver/main.c   | 1 +
 capplets/sound/main.c         | 1 +
 capplets/ui-properties/main.c | 1 +
 7 files changed, 10 insertions(+)

commit 93e004a93f691d5b27c875f89806ff3c03383872
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jun 21 14:33:24 2001 +0000

    Don't call close on fd (dump_log): Use g_critical on error conditions
    
    2001-06-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (dump_log): Don't call close on fd
        (dump_log): Use g_critical on error conditions rather than g_warning

 archiver/ChangeLog    |  5 +++++
 archiver/config-log.c | 10 +++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit f707e7350e1f7f0038f11d4575fba719d35ef018
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jun 21 14:28:48 2001 +0000

    Fix to use correct termination condition and g_string API
    
    2001-06-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-*/main.c (do_set_xml): Fix to use correct
        termination condition and g_string API
    
        * capplets/new-screensaver-properties/preferences.c (clone_cb):
        Remove debugging code

 ChangeLog                          |  5 +++++
 capplets/background/main.c         | 30 ++++++++++++++++--------------
 capplets/keyboard/main.c           | 30 ++++++++++++++++--------------
 capplets/mouse/main.c              | 30 ++++++++++++++++--------------
 capplets/screensaver/ChangeLog     |  4 ++++
 capplets/screensaver/main.c        | 30 ++++++++++++++++--------------
 capplets/screensaver/preferences.c |  3 ---
 capplets/sound/main.c              | 30 ++++++++++++++++--------------
 capplets/ui-properties/main.c      | 30 ++++++++++++++++--------------
 9 files changed, 105 insertions(+), 87 deletions(-)

commit 94736ab6775caf0cf2baaba1962141bf52311681
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Jun 20 20:00:13 2001 +0000

    Updated Norwegian translation.
    
    2001-06-20  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 12 ++++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit 9f75f8c2197bc01c207a2b05744f4ab0deed4981
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Jun 20 18:53:47 2001 +0000

    Typo bugfix in configuration log

 archiver/config-log.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit f0dda427f7e7340b8f0f4a2173268754ff2f4bcd
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jun 20 18:33:08 2001 +0000

    Call io_buffer_destroy
    
    2001-06-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (config_log_write_entry): Call io_buffer_destroy

 archiver/ChangeLog    | 2 ++
 archiver/config-log.c | 2 ++
 2 files changed, 4 insertions(+)

commit 1f701fce3b779e113e4ec5676bef1dc15ffe5d1c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jun 20 17:58:45 2001 +0000

    Dump the log after loading it from the slave (dump_log): Set first_old to
    
    2001-06-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (slave_data_cb): Dump the log after loading it from
        the slave
        (dump_log): Set first_old to the beginning of the list after the dump
        (do_load): Don't call do_unload
        (socket_data_cb): Check for hang up first
        (do_load): Don't call reset_filenames
    
        * archive.c, Makefile.am: Replace all instances of ximian-config
        with ximian-setup-tools
    
        * config-log.c (slave_new): Don't apprise slave of new data
        (config_log_write_entry): Dump log after every write

 archiver/ChangeLog    | 1 +
 archiver/config-log.c | 8 +++-----
 archiver/location.c   | 8 ++++++++
 3 files changed, 12 insertions(+), 5 deletions(-)

commit 3f08be4e5779bca710451a514c94127277f728ca
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jun 20 17:58:21 2001 +0000

    Don't save unless apply_settings is set
    
    2001-06-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-*/main.c (do_set_xml): Don't save unless
        apply_settings is set

 ChangeLog                  | 11 +++++++++++
 capplets/background/main.c |  6 +++---
 capplets/keyboard/main.c   |  6 +++---
 3 files changed, 17 insertions(+), 6 deletions(-)

commit c39d6dff0262afbd034226562829b03d33f82642
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jun 20 17:21:33 2001 +0000

    Dump the log after loading it from the slave (dump_log): Set first_old to
    
    2001-06-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (slave_data_cb): Dump the log after loading it from
        the slave
        (dump_log): Set first_old to the beginning of the list after the dump
        (do_load): Don't call do_unload
        (socket_data_cb): Check for hang up first

 archiver/ChangeLog    |  9 +++++++++
 archiver/Makefile.am  |  4 ++--
 archiver/archive.c    | 12 ++++++------
 archiver/config-log.c | 27 +++++++++++++++++++--------
 4 files changed, 36 insertions(+), 16 deletions(-)

commit efc06f6cc780b766a703c5dab4bcecae01bb7a27
Author: Richard Hestilow <hestilow@ximian.com>
Date:   Wed Jun 20 16:36:01 2001 +0000

    Handle properly the case where centered/tiled image is larger than the
    
    2001-06-20  Richard Hestilow  <hestilow@ximian.com>
    
        * capplets/new-background-properties/applicer.c
        (get_geometry): Handle properly the case where centered/tiled
        image is larger than the screen/preview.

 ChangeLog                     |  6 ++++++
 capplets/background/applier.c | 20 ++++++++++++++------
 2 files changed, 20 insertions(+), 6 deletions(-)

commit a5f7ac1dab3aa2ee086a6b9f36a6fbd4c1df15b0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jun 20 15:50:59 2001 +0000

    Fixed nitems check (set_root_pixmap): Passing -1 makes the function just
    
    2001-06-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-background-properties/applier.c
        (is_nautilus_running): Fixed nitems check
        (set_root_pixmap): Passing -1 makes the function just set the
        pixmap to what it was

 ChangeLog                     |  7 +++++++
 capplets/background/applier.c | 14 ++++++++------
 2 files changed, 15 insertions(+), 6 deletions(-)

commit 0b43d32e460ec10b89fe19202945771fb90b6188
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jun 20 14:41:18 2001 +0000

    Don't apprise slave of new data (config_log_write_entry): Dump log after
    
    2001-06-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (slave_new): Don't apprise slave of new data
        (config_log_write_entry): Dump log after every write

 archiver/ChangeLog    |  5 +++++
 archiver/config-log.c | 15 ++++++++++-----
 2 files changed, 15 insertions(+), 5 deletions(-)

commit 0d1ac243edba47e1e1ccef0d507213c7c5e8f3b6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Jun 19 18:46:02 2001 +0000

    Undefine DEBUG_ME_MORE

 archiver/util.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 172e5c0939a4ce17089eda9e679bcea9f07db7b7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jun 19 18:31:18 2001 +0000

    Free the location path as we walk down it. (create_backends_list):
    
    2001-06-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_set_current_location): Free the location path
        as we walk down it.
        (create_backends_list): Implement
        (merge_backend_lists): Implement
        (archive_set_current_location): Call above functions
        (create_backends_list): Get rid of dummy first element
        (archive_set_current_location): Don't use backends->next when
        calling rollback_backends_to
    
        * location.c (run_backend_proc): Remember to close the writing end
        (location_store): Change g_error to g_critical
        (run_backend_proc): Don't getenv PATH
        (run_backend_proc): Make sure to close other end of pipe in child
        process
    
    2001-06-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_store): Use GString API
    
        * config-log.c (slave_data_cb): Don't use == to test IO conditions

 archiver/ChangeLog          |  19 ++++++++
 archiver/archive.c          | 108 +++++++++++++++++++++++++++++++++++++-------
 archiver/default-global.xml |   2 -
 archiver/location.c         |  54 +++++++++++-----------
 archiver/util.h             |   2 +-
 5 files changed, 138 insertions(+), 47 deletions(-)

commit aa7315ed93eac0cf8ad48fa5a5c64cffd573c1e5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jun 18 16:45:31 2001 +0000

    Don't use == to test IO conditions
    
    2001-06-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (slave_data_cb): Don't use == to test IO conditions

 archiver/ChangeLog    |  4 ++++
 archiver/config-log.c |  6 ++++--
 archiver/location.c   | 14 +++++++++++++-
 3 files changed, 21 insertions(+), 3 deletions(-)

commit c7af228de9fddb4923fc42dcb60262ab55b28339
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jun 18 16:44:33 2001 +0000

    Use read () rather than fread () to make sure to catch end-of-file.
    
    2001-06-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-*/main.c (do_set_xml): Use read () rather than
        fread () to make sure to catch end-of-file. Gracefully handle
        no-data case.

 ChangeLog                     |  6 ++++++
 capplets/background/main.c    | 43 ++++++++++++++++++++++++++++---------------
 capplets/keyboard/main.c      | 43 ++++++++++++++++++++++++++++---------------
 capplets/mouse/main.c         | 42 +++++++++++++++++++++++++-----------------
 capplets/screensaver/main.c   | 43 ++++++++++++++++++++++++++-----------------
 capplets/sound/main.c         | 41 +++++++++++++++++++++++++----------------
 capplets/ui-properties/main.c | 41 +++++++++++++++++++++++++----------------
 7 files changed, 163 insertions(+), 96 deletions(-)

commit 057372f928bd6fde16ff973befbb119471fb6b5b
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Jun 12 16:19:49 2001 +0000

    Add #ifdef HAVE_XIMIAN_ARCHIVER around some parts missing it
    
    2001-06-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-mouse-properties/main.c (ok_cb):
        (cancel_cb): Add #ifdef HAVE_XIMIAN_ARCHIVER around some parts
        missing it

 capplets/mouse/main.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 618c4af389bde6b312cf9749f0d883250f569095
Author: Christian Rose <menthos@menthos.com>
Date:   Thu Jun 7 01:21:11 2001 +0000

    Modified Swedish entry. Added missing file. Updated Swedish translation.
    
    2001-06-07  Christian Rose  <menthos@menthos.com>
    
        * capplets/desktop-links/Appearances.directory,
        capplets/desktop-links/Multimedia.directory,
        capplets/desktop-links/Peripherals.directory,
        capplets/desktop-links/UIOptions.directory,
        capplets/gnome-edit-properties/gnome-edit-properties.desktop,
        capplets/mime-type/mime-type.desktop,
        capplets/new-sound-properties/sound-properties.desktop,
        capplets/new-ui-properties/behavior.desktop,
        capplets/screensaver-properties/screensaver-desktops/screensaver-properties.desktop,
        capplets/sound-properties/sound-properties.desktop,
        capplets/theme-switcher/theme-selector.desktop,
        capplets/ui-properties/application.desktop,
        capplets/ui-properties/ui-properties.directory: Modified
        Swedish entry.
        * po/POTFILES.in: Added missing file.
        * po/sv.po: Updated Swedish translation.

 ChangeLog                                      |  15 +++
 capplets/sound/ChangeLog                       |   4 +
 capplets/sound/sound-properties.desktop        |   2 +-
 capplets/theme-switcher/theme-selector.desktop |   2 +-
 capplets/ui-properties/behavior.desktop        |   4 +-
 po/ChangeLog                                   |   5 +
 po/POTFILES.in                                 |   2 +-
 po/sv.po                                       | 136 +++++++++++++------------
 8 files changed, 101 insertions(+), 69 deletions(-)

commit cf371772c897763e258ff5baf4a6e4db76749838
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Jun 2 01:47:18 2001 +0000

    Don't free path string after setting the path
    
    2001-06-01  Bradford Hovinen  <hovinen@ximian.com>
    
            * location.c (run_backend_proc): Don't free path string after
            setting the path

 archiver/ChangeLog  | 5 +++++
 archiver/location.c | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b783cdabf1fd7cf44e6fbf8219bba727ebae452e
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed May 30 00:14:05 2001 +0000

    Made sure new-mouse-properties builds by default

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 36b4a53f4b20e31fb53a29c4ac32b0b7a32370af
Author: Marius Andreiana <mandreiana@yahoo.com>
Date:   Tue May 29 15:20:44 2001 +0000

    updated
    
    2001-05-29  Marius Andreiana  <mandreiana@yahoo.com>
    
            * ro.po: updated

 po/ChangeLog |    4 +
 po/ro.po     | 6321 +++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 4034 insertions(+), 2291 deletions(-)

commit 1d5ef7fadebd72d39e99a1f45b424952f205786f
Author: Chema Celorio <chema@celorio.com>
Date:   Sat May 26 10:14:57 2001 +0000

    create x_aConf.sh from the XIMIAN_ARCHIVER_FOO_CONF varialbes
    
    2001-05-26  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am (ximian_archiverConf.sh): create x_aConf.sh from
        the XIMIAN_ARCHIVER_FOO_CONF varialbes
    
    2001-05-26  Chema Celorio  <chema@celorio.com>
    
        * configure.in (XIMIAN_ARCHIVER_LIBDIR/LIBS/INCLUDEDIR_CONF):
        add new variables to be used in ximian_archiverConf.sh which are
        different from

 archiver/ChangeLog   | 5 +++++
 archiver/Makefile.am | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit d8c177553ddd9a750483e898d26bad91b414dc09
Author: Chema Celorio <chema@celorio.com>
Date:   Fri May 25 01:19:21 2001 +0000

    bump to 0.5.0 (XIMIAN_ARCHIVER_INCLUDEDIR): add variables for
    
    2001-05-24  Chema Celorio  <chema@celorio.com>
    
        * configure.in: bump to 0.5.0
        (XIMIAN_ARCHIVER_INCLUDEDIR): add variables for ximian_archiverConf.sh.in
    
    2001-05-24  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am (libximian_archiver_la_SOURCES): add config-
        manger-dialog so that distcheck would pass
        (SUBDIRS): add the . dir because the capplet depends on
        the archiver and we need to build the archiver first
        (libximian_archiver_la_SOURCES): add location-list &
        create-location-dialog
        (ximian_archiverConf.sh): change to XIMIAN_ARVHIER_FOO
    
    2001-05-24  Chema Celorio  <chema@celorio.com>
    
        * Makefile.am (Applicationsdir): added checked/unchecked.xpm
        so that distcheck will show me a little love
    
    
    2001-05-24  Chema Celorio  <chema@celorio.com>
    
        * rollback-location-management.glade.in: move from archiver

 archiver/ChangeLog                          |  10 +
 archiver/Makefile.am                        |  24 +-
 archiver/rollback-location-management.glade | 647 ----------------------------
 archiver/ximian_archiverConf.sh.in          |   6 +-
 4 files changed, 25 insertions(+), 662 deletions(-)

commit 6224fd448b29d4a101dff64b9568e6d606b06fcb
Author: Arturo Espinosa Aldama <arturo@ximian.com>
Date:   Fri May 25 00:59:33 2001 +0000

    0.5 RELEASE
    
    2001-05-24  Arturo Espinosa Aldama  <arturo@ximian.com>
    
        * 0.5 RELEASE

 archiver/ChangeLog       | 4 ++++
 archiver/tests/ChangeLog | 4 ++++
 2 files changed, 8 insertions(+)

commit 3621d252872bb4ecde45b5e20c01fb32f9a3d3bb
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu May 24 19:19:26 2001 +0000

    Added location-manager-capplet
    
    2001-05-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (SUBDIRS): Added location-manager-capplet

 archiver/ChangeLog   | 4 ++++
 archiver/Makefile.am | 2 ++
 2 files changed, 6 insertions(+)

commit f98e6220270ea29a961c8facf0058f6606220852
Author: JP Rosevear <jpr@ximian.com>
Date:   Tue May 22 22:07:34 2001 +0000

    use AF_UNIX for the family
    
    2001-05-22  JP Rosevear  <jpr@ximian.com>
    
        * config-log.c (bind_socket): use AF_UNIX for the family
    
        * location.c (run_backend_proc): use putenv() rather than setenv()
        for solaris
    
        * config-log.c: define the SUN_LEN macro for those systems not
        having it
        (connect_socket): use the more portable domain type, PF_LOCAL
        seems to map to PF_UNIX on linux anyhow
    
    2001-05-22  JP Rosevear  <jpr@ximian>
    
        * e-search-bar/Makefile.am: include gal cflags

 archiver/ChangeLog    | 12 ++++++++++++
 archiver/config-log.c |  9 +++++++--
 archiver/location.c   |  6 +++---
 3 files changed, 22 insertions(+), 5 deletions(-)

commit 8a956cde95819927f8184dbe9e0ad85d55ee83eb
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue May 22 14:53:28 2001 +0000

    Updated Norwegian translation.
    
    2001-05-22  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 130 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 69 insertions(+), 65 deletions(-)

commit f99769463395f888b4c98fb111a3812a0e48b122
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon May 21 16:15:59 2001 +0000

    fixed multi-byte

 po/ChangeLog       |    4 +
 po/ko.po           | 5258 ++++++++++++++++++++++++++++------------------------
 po/zh_CN.GB2312.po | 3660 +++++++++++++++++++++++++-----------
 po/zh_TW.Big5.po   | 3466 ++++++++++++++++++++++++----------
 4 files changed, 7912 insertions(+), 4476 deletions(-)

commit 03bb9b896ce33d10e151b5490a95ed0424760848
Author: Chema Celorio <chema@celorio.com>
Date:   Sun May 13 22:28:11 2001 +0000

    replace "global.h" with "xst.h"
    
    2001-05-13  Chema Celorio  <chema@celorio.com>
    
        * all .c files : replace "global.h" with "xst.h"
    
    2001-05-12  Chema Celorio  <chema@celorio.com>
    
        * location.c (location_store_xml): add a carriage return after the
        warning message
    
    2001-05-13  Chema Celorio  <chema@celorio.com>
    
        * internetsharing.glade.in: remove the range entry
    
    2001-05-13  Chema Celorio  <chema@celorio.com>
    
        * xst-tool.h (XST_TOOL_MAKE_TYPE): add a macro that will reduce
        the boilerplate when we subclass an XstTool.
    
        * xst-dialog.c (xst_dialog_set_widget_policies): use
        widget_new function, don't append the widget to the
        slist here
        (xst_dialog_set_widget_user_modes): use widget_new_full
    
        * xst-widget.h: upd the header
    
        * xst-widget.c (xst_widget_new): reame to widget_new_full
        (xst_widget_new): implement a widget_new which takes only 2
        parameters an XstDialog and a XstWidgetPolicy. We prepend
        to the dialog->xst_widget_list inside the function and not
        in the caller.
    
        * Makefile.am (noinst_LIBRARIES): s/global.h/xst.h
    
    2001-05-12  Chema Celorio  <chema@celorio.com>
    
        * global.h: rename to xst.h
    
        * xst-xml.c: constify
        (xst_xml_element_get_boolean): implement
    
        * xst-xml.h: constify
    
    2001-05-13  Chema Celorio  <chema@celorio.com>
    
        * main.c (main): clean and start working on the front end.
        * callbacks.c:
        * transfer.c:
    
        * ishare.h : new file

 archiver/ChangeLog  | 5 +++++
 archiver/location.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 87078db3c51b81fe3d1f17847512c752319b73bc
Author: Arturo Espinosa Aldama <arturo@ximian.com>
Date:   Wed May 9 18:26:50 2001 +0000

    0.4 RELEASE sign added to all ChangeLogs.
    
    2001-05-09  Arturo Espinosa Aldama  <arturo@ximian.com>
    
        * 0.4 RELEASE sign added to all ChangeLogs.

 archiver/ChangeLog       | 4 ++++
 archiver/tests/ChangeLog | 4 ++++
 2 files changed, 8 insertions(+)

commit 6fb797ca6b65e57db06f79b1ad3cc36268cddc35
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun May 6 17:33:27 2001 +0000

    Implement. Create a copy of a preferences structure (clone_cb): Implement
    
    2001-05-06  Bradford Hovinen  <hovinen@ximian.com>
    
        * preferences.c (preferences_clone): Implement. Create a copy of a
        preferences structure
        (clone_cb): Implement
        (read_prefs_from_db): Parse screensavers from a copy of the string
        so that we don't overwrite the original
    
        * main.c (main): Call preferences_clone instead of reloading old
        preferences

 capplets/screensaver/ChangeLog                | 11 +++++++
 capplets/screensaver/main.c                   |  3 +-
 capplets/screensaver/preferences.c            | 41 +++++++++++++++++++++++++--
 capplets/screensaver/preferences.h            |  1 +
 capplets/screensaver/screensavers/rotor.xml.h |  6 ++++
 5 files changed, 58 insertions(+), 4 deletions(-)

commit 7bfddd30e4c6955fc584adf5a211e67389ddf98d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat May 5 19:16:21 2001 +0000

    Fix segv
    
    2001-05-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * prefs-widget.c (one_screensaver_cb): Fix segv
    
        * screensavers/*.xml: Added test attribute to monochrome setting

 capplets/screensaver/ChangeLog                    | 4 ++++
 capplets/screensaver/prefs-widget.c               | 2 +-
 capplets/screensaver/screensaver-prefs-dialog.c   | 1 +
 capplets/screensaver/screensavers/blitspin.xml    | 2 +-
 capplets/screensaver/screensavers/bouboule.xml    | 2 +-
 capplets/screensaver/screensavers/braid.xml       | 2 +-
 capplets/screensaver/screensavers/bubbles.xml     | 2 +-
 capplets/screensaver/screensavers/crystal.xml     | 2 +-
 capplets/screensaver/screensavers/cynosure.xml    | 2 +-
 capplets/screensaver/screensavers/decayscreen.xml | 2 +-
 capplets/screensaver/screensavers/discrete.xml    | 2 +-
 capplets/screensaver/screensavers/drift.xml       | 2 +-
 capplets/screensaver/screensavers/epicycle.xml    | 2 +-
 capplets/screensaver/screensavers/fadeplot.xml    | 2 +-
 capplets/screensaver/screensavers/flame.xml       | 2 +-
 capplets/screensaver/screensavers/forest.xml      | 2 +-
 capplets/screensaver/screensavers/goop.xml        | 2 +-
 capplets/screensaver/screensavers/grav.xml        | 2 +-
 capplets/screensaver/screensavers/greynetic.xml   | 2 +-
 capplets/screensaver/screensavers/halo.xml        | 2 +-
 capplets/screensaver/screensavers/helix.xml       | 2 +-
 capplets/screensaver/screensavers/hopalong.xml    | 2 +-
 capplets/screensaver/screensavers/hypercube.xml   | 2 +-
 capplets/screensaver/screensavers/ifs.xml         | 2 +-
 capplets/screensaver/screensavers/julia.xml       | 2 +-
 capplets/screensaver/screensavers/lightning.xml   | 2 +-
 capplets/screensaver/screensavers/lisa.xml        | 2 +-
 capplets/screensaver/screensavers/lmorph.xml      | 2 +-
 capplets/screensaver/screensavers/moire.xml       | 2 +-
 capplets/screensaver/screensavers/munch.xml       | 2 +-
 capplets/screensaver/screensavers/pedal.xml       | 2 +-
 capplets/screensaver/screensavers/sierpinski.xml  | 2 +-
 capplets/screensaver/screensavers/spiral.xml      | 2 +-
 capplets/screensaver/screensavers/starfish.xml    | 2 +-
 capplets/screensaver/screensavers/triangle.xml    | 2 +-
 capplets/screensaver/screensavers/vines.xml       | 2 +-
 capplets/screensaver/screensavers/xroger.xml      | 2 +-
 37 files changed, 40 insertions(+), 35 deletions(-)

commit eba544a0917e29e375b7609e49fd101cd4a937db
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat May 5 14:19:03 2001 +0000

    Add check for libximian_archiver; try include cflags and libs only if the
    
    2001-05-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Add check for libximian_archiver; try include
        cflags and libs only if the archiver is present *
        capplets/*/main.c: Add #ifdef's around anything that uses the
        Ximian archiver so that the capplets can compile without it

 ChangeLog                                      |  7 ++++
 acconfig.h                                     |  1 +
 capplets/background/main.c                     | 41 ++++++++++++++++++++-
 capplets/keyboard/main.c                       | 39 +++++++++++++++++++-
 capplets/mouse/main.c                          | 29 ++++++++++++++-
 capplets/screensaver/main.c                    | 51 +++++++++++++++++++++++++-
 capplets/screensaver/screensavers/rotor.xml.h  |  6 ---
 capplets/sound/main.c                          | 39 +++++++++++++++++++-
 capplets/ui-properties/main.c                  | 33 ++++++++++++++++-
 capplets/wm-properties/wm-properties-capplet.c | 11 ++++--
 configure.in                                   | 30 ++++++++++++---
 11 files changed, 260 insertions(+), 27 deletions(-)

commit 27692b9c5c377ef394636e22c6e40e20314e2652
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat May 5 14:14:30 2001 +0000

    Add sed expression to replace @VERSION@
    
    2001-05-05  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (ximian_archiverConf.sh): Add sed expression to
        replace @VERSION@

 archiver/ChangeLog   | 5 +++++
 archiver/Makefile.am | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit a053572d1d0b03b7924862f4ce11477f45450505
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat May 5 03:05:20 2001 +0000

    Implement
    
    2001-05-04  Bradford Hovinen  <hovinen@ximian.com>
    
        * cluster-location.c (cluster_location_do_rollback): Implement
    
        * location.c (location_do_rollback): Rename from do_rollback; make
        into virtual method
        (location_rollback_backend_to):
        (location_rollback_backend_by):
        (location_rollback_id): Update to call virtual method
    
        * Makefile.am (libximian_archiver_la_SOURCES):
        (include_HEADERS): Add cluster.[ch], cluster-location.[ch]
    
    2001-05-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * cluster.[ch]: New class
    
        * cluster.c (cluster_new):
        (cluster_load): Implement
    
        * archive.c (archive_set_arg): Add argument ARG_IS_GLOBAL
        (archive_class_init): Make ARG_PREFIX construct-only
        (archive_construct): Implement
        (do_load): Remove
        (archive_load): Use archive_construct; pass is_global as an
        argument to the object constructor

 archiver/ChangeLog          |  25 +++
 archiver/Makefile.am        |  20 +-
 archiver/archive.c          |  85 ++++++---
 archiver/archive.h          |   3 +
 archiver/cluster-location.c | 222 ++++++++++++++++++++++
 archiver/cluster-location.h |  59 ++++++
 archiver/cluster.c          | 437 ++++++++++++++++++++++++++++++++++++++++++++
 archiver/cluster.h          |  71 +++++++
 archiver/location.c         | 162 ++++++++--------
 archiver/location.h         |   4 +
 10 files changed, 979 insertions(+), 109 deletions(-)

commit 7631a53d80e9dfd2082c6571d4e20a133b3a03b6
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri May 4 01:28:38 2001 +0000

    Support STORE_DEFAULT (store_snapshot_cb): Use STORE_DEFAULT rather than
    
    2001-05-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_store_xml): Support STORE_DEFAULT
        (store_snapshot_cb): Use STORE_DEFAULT rather than STORE_MASK_PREVIOUS
    
        * location.h (_StoreType): Add STORE_DEFAULT
    
        * config-log.c (config_log_get_rollback_id_by_steps): Return the
        current id if the node represents default data
    
        * main.c (do_add_location): Cast correctly, fixing compiler
        warning

 archiver/ChangeLog    | 20 +++++++++++++++++
 archiver/config-log.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++----
 archiver/config-log.h |  3 ++-
 archiver/location.c   |  8 ++++---
 archiver/location.h   |  2 +-
 archiver/main.c       |  3 ++-
 6 files changed, 87 insertions(+), 10 deletions(-)

commit a7fa858b6110b758231b83a47364aeebd7b72659
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Fri May 4 00:05:14 2001 +0000

    Handle --get-defaults (do_restore_from_defaults): Implement
    
    2001-05-03  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/*/main.c (main): Handle --get-defaults
        (do_restore_from_defaults): Implement
    
        * capplets/*/preferences.c (preferences_init): Load default values

 ChangeLog                            |  7 +++++++
 capplets/background/preferences.c    | 30 ++++++++++++++++++++----------
 capplets/keyboard/main.c             | 12 ++++++++++++
 capplets/keyboard/preferences.c      | 26 +++++++++++++++++++++++++-
 capplets/mouse/main.c                | 12 ++++++++++++
 capplets/mouse/preferences.c         | 32 +++++++++++++++++++++++++++++++-
 capplets/screensaver/ChangeLog       |  4 ++++
 capplets/screensaver/main.c          | 11 +++++++++++
 capplets/screensaver/preferences.c   |  9 +++++++++
 capplets/sound/main.c                | 12 ++++++++++++
 capplets/sound/preferences.c         | 18 +++++++++++++++---
 capplets/ui-properties/main.c        | 12 ++++++++++++
 capplets/ui-properties/preferences.c |  2 ++
 13 files changed, 172 insertions(+), 15 deletions(-)

commit fc7487ef4f75271cdc7633d1e5cc59c5b91b485d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Apr 29 16:22:27 2001 +0000

    Make desktop-entry an attribute rather than a child node
    
    2001-04-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/wm-properties/wm-list.c (wm_read_from_xml): Make
        desktop-entry an attribute rather than a child node
    
        * capplets/*/main.c: Do not try to load preferences from XML if
        there was not XML data

 ChangeLog                            |   8 ++
 capplets/background/main.c           |  27 ++--
 capplets/background/preferences.c    |  91 ++++++++------
 capplets/keyboard/main.c             |  30 +++--
 capplets/keyboard/preferences.c      |  81 +++++++-----
 capplets/mouse/main.c                |  31 +++--
 capplets/mouse/preferences.c         |  67 ++++++----
 capplets/screensaver/ChangeLog       |  11 ++
 capplets/screensaver/main.c          |  37 +++---
 capplets/screensaver/preferences.c   | 201 +++++++++++++++++-------------
 capplets/sound/ChangeLog             |   7 ++
 capplets/sound/main.c                |  29 +++--
 capplets/sound/preferences.c         |  80 +++++++-----
 capplets/ui-properties/main.c        |  27 ++--
 capplets/ui-properties/preferences.c | 230 ++++++++++++++++++++++-------------
 capplets/wm-properties/wm-list.c     |  66 +++++++---
 16 files changed, 653 insertions(+), 370 deletions(-)

commit 78636aecbcaf3502230fcf0b1ff31a74e4e16820
Author: Arturo Espinosa <arturo@ximian.com>
Date:   Fri Apr 27 00:32:19 2001 +0000

    Set a flag to disable the DEBUG_MSG macro, which messes with the
    
    2001-04-26  Arturo Espinosa  <arturo@ximian.com>
    
        * util.h: Set a flag to disable the DEBUG_MSG macro, which
        messes with the frontend<->backend talking.

 archiver/ChangeLog |  2 ++
 archiver/util.h    | 14 ++++++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit 7c594c235f2ab66c5c42b73847adeff93acd52bb
Author: Arturo Espinosa <arturo@ximian.com>
Date:   Thu Apr 26 22:35:47 2001 +0000

    changed g_critical to g_error. If a newer version of glib is to be
    
    2001-04-26  Arturo Espinosa  <arturo@ximian.com>
    
        * location.c: changed g_critical to g_error. If a newer
            version of glib is to be required, change configure.in then.

 archiver/ChangeLog  | 5 +++++
 archiver/location.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1455dedadd65f8d479da52f9e1ed0af50b2882e7
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Apr 25 01:32:13 2001 +0000

    Remove FIXME warning (applier_apply_prefs): Disable wallpaper in new_prefs
    
    2001-04-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * applier.c (applier_apply_prefs): Remove FIXME warning
        (applier_apply_prefs): Disable wallpaper in new_prefs structure if
        the wallpaper pixbuf is NULL and we are not loading a new pixbuf

 capplets/background/applier.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 6ea2d34dd53bfa647c5a4c61e41e78d244c98215
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Apr 25 01:05:14 2001 +0000

    Save metadata immediately
    
    2001-04-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_add_backend):
        (location_remove_backend): Save metadata immediately

 archiver/ChangeLog  | 2 ++
 archiver/location.c | 4 ++++
 2 files changed, 6 insertions(+)

commit 91012a3faccfde093cecc1b004ad2eea2708f4bd
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Apr 25 01:01:39 2001 +0000

    Support --location
    
    2001-04-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/*/main.c:
        * capplets/*/preferences.c: Support --location

 ChangeLog | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

commit 9bf1996a30dfa3d4528490e57e6887ead0958044
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Apr 25 01:00:46 2001 +0000

    Support --location
    
    2001-04-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/*/main.c:
        * capplets/*/preferences.c: Support --location
    
        * capplets/Makefile.am: Compile in screensaver properties

 capplets/Makefile.am                 |   2 +-
 capplets/background/main.c           |  57 ++++++++++++++-----
 capplets/background/preferences.c    |  22 +++++---
 capplets/background/preferences.h    |   2 +-
 capplets/keyboard/main.c             |  52 ++++++++++++-----
 capplets/keyboard/preferences.c      |   4 +-
 capplets/keyboard/preferences.h      |   2 +-
 capplets/mouse/main.c                |  52 ++++++++++++-----
 capplets/mouse/preferences.c         |   4 +-
 capplets/mouse/preferences.h         |   2 +-
 capplets/screensaver/main.c          | 105 +++++++++++++++++++++++------------
 capplets/screensaver/preferences.h   |   2 +-
 capplets/sound/main.c                |  52 ++++++++++++-----
 capplets/sound/preferences.c         |   4 +-
 capplets/sound/preferences.h         |   2 +-
 capplets/ui-properties/main.c        |  46 ++++++++++-----
 capplets/ui-properties/preferences.c |   4 +-
 capplets/ui-properties/preferences.h |   2 +-
 18 files changed, 283 insertions(+), 133 deletions(-)

commit b38b466dc0e9ceda1cc9d8fa1240048857bbf272
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Apr 25 00:57:59 2001 +0000

    Use read rather than fread
    
    2001-04-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_store): Use read rather than fread
    
    2001-04-23  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_store): Block SIGPIPE
        (location_store): Fix off-by-one bug
    
        * archive.c (archive_get_current_location_id): Store a full
        snapshot of the system after the default location is created
    
        * location.c (run_backend_proc): Added parameter do_get to allow
        control of whether pipe is opened to read or write
        (store_snapshot_cb): Implement. Invokes the given backend with
        --get and stores the XML data
        (location_store_full_snapshot): Implement. Stores a complete
        snapshot with all backend data
        (subtract_xml_node): Assume all nodes are the same
        (location_store): Add string termination character
        (location_store): Only store data if any data were actually read
    
    2001-04-22  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (config_log_iterate): Use the correct data pointer
        to pass to the callback
    
        * location.c (location_new): Save the metadata for the newly
        created location right away
    
        * util.h: Defined DEBUG_MSG macro for debugging messages
    
        * archive.c (archive_unregister_location): Don't remove the
        location from the tree if the object is marked destroyed
    
    2001-04-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * archive.c (archive_destroy): Return if the archive was already
        destroyed
    
        * location.c (location_delete): Unregister the location before
        destroying it
    
        * config-log.c (config_log_delete): Set deleted flag
        (config_log_destroy): Only dump the log if the log is not marked
        deleted
    
        * location.c (location_delete): Check return value of rmdir
    
        * config-log.c (io_buffer_destroy): Call g_io_channel_close to
        close the GIOChannel
        (disconnect_socket): Force the removal of the source id from the
        main loop
        (config_log_destroy): Disconnect the socket after unloading, not
        before
    
        * location.c (location_delete): Remember to have a NULL at the end
        of arguments to g_strconcat ()
    
    2001-04-22  Bradford Hovinen  <hovinen@ximian.com>
    
        * location-list.[ch]: Change to inherit GtkObject
    
        * location-manager-dialog.c (location_manager_dialog_destroy):
        Implement. Close and destroy all aggregated objects.
        (close_cb): Call gtk_object_destroy
    
    2001-04-21  Bradford Hovinen  <hovinen@ximian.com>
    
        * location-manager-dialog.c (delete_location_cb): Don't let the
        user delete the default location
        (delete_ok_cb): Add some sanity checks to make sure the current
        location is set to something new if we delete it
    
        * location-list.c (location_list_select): Implement. Selectes the
        given location in the location list
    
        * location-manager-dialog.c (delete_ok_cb): Use correct semantics
        for callback

 archiver/ChangeLog        |  59 +++++++++++++++++++++++++++
 archiver/Makefile.am      |   1 +
 archiver/archive.c        |  20 +++++++--
 archiver/config-log.c     |  49 ++++++++++------------
 archiver/default-user.xml |   7 +---
 archiver/location.c       | 101 ++++++++++++++++++++++++++++++++++++----------
 archiver/location.h       |   2 +
 archiver/util.h           |   8 ++++
 8 files changed, 190 insertions(+), 57 deletions(-)

commit fda9cc2357ee22872b5de1a16c3873bb24cfe77a
Author: Anna Marie Dirks <anna@ximian.com>
Date:   Tue Apr 24 20:45:23 2001 +0000

    This is the initial mockup of my reorganization of control center's menus;
    
    2001-04-24  Anna Marie Dirks <anna@ximian.com>
        * capplets/interfaces/control-center.glade: This is the initial mockup of my reorganization of control center's menus; I'm committing it to garner input. This file includes separate menus for simple, intermediate and advanced modes; it does not include any graphics (yet).

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 49876695d2d6dc1dff5355d9f958898737e1d6da
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sun Apr 22 01:05:26 2001 +0000

    Added InputBuffer, removed get_line (struct _Slave): (struct
    
    2001-04-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c: Added InputBuffer, removed get_line
        (struct _Slave):
        (struct _ConfigLogPrivate ): Replaced GIOChannel * and FILE * with
        InputBuffer *'s
        (input_buffer_new): Implement. Constructs a new input buffer
        (input_buffer_destroy): Implement. Destroys an input buffer and
        closes the file descriptor
        (input_buffer_cycle): Implement (borrowed from GDict). Reads
        additional data from the input file
        (input_buffer_read_line): Implement (borrowed from GDict). Reads a
        line from the input file and returns a pointer to it
        (input_buffer_write): Implement. Write the indicated string out to
        the channel
    
    2001-04-15  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (config_log_set_arg): Create semaphore for
        auto-reloading
        (do_load): Removed locking code
        (load_log_entry): Support prepending log entries to the beginning
        of the log; free entry->date if parsing was unsuccessful
        (config_log_reset_filenames): Unlink socket filename if not owner
        (config_log_reset_filenames): Rebind socket when filename is reset
        (connect_socket): Implement. Creates or connects to the socket
        associated with the config log
        (check_socket_filename): Implement. Checks to see if the filename
        associated with the socket is in use.
        (bind_socket): Implement. Binds the socket to the filename.
        (socket_connect_cb): Implement. Callback issued when a master gets
        a new connection.
        (socket_data_cb): Implement. Callback issued when a slave gets
        data from the master.
        (slave_new): Implement. Creates a new slave structure
        (slave_destroy): Implement. Destroys a slave structure
        (slave_data_cb): Implement. Callback issued when data comes in
        from a slave
        (slave_broadcast_data): Implement. Broadcast the first log entry
        to all the slaves except the given one
        (disconnect_socket): Implement. Disconnects the socket
        (config_log_open): Call connect_socket
        (do_unload): Don't dump the log unless currently the socket owner
        (config_log_write_entry): Broadcast data to slaves or write data
        to socket, depending on whether currently the socket owner
    
    2001-04-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (do_unload): Add a parameter write_log to tell
        whether to write out the log when unloading
        (config_log_finalize): Implement
    
        * config-log.[ch]: Put all data fields in ConfigLogPrivate
        structure
    
        * gui-backend-list.c (gui_backend_list_launch_current): Rewrite to
        use popen

 archiver/ChangeLog        |  55 +++
 archiver/config-log.c     | 988 ++++++++++++++++++++++++++++++++++++----------
 archiver/config-log.h     |  49 ++-
 archiver/default-user.xml |   6 +-
 archiver/main.c           |   3 +
 5 files changed, 871 insertions(+), 230 deletions(-)

commit 1ce0887b6885ce17bc1afd29d877bb02b6d66af0
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sat Apr 21 21:19:33 2001 +0000

    Translations from keld
    control-center/po/da.po eog/po/da.po gb/po/da.po
    gernel/po/da.po gimp/po/da.po gnome-db/po/da.po
    gnome-libs/po/da.po gnome-lokkit/po/da.po gnome-print/po/da.po
    gnomeicu/po/da.po gphoto/po/da.po gtk+/po/da.po
    gtranslator/po/da.po libgda/po/da.po mc/po/da.po pan/po/da.po
    pong/po/da.po sodipodi/po/da.po ximian-setup-tools/po/da.po

 po/da.po | 256 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 146 insertions(+), 110 deletions(-)

commit 6388ed3ee8672d82a61f96a267fd4549e3c86d67
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Wed Apr 18 14:40:16 2001 +0000

    Updated Slovak translation

 po/ChangeLog |   4 ++
 po/sk.po     | 227 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 120 insertions(+), 111 deletions(-)

commit 69ff23e49b38f987cc9b5b9ad767f4345624db9e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Apr 12 01:43:31 2001 +0000

    Make sure to search location of XST backends
    
    2001-04-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (run_backend_proc): Make sure to search location of
        XST backends
    
        * Makefile.am (INCLUDES): Added XST_BACKEND_LOCATION

 archiver/ChangeLog   | 10 ++++++++++
 archiver/Makefile.am |  1 +
 archiver/archive.c   | 26 ++++++++++++--------------
 archiver/location.c  | 10 ++++++++++
 4 files changed, 33 insertions(+), 14 deletions(-)

commit c366b85ccf0963e977ec0ebcee5d7b08f213ebad
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Apr 12 00:57:01 2001 +0000

    Search XST_FRONTEND_LOCATION if we are in a global state, to make sure
    
    2001-04-11  Bradford Hovinen  <hovinen@ximian.com>
    
        * gui-backend-list.c: Search XST_FRONTEND_LOCATION if we are in a
        global state, to make sure XSTs are found
        (populate_from_dir): If dealing with an XST, replace "-admin" with
        "-conf" to get the backend
    
        * Makefile.am (INCLUDES): Added XST_FRONTEND_LOCATION
    
        * Makefile.am (INCLUDES): Replace obsolete hcm directory names
        with ximian-config

 archiver/ChangeLog          |  5 +++++
 archiver/Makefile.am        |  6 +++---
 archiver/default-global.xml | 12 ++++++++++--
 3 files changed, 18 insertions(+), 5 deletions(-)

commit 3ad1a18d65a0c3210255cecb4f0f4f2a2b3d3ac6
Author: Christian Rose <menthos@src.gnome.org>
Date:   Mon Apr 9 11:53:01 2001 +0000

    Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 271 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 147 insertions(+), 128 deletions(-)

commit e0d1f2ff0390e1e23a3ca7cfd4a24e3d3f987125
Author: Jacob Leach <jleach@src.gnome.org>
Date:   Tue Apr 3 01:07:25 2001 +0000

    Pipe down!

 capplets/rollback/.cvsignore | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 14b66884a9a5678f3cc332551cf162227cb358cb
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Fri Mar 30 15:29:41 2001 +0000

    Ignore fix

 po/.cvsignore | 1 +
 po/ChangeLog  | 4 ++++
 2 files changed, 5 insertions(+)

commit 727740f13e6b271ce37045c3f72e08d00e02b53c
Author: Anna Marie Dirks <anna@ximian.com>
Date:   Thu Mar 29 21:48:08 2001 +0000

    added this directory to store gladed mockups of new capplets. added this
    
    2001-03-29  Anna Marie Dirks <anna@ximian.com>
        * capplets/interfaces: added this directory to store gladed mockups of new capplets.
        * capplets/pixmaps: added this directory to store the supporting images for the capplet mockups.
    
        * capplets/interfaces/background-capplet-mockup.glade: initial version of the new and improved background capplet. i still need to figure out exactly which labels to use where (ie, "alignment" is not really correct).
    
        * capplets/pixmaps/athens-bg.png: graphic used to demonstrate how/where the preview should go in the new background capplet.

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit a9611e4f414e4166c962c08a84687205abea0e28
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Thu Mar 29 16:16:34 2001 +0000

    Commit

 po/tr.po | 259 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 150 insertions(+), 109 deletions(-)

commit e0ac44f896ff46667f2764fe7406ec5b363c06de
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Mar 25 13:13:47 2001 +0000

    Updated Slovenian translation

 po/sl.po | 265 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 146 insertions(+), 119 deletions(-)

commit 04de16c8ab00825f9510cba7dfcfdbf0839f87c8
Author: John Fleck <jfleck@src.gnome.org>
Date:   Fri Mar 23 03:05:08 2001 +0000

    file sgmldocs.make was initially added on branch control-center-1-0.

commit 8541eab4ffa6079333533cb9701b5be3c0461da0
Author: Ravi Pratap <ravi@che.iitm.ac.in>
Date:   Mon Mar 19 04:32:37 2001 +0000

    Correct to cast to CappletWidgetClass
    
    2001-03-18  Ravi Pratap  <ravi@che.iitm.ac.in>
    
        * control-center/capplet-widget.h (CAPPLET_WIDGET_CLASS): Correct
        to cast to CappletWidgetClass
    
        * capplets/wm-properties.c (store_archive_data): add
        (ok_callback): Modify to store settings using wm_list_save
    
        * capplets/gnome-edit-properties.c (edit_apply): Modify to call
        store_archive_data before exiting.
        (current_info): Add new global variable to hold current state.

 ChangeLog                                      | 12 ++++++++++++
 capplets/wm-properties/wm-properties-capplet.c | 27 +++++++++++++++++++++++++-
 2 files changed, 38 insertions(+), 1 deletion(-)

commit e2b921ebf0acd93c5b3562d4a25a45d0cbe3861e
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Mar 16 12:32:15 2001 +0000

    Updated Norwegian translation.
    
    2001-03-16  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.
    
    2001-03-14  Fatih Demir <kabalak@gtranslator.org>

 po/ChangeLog |   4 +
 po/no.po     | 335 ++++++++++++++---------------------------------------------
 2 files changed, 81 insertions(+), 258 deletions(-)

commit ed0d760991775ec3bf95b86d3290342422184b92
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Mar 15 05:24:57 2001 +0000

    Added code to store archive data with the ximian archiver
    
    2001-03-15  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-*/main.c: Added code to store archive data with the
        ximian archiver

 ChangeLog                     |  5 +++++
 capplets/keyboard/main.c      | 20 ++++++++++++++++++++
 capplets/mouse/main.c         | 20 ++++++++++++++++++++
 capplets/sound/main.c         | 20 ++++++++++++++++++++
 capplets/ui-properties/main.c | 20 ++++++++++++++++++++
 5 files changed, 85 insertions(+)

commit 1af60708fb7dad15562efdd22f08e50292587970
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Wed Mar 14 17:56:32 2001 +0000

    tr.po

 po/ChangeLog |    3 +
 po/tr.po     | 1989 ++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 1384 insertions(+), 608 deletions(-)

commit cbbc6bfbc6d7847a07ba1b267e02fa4639d7f406
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Wed Mar 14 12:00:45 2001 +0000

    Updated Korean translation for gnomecc

 po/ChangeLog |    4 +
 po/ko.po     | 4819 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2577 insertions(+), 2246 deletions(-)

commit 6ad01e765f55b284c6aab2a3e0b4d81345c8b85e
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Tue Mar 13 16:32:35 2001 +0000

    Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 187 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 117 insertions(+), 74 deletions(-)

commit 2c63f8ead772a7b95d885728d2b2ea62dc55947d
Author: Chema Celorio <chema@celorio.com>
Date:   Tue Mar 13 05:17:20 2001 +0000

    s/gEdit/gedit
    
    2001-03-13  Chema Celorio  <chema@celorio.com>
    
        * capplets/gnome-edit-properties/gnome-edit-properties.c:
        s/gEdit/gedit

 ChangeLog                  | 5 +++++
 capplets/Makefile.am       | 4 ++--
 capplets/background/main.c | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

commit 45c0705006d452bedf7f4d8c94175d2eb8050b17
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Mar 13 03:16:08 2001 +0000

    Fix call to location_store_xml
    
    2001-03-12  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (store_archive_data): Fix call to location_store_xml

 capplets/background/background-properties.glade   | 892 +++++++++++-----------
 capplets/background/background-properties.glade.h |  39 +-
 capplets/background/main.c                        |   2 +-
 capplets/background/preferences.c                 |  18 +-
 capplets/background/preferences.h                 |   2 +-
 capplets/background/prefs-widget.c                | 815 ++++++++++----------
 capplets/screensaver/ChangeLog                    |   4 +
 capplets/screensaver/main.c                       |   2 +-
 8 files changed, 905 insertions(+), 869 deletions(-)

commit a4d3d1b934b2ef4b239cd216c15e6621dc701f9f
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Mar 11 22:21:26 2001 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2afb61f80903555d70714f5e9e5963f3fe1fa782
Author: Maciej Stachowiak <mstachow@src.gnome.org>
Date:   Fri Mar 9 16:22:47 2001 +0000

    file theme-selector.desktop.in was initially added on branch control-center-1-0.

commit e7d9f82a0f48921d9ead9da0a584466d43dc11df
Author: Darin Adler <darin@src.gnome.org>
Date:   Tue Mar 6 23:33:19 2001 +0000

    Merge all changes from gnome-vfs-1 branch to HEAD.

 capplets/file-types/.cvsignore                    |   3 +-
 capplets/file-types/Makefile.am                   |  43 +-
 capplets/file-types/file-types-capplet-dialogs.c  | 690 ++++++++++++----------
 capplets/file-types/file-types-capplet-dialogs.h  |   3 +-
 capplets/file-types/file-types-capplet.c          | 462 +++++++++++----
 capplets/file-types/file-types-capplet.desktop.in |   7 +
 capplets/file-types/file-types-capplet.h          |  12 +-
 capplets/file-types/file-types-icon-entry.c       | 130 ++--
 capplets/file-types/file-types-icon-entry.h       |   2 +-
 capplets/file-types/libuuid/.cvsignore            |   3 +
 capplets/file-types/libuuid/Makefile.am           |  27 +
 capplets/file-types/libuuid/clear.c               |  20 +
 capplets/file-types/libuuid/compare.c             |  32 +
 capplets/file-types/libuuid/copy.c                |  21 +
 capplets/file-types/libuuid/gen_uuid.c            | 257 ++++++++
 capplets/file-types/libuuid/gen_uuid_nt.c         |  92 +++
 capplets/file-types/libuuid/isnull.c              |  25 +
 capplets/file-types/libuuid/pack.c                |  46 ++
 capplets/file-types/libuuid/parse.c               |  52 ++
 capplets/file-types/libuuid/tst_uuid.c            | 119 ++++
 capplets/file-types/libuuid/unpack.c              |  40 ++
 capplets/file-types/libuuid/unparse.c             |  28 +
 capplets/file-types/libuuid/uuid.h                |  50 ++
 capplets/file-types/libuuid/uuidP.h               |  40 ++
 capplets/file-types/libuuid/uuid_time.c           | 138 +++++
 capplets/file-types/nautilus-mime-type.desktop    |  21 -
 26 files changed, 1788 insertions(+), 575 deletions(-)

commit e0d6ca4c742dc0d59c4544996d2eecd989ff052b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Mar 2 23:40:34 2001 +0000

    updated Spanish file

 po/ChangeLog |    4 +
 po/el.po     |   98 +--
 po/es.po     | 2355 +++++++++++++++++++++++++++++++++++--------------
 po/et.po     | 2767 +++++++++++++++++++++++++++++++++++++++++++---------------
 po/hr.po     | 2549 ++++++++++++++++++++++++++++++++++++++++-------------
 po/ro.po     |   14 +-
 po/sl.po     |    2 +-
 7 files changed, 5746 insertions(+), 2043 deletions(-)

commit 966a112621c96aa07f2443388e84400a7a014e49
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Thu Mar 1 23:37:30 2001 +0000

    Updated Slovenian translation

 po/sl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 68c70f63b0e07e35d95ec55c96d990e1db204c64
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Fri Feb 23 18:23:26 2001 +0000

    fixup

 po/sk.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aeed9a0a55d53bf9957355293cb0c3dc76dc4c07
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Fri Feb 23 18:10:19 2001 +0000

    Fixup of MIME

 po/ChangeLog |  2 +-
 po/sk.po     | 20 ++++++++++----------
 2 files changed, 11 insertions(+), 11 deletions(-)

commit 944746e6690393ce18d48c25b95b26d59ed38725
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Fri Feb 23 17:36:05 2001 +0000

    Updated Slovak translation

 po/ChangeLog | 4 ++++
 po/sk.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit aa64359cbc3d336cf72d19170edfc8789b1eaa57
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Wed Feb 21 11:41:14 2001 +0000

    Updated Korean translation committed

 po/ChangeLog |   4 ++
 po/ko.po     | 125 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 66 insertions(+), 63 deletions(-)

commit 298bbf11372ccf91c6469d97f62beb6582835ab8
Author: Gene Ragan <gzr@src.gnome.org>
Date:   Tue Feb 20 20:10:46 2001 +0000

    file files-types-capplet.desktop was initially added on branch gnome-vfs-1.

commit 737118953bd170331dc02b2a2803360ccb622e09
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Feb 20 15:37:48 2001 +0000

    Use attr->val rather than attr->node Created Removed parts dealing with
    
    2001-02-20  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (compare_xml_nodes): Use attr->val rather than
        attr->node
        * tests/test-3.sh: Created
        * tests/test-2.sh: Removed parts dealing with partial containment

 archiver/ChangeLog       |   5 +
 archiver/location.c      |   4 +-
 archiver/tests/ChangeLog |   5 +
 archiver/tests/test-2.sh |  74 +-------------
 archiver/tests/test-3.sh | 245 +++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 260 insertions(+), 73 deletions(-)

commit afc3333a5a4d9600bf0a9abe0d4c0e9ad311b11e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Tue Feb 20 02:43:35 2001 +0000

    Added test-1.sh and test-2.sh, the first two tests in the test suite
    
    2001-02-19  Bradford Hovinen  <hovinen@ximian.com>
    
        * Added test-1.sh and test-2.sh, the first two tests in the test suite
    
        * location.c (location_foreach_backend): Update to use BackendNote
        (do_rollback): Don't do rollback if the doc is NULL
        (location_store_xml): Return if this location does not contain the
        backend specified
        (location_store_xml): Use fprintf rather than g_warning
        (subtract_xml_node):
        (merge_xml_nodes): Update child node while iterating
    
        * config-log.c (config_log_get_rollback_ids_for_date): Remove
    
        * location.c (location_set_arg): ref inherited object
    
        * main.c (main): Don't check if the location is default; don't
        create default location if non-existant
        (main): Signal error if the user is adding a location and did not
        specify a name
        (main): Use fprintf to signal the error that a location could not
        be opened
        (main): Signal error and exit when archive cannot be opened,
        rather than using g_error
        (do_add_location): Check for NULL location_id
        (do_add_location): Create default location if it does not exist
        and it is specified as the parent
    
        * archive.c (archive_get_current_location_id): Create the default
        location if it does not exist
    
        * backend-list.c (backend_list_contains): Use strcmp and iterate
        through the list
    
        * location.c (location_contains): Read whether the backend is in
        the master list if this location is toplevel
    
    2001-02-18  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (do_add_backend): Support ContainmentType specification
        (do_store): Support StoreType specification
        (struct store_options): Add set of options to support
        compare_parent, mask_previous, options
        (struct add_remove_backend_options): Add option for partial
        containment when adding backend
    
        * location.c (subtract_xml_node):
        (merge_xml_nodes):
        (compare_xml_nodes):
        (merge_xml_docs):
        (subtract_xml_doc): Implement. XML node compare/merging operations
        (location_store): Rewrite to call location_store_xml
        (location_store_xml): Include support for diffing with
        configuration data from parent config
        (location_dump_rollback_data): Rewrite to use
        location_load_rollback_data
        (dump_xml_data): Remove
        (do_rollback): Rewrite to use xmlDocDump; pass xmlDocPtr rather
        than id number
        (location_rollback_id): Add node merging support
        (location_rollback_backend_by):
        (location_rollback_backend_to): Rewrite to use
        location_load_rollback_data
        (location_rollback_backends_to): Rewrite to iterate through
        backend list and call location_rollback_backend_to for each
        element
        (location_rollback_all_to): Ditto
    
    2001-02-14  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.h (_ContainmentType): Introduce. Specifies the type of
        containment (full, partial, none), of a backend in a location
    
        * location.c: Added struct BackendNote; have backend list include
        type of containment as well as backend id
        (location_contains): Use find_note
        (find_note): Implement. Finds a note for the given backend id in
        the backend list
        (backend_note_new):
        (backend_note_destroy): Implement. Convenience functions for
        creating and destroying backend notes
        (load_metadata_file):
        (write_metadata_file): Read/write type of backend containment
        (full or partial)
        (location_add_backend): Pass parameter telling whether containment
        is partial

 archiver/ChangeLog       |  85 ++++++
 archiver/archive.c       |  12 +-
 archiver/backend-list.c  |  10 +-
 archiver/config-log.c    |  48 ----
 archiver/config-log.h    |   4 -
 archiver/location.c      | 714 ++++++++++++++++++++++++++++++++++++-----------
 archiver/location.h      |  31 +-
 archiver/main.c          |  94 +++++--
 archiver/tests/ChangeLog |   4 +
 archiver/tests/README    |  48 ++++
 archiver/tests/test-1.sh | 187 +++++++++++++
 archiver/tests/test-2.sh | 287 +++++++++++++++++++
 12 files changed, 1274 insertions(+), 250 deletions(-)

commit bb7ec451a6e715753c1dae31be15dc4a55159b9c
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Mon Feb 19 23:11:47 2001 +0000

    Updated Slovenian translation

 po/sl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 24ff376b65e2720bbd7497aa3b16baf94d1e0097
Author: Almer S. Tigelaar <almer@gnome.org>
Date:   Mon Feb 19 19:37:25 2001 +0000

    Updated Dutch translation.
    
    2001-02-19  Almer S. Tigelaar  <almer@gnome.org>
    
        * nl.po: Updated Dutch translation.

 po/ChangeLog |    4 +
 po/nl.po     | 2849 +++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 2015 insertions(+), 838 deletions(-)

commit a0a85a402161e49320f8cbf882156d2bba693e33
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Sun Feb 18 23:13:45 2001 +0000

    Updated Greek translation - fixed the font setting

 po/ChangeLog | 4 ++++
 po/el.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 57aba6525ef1534f8cfd747737e53272ac7a004f
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Feb 18 19:50:16 2001 +0000

    Updated Slovenian translation

 po/sl.po | 48 ++++++++++++++++++++++++------------------------
 1 file changed, 24 insertions(+), 24 deletions(-)

commit 25fdd38095ed0d46ba45cd104a0b65374cd7861c
Author: Akira TAGOH <tagoh@gnome.gr.jp>
Date:   Sat Feb 17 03:30:26 2001 +0000

    Updated Japanese translation.
    
    2001-02-16  Akira TAGOH  <tagoh@gnome.gr.jp>
    
        * ja.po: Updated Japanese translation.

 po/ChangeLog |    4 +
 po/ja.po     | 2317 +++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 1665 insertions(+), 656 deletions(-)

commit 56c33b89cffa3b0e88ae6c8f133f41b49c54a2e0
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Feb 16 21:48:39 2001 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 319f6d2123ddb781f84c541a843e041ed8e23ab1
Author: jjranta <jjranta@src.gnome.org>
Date:   Wed Feb 14 19:14:55 2001 +0000

    Updated Finnish translation by Pauli Virtanen

 po/ChangeLog |    4 +
 po/fi.po     | 1450 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 1201 insertions(+), 253 deletions(-)

commit fb7c18e2b2c4dd43998eea66b04b42159c5e90b0
Author: Sami Pesonen <spesonen@src.gnome.org>
Date:   Tue Feb 13 21:12:36 2001 +0000

    Finnish translation updated by Pauli Virtanen <pauli.virtanen@saunalahti.fi>

 capplets/file-types/nautilus-mime-type.desktop | 1 +
 1 file changed, 1 insertion(+)

commit b073d16b500009e6ae84449813187d328a8141ec
Author: Marius Andreiana <mandreiana@src.gnome.org>
Date:   Mon Feb 12 14:01:36 2001 +0000

    Update ro (Romanian) translation

 po/ro.po | 3365 +++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 2440 insertions(+), 925 deletions(-)

commit 02784ee5faa8326087227cd9999d4863c6eab9e6
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Mon Feb 12 13:59:58 2001 +0000

    Updated Slovenian translation

 po/sl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 599b62dce7774c40f7529e50b65f4c3f53a2f51f
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Sun Feb 11 17:01:16 2001 +0000

    Corrections for German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 41 ++++++++++++++++++-----------------------
 2 files changed, 22 insertions(+), 23 deletions(-)

commit c2f9e0999113d2f0f7bf36918aef125dd5146ac2
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Feb 9 16:28:35 2001 +0000

    Updated Slovenian translation

 po/sl.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit d01fdd1c718935e278dee818dda13ca77b5e39fb
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Fri Feb 9 16:21:07 2001 +0000

    updated German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1492 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 1219 insertions(+), 277 deletions(-)

commit 824c8bfaff82c782ff35e8f8c47222fd9e779d78
Author: Valek Frob <frob@src.gnome.org>
Date:   Fri Feb 9 14:13:30 2001 +0000

    Updated russian translation.

 po/ChangeLog |    4 +
 po/ru.po     | 1679 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 1359 insertions(+), 324 deletions(-)

commit 62298b5b05774676ca157c4876944cc138aaf782
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Tue Feb 6 21:24:42 2001 +0000

    Fixed bug 6258, Determine initial capplet sort column
    
    2001-02-06  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 6258, Determine initial capplet sort column
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet):
        Sort based on first column in list.

 capplets/file-types/file-types-capplet.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

commit eb8a4e72d55370628140c8f306d4755679fe101f
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Tue Feb 6 02:33:39 2001 +0000

    Work done to improve the mime tpye capplet. Enable the capplet to be
    
    2001-02-05  Gene Z. Ragan  <gzr@eazel.com>
    
        Work done to improve the mime tpye capplet.
        Enable the capplet to be launched with a mime type.
        If a mime type is an argument, have the capplet scroll
        to that item in the list before the user begins interaction.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c: (main),
        (list_move_vertical), (list_moveto), (list_reveal_row),
        (init_mime_capplet), (populate_mime_list):

 capplets/file-types/file-types-capplet.c | 118 +++++++++++++++++++++++++++----
 1 file changed, 104 insertions(+), 14 deletions(-)

commit ced396b7569c6ff060736a3090d6d5194a3846fb
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Feb 5 13:13:13 2001 +0000

    Updated French translation.

 po/ChangeLog |   4 +++
 po/fr.po     | 103 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 56 insertions(+), 51 deletions(-)

commit 3cf6f8a6bbbe2aa1d5063a64c05561abe929ce9c
Author: Jing-Jong Shyue <shyue@src.gnome.org>
Date:   Sat Feb 3 20:26:58 2001 +0000

    Triditional Chinese PO File 2001/2/3

 po/zh_TW.Big5.po | 1643 ++++++++++++++++++++++++------------------------------
 1 file changed, 719 insertions(+), 924 deletions(-)

commit aad39631598b5aa265445c65da9065689db33ab9
Author: Rebecca Schulman <rebecka@eazel.com>
Date:   Mon Jan 29 22:43:59 2001 +0000

    Change the value of the "expects_uris" attribute of applications to have 3
    
    2001-01-29  Rebecca Schulman  <rebecka@eazel.com>
        Change the value of the "expects_uris" attribute
        of applications to have 3 possible values:
        "yes", "no", and "non-file".  This change will
        allow applications to understand how to launch programs
        that expect local paths for local files, but uris
        for non-file locations.
    
        reviewed by: Darin Adler <darin@eazel.com>
    
        * data/mime/gnome-vfs.applications:
        Change expects_uris to "non-file" where appropriate
        (for now mpg123), and added supported_uri_schemes
        in places where "expects_uris" was "yes" but no
        supported uri schemes were listed.  This information
        is not yet complete.
    
        * doc/mime-data-specification.txt: Remove the "[to be
        implemented]" tag from fields that are now fully implemented
        (supported_uri_schemes and expects_uris)
    
        * libgnomevfs/gnome-vfs-mime-handlers.h:
        * libgnomevfs/gnome-vfs-application-registry.h:
        * libgnomevfs/gnome-vfs-application-registry.c: (application_new),
        (value_looks_true), (get_bool_value), (application_add_key),
        (gnome_vfs_application_registry_get_mime_application),
        (gnome_vfs_application_registry_save_mime_application):
        Parse, set and get the new "expects_uris"
        attribute, and represent its set of possible values using
        an enum, rather than a gboolean.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (show_new_application_window), (show_edit_application_window):
        Add the right bug number to fixmes about updates need in the capplet
        to reflect the new application attributes
    
        * test/test-mime-handlers.c:
        (format_mime_application_argument_type_for_display),
        (print_application):
        Print the "expects_uris" attribute as part of the test
        program for application information parsing.

 capplets/file-types/file-types-capplet-dialogs.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 12ae0dad0e730348843865d327108ba439c64dac
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Mon Jan 29 22:41:53 2001 +0000

    Check entire success array and warn if any allocation did not succeed
    
    2001-01-29  Bradford Hovinen  <hovinen@ximian.com>
    
        * rollback-widget.c (rollback_widget_realize): Check entire
        success array and warn if any allocation did not succeed
    
        * config-manager-dialog.c (cancel_cb): Don't do rollback
    
        * Makefile.am (rollback_capplet_SOURCES): Added rollback-control.[ch]
    
        * config-manager-dialog.c (config_manager_dialog_init): Construct
        a rollback widget with a rollback control and place it in the
        dialog
    
    2001-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * rollback-widget.c (rollback_widget_realize): Allocate control
        colors
    
        * rollback-widget.h (struct _RollbackWidget ): Added array
        control_colors
    
        * rollback-widget.c (rollback_widget_realize):
        (rollback_widget_unrealize): Implement. Just calls the parent's
        [un]realize and creates/destroys a GC to be used by the individual
        controls.
        (rollback_widget_get_gc): Implement. Return the GC created above

 capplets/rollback/ChangeLog               |  27 +++
 capplets/rollback/Makefile.am             |   1 +
 capplets/rollback/TODO                    |   2 +
 capplets/rollback/config-manager-dialog.c |  19 +-
 capplets/rollback/rollback-control.c      | 352 ++++++++++++++++++++++++++++++
 capplets/rollback/rollback-control.h      |  56 +++++
 capplets/rollback/rollback-widget.c       |  90 ++++++--
 capplets/rollback/rollback-widget.h       |  24 +-
 8 files changed, 548 insertions(+), 23 deletions(-)

commit 7a6ec96d46946ad7eb201887044dd77823c18039
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Mon Jan 29 22:04:10 2001 +0000

    Fixed bug 5847, MIME type capplet alphabetical oder case sensitive
    
    2001-01-29  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 5847, MIME type capplet alphabetical oder case sensitive
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (sort_case_insensitive), (column_clicked),
        (create_mime_list_and_scroller):
        Create a sort routine that is not case sensitive.

 capplets/file-types/file-types-capplet.c | 52 ++++++++++++++++++++++++++++++--
 1 file changed, 50 insertions(+), 2 deletions(-)

commit 1f43de92422fb3c8e3801756a64c7678d25414a9
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Jan 29 14:50:27 2001 +0000

    Updated French translation.

 po/ChangeLog |   4 ++
 po/fr.po     | 161 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 91 insertions(+), 74 deletions(-)

commit 7b4f73daafdc944382922afdf9e9c44aebc387b3
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Mon Jan 29 13:02:57 2001 +0000

    More CVS delirium

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit b1cd7d1d3f821e64f61062d2157932e0f1c49ead
Author: Christian Rose <menthos@src.gnome.org>
Date:   Sun Jan 28 18:30:21 2001 +0000

    Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 400 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 330 insertions(+), 74 deletions(-)

commit d670ee11505f48a97dd23c3ce29dfe88c99c8266
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sun Jan 28 10:50:29 2001 +0000

    Translations bonobo/po/da.po control-center/po/da.po galeon/po/da.po
    
    Translations
    bonobo/po/da.po control-center/po/da.po galeon/po/da.po
    gnome-vfs/po/da.po gnumeric/po/da.po pan/po/da.po

 po/da.po | 411 ++++++++-------------------------------------------------------
 1 file changed, 50 insertions(+), 361 deletions(-)

commit 427ef6c2d6092caf14630b1c81dae25dc3a27de4
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Sat Jan 27 17:14:59 2001 +0000

    Disable wallpaper in new_prefs structure, not structure passed to function
    
    2001-01-27  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-background-properties/applier.c
        (applier_apply_prefs): Disable wallpaper in new_prefs structure,
        not structure passed to function
    
    2001-01-26  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-background-properties/main.c
        (do_restore_from_defaults): Implement. Creates a preferences
        object with factory defaults and saves and applies those changes.

 ChangeLog                     | 12 ++++++++++++
 capplets/background/applier.c |  2 +-
 capplets/background/main.c    | 12 ++++++++++++
 3 files changed, 25 insertions(+), 1 deletion(-)

commit fd67dddf1a5dbaf99da1f3f91af563b63ca10571
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Jan 27 12:37:58 2001 +0000

    fixed headers

 po/sl.po | 2 +-
 po/uk.po | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 40622502a605d88fe31f00e8baaaeac16bc1f3d8
Author: Rebecca Schulman <rebecka@eazel.com>
Date:   Fri Jan 26 23:13:49 2001 +0000

    Add support for the "supported_uri_schemes" attributes in the mime
    
    2001-01-26  Rebecca Schulman  <rebecka@eazel.com>
        Add support for the "supported_uri_schemes"
        attributes in the mime applications file,
        and changed can_open_uris to "expects_uris"
        because this attribute is more about
        the way arguments should be specified than
        about its capabilities of understanding
        locations.
        The supported uri schemes attributes is
        optional, and if it is not included, the
        value is assumed to be file.
    
        reviewed by: Pavel Cisler <pavel@eazel.com>
    
        * libgnomevfs/gnome-vfs-application-registry.h:
        Add the new function
        gnome_vfs_application_registry_supports_uri_scheme to the
        public api
    
        * libgnomevfs/gnome-vfs-application-registry.c: (application_new),
        (add_application_to_mime_type_table),
        (add_mime_type_to_application),
        (add_supported_uri_scheme_to_application),
        (remove_application_from_mime_type_table),
        (remove_mime_type_for_application),
        (supported_uri_scheme_list_copy),
        (gnome_vfs_application_registry_supports_uri_scheme),
        (gnome_vfs_application_registry_supports_mime_type),
        (gnome_vfs_application_registry_add_mime_type),
        (gnome_vfs_application_registry_remove_mime_type),
        Add  supported uri schemes functions to complement
        the current mime type functions
        and refactor the mime_type functions to share code with
        the new supported_uri_schemes functions where
        appropriate
        (application_clear_mime_types),
        (application_add_key),
        Add ability to parse the supported_uri_schemes attribute
        (gnome_vfs_application_registry_get_mime_application),
        (gnome_vfs_application_registry_save_mime_application):
        Add supported_uri_schemes to these functions
    
        * libgnomevfs/gnome-vfs-mime-handlers.h:
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_get_short_list_applications),
        (gnome_vfs_mime_application_copy),
        (gnome_vfs_mime_application_free),
        (copy_str_list):
        Add supported_uri_schemes to the MimeApplication
        structure
    
        * data/mime/gnome-vfs.applications:
        Add some new "supported_uri_schemes".
        What I have added is not complete.
        * doc/mime-data-specification.txt:
        Add information about how user files can augment, but
        not replace information about applications' accepted mime
        types and supported uri schemes.  Add FIXMEs about
        how this isn't clearly correct.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (add_or_update_application), (show_new_application_window),
        (show_edit_application_window):
        Change can_open_uris to "Expects URIs"
    
        * test/test-mime-handlers-set.c: (main):
        * test/test-mime-handlers.c: (append_comma_and_scheme),
        (format_supported_uri_schemes_for_display), (print_application):
        Update tests, by adding new attribute

 capplets/file-types/file-types-capplet-dialogs.c | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

commit 564362ea39a5c101e1f3f23b00f0b9e8feecfb1f
Author: Marius Andreiana <mandreiana@src.gnome.org>
Date:   Fri Jan 26 15:12:19 2001 +0000

    updated ro (Romanian) translation

 po/ChangeLog |    4 +
 po/ro.po     | 1672 +++++++++++++++++++++++++---------------------------------
 2 files changed, 736 insertions(+), 940 deletions(-)

commit 2072d3aa965228bbdce59cf3bee42aa67c84af90
Author: Marius Andreiana <mandreiana@src.gnome.org>
Date:   Fri Jan 26 15:10:22 2001 +0000

    added ro (Romanian) translation

 ChangeLog                                           | 4 ++++
 capplets/background/background-properties.desktop   | 2 ++
 capplets/keyboard/keyboard-properties.desktop       | 2 ++
 capplets/mouse/mouse-properties.desktop             | 2 ++
 capplets/screensaver/screensaver-properties.desktop | 2 ++
 capplets/sound/sound-properties.desktop             | 2 ++
 capplets/theme-switcher/theme-selector.desktop      | 2 ++
 capplets/ui-properties/behavior.desktop             | 2 ++
 control-center/gnomecc.desktop                      | 2 ++
 9 files changed, 20 insertions(+)

commit 99e09e388dc85328fe67a015ec4875da913e86fd
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Fri Jan 26 13:53:55 2001 +0000

    Updated Slovak translation

 po/ChangeLog |   4 +++
 po/sk.po     | 115 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 61 insertions(+), 58 deletions(-)

commit c82bc4ba15bea416eb61f5095d44a3981ac0b625
Author: Jose Maria Celorio <chema@src.gnome.org>
Date:   Thu Jan 25 22:38:28 2001 +0000

    shut up cvs. Upd. TODO
    
    shut up cvs.
    Upd. TODO

 archiver/.cvsignore | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 9496822d512c6f21bad11716cce894252a93aac7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Jan 25 22:30:12 2001 +0000

    Updated Norwegian translation.
    
    2001-01-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 +++
 po/no.po     | 116 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 67 insertions(+), 53 deletions(-)

commit 64ea6262226100978d37e25ec9c06acb32a14494
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Thu Jan 25 21:04:47 2001 +0000

    Updated Slovenian translation

 po/sl.po | 124 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 68 insertions(+), 56 deletions(-)

commit b3559fa5ac44a44a780ef3dcb7062d829b8657e0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 19:44:54 2001 +0000

    Use local time rather than Greenwich Mean Time
    
    2001-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (get_current_date): Use local time rather than
        Greenwich Mean Time
    
        * location.c (location_store_xml): Implement; copy from
        location_store
        (location_store): Free filename after use
    
        * archive.c (archive_load): Free prefix only if not global
    
        * location.c (location_rollback_all_to): Increment array
    
        * util.c (parse_date): Normalize values

 archiver/ChangeLog    | 11 ++++++++++-
 archiver/TODO         |  2 ++
 archiver/archive.c    |  2 +-
 archiver/config-log.c |  2 +-
 archiver/location.c   | 40 ++++++++++++++++++++++++++++++++++++++++
 archiver/location.h   |  4 ++++
 6 files changed, 58 insertions(+), 3 deletions(-)

commit c861fe5a553f48ec62f95ef8096cd150ee3eef70
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 18:10:50 2001 +0000

    Add ximian_archiver
    
    2001-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in ([BG_]CAPPLET_{CFLAGS|LIBS}): Add ximian_archiver

 configure.in | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit fab55a60fcb788bfbbd0b8ced3f514fb7434efc5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 18:10:16 2001 +0000

    Implement (ok_cb): Call store_archive_data
    
    2001-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-background-properties/main.c (store_archive_data):
        Implement
        (ok_cb): Call store_archive_data

 ChangeLog                  |  8 ++++++++
 capplets/background/main.c | 20 ++++++++++++++++++++
 2 files changed, 28 insertions(+)

commit 990862633d700ed894dea136bc81e46156d26999
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 18:09:00 2001 +0000

    Implement; copy from background-properties-capplet (ok_cb): Call
    
    2001-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (store_archive_data): Implement; copy from
        background-properties-capplet
        (ok_cb): Call store_archive_data

 capplets/screensaver/ChangeLog |  6 ++++++
 capplets/screensaver/main.c    | 21 +++++++++++++++++++++
 2 files changed, 27 insertions(+)

commit 926c6838c79d008a7963c953f1563d2ef13ff29c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 18:08:36 2001 +0000

    Support operating on global backends Add popt option for operating on
    
    2001-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * main.c (main): Support operating on global backends
        Add popt option for operating on global backends

 capplets/rollback/ChangeLog |  5 +++++
 capplets/rollback/TODO      |  8 +++++---
 capplets/rollback/main.c    | 14 +++++++++++++-
 3 files changed, 23 insertions(+), 4 deletions(-)

commit cabe27ab37759394d913ee0d7521139c38c6db5e
Author: jacob berkman <jacob@ximian.com>
Date:   Thu Jan 25 17:40:43 2001 +0000

    add a \n to the usage message
    
    2001-01-25  jacob berkman  <jacob@ximian.com>
    
        * root-manager/root-manager.c (main): add a \n to the usage
        message
    
        * root-manager/root-manager-wrap.c: change some g_print's to
        fprintf to stderr

 ChangeLog                        | 8 ++++++++
 root-manager/root-manager-wrap.c | 6 +++---
 root-manager/root-manager.c      | 4 ++--
 3 files changed, 13 insertions(+), 5 deletions(-)

commit 35dc2d9c09b50e9bcd01ad9106d18c6bf97697c0
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 15:26:03 2001 +0000

    Update unrefs (config_manager_dialog_init): GLADE_DIR -> GLADE_DATADIR
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-manager-dialog.c (config_manager_dialog_finalize): Update
        unrefs
        (config_manager_dialog_init): GLADE_DIR -> GLADE_DATADIR
        (config_manager_dialog_init): Remove outdated signal connections
        (config_manager_dialog_init): Remove code to create location list
        Inherit from CappletWidget rather than GnomeDialog
        (config_manager_dialog_init): Remove gtk_window_set_policy call
        (ok_cb):
        (cancel_cb): Remove gnome_dialog_close call
        (config_manager_dialog_init): Set state to "changed" so that the
        Ok button is active
        (populate_backends_cb): Set backend_id in dialog if not already set

 capplets/rollback/ChangeLog               |  7 +++++
 capplets/rollback/TODO                    | 24 +++++++++++++++
 capplets/rollback/config-manager-dialog.c | 51 +++++++++++--------------------
 3 files changed, 48 insertions(+), 34 deletions(-)

commit d2d4f6c4f1ecae88d32c7a6972df6ff64fd6031a
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 15:25:18 2001 +0000

    Fix typo in adjust-opacity part
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * capplets/new-background-properties/preferences.c
        (preferences_read_xml): Fix typo in adjust-opacity part
    
        * capplets/new-background-properties/main.c (do_set_xml): Apply
        preferences as well as saving them

 ChangeLog                         | 8 ++++++++
 capplets/background/main.c        | 6 ++++--
 capplets/background/preferences.c | 2 +-
 3 files changed, 13 insertions(+), 3 deletions(-)

commit 18b6da4d1ad6df328721834a4836ad2a4d06a60c
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Thu Jan 25 15:23:51 2001 +0000

    Increment array
    
    2001-01-25  Bradford Hovinen  <hovinen@ximian.com>
    
        * location.c (location_rollback_all_to): Increment array
    
        * util.c (parse_date): Normalize values
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-log.c (do_load): Disabled locking for now

 archiver/ChangeLog    | 8 ++++++++
 archiver/TODO         | 1 +
 archiver/config-log.c | 2 ++
 archiver/location.c   | 1 +
 archiver/util.c       | 6 +++---
 5 files changed, 15 insertions(+), 3 deletions(-)

commit 50d88decfb260acff08f3c8dcc52b03b426e738d
Author: Jason Leach <jasonleach@usa.net>
Date:   Thu Jan 25 01:00:30 2001 +0000

    Forgot a trailing backslash so GNOMECC_CFLAGS wasn't actually being used.
    
    2001-01-24  Jason Leach  <jasonleach@usa.net>
    
        * Makefile.am (INCLUDES): Forgot a trailing backslash so
        GNOMECC_CFLAGS wasn't actually being used.  It is now.

 control-center/ChangeLog   | 5 +++++
 control-center/Makefile.am | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 9c10f33f3829166aa2fe624dd46299f3fc495d1e
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 20:44:48 2001 +0000

    Added capplets/rollback/Makefile
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in (AC_OUTPUT): Added capplets/rollback/Makefile

 ChangeLog    | 1 +
 configure.in | 1 +
 2 files changed, 2 insertions(+)

commit 1adfcbd424a4b30ab7f84dcc7ee9d4d0e30dc6b5
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Jan 24 20:40:25 2001 +0000

    More Helix to Ximian. Also, the new network code - untested - and a fix for backends/Makefile.am

 archiver/.cvsignore      |  2 +-
 archiver/archive.c       |  8 +++----
 archiver/archiver-spec   |  4 ++--
 archiver/future-spec     | 18 +++++++--------
 archiver/versioning-spec | 58 ++++++++++++++++++++++++------------------------
 5 files changed, 45 insertions(+), 45 deletions(-)

commit 9a13a0abe1e0a5028b716aac333ccf96bedf609d
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Wed Jan 24 20:33:00 2001 +0000

    apparently some people do not build with --disable-nls for some reason

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 22bec884b787b859964678cc3d7e6c00584a9f05
Author: jacob berkman <jacob@ximian.com>
Date:   Wed Jan 24 20:26:38 2001 +0000

    new (temporary) html view and bug fixication
    
    2001-01-24  jacob berkman  <jacob@ximian.com>
    
        * new-control-center/*.[ch]: new (temporary) html view and bug
        fixication
    
        * root-manager/*.[ch]: gnomeify dialogs and other cleanups
    
        * configure.in: flags for root-manager-helper
    
    2001-01-17  jacob berkman  <jacob@ximian.com>
    
        * root-manager/Makefile.am
        * root-manager/root-manager.h: fix finding the root-manager

 ChangeLog                              |  14 +
 configure.in                           |   6 +
 control-center/Makefile.am             |  16 +-
 control-center/bg.png                  | Bin 0 -> 109 bytes
 control-center/bgtop.png               | Bin 0 -> 396 bytes
 control-center/capplet-dir-view-html.c | 119 ++++-
 control-center/capplet-dir-view-list.c |  38 +-
 control-center/capplet-dir-view-tree.c |  33 +-
 control-center/capplet-dir-view.c      |  61 ++-
 control-center/capplet-dir-view.h      |   9 +-
 control-center/capplet-dir.c           |   9 +-
 control-center/empty.png               | Bin 0 -> 108 bytes
 control-center/foot.png                | Bin 0 -> 11605 bytes
 control-center/gnomecc.glade           |  11 +-
 control-center/left.png                | Bin 0 -> 1493 bytes
 control-center/left_top.png            | Bin 0 -> 519 bytes
 control-center/main.c                  |   2 -
 root-manager/Makefile.am               |  17 +-
 root-manager/root-manager-helper.c     |  18 +-
 root-manager/root-manager-wrap.c       | 880 +++++++++++++++++----------------
 root-manager/root-manager-wrap.h       |   4 +-
 root-manager/root-manager.c            |  20 +-
 root-manager/root-manager.h            |   9 +-
 root-manager/userdialogs.c             | 229 ---------
 root-manager/userdialogs.h             |  42 --
 root-manager/xst-keys.png              | Bin 0 -> 3778 bytes
 26 files changed, 732 insertions(+), 805 deletions(-)

commit 7907e0962f515dd7a38b5535191b07516166dc52
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 19:01:49 2001 +0000

    Update unrefs (config_manager_dialog_init): GLADE_DIR -> GLADE_DATADIR
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * config-manager-dialog.c (config_manager_dialog_finalize): Update
        unrefs
        (config_manager_dialog_init): GLADE_DIR -> GLADE_DATADIR
        (config_manager_dialog_init): Remove outdated signal connections
        (config_manager_dialog_init): Remove code to create location list
    
        * Makefile.am (INCLUDES): Changed CAPPLET_CFLAGS to
        ROLLBACK_CAPPLET_CFLAGS
        (rollback_capplet_LDADD): Ditto for CAPPLET_LIBS
    
        * config-manager-dialog.c: Remove #include
        "create-location-dialog.h" and #include "location-list.h"; set all
        the includes from libarchiver to get their files from the right
        directory

 capplets/rollback/ChangeLog               | 17 ++++++++++
 capplets/rollback/Makefile.am             |  4 +--
 capplets/rollback/config-manager-dialog.c | 55 +++++--------------------------
 capplets/rollback/main.c                  |  2 +-
 capplets/rollback/rollback.glade          | 11 +------
 5 files changed, 30 insertions(+), 59 deletions(-)

commit 8887ceecf1c38b234d7f2674dced88718e37dfd5
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 19:01:22 2001 +0000

    Added ROLLBACK_CAPPLET_{CFLAGS|LIBS} for the rollback capplet
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * configure.in: Added ROLLBACK_CAPPLET_{CFLAGS|LIBS} for the
        rollback capplet
        (ROLLBACK_CAPPLET_LIBS): Typo fix

 ChangeLog    | 6 ++++++
 configure.in | 6 ++++++
 2 files changed, 12 insertions(+)

commit 4f9a20c63e4e625ce5f4b3a8f7c11c4ba1fe2387
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 18:17:57 2001 +0000

    Added rollback capplet, compile disabled by default
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        Added rollback capplet, compile disabled by default

 capplets/rollback/ChangeLog               |   7 +
 capplets/rollback/Makefile.am             |  36 ++
 capplets/rollback/config-manager-dialog.c | 468 ++++++++++++++++++
 capplets/rollback/config-manager-dialog.h |  64 +++
 capplets/rollback/main.c                  |  53 ++
 capplets/rollback/rollback-widget.c       | 167 +++++++
 capplets/rollback/rollback-widget.h       |  61 +++
 capplets/rollback/rollback.glade          | 776 ++++++++++++++++++++++++++++++
 8 files changed, 1632 insertions(+)

commit c294afced9b7fd3941e9b222d464dddaf75f0e2d
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 17:08:15 2001 +0000

    Added fine-grained location management description
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * archiver-spec: Added fine-grained location management description

 archiver/ChangeLog     |  4 ++++
 archiver/archiver-spec | 65 ++++++++++++++++++++++++++++++++++++++++++--------
 2 files changed, 59 insertions(+), 10 deletions(-)

commit 0229873762bf773623e22f4679679a6a2c9ba626
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 15:47:33 2001 +0000

    Added AM_PROG_LIBTOOL call for libximian_archiver Added rule for
    
    2001-01-13  Bradford Hovinen  <hovinen@ximian.com>
    
            * configure.in: Added AM_PROG_LIBTOOL call for libximian_archiver
            * archiver/Makefile.am: Added rule for ximian_archiverConf.sh; add
        installation target for Conf.sh
        * archiver/Makefile.am: Replaced occurrences of helix with ximian
        Removed references to ximian_config_manager

 archiver/ChangeLog                 | 10 ++++++++
 archiver/Makefile.am               | 48 ++++++++++++++++++++------------------
 archiver/TODO                      |  6 ++---
 archiver/ximian_archiverConf.sh.in |  4 ++++
 4 files changed, 41 insertions(+), 27 deletions(-)

commit 75190d8758706431db3340668c37314209663975
Author: Bradford Hovinen <hovinen@ximian.com>
Date:   Wed Jan 24 15:00:26 2001 +0000

    Cleaned out kruft and replaced it with GNOMECC_CFLAGS (gnomecc_LDADD):
    
    2001-01-24  Bradford Hovinen  <hovinen@ximian.com>
    
        * Makefile.am (INCLUDES): Cleaned out kruft and replaced it with
        GNOMECC_CFLAGS
        (gnomecc_LDADD): Ditto

 control-center/ChangeLog   |  6 ++++++
 control-center/Makefile.am | 14 ++++----------
 2 files changed, 10 insertions(+), 10 deletions(-)

commit e23752c8b073b901c1f74f3d75126083f2526475
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Wed Jan 24 12:25:54 2001 +0000

    Committed updated Turkish translation

 po/ChangeLog |    5 +
 po/tr.po     | 4172 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 2091 insertions(+), 2086 deletions(-)

commit c7c11576dae708b9b8adc00739fb51f43156b703
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jan 23 15:59:33 2001 +0000

    Updated Slovenian translation

 po/sl.po | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit fe74289c5da0096e211b7573453f1b7ae81ba6fa
Author: Valek Frob <frob@src.gnome.org>
Date:   Tue Jan 23 14:21:25 2001 +0000

    Updated russian translation.

 po/ChangeLog |    4 +
 po/ru.po     | 1586 ++++++++++------------------------------------------------
 2 files changed, 281 insertions(+), 1309 deletions(-)

commit 4540a4c2c78d94043aaccdf10cc40b09054f5086
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Mon Jan 22 19:30:03 2001 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f2f26ad8aa954d05d323e96cdde09cd3b4e1095a
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Mon Jan 22 19:27:25 2001 +0000

    Updated Slovenian translation

 po/sl.po | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit d2e51396f5d82680215c6e5b2615f6315cc7ee03
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Mon Jan 22 11:36:48 2001 +0000

    Updated sl translations

 capplets/screensaver/screensaver-properties.desktop | 1 +
 1 file changed, 1 insertion(+)

commit 239182e70d51f47f0be2a261c8025d754c387622
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Jan 21 23:13:50 2001 +0000

    Updated Slovenian translation

 po/sl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 06ed5ab87f2a26e486edfec0953939c702113ee2
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Jan 21 23:04:27 2001 +0000

    Updated sl translations

 capplets/screensaver/screensaver-properties.desktop | 1 +
 control-center/gnomecc.desktop                      | 2 ++
 2 files changed, 3 insertions(+)

commit 72fbdcf76b606d5057b110da92cb052b973397fc
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Jan 21 22:06:51 2001 +0000

    Updated Slovenian translation

 po/sl.po | 1665 +++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 1370 insertions(+), 295 deletions(-)

commit 11a659f858d95cdd6e45a201fb144a1ae9f96f47
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sat Jan 20 11:11:49 2001 +0000

    Committed updated Korean translation by Young-Ho Cha

 po/ChangeLog |    4 +
 po/ko.po     | 2488 +++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 1756 insertions(+), 736 deletions(-)

commit e1a7c11b3773d0de5577b080a72bae0639dfa3eb
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Fri Jan 19 16:33:50 2001 +0000

    Updated french and russian translations.

 po/ChangeLog |    5 +
 po/fr.po     |   38 +-
 po/ru.po     | 1578 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 3 files changed, 1328 insertions(+), 293 deletions(-)

commit 896fb9c3416d2d1358a391e2480d063c65ec6a2f
Author: Valek Frob <frob@src.gnome.org>
Date:   Wed Jan 17 15:46:12 2001 +0000

    Updated russian translation.

 po/ChangeLog |    4 +
 po/ru.po     | 1587 ++++++++++------------------------------------------------
 po/update.sh |   53 +-
 3 files changed, 327 insertions(+), 1317 deletions(-)

commit a1cb8c491bf8cafadd13b00ef13d93ad160e3ccf
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Tue Jan 16 22:08:16 2001 +0000

    ximinize and add me

 MAINTAINERS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8f3cc8fcb50ba259a4e11e23b3e857669e21d4ec
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Tue Jan 16 20:41:39 2001 +0000

    Updated & correc ted Turkish translation

 po/ChangeLog |    5 +
 po/tr.po     | 3854 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 2091 insertions(+), 1768 deletions(-)

commit 8f5e1b9920f7e4bfb8a23dc058eda62ffc6139e1
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Sat Jan 13 17:57:46 2001 +0000

    Update of Greek translation

 po/ChangeLog |    4 +
 po/el.po     | 1668 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 1363 insertions(+), 309 deletions(-)

commit d9678e6f234a138d993ae5ee3a5d79bb759cf2f5
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sat Jan 13 05:07:31 2001 +0000

    Fixed bug 3229, Clean up appearance of File Types and Programs capplet
    
    2001-01-12  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 3229, Clean up appearance of File Types and Programs capplet
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet):
        Adjust positions of widgets for better look and feel.

 capplets/file-types/file-types-capplet.c | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

commit 629002f4f02cb73b9ea85b67a3501786a68351ba
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sat Jan 13 04:14:59 2001 +0000

    Fix bug 4797, user can choose an icon anywhere on his filesystem to
    
    2001-01-12  Gene Z. Ragan  <gzr@eazel.com>
    
        Fix bug 4797, user can choose an icon anywhere on his filesystem
        to associate it to a given mime type but the icon will not be used.
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (entry_changed), (ientry_destroy), (browse_clicked),
        (nautilus_mime_type_show_icon_selection),
        (nautilus_mime_type_icon_entry_init),
        (nautilus_mime_type_icon_entry_set_pixmap_subdir):
        Remove ability to navigate to directories outside of the
        shared pixmap path.

 capplets/file-types/file-types-icon-entry.c | 128 +++++-----------------------
 1 file changed, 23 insertions(+), 105 deletions(-)

commit 7beca6f9f93ae9adaa8b5e29b8a7018108d236d8
Author: Hans Petter <hansp@src.gnome.org>
Date:   Fri Jan 12 15:03:02 2001 +0000

    Changed e-mail addresses: helixcode.com -> ximian.com.

 archiver/archive.c                | 2 +-
 archiver/archive.h                | 2 +-
 archiver/backend-list.c           | 2 +-
 archiver/backend-list.h           | 2 +-
 archiver/config-log.c             | 2 +-
 archiver/config-log.h             | 2 +-
 archiver/config-manager-dialog.c  | 2 +-
 archiver/config-manager-dialog.h  | 2 +-
 archiver/config-manager.c         | 2 +-
 archiver/create-location-dialog.c | 2 +-
 archiver/create-location-dialog.h | 2 +-
 archiver/location-list.c          | 2 +-
 archiver/location-list.h          | 2 +-
 archiver/location.c               | 2 +-
 archiver/location.h               | 2 +-
 archiver/main.c                   | 2 +-
 archiver/rollback-widget.c        | 2 +-
 archiver/rollback-widget.h        | 2 +-
 archiver/util.c                   | 2 +-
 archiver/util.h                   | 2 +-
 20 files changed, 20 insertions(+), 20 deletions(-)

commit 53acf1953860fb26f8e6625e8e864f3c61bc4c5e
Author: Hans Petter <hansp@src.gnome.org>
Date:   Fri Jan 12 14:40:26 2001 +0000

    Updated copyright headers.

 archiver/archive.c                | 2 +-
 archiver/archive.h                | 2 +-
 archiver/backend-list.c           | 2 +-
 archiver/backend-list.h           | 2 +-
 archiver/config-log.c             | 2 +-
 archiver/config-log.h             | 2 +-
 archiver/config-manager-dialog.c  | 2 +-
 archiver/config-manager-dialog.h  | 2 +-
 archiver/config-manager.c         | 2 +-
 archiver/create-location-dialog.c | 2 +-
 archiver/create-location-dialog.h | 2 +-
 archiver/location-list.c          | 2 +-
 archiver/location-list.h          | 2 +-
 archiver/location.c               | 2 +-
 archiver/location.h               | 2 +-
 archiver/main.c                   | 2 +-
 archiver/rollback-widget.c        | 2 +-
 archiver/rollback-widget.h        | 2 +-
 archiver/util.c                   | 2 +-
 archiver/util.h                   | 2 +-
 20 files changed, 20 insertions(+), 20 deletions(-)

commit a85d24dbf9d81f6c4caeed163314c3e0dd9163df
Author: Martin Baulig <martin@src.gnome.org>
Date:   Thu Jan 11 21:24:22 2001 +0000

    Fixed my debbugs-test-submit@bugzilla.gnome.org mess.

 MAINTAINERS | 1 -
 1 file changed, 1 deletion(-)

commit 586584de1d940806784607c861f9b26ebe877f2c
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Thu Jan 11 13:57:20 2001 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 39 +++++++++++++++++----------------------
 2 files changed, 21 insertions(+), 22 deletions(-)

commit e16dc3f6ebb18fce121fa0add40e0875a88b5d8e
Author: Martin Baulig <martin@src.gnome.org>
Date:   Thu Jan 11 10:49:13 2001 +0000

    Added debbugs-test-submit@bugzilla.gnome.org everywhere.

 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

commit 7d361eec26c566456b81c0c73dfc95af14c55895
Author: Valek Frob <frob@src.gnome.org>
Date:   Tue Jan 9 12:46:36 2001 +0000

    Updated russian translation.

 po/ChangeLog |    4 +
 po/ru.po     | 1425 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 1177 insertions(+), 252 deletions(-)

commit 6ec8c45afc9d8ce7a589dffd995a6ddb408623be
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Jan 9 10:49:48 2001 +0000

    Updated Norwegian translation.
    
    2001-01-09  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 19 ++++++++-----------
 2 files changed, 12 insertions(+), 11 deletions(-)

commit 1dcdad40b656477cc6e1376ef194c976063c7249
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Tue Jan 9 01:51:19 2001 +0000

    Fixed bug 3041, "Action" column text is confusing
    
    2001-01-08  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 3041, "Action" column text is confusing
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (add_mime_clicked), (update_mime_list_action),
        (populate_mime_list), (create_mime_list_and_scroller):
        Made changes according to input from John and Arlo.
        Changed "Action" column to "Default Action."
        Changed action text when a viewer is specified to
        "View as" preprended to the action type.

 capplets/file-types/file-types-capplet.c | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

commit 1123272d298851f71839b2d9a4b754541bcdb3ff
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Jan 4 17:00:57 2001 +0000

    Updating some pt_BR translations

 po/pt_BR.po | 94 +++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 54 insertions(+), 40 deletions(-)

commit 148845fbd58707eb13b8b3763bfb6c3470e2ff1e
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Thu Jan 4 16:20:19 2001 +0000

    Updated French translation.

 po/ChangeLog |    4 +
 po/fr.po     | 1694 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 1384 insertions(+), 314 deletions(-)

commit 2bb1a9a5eb2502577193b98619f8a25c0a62223c
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Thu Jan 4 07:13:04 2001 +0000

    updates control-center/po/da.po
    
    updates
    control-center/po/da.po

 po/da.po | 93 +++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 51 insertions(+), 42 deletions(-)

commit 96b1f1c50b2ebc2f63df41aa11be27e4684bd868
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Wed Jan 3 19:07:55 2001 +0000

    update

 po/da.po | 400 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 320 insertions(+), 80 deletions(-)

commit 65d60773c4c2bc5b8e87262c1a30b1c7bd5a7fcd
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Wed Jan 3 15:15:58 2001 +0000

    Updated Slovak translation

 po/ChangeLog |    4 +
 po/sk.po     | 1445 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 1186 insertions(+), 263 deletions(-)

commit da5fce7a3241f71c9a6d252108e3e76830de394f
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Wed Jan 3 14:24:51 2001 +0000

    Updated Ukrainian translation

 po/uk.po | 2515 ++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 1790 insertions(+), 725 deletions(-)

commit d2de6f2cb0e4459f04f16e144b621d2c208b8636
Author: Sami Pesonen <spesonen@src.gnome.org>
Date:   Sat Dec 30 23:42:57 2000 +0000

    Finnish translation added by Pauli Virtanen <pauli.virtanen@saunalahti.fi>

 capplets/file-types/nautilus-mime-type.desktop | 1 +
 1 file changed, 1 insertion(+)

commit 8f82d4428c089380baa5ee249907ba01a420ebbe
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Fri Dec 29 19:54:09 2000 +0000

    fix up some icon foo

 capplets/ui-properties/Makefile.am               |   3 +-
 capplets/ui-properties/gnome-warning.png         | Bin 0 -> 771 bytes
 capplets/ui-properties/pixmaps/gnome-warning.png | Bin 1968 -> 0 bytes
 capplets/ui-properties/ui-properties.glade       |   2 +-
 control-center/Makefile.am                       |   8 +-
 control-center/gnome-lockscreen.png              | Bin 0 -> 1092 bytes
 control-center/gnome-unlockscreen.png            | Bin 0 -> 1106 bytes
 control-center/gnomecc.glade                     |   6 +-
 control-center/html-view.xpm                     | 102 +++++++++++++++++++++++
 control-center/icon-view.xpm                     |  86 +++++++++++++++++++
 control-center/pixmaps/gnome-lockscreen.png      | Bin 2770 -> 0 bytes
 control-center/pixmaps/gnome-unlockscreen.png    | Bin 2617 -> 0 bytes
 control-center/tree-view.xpm                     |  77 +++++++++++++++++
 13 files changed, 278 insertions(+), 6 deletions(-)

commit 2fcc5969d3d730ac42612d31744e29f710f65e8a
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 29 12:08:19 2000 +0000

    Fix typo.
    
    2000-12-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * capplets/new-background-properties/background-properties.glade:
        Fix typo.

 capplets/background/background-properties.glade   |  1 -
 capplets/background/background-properties.glade.h | 28 ++++++++++++-----------
 2 files changed, 15 insertions(+), 14 deletions(-)

commit 3634386153b0ef4d99984d99faf041263d6ea181
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 29 10:57:36 2000 +0000

    Updated Norwegian translation. Added some missing screensaver
    
    2000-12-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.
        * POTFILES.in: Added some missing screensaver descriptions.

 po/ChangeLog   |   5 +
 po/POTFILES.in |   6 +
 po/no.po       | 585 ++++++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 402 insertions(+), 194 deletions(-)

commit 585fd5becc52995ca675173e63a99507fb3c58c5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 29 10:15:56 2000 +0000

    Fix typo.
    
    2000-12-29  Kjartan Maraas  <kmaraas@gnome.org>
    
        * capplets/new-background-properties/background-properties.glade:
        Fix typo.

 ChangeLog                                       |   5 +
 capplets/background/background-properties.glade |   2 +-
 po/no.po                                        | 661 +++++++++++++++---------
 3 files changed, 437 insertions(+), 231 deletions(-)

commit 754c4d92a232da020d17f3fd0c48232c2b3c22d7
Author: Jacob "Ulysses" Berkman <jacob@helixcode.com>
Date:   Wed Dec 27 22:34:38 2000 +0000

    add network
    
    2000-12-27  Jacob "Ulysses" Berkman  <jacob@helixcode.com>
    
        * src/Makefile.am (SUBDIRS): add network
    
        * configure.in: add network dir
    
        * interfaces/network.glade.in: updates etc.
    
        * src/network/: new network tool, based on (so far) the
        nameresolution tool

 archiver/.cvsignore | 1 +
 1 file changed, 1 insertion(+)

commit 4ae300397d62fedd4deb9bcaf3e8d7dc44145d97
Author: Jacob "Ulysses" Berkman <jacob@helixcode.com>
Date:   Wed Dec 27 20:33:41 2000 +0000

    call the real gnome-libs API rather than my hacked one
    
    2000-12-27  Jacob "Ulysses" Berkman  <jacob@helixcode.com>
    
        * capplet-dir-view-list.c (list_populate): call the real
        gnome-libs API rather than my hacked one
    
        * capplet-dir.c (start_capplet_through_root_manager): pass the
        correct path ($prefix/sbin/<tool>) to the root-manager
        (capplet_activate): check that the Exec line begins with
        root-manager rather than root-manager-helper (for now)

 control-center/ChangeLog               | 10 ++++++++++
 control-center/Makefile.am             |  3 ++-
 control-center/capplet-dir-view-list.c |  6 ++++++
 control-center/capplet-dir.c           |  7 ++++---
 4 files changed, 22 insertions(+), 4 deletions(-)

commit 99ae2dc98fee68cdd192febcab19c52df9c17992
Author: Christian Rose <menthos@src.gnome.org>
Date:   Wed Dec 27 02:35:22 2000 +0000

    Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 1403 ++++++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 1118 insertions(+), 289 deletions(-)

commit 0b36653564bf3bf65351edd57d8d3fc14733002e
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Tue Dec 26 22:16:28 2000 +0000

    Closing in control-center/po/da.po galeon/po/da.po gnumeric/po/da.po
    
    Closing in
    control-center/po/da.po galeon/po/da.po gnumeric/po/da.po

 po/da.po | 682 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 406 insertions(+), 276 deletions(-)

commit 35b92e886fee78a9fa0905197b30c56e0dfc4164
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Tue Dec 26 19:56:54 2000 +0000

    small build fixes

 capplets/mime-type/Makefile.am | 7 ++-----
 po/POTFILES.in                 | 1 -
 2 files changed, 2 insertions(+), 6 deletions(-)

commit d42affc965faa45228a91c6e8997927fcbc00b35
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Tue Dec 26 19:41:33 2000 +0000

    Merging of my tree.
    
    This contains:
    
    * a few capplets were redone UI wise:
    
      ui-properties
      keyboard
      background-properties
    
    * splitting of libcapplet out of this modules (into libcapplet)
    
    * new html-based view in the control-center
    
    * initial import of functional root-manager
    
    This stuff isn't all done yet, but I wanted to get it in.
    
    TODO files will hopefully follow.

 ChangeLog                                         |   15 +
 Makefile.am                                       |    9 +-
 capplets/background/.cvsignore                    |    1 +
 capplets/background/Makefile.am                   |   17 +-
 capplets/background/applier.c                     |    7 +
 capplets/background/background-properties.glade   |  973 ++++++--------
 capplets/background/background-properties.glade.h |   23 +-
 capplets/background/preferences.c                 |   76 +-
 capplets/background/preferences.h                 |    2 +
 capplets/background/prefs-widget.c                |  845 ++++++------
 capplets/background/prefs-widget.h                |    3 +
 capplets/keyboard/.cvsignore                      |    2 +
 capplets/keyboard/ChangeLog                       |    4 +
 capplets/keyboard/Makefile.am                     |   23 +-
 capplets/keyboard/keyboard-properties.glade       |  440 ++++---
 capplets/keyboard/keyboard-properties.glade.h     |   20 +-
 capplets/keyboard/preferences.c                   |   38 +-
 capplets/keyboard/preferences.h                   |    7 +-
 capplets/keyboard/prefs-widget.c                  |  105 +-
 capplets/keyboard/prefs-widget.h                  |    3 +
 capplets/mouse/.cvsignore                         |    1 +
 capplets/mouse/Makefile.am                        |   17 +-
 capplets/screensaver/.cvsignore                   |    1 +
 capplets/screensaver/Makefile.am                  |   23 +-
 capplets/sound/.cvsignore                         |    1 +
 capplets/sound/Makefile.am                        |   18 +-
 capplets/theme-switcher/Makefile.am               |   13 +-
 capplets/ui-properties/.cvsignore                 |    1 +
 capplets/ui-properties/Makefile.am                |   25 +-
 capplets/ui-properties/application.desktop        |   58 -
 capplets/ui-properties/behavior.desktop           |   58 +
 capplets/ui-properties/dialogs.desktop            |   30 -
 capplets/ui-properties/main.c                     |   31 +-
 capplets/ui-properties/mdi.desktop                |   26 -
 capplets/ui-properties/pixmaps/gnome-warning.png  |  Bin 0 -> 1968 bytes
 capplets/ui-properties/preferences.c              |   55 +-
 capplets/ui-properties/preferences.h              |  104 +-
 capplets/ui-properties/prefs-widget.c             |  104 +-
 capplets/ui-properties/prefs-widget.h             |    4 +-
 capplets/ui-properties/ui-properties.glade        | 1445 ++++++++++++---------
 capplets/ui-properties/ui-properties.glade.h      |   91 +-
 capplets/url-properties/Makefile.am               |   13 +-
 capplets/wm-properties/Makefile.am                |   13 +-
 configure.in                                      |   42 +-
 control-center/.cvsignore                         |    4 +
 control-center/ChangeLog                          |    5 +
 control-center/Makefile.am                        |   22 +-
 control-center/capplet-dir-view-html.c            |  215 +++
 control-center/capplet-dir-view-list.c            |  175 +++
 control-center/capplet-dir-view-tree.c            |  195 +++
 control-center/capplet-dir-view.c                 |  771 +++++------
 control-center/capplet-dir-view.h                 |   54 +-
 control-center/capplet-dir.c                      |  194 +--
 control-center/capplet-dir.h                      |   15 +-
 control-center/gnomecc-preferences.glade          |  237 ----
 control-center/gnomecc.glade                      |  699 ++++++++++
 control-center/gnomecc.glade.h                    |   18 +
 control-center/pixmaps/gnome-lockscreen.png       |  Bin 0 -> 2770 bytes
 control-center/pixmaps/gnome-unlockscreen.png     |  Bin 0 -> 2617 bytes
 control-center/preferences.c                      |   65 +-
 control-center/preferences.h                      |    5 +-
 control-center/root-manager.c                     |   80 --
 root-manager/.cvsignore                           |    6 +
 root-manager/Makefile.am                          |   26 +
 root-manager/TODO                                 |    1 +
 root-manager/root-manager-helper.c                |   71 +
 root-manager/root-manager-wrap.c                  |  528 ++++++++
 root-manager/root-manager-wrap.h                  |   68 +
 root-manager/root-manager.c                       |  713 ++++++++++
 root-manager/root-manager.h                       |   53 +
 root-manager/shvar.c                              |  377 ++++++
 root-manager/shvar.h                              |  100 ++
 root-manager/userdialogs.c                        |  229 ++++
 root-manager/userdialogs.h                        |   42 +
 74 files changed, 6500 insertions(+), 3255 deletions(-)

commit 2749ba455bdfb374dd8345a3472c876cabd53855
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Tue Dec 26 17:26:21 2000 +0000

    Translations dr-genius/po/da.po gfloppy/po/da.po gtkhtml/po/da.po
    
    Translations
    dr-genius/po/da.po gfloppy/po/da.po gtkhtml/po/da.po
    achtung/po/da.po bug-buddy/po/da.po control-center/po/da.po
    ee/po/da.po evolution/po/da.po galeon/po/da.po gdm2/po/da.po
    glade/po/da.po gnome-chess/po/da.po gnome-games/po/da.po
    gnome-iconedit/po/da.po gnome-pilot/po/da.po
    gnome-utils/po/da.po gnopo/po/da.po gnorpm/po/da.po
    gnumeric/po/da.po libgtop/po/da.po magicdev/po/da.po
    mc/po/da.po memprof/po/da.po nautilus/po/da.po rp3/po/da.po
    xpdf/po/da.po

 po/da.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit de4afa46e7eecad5971edb9d4828b32e68bf0b92
Author: Ross Golder <rossg@src.gnome.org>
Date:   Tue Dec 26 16:15:09 2000 +0000

    Fixed missing 'make dist' distributables

 archiver/Makefile.am | 4 ++++
 1 file changed, 4 insertions(+)

commit 5bd8c9952593c262ec8a0ba76734b01e18f54a15
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sat Dec 23 14:54:14 2000 +0000

    Updates achtung/po/da.po bug-buddy/po/da.po control-center/po/da.po
    
    Updates
    achtung/po/da.po bug-buddy/po/da.po control-center/po/da.po
    ee/po/da.po evolution/po/da.po gdm2/po/da.po gfloppy/po/da.po
    glade/po/da.po gnome-chess/po/da.po gnome-db/po/da.po
    gnome-games/po/da.po gnome-iconedit/po/da.po
    gnome-pilot/po/da.po gnome-utils/po/da.po gnopo/po/da.po
    gnorpm/po/da.po gnumeric/po/da.po helix-setup-tools/po/da.po
    libgtop/po/da.po magicdev/po/da.po mc/po/da.po
    memprof/po/da.po nautilus/po/da.po pan/po/da.po rp3/po/da.po
    xpdf/po/da.po

 po/da.po | 89 +++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 43 insertions(+), 46 deletions(-)

commit 7838c4888d68cec40cc22f51a5de70193a0c43b7
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sat Dec 23 01:57:41 2000 +0000

    Updates Tag: gedit-1-0 gedit/po/da.po balsa/po/da.po bug-buddy/po/da.po
    
    Updates
    Tag: gedit-1-0
    gedit/po/da.po
    balsa/po/da.po bug-buddy/po/da.po
    control-center/po/da.po ee/po/da.po galeon/po/da.po
    gdm2/po/da.po gfloppy/po/da.po glade/po/da.po
    gnome-chess/po/da.po gnome-core/po/da.po gnome-games/po/da.po
    gnome-iconedit/po/da.po gnome-pilot/po/da.po
    gnome-utils/po/da.po gnopo/po/da.po gnorpm/po/da.po
    gnumeric/po/da.po helix-setup-tools/po/da.po libgtop/po/da.po
    magicdev/po/da.po mc/po/da.po memprof/po/da.po
    nautilus/po/da.po rp3/po/da.po xpdf/po/da.po

 po/da.po | 719 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 710 insertions(+), 9 deletions(-)

commit cef853b3222ae2b1b5acf1c84473213895a73d29
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Dec 22 21:44:22 2000 +0000

    Use auxillary structure to pass data to traversal callback
    
    2000-12-22  Bradford Hovinen  <hovinen@helixcode.com>
    
        * archive.c (foreach_cb):
        (archive_foreach_child_location): Use auxillary structure to pass
        data to traversal callback
        (archive_get_location):
        (archive_register_location): strdup() location ids
        (free_location_cb): free() key
    
        * Added config-manager-dialog.[ch], create-location-dialog.[ch],
        location-list.[ch], config-manager.c
        rollback-location-management.glade
    
    2000-12-20  Bradford Hovinen  <hovinen@helixcode.com>
    
        * location.c (location_get_parent): Implement
    
        * archive.c (load_all_locations): Implement
        (foreach_cb):
        (archive_foreach_child_location): Implement

 archiver/ChangeLog                          |  17 +
 archiver/Makefile.am                        |  31 +-
 archiver/TODO                               |   5 +
 archiver/archive.c                          | 136 +++++-
 archiver/archive.h                          |  45 +-
 archiver/config-manager-dialog.c            | 625 +++++++++++++++++++++++++++
 archiver/config-manager-dialog.h            |  63 +++
 archiver/config-manager.c                   |  53 +++
 archiver/create-location-dialog.c           | 291 +++++++++++++
 archiver/create-location-dialog.h           |  62 +++
 archiver/location-list.c                    | 364 ++++++++++++++++
 archiver/location-list.h                    |  68 +++
 archiver/location.c                         |  18 +
 archiver/location.h                         |   1 +
 archiver/rollback-location-management.glade | 647 ++++++++++++++++++++++++++++
 archiver/rollback-widget.c                  | 163 +++++++
 archiver/rollback-widget.h                  |  57 +++
 17 files changed, 2611 insertions(+), 35 deletions(-)

commit 0f67cd0cd04e8149ad4a22412eaa848d69144fcf
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Dec 22 16:09:04 2000 +0000

    Prescale the pixbuf before a tiled composite
    
    2000-12-22  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/applier.c
        (renderer_render_wallpaper): Prescale the pixbuf before a tiled
        composite

 ChangeLog                     |  6 ++++++
 capplets/background/applier.c | 50 +++++++++++++++++++++++++++++++++++++------
 2 files changed, 50 insertions(+), 6 deletions(-)

commit 411e73d22b1d30e54234ea74185e66b0a995e916
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Fri Dec 22 12:57:13 2000 +0000

    Updated Norwegian translation. Added some missing screensaver
    
    2000-12-22  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.
        * POTFILES.in: Added some missing screensaver descriptions.

 po/ChangeLog   |   5 +
 po/POTFILES.in |  44 +++-
 po/no.po       | 713 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 755 insertions(+), 7 deletions(-)

commit 36c7092860607fb7c967b3f042b4346f59899a23
Author: Pavel Cisler <pavel@eazel.com>
Date:   Thu Dec 21 21:51:58 2000 +0000

    Turn -Werror back on.
    
    2000-12-21  Pavel Cisler  <pavel@eazel.com>
    
        * configure.in:
        Turn -Werror back on.
    
        * HACKING:
        Tell contributors not to turn -Werror off.
    
        * libgnomevfs/gnome-vfs-mime-info.c:
        (gnome_vfs_mime_type_is_known):
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (display_upper_case_dialog):
        * modules/ftp-method.c:
        Fix all the warnings that crept in while -Werror was off.

 capplets/file-types/file-types-capplet-dialogs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f87fefb51de750e3945f29f3492975118473b94
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Dec 21 20:43:59 2000 +0000

    Uncommented commented-out XGrabServer/XUngrabServer

 capplets/background/applier.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5493103f0bb193ce975305f48139b9666e0d83e7
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Thu Dec 21 20:43:13 2000 +0000

    Check if nitems is 1, not 4 (set_root_pixmap): Do a sanity check on the
    
    2000-12-21  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/applier.c (set_root_pixmap):
        Check if nitems is 1, not 4
        (set_root_pixmap): Do a sanity check on the old pixmap before
        freeing it

 ChangeLog                     |  7 +++++++
 capplets/background/applier.c | 15 ++++++++++-----
 2 files changed, 17 insertions(+), 5 deletions(-)

commit f659d1785140b561821cab1259c629d37b1792cd
Author: Valek Frob <frob@src.gnome.org>
Date:   Thu Dec 21 09:09:39 2000 +0000

    Updated russian translation.

 po/ChangeLog |  4 ++++
 po/ru.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit ececff035626b2499cadba219c2730ffa28cde39
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Wed Dec 20 19:06:09 2000 +0000

    Updated Slovak translation

 po/ChangeLog |  4 ++++
 po/sk.po     | 40 ++++++++++++++++++++++++++++------------
 2 files changed, 32 insertions(+), 12 deletions(-)

commit 650afa59df12acd61a8427f880cb80cc62936f83
Author: Jacob "Ulysses" Berkman <jacob@helixcode.com>
Date:   Wed Dec 20 17:59:59 2000 +0000

    import of new networking tool's interface
    
    2000-12-20  Jacob "Ulysses" Berkman  <jacob@helixcode.com>
    
        * interfaces/network.glade.in: import of new networking
        tool's interface

 archiver/.cvsignore | 4 ++++
 1 file changed, 4 insertions(+)

commit b73ac50ecc0ac901db66944ef5dea65f915bfdd9
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Wed Dec 20 09:21:35 2000 +0000

    translations from keld
    gedit/po/da.po
    achtung/po/da.po balsa/po/da.po bonobo/po/da.po
    bug-buddy/po/da.po control-center/po/da.po ee/po/da.po
    evolution/po/da.po galeon/po/da.po gdm2/po/da.po
    gfloppy/po/da.po gimp/po/da.po gimp/po-plug-ins/da.po
    gimp/po-script-fu/da.po glade/po/da.po gnome-applets/po/da.po
    gnome-chess/po/da.po gnome-core/po/da.po gnome-db/po/da.po
    gnome-games/po/da.po gnome-iconedit/po/da.po
    gnome-libs-HEAD/po/da.po gnome-libs/po/da.po
    gnome-pilot/po/da.po gnome-utils/po/da.po gnopo/po/da.po
    gnorpm/po/da.po gnumeric/po/da.po gtk+/po/da.po
    gtranslator/po/da.po guppi3/po/da.po
    helix-setup-tools/po/da.po libgtop/po/da.po magicdev/po/da.po
    mc/po/da.po memprof/po/da.po nautilus/po/da.po pan/po/da.po
    rp3/po/da.po sodipodi/po/da.po xpdf/po/da.po

 po/da.po | 34 +++++++++++++++++++++++++---------
 1 file changed, 25 insertions(+), 9 deletions(-)

commit fcff0fdb4759b6318901d41be2723cebb8075386
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Dec 19 20:16:22 2000 +0000

    Changed brightness to opacity on callback for adjust checkbox

 capplets/background/background-properties.glade | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 251530d68aad88e621c63bf8427f989dc0478f22
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Tue Dec 19 15:03:45 2000 +0000

    Create and include headers for libhelix_archiver.a (includedir): Set
    
    2000-12-19  Bradford Hovinen  <hovinen@helixcode.com>
    
        * Makefile.am (include_HEADERS): Create and include headers for
        libhelix_archiver.a
        (includedir): Set includedire to include/helix-archiver

 archiver/ChangeLog   | 3 +++
 archiver/Makefile.am | 5 +++++
 2 files changed, 8 insertions(+)

commit 62734d0bab84a2a882f6c9770b1accbe119d4452
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Tue Dec 19 14:54:55 2000 +0000

    Changed XML_CFLAGS to GNOME_XML_CFLAGS
    
    2000-12-19  Bradford Hovinen  <hovinen@helixcode.com>
    
        * Makefile.am (INCLUDES): Changed XML_CFLAGS to GNOME_XML_CFLAGS

 archiver/ChangeLog   | 3 ++-
 archiver/Makefile.am | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

commit aec5f9b2f1f018bda3b0344de8b1e8f6191f6418
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Tue Dec 19 14:51:19 2000 +0000

    Changed name of archiver to helix-archiver (lib_LIBRARIES): Added
    
    2000-12-19  Bradford Hovinen  <hovinen@helixcode.com>
    
        * Makefile.am (bin_PROGRAMS): Changed name of archiver to
        helix-archiver
        (lib_LIBRARIES): Added libhelix_archiver.a
        (helix_archiver_SOURCES): Moved archiver core to
        libhelix_archiver_a_SOURCES
        (helix_archiver_LDADD): Added helix_archiver.a
    
        * Added default backend lists

 archiver/ChangeLog          |  9 +++++++++
 archiver/Makefile.am        | 15 ++++++++++-----
 archiver/default-global.xml |  6 ++++++
 archiver/default-user.xml   | 12 ++++++++++++
 4 files changed, 37 insertions(+), 5 deletions(-)

commit f089da28865399e612072845aced7e40ec078dd7
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Tue Dec 19 14:05:04 2000 +0000

    Added archiver directory Imported archiver for time travel, location
    
    Tue Dec 19 09:04:00 2000  Bradford Hovinen  <hovinen@helixcode.com>
    
        * Makefile.am (SUBDIRS): Added archiver directory
        * archiver/*: Imported archiver for time travel, location management

 archiver/ChangeLog       |  149 ++++++
 archiver/Makefile.am     |   26 +
 archiver/TODO            |   34 ++
 archiver/archive.c       |  523 ++++++++++++++++++++
 archiver/archive.h       |   77 +++
 archiver/archiver-spec   |   77 +++
 archiver/backend-list.c  |  305 ++++++++++++
 archiver/backend-list.h  |   73 +++
 archiver/config-log.c    |  933 +++++++++++++++++++++++++++++++++++
 archiver/config-log.h    |   92 ++++
 archiver/future-spec     |   95 ++++
 archiver/location.c      | 1232 ++++++++++++++++++++++++++++++++++++++++++++++
 archiver/location.h      |  112 +++++
 archiver/main.c          |  316 ++++++++++++
 archiver/util.c          |   97 ++++
 archiver/util.h          |   33 ++
 archiver/versioning-spec |  193 ++++++++
 17 files changed, 4367 insertions(+)

commit d2df694453ded8116fffec828fe0c11f3c2b0ed2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Dec 19 09:57:25 2000 +0000

    Updated Norwegian translation.
    
    2000-12-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 36 ++++++++++++++++++++++++++----------
 2 files changed, 30 insertions(+), 10 deletions(-)

commit 0e6e1f19ac7fd0f098fb8d1600af4181628d5d72
Author: Christian Rose <menthos@src.gnome.org>
Date:   Mon Dec 18 18:14:08 2000 +0000

    Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 44 ++++++++++++++++++++++++++++++--------------
 2 files changed, 34 insertions(+), 14 deletions(-)

commit c76059401c553d078c910a64b74a725e9eab966d
Author: Christopher R. Gabriel <cgabriel@src.gnome.org>
Date:   Mon Dec 18 16:27:08 2000 +0000

    updated italian translation

 po/ChangeLog |    4 +
 po/it.po     | 1472 ++++++++++++++++++++++++++++++----------------------------
 2 files changed, 773 insertions(+), 703 deletions(-)

commit 749b0a33a36784383a0c4ae13d0c865b1b58a3ff
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Mon Dec 18 15:09:36 2000 +0000

    Change the meaning of brightness to mean opacity (tile_composite):
    
    2000-12-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/applier.c
        (renderer_render_wallpaper): Change the meaning of brightness to
        mean opacity
        (tile_composite): Implement
        (render_gradient_p): Return TRUE if the opacity should be adjusted
    
        * capplets/new-background-properties/prefs-widget.c: Change
        instances of brightness to refer to opacity
    
        * capplets/new-background-properties/preferences.c: Ditto

 ChangeLog                                         | 13 ++++
 capplets/background/applier.c                     | 84 ++++++++++++++++++-----
 capplets/background/background-properties.glade   | 18 ++---
 capplets/background/background-properties.glade.h |  6 +-
 capplets/background/preferences.c                 | 36 +++++-----
 capplets/background/preferences.h                 |  4 +-
 capplets/background/prefs-widget.c                | 52 +++++++-------
 7 files changed, 136 insertions(+), 77 deletions(-)

commit 73ae1407b366fbccc4dfb342c9e0a48f76628d15
Author: Valek Frob <frob@src.gnome.org>
Date:   Mon Dec 18 13:14:38 2000 +0000

    Updated russian translation.

 po/ChangeLog |  4 ++++
 po/ru.po     | 38 +++++++++++++++++++++++++++-----------
 2 files changed, 31 insertions(+), 11 deletions(-)

commit 480213cab55cc648394fc8ed2fa10be3971ce7be
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Mon Dec 18 00:34:29 2000 +0000

    Add support for adjusting wallpaper brightness
    
    2000-12-17  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/applier.c
        (renderer_render_wallpaper): Add support for adjusting wallpaper
        brightness
    
        * capplets/new-background-properties/main.c (ok_cb):
        (cancel_cb): Disconnect ok, cancel handler signals before
        destroying preferences widget
        (setup_capplet_widget): Set signal handler ids for ok, cancel
        signals
    
        * capplets/new-background-properties/prefs-widget.c
        (prefs_widget_init): Connect signals for adjusting brightness
        (adjust_brightness_toggled_cb):
        (brightness_adjust_changed_cb):
        (set_brightness_controls_sensitive): Implement
    
        * capplets/new-background-properties/preferences.h (struct
        _Preferences): Add adjust_brightness, brightness_value
    
        * capplets/new-background-properties/preferences.c (preferences_load):
        (preferences_save):
        (preferences_read_xml):
        (preferences_write_xml): Support adjust_brightness, brightness_value
    
        * capplets/new-background-properties/prefs-widget.c
        (wallpaper_entry_changed_cb): Don't fail if prefs is NULL, just
        return
    
        * capplets/new-background-properties/main.c (ok_cb):
        (cancel_cb): Properly destroy the preferences widget
    
        * capplets/new-background-properties/prefs-widget.c
        (prefs_widget_destroy): Implement

 ChangeLog                                         |  34 ++++++
 capplets/background/applier.c                     |  54 ++++++++-
 capplets/background/background-properties.glade   | 137 +++++++++++++++++++++-
 capplets/background/background-properties.glade.h |   3 +
 capplets/background/main.c                        |  19 ++-
 capplets/background/preferences.c                 |  31 ++++-
 capplets/background/preferences.h                 |   3 +
 capplets/background/prefs-widget.c                | 115 +++++++++++++++++-
 8 files changed, 382 insertions(+), 14 deletions(-)

commit 394501074b238d4e4dfb4302543aecb08ba6586f
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Dec 17 21:50:45 2000 +0000

    Use string rather than bool for auto_apply
    
    2000-12-17  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/preferences.c
        (preferences_load):
        (preferences_save): Use string rather than bool for auto_apply

 ChangeLog                         |  2 ++
 capplets/background/preferences.c | 13 +++++++++----
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 8d8010f25255312265ba5e25e6e4af4b3bf63985
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Dec 17 21:44:20 2000 +0000

    Increased delay before autoapply
    
    2000-12-17  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/preferences.c
        (preferences_changed): Increased delay before autoapply
    
        * capplets/new-background-properties/prefs-widget.c
        (auto_apply_toggled_cb): Implement
        (read_preferences):
        (prefs_widget_init): Support auto_apply
    
        * capplets/new-background-properties/preferences.h (struct
        _Preferences): Add auto_apply
        * capplets/new-background-properties/preferences.c
        (preferences_write_xml):
        (preferences_read_xml):
        (preferences_load):
        (preferences_save): Support auto_apply
    
        * capplets/new-background-properties/applier.c (struct _Renderer):
        Added srcx, srcy to clip wallpaper when it is too big
        (get_geometry): Set srcx and srcy
        (renderer_render_to_screen): Tweak rendering geometry to stay
        within the wallpaper area on the drawable
    
        * capplets/new-background-properties/prefs-widget.c
        (wallpaper_entry_changed_cb): Make sure the file specified is
        actually a file
    
        * capplets/new-background-properties/main.c (do_set_xml): Default
        NULL for buffer

 ChangeLog                                         | 26 ++++++++++
 capplets/background/applier.c                     | 61 +++++++++++++++++------
 capplets/background/background-properties.glade   | 30 ++++++++++-
 capplets/background/background-properties.glade.h |  1 +
 capplets/background/preferences.c                 | 18 +++++--
 capplets/background/preferences.h                 |  1 +
 capplets/background/prefs-widget.c                | 38 ++++++++++++++
 7 files changed, 155 insertions(+), 20 deletions(-)

commit 9d9e373a331be2fad163b2e96666c552934d03ea
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Dec 17 19:05:11 2000 +0000

    Default NULL for buffer
    
    2000-12-17  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/main.c (do_set_xml): Default
        NULL for buffer
    
        * capplets/new-background-properties/applier.c
        (is_nautilus_running): Return if there is no Nautilus window
        property

 ChangeLog                     | 9 +++++++++
 capplets/background/applier.c | 2 ++
 capplets/background/main.c    | 2 +-
 3 files changed, 12 insertions(+), 1 deletion(-)

commit 433b55d43af2cdea190c46840f4eeff69407d588
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Dec 17 16:21:14 2000 +0000

    updated Azeri file

 po/ChangeLog |   4 +
 po/az.po     | 351 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 167 insertions(+), 188 deletions(-)

commit 6829db0eb3fb7f0ad88bbb5809cb50fa89694612
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Dec 17 00:32:11 2000 +0000

    Fixed compilation warnings: removed unused variables, initialized
    
    2000-12-16  Bradford Hovinen  <hovinen@helixcode.com>
    
        * all: Fixed compilation warnings: removed unused variables,
        initialized variables properly, returned default values
        * selection-dialog.c (get_known_savers): Return list_head when done
        * resources.c: Include ctype.h

 capplets/screensaver/ChangeLog                  |  7 +++++++
 capplets/screensaver/main.c                     |  5 +----
 capplets/screensaver/preferences.c              |  8 ++++----
 capplets/screensaver/prefs-widget.c             | 12 +++++++-----
 capplets/screensaver/rc-parse.c                 |  1 -
 capplets/screensaver/resources.c                |  2 ++
 capplets/screensaver/screensaver-prefs-dialog.c | 21 +++++++++------------
 capplets/screensaver/selection-dialog.c         |  5 +++--
 8 files changed, 33 insertions(+), 28 deletions(-)

commit a9893df2a1e4c5ac41b9c2f0ac9c3080c532dfd3
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Wed Dec 13 16:51:55 2000 +0000

    Updated French translation.

 po/ChangeLog |  4 ++++
 po/fr.po     | 55 ++++++++++++++++++++++++++-----------------------------
 2 files changed, 30 insertions(+), 29 deletions(-)

commit 6026f8b23bf7baecc775a91f8c2fb1231af928c3
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Tue Dec 12 12:18:36 2000 +0000

    Updated Slovak translation

 po/ChangeLog |   4 +
 po/sk.po     | 565 +++++++++++++++--------------------------------------------
 2 files changed, 148 insertions(+), 421 deletions(-)

commit 94b7d46232278c554bc1fca52652b4d606662020
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Dec 11 21:19:32 2000 +0000

    Added Azeri file added Slovak file from stable branch
    
    Added Azeri file
    added Slovak file from stable branch

 configure.in |    2 +-
 po/ChangeLog |    6 +
 po/az.po     | 2124 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/fr.po     | 1213 +++++++++++++++++++--------------
 po/pl.po     |  930 ++++++++++++-------------
 po/sk.po     | 2111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 5419 insertions(+), 967 deletions(-)

commit c8571e76aa364dd555a8e67f3f5f6333a934e9f8
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Dec 8 23:36:43 2000 +0000

    reviewed by: Pavel Cisler <pavel@eazel.com>
    
    2000-12-08  Gene Z. Ragan  <gzr@eazel.com>
    
        reviewed by: Pavel Cisler <pavel@eazel.com>
    
        Fixed bug 4660, Descrption lost when adding mime types
    
        Bug was caused by a failure to write out a mime type
        with caps in the string. I now convert all caps to lower
        case and inform the user what has happened.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (find_message_label_callback), (find_message_label),
        (show_message_box), (display_upper_case_dialog):
        New routines to display a nice dialog taken from Nautilus.
    
        (nautilus_mime_type_capplet_show_new_mime_window):
        Convert mime string to lower case if caps are present.

 capplets/file-types/file-types-capplet-dialogs.c | 109 +++++++++++++++++++++--
 capplets/file-types/file-types-capplet.c         |   1 -
 2 files changed, 104 insertions(+), 6 deletions(-)

commit 2009063564c997c4e89619c9804535f6bfa2df22
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Tue Dec 5 15:46:00 2000 +0000

    Updated Greek translation

 po/ChangeLog |    4 +
 po/el.po     | 1181 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 749 insertions(+), 436 deletions(-)

commit 1134b748da58bcc14aa78d94a7791d4be6e87859
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Sat Nov 25 19:55:24 2000 +0000

    Update.

 po/ChangeLog | 4 ++++
 po/de.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit ab3252cba515ac8a3ca24101de1b51aa0f68f3e2
Author: Stanislav Brabec <utx@penguin.cz>
Date:   Fri Nov 24 12:45:21 2000 +0000

    Remove trailing dot in english strings containing menu name or tooltip
    
    2000-11-23  Stanislav Brabec  <utx@penguin.cz>
    
            * */*/*.desktop, */*/*.directory: Remove trailing dot in english
        strings containing menu name or tooltip (discussed in gnome-i18n
        list). Updated cs.

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 679d564b53efc12600b08868c376cf5b1c4092f3
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Mon Nov 20 19:43:30 2000 +0000

    reviewed by: <mjs@eazel.com>
    
    2000-11-20  Mathieu Lacage  <mathieu@eazel.com>
    
        reviewed by: <mjs@eazel.com>
    
        Fix bug 4812. Also, make the capplet work by fixing
        random bugs here and there. It was the first time I could test
        it for true so, of course, got a bunch of small-border-effect bugs.
        * libgnomevfs/gnome-vfs-mime-info.c:
        (hack_getc): the most evil function I ever wrote.
        It recursively gets rid of the comment lines before
        the parsers ever get them. (iunstead of fixing thew parsers....)
        (load_mime_type_info_from): make it use nerw hack_gets function
        instead of getc_unlocked.
        (load_mime_list_info_from): idem.
        (gnome_vfs_mime_get_extensions_list): avoid returning the extensions
        of the system settings if the user has set the user extensions.
        (get_key_name): make it remove duplicates for true.
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_mime_window): fix bug 4812
        by replacing "char *text[3]" by "char *text[4]".
        (nautilus_mime_type_capplet_show_change_extension_window):
        spaces.
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (update_extensions_list): fix border-effect bugs. (ie: when you
        have no extension for a mime type for example...)
        (add_mime_clicked): idem.

 capplets/file-types/file-types-capplet-dialogs.c | 26 +++++---
 capplets/file-types/file-types-capplet.c         | 83 +++++-------------------
 2 files changed, 34 insertions(+), 75 deletions(-)

commit 7652cffef12e074a7a8c54288727e785c785cabe
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Mon Nov 20 02:31:25 2000 +0000

    Fix bug 4811 add new function. Ultimately, I wished we could get rid of
    
    2000-11-19  Mathieu Lacage  <mathieu@eazel.com>
    
        Fix bug 4811
        * libgnomevfs/gnome-vfs-mime-info.c:
        (gnome_vfs_mime_set_extensions_list): add new function.
        Ultimately, I wished we could get rid of the direct access
        to the internal hastables but this is at least a first step.
        * libgnomevfs/gnome-vfs-mime-info.h: add prototype.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (add_extension_clicked): implement
        (remove_extension_clicked): implement
        (extension_list_selected): grey/ungrey delete button when selecting/unselecting
        (extension_list_deselected): idem
        (get_extensions_from_gtk_list): helper function.
        (nautilus_mime_type_capplet_show_change_extension_window): implement.
        (nautilus_mime_type_capplet_show_new_extension_window): fix a number of segfaults.
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.h: change prototypes.
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (get_selected_row_number),helper function.
        (get_selected_mime_type), helper function (refactoring :)
        (really_change_icon): fix segfault.
        (update_extensions_list): update extensions when you change them.
        (change_file_extensions_clicked): create dialog.
        (init_mime_capplet): spaces.
        (nautilus_mime_type_capplet_update_info): make it use get_selected_mime_type.

 capplets/file-types/file-types-capplet-dialogs.c | 209 ++++++++++++++++++++++-
 capplets/file-types/file-types-capplet-dialogs.h |   7 +-
 capplets/file-types/file-types-capplet.c         |  78 ++++++++-
 3 files changed, 277 insertions(+), 17 deletions(-)

commit 404ba40351d4ca2976b43182b6b48df0f78b1693
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Fri Nov 17 23:15:20 2000 +0000

    reviewed by: Sullivan
    
    2000-11-17  Mathieu Lacage  <mathieu@eazel.com>
    
        reviewed by: Sullivan
    
        fix Bug 4768. Reported 3 bugs about separate issues: 4796, 4797, 4798.
        * data/mime/gnome-vfs.keys: change icon filenames to relative paths.
        * libgnomevfs/Makefile.am: add GNOME_VFS_PREFIX
        * libgnomevfs/gnome-vfs-mime-info.c: (gnome_vfs_mime_info_reload):
        add initialition code if the mime stuff is not initalized when doing
        a reload. This avoids a segfault.
        * libgnomevfs/gnome-vfs-utils.c: (hack_file_exists): new function
        copied from gnome-libs: prviously named g_file_exists.
        (gnome_vfs_icon_path_from_filename): new API function. It looks
        in GNOME_PATH to find the icons and defaults to the gnome-vfs prefix
        one. It accepts only relative paths and returns an absolute path.
        * libgnomevfs/gnome-vfs-utils.h: add prototype.
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (really_change_icon), changes the icon used by a mime type.
        (gil_icon_selected_cb): changes the icon when you double-click.
        (change_icon_clicked_cb_real): changes the icon when you click on ok.
        (change_icon_clicked): connect to the clicked and select_icon signals
        to know when the user has made up his mind about hte new icon.
        (nautilus_mime_type_capplet_update_info), spaces.
        (add_mime_clicked): spaces.
        (nautilus_mime_type_capplet_update_mime_list_icon): spaces.
        (capplet_get_icon_pixbuf): spaces.
        (populate_mime_list): spaces.
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (icon_selected_cb): spaces.
        (nautilus_mime_type_show_icon_selection): spaces.
        (nautilus_mime_type_icon_entry_get_relative_filename): new function.
        returns a relative filename instead of an abosulte one.
        * mime-type-capplet/nautilus-mime-type-icon-entry.h: add relative
        function prototype

 capplets/file-types/file-types-capplet.c    | 125 +++++++++++++++++++---------
 capplets/file-types/file-types-icon-entry.c |  28 ++++++-
 capplets/file-types/file-types-icon-entry.h |   1 +
 3 files changed, 114 insertions(+), 40 deletions(-)

commit 7b46e81978f7343ef9d90d0ebe1a53e4710253c3
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Fri Nov 17 00:41:44 2000 +0000

    fix bug 4769 tweak to look slightly better. fix a potential segfault too.
    
    2000-11-16  Mathieu Lacage  <mathieu@eazel.com>
    
        fix bug 4769
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_mime_window): tweak to
        look slightly better. fix a potential segfault too.
        * mime-type-capplet/nautilus-mime-type-capplet.c: (revert_real_cb),
        (revert_mime_clicked), (add_mime_clicked): add dialog hook.

 capplets/file-types/file-types-capplet-dialogs.c |  8 ++++--
 capplets/file-types/file-types-capplet.c         | 36 ++++++++++++++++++------
 2 files changed, 34 insertions(+), 10 deletions(-)

commit 796feca1e3730cdb54e70902057068dd5528ac24
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Thu Nov 16 08:33:02 2000 +0000

    Fix bugs 2767 and 3228 add debugging functions. They are disabled by
    
    2000-11-16  Mathieu Lacage  <mathieu@eazel.com>
    
        Fix bugs 2767 and 3228
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (nautilus_stop_in_debugger),
        (nautilus_stop_after_default_log_handler),
        (nautilus_set_stop_after_default_log_handler),
        (nautilus_make_warnings_and_criticals_stop_in_debugger),
        add debugging functions. They are disabled by default.
        (main), add call to debuggin funcitons if they are enabled.
        (change_icon_clicked), implement.
        (init_mime_capplet), tweaks, cleanups
        (nautilus_mime_type_capplet_update_info), update icon.
        (revert_mime_clicked), implement correctly.
        (delete_mime_clicked), implement correctly.
        (add_mime_clicked), cleanups
        (capplet_get_icon_pixbuf), new function to get the pixbuf for
        a given mime type
        (populate_mime_list): use the new function above, refactor.
        (update_mime_list_action): idem.

 capplets/file-types/file-types-capplet.c | 365 +++++++++++++++++++------------
 1 file changed, 225 insertions(+), 140 deletions(-)

commit c2c99951cf8718419f4a226be3e3cf67d9afb8d8
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Thu Nov 16 04:53:55 2000 +0000

    make it look like what Arlo wanted. (revert_mime_clicked): new callback to
    
    2000-11-15  Mathieu Lacage  <mathieu@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet), make it look like what Arlo wanted.
        (revert_mime_clicked): new callback to reset user settings.

 capplets/file-types/file-types-capplet.c | 249 ++++++++++++++++---------------
 1 file changed, 126 insertions(+), 123 deletions(-)

commit ccd779c3efa7cd1414d5d2ea480a993a5110947b
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Tue Nov 14 16:19:30 2000 +0000

    Updated Polish translation

 po/ChangeLog |   4 ++
 po/pl.po     | 153 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 110 insertions(+), 47 deletions(-)

commit 07a568a16a1649c1ff81fe4b2219ee7cd4e92931
Author: Stano Visnovsky <stano@src.gnome.org>
Date:   Tue Nov 14 13:32:33 2000 +0000

    Added Slovak [sk] translations

 capplets/file-types/nautilus-mime-type.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 3b5684ce82283c5edde43c9b6dfe3ec23726709f
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Tue Nov 14 09:24:35 2000 +0000

    Fixed

 po/hu.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 6b5e1f48ff45bb8bdb0de7e4b10032a95a267061
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Mon Nov 13 23:33:57 2000 +0000

    Some more capplet work. The mime list now updates to reflect changes made
    
    2000-11-13  Gene Z. Ragan  <gzr@eazel.com>
    
        Some more capplet work.  The mime list now updates
        to reflect changes made to the default action button
        and menu item list.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (application_button_toggled), (viewer_button_toggled),
        (application_menu_activated), (component_menu_activated),
        (add_mime_clicked),
        (nautilus_mime_type_capplet_update_mime_list_icon),
        (update_mime_list_action), (populate_mime_list):
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (entry_changed):
        Fixed a case where a NULL widget would cause an assertion.

 capplets/file-types/file-types-capplet.c    | 95 ++++++++++++++++++++++++++---
 capplets/file-types/file-types-icon-entry.c | 17 ++++--
 2 files changed, 98 insertions(+), 14 deletions(-)

commit 9dbfae956e792617ec92b5b078048351f6c3ff4b
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Mon Nov 13 19:16:38 2000 +0000

    Fixed bug 3107, Setting na icon for a mime type does not work.
    
    2000-11-13  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 3107, Setting na icon for a mime type does not work.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        * mime-type-capplet/nautilus-mime-type-capplet.h:
        (nautilus_mime_type_capplet_update_mime_list_icon):
        New function that sets/updates the icon in the mime list.
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (icon_selected_cb), (nautilus_mime_type_show_icon_selection):
        Add call to new nautilus_mime_type_capplet_update_mime_list_icon
        function.

 capplets/file-types/file-types-capplet.c    | 52 +++++++++++++++++++++++++++++
 capplets/file-types/file-types-capplet.h    |  2 +-
 capplets/file-types/file-types-icon-entry.c | 29 ++++++++--------
 3 files changed, 68 insertions(+), 15 deletions(-)

commit e58cefd2cd80769ffe000464f38b4ed5bdfaa493
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Nov 12 17:00:14 2000 +0000

    Added norwegian translation. Marked all strings for translation.
    
    2000-11-11  Kjartan Maraas  <kmaraas@gnome.org>
    
        * mime-type-capplet/nautilus-mime-type.desktop: Added norwegian translation.
        * mime-type-capplet/nautilus-mime-type-capplet.c: Marked all strings for translation.

 capplets/file-types/file-types-capplet.c       | 6 +++---
 capplets/file-types/nautilus-mime-type.desktop | 2 ++
 2 files changed, 5 insertions(+), 3 deletions(-)

commit a31974f90f60709b548b583e41da4cf2143703d3
Author: jjranta <jjranta@src.gnome.org>
Date:   Sat Nov 11 13:01:41 2000 +0000

    Added or updated fi-entry to about all .desktop-files. Updated fi.po

 capplets/background/background-properties.desktop  |    2 +-
 .../screensaver/screensaver-properties.desktop     |    2 +-
 control-center/gnomecc.desktop                     |    2 +-
 po/ChangeLog                                       |    4 +
 po/fi.po                                           | 1504 ++++++++++----------
 5 files changed, 775 insertions(+), 739 deletions(-)

commit f54e6243283d9197b444b4e71379a7852ffbff80
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Fri Nov 10 00:56:59 2000 +0000

    More srcdir != builddir, plus add missing source files.
    
    
    
    More srcdir != builddir, plus add missing source files.

 capplets/file-types/Makefile.am | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit fb05c868f04790a598b17f5edee40a4753373dac
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Wed Nov 8 14:04:01 2000 +0000

    updating pt_BR

 po/pt_BR.po | 94 ++++++++++++++++++++++++++-----------------------------------
 1 file changed, 40 insertions(+), 54 deletions(-)

commit 994589cff7ce8972c7dd9b473ebab67dbd1d5cb0
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sat Nov 4 18:56:23 2000 +0000

    Translations from Keld
    control-center/po/da.po gtranslator/po/da.po sodipodi/po/da.po

 po/da.po | 1048 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 678 insertions(+), 370 deletions(-)

commit 7dde3219d144641903935da2ce466508fc0e587a
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Thu Nov 2 22:34:42 2000 +0000

    Some more capplet cleanup.
    
    2000-11-02  Gene Z. Ragan  <gzr@eazel.com>
    
        Some more capplet cleanup.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (check_button_status), (initialize_edit_applications_dialog),
        (initialize_edit_components_dialog):
        Have the Add, Edit and Delete buttons in the Edit Applications
        dialog be enabled/disabled properly based on the contents
        of the application list.
    
        Remove Cancel button from the Edit Component and Edit Application
        dialog, as we currently do not have a way to roll back the changed
        made.

 capplets/file-types/file-types-capplet-dialogs.c | 44 +++++++++++++++++++++---
 1 file changed, 40 insertions(+), 4 deletions(-)

commit 5581fc2897b5d19b64d66deab78b322193c7da5d
Author: Gene Ragan <gzr@src.gnome.org>
Date:   Thu Nov 2 08:37:45 2000 +0000

    So2000-11-02  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 4319, Edit and Delete actions in Application
        List do not function
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (populate_default_applications_list),
        (initialize_edit_applications_dialog),
        (nautilus_mime_type_capplet_show_new_mime_window),
        (add_or_update_application), (add_item_to_application_list),
        (show_new_application_window), (show_edit_application_window),
        (delete_selected_application):
        Bunches of code to handle adding, editing and deletion of
        application/mime type mapping.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (nautilus_mime_type_capplet_get_selected_item_mime_type):

 capplets/file-types/file-types-capplet-dialogs.c | 245 +++++++++++++++++++----
 capplets/file-types/file-types-capplet.c         |   2 +-
 2 files changed, 205 insertions(+), 42 deletions(-)

commit 6d9daa950ac9a0c070e8598b432a56badc21fd1d
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Wed Nov 1 17:26:14 2000 +0000

    Updated Slovenian translation

 po/sl.po | 1257 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 772 insertions(+), 485 deletions(-)

commit e195977478e224c57253de967efc1b075cb76c8a
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Mon Oct 30 14:03:17 2000 +0000

    Updated Polish translation

 po/ChangeLog |    4 +
 po/pl.po     | 1877 +++++++++++++++++++++++++++++-----------------------------
 2 files changed, 943 insertions(+), 938 deletions(-)

commit 6c310dbc6e9938396f218b96b4b9ce75f10e5b93
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Mon Oct 30 13:07:12 2000 +0000

    Updating some pt_BR translations. (Update-Gnome.sh script)
     any problem ricardo@conectiva.com.br please

 po/pt_BR.po | 2491 +++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1549 insertions(+), 942 deletions(-)

commit fae7e29e1327ceb549bae08827d76cd0dd12df70
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 28 17:23:13 2000 +0000

    Add missing _() around label strings
    
    2000-10-28  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (get_spinbutton):
        (get_check_button):
        (get_select_widget):
        (get_file_entry):
        (get_entry):
        (place_number): Add missing _() around label strings

 capplets/screensaver/ChangeLog                  |  9 +++++++++
 capplets/screensaver/screensaver-prefs-dialog.c | 18 +++++++++---------
 2 files changed, 18 insertions(+), 9 deletions(-)

commit 557bdad3cac1ad47681b689c4d4e4ae068c18d08
Author: Valek Frob <frob@src.gnome.org>
Date:   Sat Oct 28 13:42:56 2000 +0000

    Updated russian translation.

 po/ChangeLog |    4 +
 po/ru.po     | 1163 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 663 insertions(+), 504 deletions(-)

commit 14f94182c1aa09acc6b2cb4e8b67c909da9e21e3
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Oct 26 20:08:05 2000 +0000

    updating some pt_BR <ricardo@conectiva.com.br>
    
    any problem, just tell me, and i reverse the commit.

 capplets/file-types/nautilus-mime-type.desktop | 2 ++
 capplets/theme-switcher/theme-selector.desktop | 2 ++
 control-center/gnomecc.desktop                 | 2 +-
 3 files changed, 5 insertions(+), 1 deletion(-)

commit 0afa691aae019831da9c37d37cc065e2400ddbc7
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Tue Oct 24 19:16:38 2000 +0000

    updating pt_BR translations

 po/pt_BR.po | 284 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 142 insertions(+), 142 deletions(-)

commit fa11f29295f683e6b02cfb684d023c2868d46cab
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Tue Oct 24 18:41:09 2000 +0000

    updating translations

 po/pt_BR.po | 1506 +++++++++++++++++++++++++++++++----------------------------
 1 file changed, 804 insertions(+), 702 deletions(-)

commit 50559800613b07664e9d4c68fe3bc4cc0935c808
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Tue Oct 24 18:09:58 2000 +0000

    ng some potfile translations and adding some translations...
    
    
     ng some potfile translations and adding some translations...
    
     <!--

 po/pt_BR.po | 1506 ++++++++++++++++++++++++++++-------------------------------
 1 file changed, 702 insertions(+), 804 deletions(-)

commit 52b0f1210d6e629aed4ed05b0b3c339093ababae
Author: Christian Rose <menthos@src.gnome.org>
Date:   Sun Oct 22 21:32:38 2000 +0000

    Updated Swedish translation.

 po/ChangeLog |    4 +
 po/sv.po     | 1433 +++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 880 insertions(+), 557 deletions(-)

commit 18ea732ecfd10fdf9959eb17840fc046e39a6b28
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sun Oct 22 20:21:02 2000 +0000

    From John B Tunison <jtunison@andrew.cmu.edu>:
    
        Added xml files resulting from conversions from old .desktop files

 capplets/screensaver/screensavers/3d_clock.xml     |  23 +++
 capplets/screensaver/screensavers/3d_clock.xml.h   |  18 ++
 capplets/screensaver/screensavers/Makefile.am      | 198 +++++++++++++++++++--
 capplets/screensaver/screensavers/ant.xml.h        |  30 ++++
 capplets/screensaver/screensavers/atlantis.xml     |   7 +
 capplets/screensaver/screensavers/atlantis.xml.h   |   6 +
 capplets/screensaver/screensavers/attraction.xml.h |  26 +++
 capplets/screensaver/screensavers/blitspin.xml     |  19 ++
 capplets/screensaver/screensavers/blitspin.xml.h   |  13 ++
 capplets/screensaver/screensavers/bouboule.xml     |  25 +++
 capplets/screensaver/screensavers/bouboule.xml.h   |  15 ++
 capplets/screensaver/screensavers/braid.xml        |  14 ++
 capplets/screensaver/screensavers/braid.xml.h      |   9 +
 capplets/screensaver/screensavers/bsod.xml.h       |  11 ++
 capplets/screensaver/screensavers/bubble3d.xml     |   7 +
 capplets/screensaver/screensavers/bubble3d.xml.h   |   6 +
 capplets/screensaver/screensavers/bubbles.xml      |  23 +++
 capplets/screensaver/screensavers/bubbles.xml.h    |  13 ++
 capplets/screensaver/screensavers/cage.xml         |   7 +
 capplets/screensaver/screensavers/cage.xml.h       |   6 +
 capplets/screensaver/screensavers/compass.xml.h    |  13 ++
 capplets/screensaver/screensavers/coral.xml        |  19 ++
 capplets/screensaver/screensavers/coral.xml.h      |  14 ++
 capplets/screensaver/screensavers/critical.xml     |   7 +
 capplets/screensaver/screensavers/critical.xml.h   |   6 +
 capplets/screensaver/screensavers/crystal.xml      |  31 ++++
 capplets/screensaver/screensavers/crystal.xml.h    |  17 ++
 capplets/screensaver/screensavers/cynosure.xml     |  22 +++
 capplets/screensaver/screensavers/cynosure.xml.h   |  15 ++
 capplets/screensaver/screensavers/decayscreen.xml  |  14 ++
 .../screensaver/screensavers/decayscreen.xml.h     |  10 ++
 capplets/screensaver/screensavers/deco.xml         |  17 ++
 capplets/screensaver/screensavers/deco.xml.h       |  10 ++
 capplets/screensaver/screensavers/deluxe.xml       |   7 +
 capplets/screensaver/screensavers/deluxe.xml.h     |   6 +
 capplets/screensaver/screensavers/demon.xml        |   7 +
 capplets/screensaver/screensavers/demon.xml.h      |   6 +
 capplets/screensaver/screensavers/discrete.xml     |  22 +++
 capplets/screensaver/screensavers/discrete.xml.h   |  14 ++
 capplets/screensaver/screensavers/distort.xml      |   7 +
 capplets/screensaver/screensavers/distort.xml.h    |   6 +
 capplets/screensaver/screensavers/drift.xml        |  28 +++
 capplets/screensaver/screensavers/drift.xml.h      |  16 ++
 capplets/screensaver/screensavers/epicycle.xml     |  18 ++
 capplets/screensaver/screensavers/epicycle.xml.h   |  12 ++
 capplets/screensaver/screensavers/fadeplot.xml     |  26 +++
 capplets/screensaver/screensavers/fadeplot.xml.h   |  17 ++
 capplets/screensaver/screensavers/flag.xml.h       |  21 +++
 capplets/screensaver/screensavers/flame.xml        |  27 +++
 capplets/screensaver/screensavers/flame.xml.h      |  18 ++
 capplets/screensaver/screensavers/flow.xml         |   7 +
 capplets/screensaver/screensavers/flow.xml.h       |   6 +
 capplets/screensaver/screensavers/forest.xml       |  22 +++
 capplets/screensaver/screensavers/forest.xml.h     |  14 ++
 capplets/screensaver/screensavers/galaxy.xml       |   7 +
 capplets/screensaver/screensavers/galaxy.xml.h     |   6 +
 capplets/screensaver/screensavers/gears.xml        |   7 +
 capplets/screensaver/screensavers/gears.xml.h      |   6 +
 capplets/screensaver/screensavers/glplanet.xml     |   7 +
 capplets/screensaver/screensavers/glplanet.xml.h   |   6 +
 capplets/screensaver/screensavers/goop.xml         |  26 +++
 capplets/screensaver/screensavers/goop.xml.h       |  14 ++
 capplets/screensaver/screensavers/grav.xml         |  24 +++
 capplets/screensaver/screensavers/grav.xml.h       |  13 ++
 capplets/screensaver/screensavers/greynetic.xml    |  14 ++
 capplets/screensaver/screensavers/greynetic.xml.h  |  10 ++
 capplets/screensaver/screensavers/halo.xml         |  31 ++++
 capplets/screensaver/screensavers/halo.xml.h       |  17 ++
 capplets/screensaver/screensavers/helix.xml        |  14 ++
 capplets/screensaver/screensavers/helix.xml.h      |  10 ++
 capplets/screensaver/screensavers/hopalong.xml     |  22 +++
 capplets/screensaver/screensavers/hopalong.xml.h   |  15 ++
 capplets/screensaver/screensavers/hypercube.xml    |  18 ++
 capplets/screensaver/screensavers/hypercube.xml.h  |  13 ++
 capplets/screensaver/screensavers/ifs.xml          |  14 ++
 capplets/screensaver/screensavers/ifs.xml.h        |   9 +
 capplets/screensaver/screensavers/imsmap.xml       |   7 +
 capplets/screensaver/screensavers/imsmap.xml.h     |   6 +
 capplets/screensaver/screensavers/interference.xml |   7 +
 .../screensaver/screensavers/interference.xml.h    |   6 +
 capplets/screensaver/screensavers/jigsaw.xml       |  11 ++
 capplets/screensaver/screensavers/jigsaw.xml.h     |   9 +
 capplets/screensaver/screensavers/julia.xml        |  22 +++
 capplets/screensaver/screensavers/julia.xml.h      |  14 ++
 capplets/screensaver/screensavers/kaleidescope.xml |  23 +++
 .../screensaver/screensavers/kaleidescope.xml.h    |  15 ++
 capplets/screensaver/screensavers/kumppa.xml       |   7 +
 capplets/screensaver/screensavers/kumppa.xml.h     |   6 +
 capplets/screensaver/screensavers/lament.xml       |   7 +
 capplets/screensaver/screensavers/lament.xml.h     |   6 +
 capplets/screensaver/screensavers/laser.xml        |  18 ++
 capplets/screensaver/screensavers/laser.xml.h      |  12 ++
 capplets/screensaver/screensavers/lightning.xml    |  14 ++
 capplets/screensaver/screensavers/lightning.xml.h  |   9 +
 capplets/screensaver/screensavers/lisa.xml         |  26 +++
 capplets/screensaver/screensavers/lisa.xml.h       |  17 ++
 capplets/screensaver/screensavers/lissie.xml       |   7 +
 capplets/screensaver/screensavers/lissie.xml.h     |   6 +
 capplets/screensaver/screensavers/lmorph.xml       |  25 +++
 capplets/screensaver/screensavers/lmorph.xml.h     |  16 ++
 capplets/screensaver/screensavers/loop.xml         |   7 +
 capplets/screensaver/screensavers/loop.xml.h       |   6 +
 capplets/screensaver/screensavers/maze.xml         |  27 +++
 capplets/screensaver/screensavers/maze.xml.h       |  16 ++
 capplets/screensaver/screensavers/moebius.xml      |   7 +
 capplets/screensaver/screensavers/moebius.xml.h    |   6 +
 capplets/screensaver/screensavers/moire.xml        |  22 +++
 capplets/screensaver/screensavers/moire.xml.h      |  15 ++
 capplets/screensaver/screensavers/moire2.xml       |   7 +
 capplets/screensaver/screensavers/moire2.xml.h     |   6 +
 capplets/screensaver/screensavers/morph3d.xml      |   7 +
 capplets/screensaver/screensavers/morph3d.xml.h    |   6 +
 capplets/screensaver/screensavers/mountain.xml     |   7 +
 capplets/screensaver/screensavers/mountain.xml.h   |   6 +
 capplets/screensaver/screensavers/munch.xml        |  20 +++
 capplets/screensaver/screensavers/munch.xml.h      |  12 ++
 capplets/screensaver/screensavers/noseguy.xml      |   7 +
 capplets/screensaver/screensavers/noseguy.xml.h    |   6 +
 capplets/screensaver/screensavers/pedal.xml        |  23 +++
 capplets/screensaver/screensavers/pedal.xml.h      |  16 ++
 capplets/screensaver/screensavers/penetrate.xml    |   7 +
 capplets/screensaver/screensavers/penetrate.xml.h  |   6 +
 capplets/screensaver/screensavers/penrose.xml      |   7 +
 capplets/screensaver/screensavers/penrose.xml.h    |   6 +
 capplets/screensaver/screensavers/pipes.xml        |   7 +
 capplets/screensaver/screensavers/pipes.xml.h      |   6 +
 capplets/screensaver/screensavers/pyro.xml         |  19 ++
 capplets/screensaver/screensavers/pyro.xml.h       |  14 ++
 capplets/screensaver/screensavers/qix.xml.h        |  32 ++++
 capplets/screensaver/screensavers/rd-bomb.xml      |   7 +
 capplets/screensaver/screensavers/rd-bomb.xml.h    |   6 +
 capplets/screensaver/screensavers/rocks.xml        |   7 +
 capplets/screensaver/screensavers/rocks.xml.h      |   6 +
 capplets/screensaver/screensavers/rorschach.xml.h  |  18 ++
 capplets/screensaver/screensavers/rotor.xml        |   7 +
 capplets/screensaver/screensavers/rotor.xml.h      |   6 +
 capplets/screensaver/screensavers/rubiks_cube.xml  |   7 +
 .../screensaver/screensavers/rubiks_cube.xml.h     |   6 +
 capplets/screensaver/screensavers/sierpinski.xml   |  18 ++
 capplets/screensaver/screensavers/sierpinski.xml.h |  12 ++
 capplets/screensaver/screensavers/slidescreen.xml  |   7 +
 .../screensaver/screensavers/slidescreen.xml.h     |   6 +
 capplets/screensaver/screensavers/slip.xml         |   7 +
 capplets/screensaver/screensavers/slip.xml.h       |   6 +
 capplets/screensaver/screensavers/sonar.xml        |   7 +
 capplets/screensaver/screensavers/sonar.xml.h      |   6 +
 capplets/screensaver/screensavers/sphere.xml       |   7 +
 capplets/screensaver/screensavers/sphere.xml.h     |   6 +
 capplets/screensaver/screensavers/spiral.xml       |  26 +++
 capplets/screensaver/screensavers/spiral.xml.h     |  16 ++
 capplets/screensaver/screensavers/spotlight.xml    |   7 +
 capplets/screensaver/screensavers/spotlight.xml.h  |   6 +
 capplets/screensaver/screensavers/sproingies.xml   |   7 +
 capplets/screensaver/screensavers/sproingies.xml.h |   6 +
 capplets/screensaver/screensavers/squiral.xml      |   7 +
 capplets/screensaver/screensavers/squiral.xml.h    |   6 +
 capplets/screensaver/screensavers/stairs.xml       |   7 +
 capplets/screensaver/screensavers/stairs.xml.h     |   6 +
 capplets/screensaver/screensavers/starfish.xml     |  29 +++
 capplets/screensaver/screensavers/starfish.xml.h   |  17 ++
 capplets/screensaver/screensavers/strange.xml      |   7 +
 capplets/screensaver/screensavers/strange.xml.h    |   6 +
 .../screensaver/screensavers/superquadrics.xml     |   7 +
 .../screensaver/screensavers/superquadrics.xml.h   |   6 +
 capplets/screensaver/screensavers/swirl.xml        |   7 +
 capplets/screensaver/screensavers/swirl.xml.h      |   6 +
 capplets/screensaver/screensavers/triangle.xml     |  14 ++
 capplets/screensaver/screensavers/triangle.xml.h   |   9 +
 capplets/screensaver/screensavers/truchet.xml      |   7 +
 capplets/screensaver/screensavers/truchet.xml.h    |   6 +
 capplets/screensaver/screensavers/vines.xml        |  14 ++
 capplets/screensaver/screensavers/vines.xml.h      |   9 +
 capplets/screensaver/screensavers/worm.xml         |   7 +
 capplets/screensaver/screensavers/worm.xml.h       |   6 +
 capplets/screensaver/screensavers/xflame.xml       |   7 +
 capplets/screensaver/screensavers/xflame.xml.h     |   6 +
 capplets/screensaver/screensavers/xjack.xml        |   7 +
 capplets/screensaver/screensavers/xjack.xml.h      |   6 +
 capplets/screensaver/screensavers/xlyap.xml        |   7 +
 capplets/screensaver/screensavers/xlyap.xml.h      |   6 +
 capplets/screensaver/screensavers/xmatrix.xml      |   7 +
 capplets/screensaver/screensavers/xmatrix.xml.h    |   6 +
 capplets/screensaver/screensavers/xroger.xml       |  10 ++
 capplets/screensaver/screensavers/xroger.xml.h     |   7 +
 184 files changed, 2371 insertions(+), 11 deletions(-)

commit 655abbdda828d4e2f998d7d8419a5101341d4d8f
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 21 21:26:04 2000 +0000

    Fix only_if_exists parameters for XInternAtom
    
    2000-10-21  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/applier.c
        (is_nautilus_running): Fix only_if_exists parameters for XInternAtom

 ChangeLog                     | 1 +
 capplets/background/applier.c | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit edc0b7480c5a1fb795fbc3b555a9de16062921e6
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 21 21:22:45 2000 +0000

    If the passed pixmap is None, delete the root pixmap properties and don't
    
    2000-10-21  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/applier.c (set_root_pixmap):
        If the passed pixmap is None, delete the root pixmap properties
        and don't try to set the background on the root window
        (is_nautilus_running): Implement. Return TRUE iff Nautilus is
        running, FALSE otherwise
        (applier_apply_prefs): If Nautilus is running and we are rendering
        to the root pixmap, just remove the root pixmap window property
        (renderer_render_to_screen): Set root pixmap to None (i.e.,
        destroy root pixmap) if we're rendering a solid background to the
        root window

 ChangeLog                     |  13 +++++
 capplets/background/applier.c | 114 ++++++++++++++++++++++++++++++++++++------
 2 files changed, 111 insertions(+), 16 deletions(-)

commit b07a1bc83ce025ccefcaa2d89b925f13ffb2b948
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Sat Oct 21 17:52:35 2000 +0000

    Update.

 po/ChangeLog |  4 ++++
 po/de.po     | 76 ++++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 58 insertions(+), 22 deletions(-)

commit f57c1756517231775ad02f2273bd8c73819d4bb1
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Oct 19 13:56:03 2000 +0000

    Updating pt_BR translations...

 po/pt_BR.po | 1836 +++++++++++++++++++++++++----------------------------------
 1 file changed, 766 insertions(+), 1070 deletions(-)

commit c1453a3cc9ea0662995f01cff2453849c79c97f4
Author: Stanislav Brabec <utx@penguin.cz>
Date:   Tue Oct 17 16:47:18 2000 +0000

    Created noinst_DATA, to not fail in po.
    
    2000-10-16  Stanislav Brabec  <utx@penguin.cz>
    
            * capplets/new-screensaver-properties/screensavers/Makefile.am:
        Created noinst_DATA, to not fail in po.
    
        * po/fr.po: Bug fix.

 ChangeLog                                     | 5 +++++
 capplets/screensaver/screensavers/Makefile.am | 2 ++
 po/ChangeLog                                  | 4 ++++
 po/fr.po                                      | 2 +-
 4 files changed, 12 insertions(+), 1 deletion(-)

commit 31a39d9838809015dff0a3ab29e70e317542e58f
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Mon Oct 16 22:50:48 2000 +0000

    Fixed bug 3042, Adding new mime type doesn't work.
    
    2000-10-16  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 3042, Adding new mime type doesn't work.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_mime_window):
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (add_mime_clicked):
        Write proper description key.
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_add_extension):
        Work in progress on adding user defined extensions

 capplets/file-types/file-types-capplet-dialogs.c | 4 ++--
 capplets/file-types/file-types-capplet.c         | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 6ff265240cc6b1d32d3a3ed3dd41da2bc244cf17
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Mon Oct 16 21:27:40 2000 +0000

    Fixed bug 3040, Action column has wrong contents
    
    2000-10-16  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 3040, Action column has wrong contents
    
        Corrected an instance where text was not getting freed
        and reset.  Also fixed a few leaks in the list
        population code.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_application_menu), (populate_viewer_menu),
        (add_mime_clicked), (populate_mime_list):

 capplets/file-types/file-types-capplet.c | 43 +++++++++++++++++++++-----------
 1 file changed, 28 insertions(+), 15 deletions(-)

commit 63dbc343bd9ff1bb95965db46e08e843c92b4147
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sun Oct 15 07:55:34 2000 +0000

    Updated Norwegian translation.
    
    2000-10-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 39 +++++++++++++++++++++++++++++++++++++--
 2 files changed, 41 insertions(+), 2 deletions(-)

commit 3fc6dc30e6a65619d828dfb0ac78836da01690d0
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Sat Oct 14 22:36:50 2000 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 821 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 425 insertions(+), 400 deletions(-)

commit 9fd5dab207f45388404ce1545fd41ea642571775
Author: dd Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 14 16:54:25 2000 +0000

    Added rorschach.xml.h
    
    2000-10-14  dd Hovinen  <hovinen@helixcode.com>
    
        * po/POTFILES.in: Added rorschach.xml.h
    
        Courtesy John B Tunison <jtunison@andrew.cmu.edu>:
        * capplets/*/Makefile.am (INCLUDES): Put
        -I$(top_srcdir)/libcapplet before everything else
    
        * new-control-center/capplet-dir.c
        (start_capplet_through_root_manager): Use FOPEN_MAX rather than
        OPEN_MAX, since some people don't seem to be have OPEN_MAX defined by
        default

 ChangeLog                          | 6 ++++++
 capplets/background/Makefile.am    | 4 ++--
 capplets/keyboard/Makefile.am      | 4 ++--
 capplets/mouse/Makefile.am         | 4 ++--
 capplets/sound/Makefile.am         | 4 ++--
 capplets/ui-properties/Makefile.am | 4 ++--
 control-center/ChangeLog           | 7 +++++++
 control-center/capplet-dir.c       | 2 +-
 po/ChangeLog                       | 4 ++++
 po/POTFILES.in                     | 1 +
 10 files changed, 29 insertions(+), 11 deletions(-)

commit 6ac6997216a1b3eead24d51dbad2bb60246ea3c3
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 14 16:05:59 2000 +0000

    Added rorschach.xml[.h]
    
    2000-10-14  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensavers/Makefile.am (Screensavers_DATA):
        (screensavers_msgs): Added rorschach.xml[.h]
    
        * screensaver-prefs-dialog.c (write_boolean): Return the attribute
        arg-unset if the toggle button is inactive

 capplets/screensaver/ChangeLog                  |  8 ++++++++
 capplets/screensaver/screensaver-prefs-dialog.c |  2 +-
 capplets/screensaver/screensavers/Makefile.am   | 16 ++++++++--------
 capplets/screensaver/screensavers/rorschach.xml | 11 +++++++++++
 4 files changed, 28 insertions(+), 9 deletions(-)

commit e5cbe657160b7a563d456be5f102328f67fa577b
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Thu Oct 12 19:55:31 2000 +0000

    Forgot this

 po/POTFILES.ignore | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 80ed790c3112285ae5fab7a60c66a70f3bfc509d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Thu Oct 12 19:55:11 2000 +0000

    Updated Norwegian translation. Updated. Updated this.
    
    2000-10-12  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.
        * POTFILES.in: Updated.
        * POTFILES.ignore: Updated this.

 po/ChangeLog   |    6 +
 po/POTFILES.in |   15 +-
 po/no.po       | 1217 ++++++++++++++++++++++++++++----------------------------
 3 files changed, 617 insertions(+), 621 deletions(-)

commit 99abd8706ec5f1204e1832a0eb12a332361cf2ba
Author: Stanislav Brabec <utx@src.gnome.org>
Date:   Wed Oct 11 14:17:08 2000 +0000

    Remove trailing dot in english strings containing menu name or tooltip
    (discussed in gnome-i18n list).
    Updated cs and cs.po.

 ChangeLog                                          |  6 ++++++
 capplets/background/background-properties.desktop  |  4 ++--
 capplets/keyboard/keyboard-properties.desktop      |  2 +-
 capplets/mouse/mouse-properties.desktop            |  2 +-
 .../screensaver/screensaver-properties.desktop     |  4 +++-
 capplets/sound/.cvsignore                          |  7 +++++++
 capplets/sound/sound-properties.desktop            |  4 ++--
 capplets/theme-switcher/theme-selector.desktop     |  4 ++--
 capplets/ui-properties/application.desktop         |  6 +++---
 capplets/ui-properties/dialogs.desktop             |  1 +
 control-center/gnomecc.desktop                     |  4 ++--
 po/ChangeLog                                       |  4 ++++
 po/cs.po                                           | 22 ++++++++++------------
 13 files changed, 44 insertions(+), 26 deletions(-)

commit f074135d5f25631c7e22b5c2d6adaa7a076f5f9f
Author: Gediminas Paulauskas <menesis@src.gnome.org>
Date:   Wed Oct 11 01:46:10 2000 +0000

    file desk.pl was initially added on branch control-center-1-0.

commit ed78814492f984c116cbf806211991ecf2d548f8
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Mon Oct 9 21:39:57 2000 +0000

    new improved dutch translation from sienapje

 po/nl.po | 850 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 541 insertions(+), 309 deletions(-)

commit 4541a1f7e851e4de49608fcfb59f695673afd914
Author: Christian Rose <menthos@src.gnome.org>
Date:   Mon Oct 9 13:32:26 2000 +0000

    Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 811 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 377 insertions(+), 438 deletions(-)

commit cbbb0b6ce308f2185bad053ac87eb610f127f18f
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Mon Oct 9 10:49:21 2000 +0000

    Updated french translation and exec entry in somes *.desktop files.

 ChangeLog                                         |  5 ++
 capplets/background/background-properties.desktop |  3 +-
 capplets/keyboard/keyboard-properties.desktop     |  2 +-
 capplets/ui-properties/application.desktop        |  2 +-
 capplets/ui-properties/dialogs.desktop            |  4 +-
 capplets/ui-properties/mdi.desktop                |  4 +-
 po/ChangeLog                                      |  4 ++
 po/fr.po                                          | 65 ++++++++++++-----------
 8 files changed, 52 insertions(+), 37 deletions(-)

commit 45a32033aa6d2bc00606b7bc4054d0e9be0f5053
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Mon Oct 9 08:30:17 2000 +0000

    Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 611 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 294 insertions(+), 321 deletions(-)

commit e5c0852368bb30594c1ce0cdd484c9bc023e4047
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Oct 8 22:53:44 2000 +0000

    Bumped version no to 1.3.1
    
    2000-10-08  Bradford Hovinen  <hovinen@helixcode.com>
    
        * configure.in: Bumped version no to 1.3.1
    
        * capplets/new-mouse-properties/Makefile.am (EXTRA_DIST): Remove
        erroneous ChangeLog entry

 ChangeLog                                     |    5 +
 capplets/background/Makefile.am               |    2 +-
 capplets/mouse/Makefile.am                    |    2 +-
 capplets/screensaver/ChangeLog                |    4 +
 capplets/screensaver/screensavers/Makefile.am |   15 +-
 capplets/ui-properties/Makefile.am            |    2 +-
 configure.in                                  |    2 +-
 po/ChangeLog                                  |    1 +
 po/POTFILES.in                                |    6 +
 po/ca.po                                      | 1086 ++++----
 po/cs.po                                      | 1503 ++++++----
 po/da.po                                      | 1068 ++++----
 po/de.po                                      | 1155 ++++----
 po/el.po                                      | 1079 ++++----
 po/en_GB.po                                   | 1212 ++++----
 po/es.po                                      | 1099 ++++----
 po/et.po                                      | 1493 ++++++----
 po/fi.po                                      | 1513 +++++-----
 po/fr.po                                      | 1153 ++++----
 po/ga.po                                      | 1298 +++++----
 po/gl.po                                      | 1514 +++++-----
 po/hr.po                                      |  952 +++----
 po/hu.po                                      | 1489 ++++++----
 po/it.po                                      | 1505 ++++++----
 po/ja.po                                      | 1066 ++++----
 po/ko.po                                      | 1491 ++++++----
 po/lt.po                                      | 1093 ++++----
 po/nl.po                                      | 1505 ++++++----
 po/no.po                                      | 1153 ++++----
 po/pl.po                                      | 1505 ++++++----
 po/pt.po                                      | 1495 ++++++----
 po/pt_BR.po                                   | 1838 +++++++------
 po/ro.po                                      | 1504 ++++++----
 po/ru.po                                      | 1089 ++++----
 po/sl.po                                      | 1566 ++++++-----
 po/sv.po                                      | 1072 ++++----
 po/tr.po                                      | 1493 ++++++----
 po/uk.po                                      | 1490 ++++++----
 po/zh_CN.GB2312.po                            | 3650 +++++++++++++++----------
 po/zh_TW.Big5.po                              | 1491 ++++++----
 40 files changed, 24570 insertions(+), 19089 deletions(-)

commit 99c8753a5222723e5fdf2aae254af4bcfc701362
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Oct 8 19:34:46 2000 +0000

    Add translation file
    
    2000-10-08  Bradford Hovinen  <hovinen@helixcode.com>
    
            * capplets/new-background-properties/Makefile.am (EXTRA_DIST): Add
            translation file
    
            * capplets/new-bell-properties/Makefile.am (EXTRA_DIST): ditto
    
            * capplets/new-mouse-properties/Makefile.am (EXTRA_DIST): ditto
    
            * capplets/new-ui-properties/Makefile.am (EXTRA_DIST): ditto

 ChangeLog                                         |  9 ++++
 capplets/background/Makefile.am                   |  5 +-
 capplets/background/background-properties.glade   |  2 +
 capplets/background/background-properties.glade.h | 22 +++++++++
 capplets/keyboard/ChangeLog                       |  4 ++
 capplets/keyboard/Makefile.am                     |  5 +-
 capplets/keyboard/keyboard-properties.glade       |  2 +
 capplets/keyboard/keyboard-properties.glade.h     | 16 +++++++
 capplets/mouse/Makefile.am                        |  5 +-
 capplets/mouse/mouse-properties.glade             |  2 +
 capplets/mouse/mouse-properties.glade.h           | 17 +++++++
 capplets/sound/ChangeLog                          |  4 ++
 capplets/sound/Makefile.am                        |  5 +-
 capplets/sound/sound-properties.glade             |  2 +
 capplets/sound/sound-properties.glade.h           | 14 ++++++
 capplets/ui-properties/Makefile.am                |  5 +-
 capplets/ui-properties/ui-properties.glade        |  2 +
 capplets/ui-properties/ui-properties.glade.h      | 56 +++++++++++++++++++++++
 po/ChangeLog                                      |  4 ++
 po/POTFILES.in                                    | 15 +++---
 20 files changed, 183 insertions(+), 13 deletions(-)

commit e72e6ce7c05258b9b041e69a50b58251a937bae6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sun Oct 8 19:19:44 2000 +0000

    Fixed typo in TODO.xml file

 TODO.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c5ee0ed214e0aced54003937300789a308679d8
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sun Oct 8 19:18:35 2000 +0000

    Added XML todo list

 TODO.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit a115907a802589553c1ef48746fed08f71560d9b
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Oct 8 19:00:52 2000 +0000

    Apply change by Eric Dorland <dorland@lords.com> to use XGetPointerMapping
    
    2000-10-08  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-mouse-properties/preferences.c
        (preferences_apply_now): Apply change by Eric Dorland
        <dorland@lords.com> to use XGetPointerMapping

 ChangeLog                    | 4 ++++
 capplets/mouse/preferences.c | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 650b11cd1979bd888f4b51d0475d522dfcf0ec57
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Oct 8 18:56:27 2000 +0000

    Implement (show_screensaver): Call fix_arguments to handle quoted strings
    
    2000-10-08  Bradford Hovinen  <hovinen@helixcode.com>
    
        * preview.c (fix_arguments): Implement
        (show_screensaver): Call fix_arguments to handle quoted strings in
        the command line

 capplets/screensaver/ChangeLog             |  6 +++++
 capplets/screensaver/preview.c             | 41 ++++++++++++++++++++++++++++++
 capplets/screensaver/screensavers/flag.xml |  6 ++---
 3 files changed, 50 insertions(+), 3 deletions(-)

commit 89e394e737860bb25579ee4db8d41ddee1a58978
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Oct 8 16:38:31 2000 +0000

    Update list of Makefiles
    
    2000-10-08  Bradford Hovinen  <hovinen@helixcode.com>
    
        * configure.in (CFLAGS): Update list of Makefiles
    
        * capplets/Makefile.am (always_built_SUBDIRS): Build new
        sound-properties-capplet rather than old one
    
        * New sound-properties capplet

 ChangeLog                               |   7 +
 capplets/Makefile.am                    |   2 +-
 capplets/sound/Makefile.am              |  37 ++
 capplets/sound/main.c                   | 188 +++++++
 capplets/sound/preferences.c            | 916 ++++++++++++++++++++++++++++++++
 capplets/sound/preferences.h            | 111 ++++
 capplets/sound/prefs-widget.c           | 433 +++++++++++++++
 capplets/sound/prefs-widget.h           |  64 +++
 capplets/sound/sound-properties.desktop |  60 +++
 capplets/sound/sound-properties.glade   | 293 ++++++++++
 configure.in                            |   2 +-
 11 files changed, 2111 insertions(+), 2 deletions(-)

commit ed727e990f31991675d69cd8e6a3dccb09c89dcb
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 7 17:28:11 2000 +0000

    Enable selection for text and bitmap, Set neg_size same-as to pos_size
    
    2000-10-07  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensavers/flag.xml: Enable selection for text and bitmap,
        Set neg_size same-as to pos_size

 capplets/screensaver/screensavers/flag.xml | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

commit daea41824d6645b95750f3f91f2be7e9767de023
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 7 17:27:40 2000 +0000

    Set set->enabled (write_boolean): (write_number): (write_select):
    
    2000-10-07  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (set_widgets_sensitive): Set
        set->enabled
        (write_boolean):
        (write_number):
        (write_select):
        (write_string): Write only if the enabled flag is set
        (get_spinbutton):
        (get_check_button):
        (get_select_widget):
        (get_file_entry):
        (get_entry):
        (place_number):
        (place_hgroup):
        (populate_table): Set set->enabled
        (read_boolean):
        (read_number):
        (read_select):
        (read_string): Don't set the value if the set is an alias and not
        enabled
        (read_number):
        (read_string): Set value to default if not supplied
        (read_command_line): Accept argument as negative number if it is a
        -<digit>
    
        * screensaver-prefs-dialog.h (struct _PrefsDialogWidgetSet): Add
        member enabled - TRUE iff the widget is enabled
    
        * screensaver-prefs-dialog.c (free_set_cb): Don't try to free the
        widgets if the set is an alias
        (get_spinbutton):
        (get_check_button):
        (get_select_widget):
        (get_file_entry):
        (get_entry):
        (place_number):
        (place_hgroup):
        (populate_table): Set set->alias
    
        * screensaver-prefs-dialog.h (struct _PrefsDialogWidgetSet): Add
        member alias - TRUE means don't try to free widgets
    
        * screensaver-prefs-dialog.c (get_entry): Have entry expand, not label
    
        * screensavers/flag.xml: Enable selection for text and bitmap,
        Set neg_size same-as to pos_size
    
        * screensaver-prefs-dialog.c (place_hgroup): Add feature to allow
        multiple widget definitions to share the same widget

 capplets/screensaver/ChangeLog                  | 49 +++++++++++++
 capplets/screensaver/screensaver-prefs-dialog.c | 94 ++++++++++++++++++++-----
 capplets/screensaver/screensaver-prefs-dialog.h |  2 +
 3 files changed, 127 insertions(+), 18 deletions(-)

commit b7230135aa99c3041f0c622153281b7a9be86c63
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 7 16:30:26 2000 +0000

    Support files (place_entry): Allow getting a file entry or a string entry
    
    2000-10-07  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (write_command_line): Support files
        (place_entry): Allow getting a file entry or a string entry
        (populate_table): Support files
        (get_file_entry): Implement. Return a set for a GnomeFileEntry
        (read_string): Support files
        (place_screensaver_properties): Support files

 capplets/screensaver/ChangeLog                  |  9 ++++
 capplets/screensaver/screensaver-prefs-dialog.c | 72 ++++++++++++++++++++++---
 2 files changed, 74 insertions(+), 7 deletions(-)

commit 5ffa1fd136c22ce4fad1e05724a6343575743958
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sat Oct 7 02:33:56 2000 +0000

    Update list of Makefiles
    
    2000-10-06  Bradford Hovinen  <hovinen@helixcode.com>
    
        * configure.in (AC_OUTPUT): Update list of Makefiles
    
    2000-09-24  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-screensaver-properties/resources.c
        (screensaver_get_desc_from_xrdb): Fix memory allocation bug

 ChangeLog                        | 4 ++++
 capplets/screensaver/ChangeLog   | 5 +++++
 capplets/screensaver/resources.c | 2 +-
 configure.in                     | 7 ++-----
 4 files changed, 12 insertions(+), 6 deletions(-)

commit a53dcdcd149a832841dc21eb10b3948789f49380
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Fri Oct 6 20:29:07 2000 +0000

    Updating pt_BR translations.
    
     * Uldated using allpo.pl, please, any problem <ricardo@conectiva.com.br>

 capplets/background/background-properties.desktop   | 2 +-
 capplets/mouse/mouse-properties.desktop             | 2 +-
 capplets/screensaver/screensaver-properties.desktop | 3 ++-
 3 files changed, 4 insertions(+), 3 deletions(-)

commit 190c1f7cf82642e1834710ad466939380b6b3483
Author: Christian Rose <menthos@src.gnome.org>
Date:   Fri Oct 6 18:33:42 2000 +0000

    Updated Swedish translation.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 6 ------
 2 files changed, 4 insertions(+), 6 deletions(-)

commit df1497e2042298907cee7c0cc50c2ab34327d74e
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Oct 3 20:55:11 2000 +0000

    Updated Slovenian translation

 po/sl.po | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit 2c8e9b7ccda1a4065718107b5dccd8a13b44cfb1
Author: Hans Petter <hansp@src.gnome.org>
Date:   Mon Oct 2 20:16:21 2000 +0000

    Fixed spawning with root-manager.

 control-center/capplet-dir.c  | 8 ++++++++
 control-center/root-manager.c | 7 +++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

commit f5d986cff606d8764b48e343072ab728a305d134
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Fri Sep 29 12:39:27 2000 +0000

    Quiet CVS

 capplets/background/.cvsignore               | 7 +++++++
 capplets/keyboard/.cvsignore                 | 7 +++++++
 capplets/mouse/.cvsignore                    | 7 +++++++
 capplets/screensaver/.cvsignore              | 7 +++++++
 capplets/screensaver/screensavers/.cvsignore | 9 +++++++++
 capplets/ui-properties/.cvsignore            | 7 +++++++
 control-center/.cvsignore                    | 3 +++
 7 files changed, 47 insertions(+)

commit 84cfc23e280f0887eb0e5f138541deab80618a78
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   Thu Sep 28 12:52:12 2000 +0000

    Updated French translation.

 capplets/file-types/nautilus-mime-type.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 3140f7a9594d613013eb848e47586a330fd6e6ce
Author: Christian Meyer <chrisime@src.gnome.org>
Date:   Tue Sep 26 11:55:48 2000 +0000

    Update + Fix for German translation.

 po/ChangeLog |    4 +
 po/de.po     | 1050 ++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 655 insertions(+), 399 deletions(-)

commit 6c1bdedb8940710172d316ab5ba451c06431ff6f
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Sep 25 12:30:26 2000 +0000

    Updated Norwegian translation. Updated. Added this.
    
    2000-09-25  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.
        * POTFILES.in: Updated.
        * POTFILES.ignore: Added this.

 po/.cvsignore  | 3 +--
 po/ChangeLog   | 6 ++++++
 po/POTFILES.in | 1 +
 po/no.po       | 3 ++-
 4 files changed, 10 insertions(+), 3 deletions(-)

commit fb69525257de8cf11e504c52d7aca76e91240cdc
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Sep 24 15:49:19 2000 +0000

    Copy dialog_use_icons field
    
    2000-09-24  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-ui-properties/preferences.c
        (preferences_clone): Copy dialog_use_icons field
    
        * capplets/new-ui-properties/prefs-widget-dialogs.c: Use standard
        macro for dialog_icons
    
        * capplets/new-ui-properties/prefs-widget.h
        (struct _widget_desc_t): Remove field prefs_offset
    
        * capplets/new-ui-properties/preferences.c
        (preferences_get_dialog_icons):
        (preferences_set_dialog_icons): Implement
    
        * capplets/new-ui-properties/prefs-widget.c (read_preferences):
        (register_callbacks):
        (toggled_cb):
        (selected_cb): Remove support for direct struct offset manipulation
    
        * capplet-widget.c (capplet_widget_multi_new): Set capid
        (capplet_widget_init): Set capid to current global value
        (capplet_widget_class_get_capid): Implement; return the capid
        passed on the command line
    
        * capplet-widget.h (struct _CappletWidget): Remove buffer between
        frame and plug sizes

 ChangeLog                                     | 18 ++++++++++++++
 capplets/ui-properties/preferences.c          | 21 ++++++++++++++++
 capplets/ui-properties/preferences.h          |  2 ++
 capplets/ui-properties/prefs-widget-dialogs.c |  3 +--
 capplets/ui-properties/prefs-widget.c         | 36 ++++++++-------------------
 capplets/ui-properties/prefs-widget.h         |  9 +++----
 control-center/ChangeLog                      |  5 ++++
 7 files changed, 60 insertions(+), 34 deletions(-)

commit 3443f5573f31271aeb6859ee9497d681943e019c
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sun Sep 24 05:12:08 2000 +0000

    Added new ui properties capplet
    Fixed typos in the screensaver properties Makefile.am

 ChangeLog                                     |   5 +
 capplets/Makefile.am                          |   2 +-
 capplets/ui-properties/Makefile.am            |  42 ++
 capplets/ui-properties/application.desktop    |  58 ++
 capplets/ui-properties/dialogs.desktop        |  29 +
 capplets/ui-properties/main.c                 | 208 +++++++
 capplets/ui-properties/mdi.desktop            |  26 +
 capplets/ui-properties/preferences.c          | 855 ++++++++++++++++++++++++++
 capplets/ui-properties/preferences.h          | 128 ++++
 capplets/ui-properties/prefs-widget-app.c     | 113 ++++
 capplets/ui-properties/prefs-widget-app.h     |  54 ++
 capplets/ui-properties/prefs-widget-dialogs.c | 111 ++++
 capplets/ui-properties/prefs-widget-dialogs.h |  54 ++
 capplets/ui-properties/prefs-widget-mdi.c     | 105 ++++
 capplets/ui-properties/prefs-widget-mdi.h     |  54 ++
 capplets/ui-properties/prefs-widget.c         | 429 +++++++++++++
 capplets/ui-properties/prefs-widget.h         |  97 +++
 capplets/ui-properties/ui-properties.glade    | 747 ++++++++++++++++++++++
 18 files changed, 3116 insertions(+), 1 deletion(-)

commit e631aebf88d7873591f7e8a2f23ebd3427c7e47b
Author: ubén López Gómez/gallego translations <ryu@src.gnome.org>
Date:   Fri Sep 22 20:23:00 2000 +0000

    Updated galician translation
    
    
    
    Updated galician translation

 po/ChangeLog |  4 ++++
 po/gl.po     | 24 +++++++-----------------
 2 files changed, 11 insertions(+), 17 deletions(-)

commit 67266a3b031dc50ab66c0a4a7c78946c61f38887
Author: John Sullivan <sullivan@src.gnome.org>
Date:   Thu Sep 21 16:52:06 2000 +0000

    Removed an outdated FIXME.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (mime_list_selected_row_callback): Removed an outdated FIXME.

 capplets/file-types/file-types-capplet.c | 2 --
 1 file changed, 2 deletions(-)

commit a036012fe5971e8c46c69e3b43323abc9522dd8e
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sun Sep 17 03:15:40 2000 +0000

    Fixed bug 3042, Adding new mime type doesn't work
    
    2000-09-16  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 3042, Adding new mime type doesn't work
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_mime_window):
        Return the new mime type if one was created
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.h:
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (nautilus_mime_type_capplet_update_info), (add_mime_clicked):
        Add info to main list.

 capplets/file-types/file-types-capplet-dialogs.c |  23 ++++-
 capplets/file-types/file-types-capplet-dialogs.h |   2 +-
 capplets/file-types/file-types-capplet.c         | 113 ++++++++++++++++++++++-
 3 files changed, 131 insertions(+), 7 deletions(-)

commit 497f8ee3872b89186e7d4665e5012fabe4f5ac43
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sat Sep 16 20:33:17 2000 +0000

    Fixed some typos with include directories

 capplets/screensaver/Makefile.am | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 96acc3fd51cd1f77bcb86ce0cb582a184cfdd616
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Tue Sep 12 15:25:23 2000 +0000

    Added new mouse properties capplet
    
    2000-09-12  Bradford Hovinen  <hovinen@helixcode.com>
    
            * new-keyboard-properties/preferences.c (preferences_clone): Added
        in missing code to copy preferences over

 capplets/Makefile.am                    |   2 +-
 capplets/background/main.c              |   4 +-
 capplets/keyboard/ChangeLog             |   5 +
 capplets/keyboard/preferences.c         |  12 +-
 capplets/mouse/Makefile.am              |  37 +++
 capplets/mouse/main.c                   | 185 +++++++++++++++
 capplets/mouse/mouse-properties.desktop |  59 +++++
 capplets/mouse/mouse-properties.glade   | 400 ++++++++++++++++++++++++++++++++
 capplets/mouse/preferences.c            | 387 ++++++++++++++++++++++++++++++
 capplets/mouse/preferences.h            |  73 ++++++
 capplets/mouse/prefs-widget.c           | 319 +++++++++++++++++++++++++
 capplets/mouse/prefs-widget.h           |  60 +++++
 12 files changed, 1536 insertions(+), 7 deletions(-)

commit e97f9d324b72f11a56c65f3a8934b24776d8a8b6
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Tue Sep 12 13:57:58 2000 +0000

    Set CFLAGS to -O2 -g -Wall by default
    
    2000-09-12  Bradford Hovinen  <hovinen@helixcode.com>
    
        * configure.in (CFLAGS): Set CFLAGS to -O2 -g -Wall by default

 ChangeLog    | 4 ++++
 configure.in | 8 +++++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit d4848e9baaec5cf38ec130bb6d1b881a078b3138
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Sep 11 12:15:39 2000 +0000

    Output Makefiles for new capplets; fix typo in one Makefile.am

 capplets/screensaver/screensavers/Makefile.am | 2 +-
 configure.in                                  | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 18ad236f10288e38ccbdf0ef4bbadb03da1f5155
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Sep 11 07:51:58 2000 +0000

    Updated Norwegian translation.
    
    2000-09-11  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 +
 po/no.po     | 929 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 593 insertions(+), 340 deletions(-)

commit 8d711c455a19b3a937e46232ab5cb5a5e126a4da
Author: Maciej Stachowiak <mstachow@src.gnome.org>
Date:   Mon Sep 11 03:14:50 2000 +0000

        Build fixes for latest Gtk+
    
        * configure.in: Add AM_PATH_GTK check
        * libgnomevfs-pthread/Makefile.am: Use $(GTK_CFLAGS) in compiler flags
        * mime-type-capplet/Makefile.am: likewise
        * modules/Makefile.am: likewise
        * test/Makefile.am: likewise
        * test/gnome-file-selection/Makefile.am: likewise

 capplets/file-types/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 6e43a028dcc0b297f7f19583e917011c17e75066
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Sep 11 02:40:14 2000 +0000

    Added new keyboard properties capplet

 capplets/Makefile.am                          |   2 +-
 capplets/keyboard/Makefile.am                 |  38 +++
 capplets/keyboard/keyboard-properties.desktop |  59 ++++
 capplets/keyboard/keyboard-properties.glade   | 360 +++++++++++++++++++++++++
 capplets/keyboard/main.c                      | 185 +++++++++++++
 capplets/keyboard/preferences.c               | 374 ++++++++++++++++++++++++++
 capplets/keyboard/preferences.h               |  74 +++++
 capplets/keyboard/prefs-widget.c              | 325 ++++++++++++++++++++++
 capplets/keyboard/prefs-widget.h              |  60 +++++
 9 files changed, 1476 insertions(+), 1 deletion(-)

commit e4b4b7af40cbee893f30fe635754bba6ee2caba1
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Mon Sep 11 01:25:19 2000 +0000

    Add buffer to make sure class is binary compatible with older library
    
    2000-09-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * libcapplet/capplet-widget.h (struct _CappletWidget):
        (struct _CappletWidgetClass): Add buffer to make sure class is
        binary compatible with older library
    
        * libcapplet/capplet-widget.c (capplet_widget_class_init): Attach
        capplet_widget_realize (renamed capplet_widget_show) to "show"
        method
        (capplet_widget_destroy): Accept a GtkObject
        (capplet_widget_show): Accept a GtkWidget
        (capplet_widget_destroy):
        (capplet_widget_state_changed):
        (capplet_widget_show):
        (ok_cb):
        (cancel_cb):
        (set_controls_sensitive): Add assertion checks on preconditions
        (capplet_widget_init): Removed unused variables
        Removed undo_cb, about_cb, id_list

 ChangeLog | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit a609b8ac09755c9ee08d92c0706689ccff6f80a3
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sun Sep 10 20:14:14 2000 +0000

    Created new bell properties capplet

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 589923f166b1a01cb751b046d46bd76b91618e5a
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Sep 10 19:42:19 2000 +0000

    Set gradient/wallpaper/background controls' sensitivity depending on
    
    2000-09-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/new-background-properties/prefs-widget.c
        (read_preferences): Set gradient/wallpaper/background controls'
        sensitivity depending on whether they are enabled
    
        * capplets/new-background-properties/applier.c
        (renderer_render_to_screen): Fixed solid, no wallpaper case to
        work correctly with preview window; don't set root pixmap if
        neither wallpaper nor gradient enabled

 ChangeLog                          |  9 +++++++++
 capplets/background/applier.c      | 29 ++++++++++++++++++++++-------
 capplets/background/prefs-widget.c | 28 +++++++++++++++++++---------
 3 files changed, 50 insertions(+), 16 deletions(-)

commit 99aa241dba18cfb0ca70b331f15ca31f16597d5d
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Sun Sep 10 12:57:17 2000 +0000

    Updated French translations Chnaged #include "config.h" to #ifdef
    
    2000-09-10  Bradford Hovinen  <hovinen@helixcode.com>
    
            * po/fr.po: Updated French translations
            * all: Chnaged #include "config.h" to #ifdef HAVE_CONFIG_H ...
            * *.desktop, *.directory: Updated French translations
            * po/POTFILES.in: Added screensaver XML files
    
            Courtesy of Christophe Merlet <c.merlet@agglo-pau.fr>

 ChangeLog                                          |    8 +
 capplets/mime-type/edit-window.c                   |    5 +
 capplets/mime-type/mime-data.c                     |    6 +-
 capplets/mime-type/mime-info.c                     |    6 +-
 capplets/mime-type/mime-type-capplet.c             |    6 +-
 capplets/mime-type/new-mime-window.c               |    6 +-
 capplets/screensaver/Makefile.am                   |    3 +
 capplets/screensaver/preferences.c                 |    2 +-
 capplets/screensaver/prefs-widget.c                |    2 +-
 capplets/screensaver/screensaver-prefs-dialog.c    |    2 +-
 .../screensaver/screensaver-properties.desktop     |    4 +-
 capplets/screensaver/screensavers/Makefile.am      |    8 +-
 capplets/screensaver/selection-dialog.c            |    2 +-
 capplets/theme-switcher/demo.c                     |    6 +-
 capplets/theme-switcher/demo.c-45827               |    6 +-
 capplets/theme-switcher/gui.c                      |    6 +-
 capplets/theme-switcher/gui.c-6060                 |    6 +-
 capplets/theme-switcher/install.c                  |    5 +
 capplets/theme-switcher/install.c-64828            |    5 +
 capplets/theme-switcher/main.c                     |    6 +-
 capplets/theme-switcher/theme-selector.desktop     |    4 +-
 capplets/url-properties/url-properties.c           |    3 +-
 capplets/wm-properties/wm-properties-capplet.c     |    6 +-
 control-center/capplet-dir-view.c                  |    2 +-
 po/ChangeLog                                       |    5 +
 po/POTFILES.in                                     |    8 +-
 po/fr.po                                           | 1447 +++++++++++++-------
 27 files changed, 1089 insertions(+), 486 deletions(-)

commit 818c4291c1fe417c2bd4e9f1d26b483089a5228a
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Sat Sep 9 23:21:28 2000 +0000

    Created new background properties capplet, under new-background-properties

 capplets/Makefile.am                              |    2 +-
 capplets/background/Makefile.am                   |   39 +
 capplets/background/applier.c                     | 1097 +++++++++++++++++++++
 capplets/background/applier.h                     |   64 ++
 capplets/background/background-properties.desktop |   51 +
 capplets/background/background-properties.glade   |  525 ++++++++++
 capplets/background/main.c                        |  187 ++++
 capplets/background/preferences.c                 |  492 +++++++++
 capplets/background/preferences.h                 |   90 ++
 capplets/background/prefs-widget.c                |  619 ++++++++++++
 capplets/background/prefs-widget.h                |   61 ++
 11 files changed, 3226 insertions(+), 1 deletion(-)

commit 9888a8794e9f8253b7af7aff27edd15fc58fa67b
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sat Sep 9 23:00:12 2000 +0000

    Translations from Keld
    control-center/po/da.po gdm2/po/da.po gnumeric/po/da.po
    nautilus/po/da.po gnome-i18n/extra-po/gdm2beta5/da.po

 po/da.po | 122 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 61 insertions(+), 61 deletions(-)

commit 9cbbe4c4b2762d185b60e0da41b22cc28078f3de
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sat Sep 9 00:23:39 2000 +0000

    Fixed a couple of leaks and instances where gdk_pixbuf_new_from_file was
    
    2000-09-08  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_mime_list):
        Fixed a couple of leaks and instances where
        gdk_pixbuf_new_from_file was being passed a NULL char *.

 capplets/file-types/file-types-capplet.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit 9f9f159ffa4a9d80a923d3411447cd4084d7c523
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Sep 8 23:58:53 2000 +0000

    Fixed bug 2839, setting icons for mime type is not remembered
    
    2000-09-08  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 2839, setting icons for mime type is not remembered
    
        * mime-type-capplet/nautilus-mime-type-capplet.c: (main),
        (init_mime_capplet), (nautilus_mime_type_capplet_update_info),
        (populate_mime_list),
        (nautilus_mime_type_capplet_get_selected_item_mime_type):
        Removed icon setting code callback from Change Icon button.
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (icon_selected_cb), (cancel_pressed), (gil_icon_selected_cb),
        (nautilus_mime_type_show_icon_selection):
        Added gnome-vfs icon setting code to OK button callback.

 capplets/file-types/file-types-capplet.c    | 101 ++++--------------
 capplets/file-types/file-types-icon-entry.c | 156 +++++++++++++++-------------
 2 files changed, 105 insertions(+), 152 deletions(-)

commit 327911dcb552561edc46449b53f202fe064408a5
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Sep 8 17:49:14 2000 +0000

    Fixed bug 2766, viewer menu code is not finished.
    
    2000-09-08  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 2766, viewer menu code is not finished.
    
        Enjoy your Content Loser.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_viewer_menu):
        Made function work.

 capplets/file-types/file-types-capplet.c | 45 ++++++++++++++------------------
 1 file changed, 19 insertions(+), 26 deletions(-)

commit 10171a33d658dc5fe1486546faf68e1a1f7aafbb
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Sep 8 16:41:56 2000 +0000

    Fixed bug 2789, Need to cancel non-file drags in icon entry field.
    
    2000-09-08  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 2789, Need to cancel non-file drags in icon
        entry field.
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (drag_data_get):

 capplets/file-types/file-types-icon-entry.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 73fdb18e633b8bcb86dbf72df17434ca2f8507ea
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Wed Sep 6 00:36:34 2000 +0000

    initialize found_match to TRUE to avoid a segfault in certain non-obvious
    
    2000-09-05  Mathieu Lacage  <mathieu@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_viewer_menu): initialize found_match to TRUE
        to avoid a segfault in certain non-obvious cases. this
        is a temporary hack waiting for bug 2766.

 capplets/file-types/file-types-capplet.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 41b4f3f1f1752115e713d932b187de319d6202e9
Author: John Sullivan <sullivan@src.gnome.org>
Date:   Tue Sep 5 16:27:53 2000 +0000

        Wrote bugs for the last (for now) 18 unbugged FIXMEs.
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        (drag_data_get):
        * modules/bzip2-method.c: (do_get_file_info):
        * modules/extfs-method.c:
        * modules/file-method.c: (do_create_symbolic_link):
        * modules/ftp-method.c: (internal_get_file_info):
        * modules/gconf-method.c:
        * modules/gzip-method.c: (do_get_file_info):
        * modules/http-method.c: (process_propfind_propstat):
        * modules/translate-method.c: (tr_apply_default_mime_type),
        (tr_handle_exec), (tr_uri_translate):
        * test/test-shell.c: (do_info):
        * test/test-uri.c: (main):

 capplets/file-types/file-types-icon-entry.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3ca033f5da00d9e1d8c38acbb110e481ea9f5100
Author: Jing-Jong Shyue <shyue@src.gnome.org>
Date:   Tue Sep 5 14:56:24 2000 +0000

    Simplify Chinese PO File 2000/09/05

 po/zh_CN.GB2312.po | 2976 ++++++++++++++++++++++++++--------------------------
 1 file changed, 1511 insertions(+), 1465 deletions(-)

commit d98dda20ae5b5a94facb690dcdea15feed2d1eb6
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Tue Sep 5 03:13:37 2000 +0000

    Add bugs to bugzilla.eazel.com for FIXMEs...
    
    2000-09-04  Mathieu Lacage  <mathieu@eazel.com>
    
        Add bugs to bugzilla.eazel.com for FIXMEs...
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_get_default_action_type),
        (gnome_vfs_mime_get_default_application),
        (get_executable_name_from_command_string):
        * libgnomevfs/gnome-vfs-mime-info.c: (gnome_vfs_mime_get_value),
        (gnome_vfs_get_registered_mime_types):
        * libgnomevfs/gnome-vfs-mime-magic.c:
        * libgnomevfs/gnome-vfs-uri.c:
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (mime_list_selected_row_callback), (init_mime_capplet),
        (populate_viewer_menu), (delete_mime_clicked), (pixmap_file):

 capplets/file-types/file-types-capplet.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit b3b4f290e810bfe1882d46665bcddbfb392b2d1d
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Sep 4 15:42:33 2000 +0000

    Changed SETTINGS_DIR to $(datadir)/control-center

 control-center/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ec53a7ff81e854309f51f47fc324b18854c03e37
Author: Christian Rose <menthos@src.gnome.org>
Date:   Sun Sep 3 09:42:21 2000 +0000

    Updated Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 881 ++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 576 insertions(+), 309 deletions(-)

commit 8a3c6d2603d266c8175cd1c8284229b67c41c300
Author: Pavel Cisler <pavel@eazel.com>
Date:   Sun Sep 3 08:37:00 2000 +0000

    Add a flag to the xfer progress indicating a top-level item to allow
    
    2000-09-03  Pavel Cisler  <pavel@eazel.com>
    
        * libgnomevfs/gnome-vfs-types.h:
        * libgnomevfs/gnome-vfs-xfer.c: (init_progress), (copy_directory),
        (copy_items), (move_items), (link_items):
        Add a flag to the xfer progress indicating a top-level item to
        allow triggering metadata copies.
    
        * libgnomevfs-pthread/gnome-vfs-job.c:
        (execute_create_symbolic_link):
        * libgnomevfs/gnome-vfs-mime-info.c: (gnome_vfs_mime_set_value):
        * libgnomevfs/gnome-vfs-uri.c: (gnome_vfs_uri_new):
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_viewer_menu):
        * modules/translate-method.c: (tr_uri_translate):
        * test/test-uri.c: (test_uri_host_port):
        Fix a bunch of uninitialized variables that Michael Meeks found.

 capplets/file-types/file-types-capplet.c | 3 +++
 1 file changed, 3 insertions(+)

commit 8911b93438e27b1a4594a6eb4ecb71e58bb338ae
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Sat Sep 2 09:52:53 2000 +0000

    Updated all Greek translations plus minor en_GB typos

 capplets/theme-switcher/theme-selector.desktop |   2 +
 control-center/gnomecc.desktop                 |   4 +-
 po/el.po                                       | 124 ++++++++++++-------------
 3 files changed, 67 insertions(+), 63 deletions(-)

commit b833d52defbeaf97035a69d17dabdb6e7038a99e
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Sat Sep 2 01:32:18 2000 +0000

    remove debugging output. fix many run-time warnings. Now, can go into
    
    2000-09-01  Mathieu Lacage  <mathieu@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c: (main),
        (init_mime_capplet), (populate_mime_list),
        (create_mime_list_and_scroller):
            remove debugging output. fix many run-time warnings.
            Now, can go into fixing real bugs.

 capplets/file-types/file-types-capplet.c | 34 +++++++++++++-------------------
 1 file changed, 14 insertions(+), 20 deletions(-)

commit e26b69eadba11a7190bb3a012f18a8e8179ce4c7
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Fri Sep 1 23:50:43 2000 +0000

    remove test on OAF compile.
    
    2000-09-01  Mathieu Lacage  <mathieu@eazel.com>
    
        * libgnomevfs/gnome-vfs-init.c: (gnome_vfs_init):
            * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_get_default_action_without_fallback),
        (gnome_vfs_mime_get_default_component), (join_str_list),
            (gnome_vfs_mime_get_short_list_components),
            (gnome_vfs_mime_get_all_components),
        (gnome_vfs_mime_id_in_component_list),
            (gnome_vfs_mime_id_list_from_component_list),
            (gnome_vfs_mime_remove_component_from_list),
            (gnome_vfs_mime_action_free), (gnome_vfs_mime_component_list_free),
            (OAF_ServerInfoList_to_ServerInfo_g_list):
        * libgnomevfs/gnome-vfs-mime-handlers.h:
            * test/test-mime-handlers-set.c: (main):
        * test/test-mime-handlers.c: (print_component), (print_action),
        (print_component_list), (main):
        remove  test on OAF compile.
    
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_get_default_application): fix bug: we were passing
            a NULL to some subroutine.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
            (init_mime_capplet), (nautilus_mime_type_capplet_update_info),
            (populate_mime_list), (create_mime_list_and_scroller):
            fix misc warning at runtime. add debugging output. will remove soon.
    
            * test/.cvsignore: chuuut.

 capplets/file-types/file-types-capplet.c | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

commit 8107aacb4b85880e9e3d20e96eaea6807653bf4c
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   Fri Sep 1 19:54:42 2000 +0000

    Added Greek translations

 capplets/screensaver/screensaver-properties.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 70dff63d9bbc7622bac82ae0e169d0afe4ab5581
Author: Takayuki KUSANO <kusano@src.gnome.org>
Date:   Fri Sep 1 18:26:49 2000 +0000

    Updated Japanese translation.
    
        * ja.po: Updated Japanese translation.

 po/ChangeLog |   4 +
 po/ja.po     | 733 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 508 insertions(+), 229 deletions(-)

commit e01ec9616ef06c81e4b7f9818c1dd4563fbddc7e
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Sep 1 09:38:17 2000 +0000

    updated Catalan file

 po/ca.po | 772 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 517 insertions(+), 255 deletions(-)

commit 9e2d705f3e5160ef8e9aad08e36f642237d70425
Author: Martin Baulig <baulig@suse.de>
Date:   Thu Aug 31 11:21:40 2000 +0000

    Only check for GNOME if we're on the GNOME 1.2 platform.
    
    2000-08-31  Martin Baulig  <baulig@suse.de>
    
        * configure.in: Only check for GNOME if we're on the GNOME 1.2
        platform.
    
        * configure.in: Don't modify CFLAGS but set VFS_CLFAGS instead.
        Otherwise CFLAGS gets longer every time config.status is run.
        * */Makefile.am (INCLUDES): Add $(VFS_CFLAGS).

 capplets/file-types/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c13ae41baba4aba42b8be0fcc4a72ab9a9a523b7
Author: Martin Baulig <baulig@suse.de>
Date:   Thu Aug 31 10:20:39 2000 +0000

    Don't put -Werror into CFLAGS but into WERROR and AC_SUBST it. Some
    
    2000-08-31  Martin Baulig  <baulig@suse.de>
    
        * configure.in: Don't put -Werror into CFLAGS but into WERROR
        and AC_SUBST it. Some configure checks don't work with -Werror.
        * */Makefile.am (INCLUDES): Add $(WERROR).

 capplets/file-types/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 00a08a542aae16980fddf3da870076084d462a85
Author: Mathieu Lacage <mathieu@eazel.com>
Date:   Thu Aug 31 07:04:59 2000 +0000

    fixes bugs 1119 and 1839
    
    2000-08-31  Mathieu Lacage  <mathieu@eazel.com>
    
        fixes bugs 1119 and 1839
    
        * data/mime/gnome-vfs.keys: add a mime type for testing.
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_get_default_action_type),
        (gnome_vfs_mime_edit_user_file_full),
        (gnome_vfs_mime_add_extension), (gnome_vfs_mime_remove_extension):
        update to API changes below. move saving code to gnome-vfs-mime-info.c
        * libgnomevfs/gnome-vfs-mime-info.c: (does_string_contains_caps),
        (context_new), (context_destroy_and_unlink), (language_level),
        (context_add_key), (load_mime_type_info_from),
        (load_mime_list_info_from), (mime_info_load), (mime_list_load),
        (load_mime_type_info), (gnome_vfs_mime_init),
        (gnome_vfs_mime_info_clear), (gnome_vfs_mime_info_shutdown),
        (gnome_vfs_mime_freeze), (gnome_vfs_mime_thaw),
        (gnome_vfs_mime_set_value), (gnome_vfs_mime_get_value),
        (gnome_vfs_mime_keys_list_free), (gnome_vfs_mime_get_key_list),
        (gnome_vfs_mime_get_program), (gnome_vfs_mime_get_program_name),
        (gnome_vfs_mime_get_description), (str_cmp_callback),
        (gnome_vfs_mime_get_extensions_list),
        (gnome_vfs_mime_get_extensions_string),
        (gnome_vfs_mime_get_extensions_pretty_string),
        (gnome_vfs_mime_extensions_list_free), (gnome_vfs_mime_get_test),
        (gnome_vfs_mime_get_composetyped),
        (gnome_vfs_mime_get_copiousoutput),
        (gnome_vfs_mime_get_needsterminal), (get_key_name),
        (gnome_vfs_get_registered_mime_types),
        (gnome_vfs_mime_registered_mime_type_list_free),
        (gnome_vfs_mime_set_registered_type_key),
        (write_back_mime_user_file_context_callback),
        (write_back_mime_user_file_callback), (write_back_mime_user_file),
        (write_back_keys_user_file_context_callback),
        (write_back_keys_user_file_callback), (write_back_keys_user_file):
        Basically, make it work. update copyright.
        * libgnomevfs/gnome-vfs-mime-info.h: change some API.
        * mime-type-capplet/nautilus-mime-type-capplet.c: update to new API.
        (nautilus_mime_type_capplet_update_info), (populate_mime_list):
        * test/Makefile.am: add tests.
        * test/test-mime-info.c: (main): actual tests.

 capplets/file-types/file-types-capplet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f4f9184388013189b0961837b47cb6ca94ca7de2
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Wed Aug 23 14:29:23 2000 +0000

    Add XML cflags/libs
    
    2000-08-23  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/wm-properties/Makefile.am (INCLUDES):
        (wm_properties_capplet_LDADD): Add XML cflags/libs
    
        * capplets/wm-properties/wm-properties-capplet.c (do_get_xml):
        (do_set_xml): Implement
        (main): Call do_{get|set}_xml() on --get and --set
    
        * capplets/wm-properties/wm-list.c (wm_read_from_xml):
        (wm_list_read_from_xml):
        (wm_write_to_xml):
        (wm_list_write_to_xml): Implement

 ChangeLog                                      |  14 ++++
 capplets/wm-properties/Makefile.am             |   5 +-
 capplets/wm-properties/wm-list.c               | 109 ++++++++++++++++++++++++-
 capplets/wm-properties/wm-properties-capplet.c |  39 ++++++++-
 capplets/wm-properties/wm-properties.h         |   8 +-
 5 files changed, 170 insertions(+), 5 deletions(-)

commit 379d3e137b5da61eb47a8a0bd75ced997d2fd06e
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sun Aug 20 17:21:39 2000 +0000

    Translations from Keld
    achtung/po/da.po balsa/po/da.po bonobo/po/da.po
    bug-buddy/po/da.po control-center/po/da.po dia/po/da.po
    dr-genius/po/da.po eog/po/da.po evolution/po/da.po
    gconf/po/da.po gedit/po/da.po gernel/po/da.po
    gnome-db/po/da.po gnome-iconedit/po/da.po gnome-utils/po/da.po
    gnome-vfs/po/da.po gnumeric/po/da.po gtranslator/po/da.po
    guppi3/po/da.po mc/po/da.po nautilus/po/da.po oaf/po/da.po
    pan/po/da.po sodipodi/po/da.po

 po/da.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 6cf03c8c03b55b9583ca4baf2817a3883a12c790
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Aug 20 16:53:41 2000 +0000

    Updated Slovenian translation

 po/sl.po | 538 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 321 insertions(+), 217 deletions(-)

commit 3cff36b7683a3e5b9f46e8b45b39ee953d875c12
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Aug 20 10:40:17 2000 +0000

    updated Greek & Spanish files

 po/da.po | 178 +++++++++--------
 po/el.po | 630 ++++++++++++++++++++++++++++++++++++++++++++-----------------
 po/es.po | 618 ++++++++++++++++++++++++++++++++++++++++++-----------------
 po/hr.po | 594 +++++++++++++++++++++++++++++++++++++++++++++------------
 po/lt.po | 651 ++++++++++++++++++++++++++++++++++++++++++++-------------------
 5 files changed, 1930 insertions(+), 741 deletions(-)

commit 715cc5c73c08a0d3333c13217eb8ff09a5943381
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Sat Aug 19 22:16:59 2000 +0000

    Translations from Keld
    achtung/po/da.po bonobo/po/da.po control-center/po/da.po
    dia/po/da.po eog/po/da.po evolution/po/da.po gernel/po/da.po
    ggv/po/da.po gimp/po/da.po gnome-iconedit/po/da.po
    gnumeric/po/da.po nautilus/po/da.po rp3/po/da.po

 po/da.po | 597 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 378 insertions(+), 219 deletions(-)

commit 347a2f9af497bdae7524e00b8859d11989766379
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Aug 19 19:20:51 2000 +0000

    Updated Norwegian translation.
    
    2000-08-19  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 194 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 110 insertions(+), 88 deletions(-)

commit 5245e704540a917a1a95fd54b3655504c35e79c6
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Aug 18 21:29:08 2000 +0000

    Add XML cflags/libs
    
    2000-08-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/keyboard-properties/Makefile.am (INCLUDES):
        (keyboard_properties_LDADD): Add XML cflags/libs
    
        * capplets/keyboard-properties/keyboard-properties.c
        (keyboard_read_from_xml):
        (keyboard_write_to_xml):
        (do_get_xml):
        (do_set_xml): Implement
        (main): Invoke do_get_xml() and do_set_xml() on --get and --set

 ChangeLog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 10d433675f4f6937dd6fe2a0576bf54b93f0f73a
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Aug 18 20:12:38 2000 +0000

    Only do combo box stuff if no_gui flag is not set (edit_read): If no_gui
    
    2000-08-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/gnome-edit-properties/gnome-edit-properties.c
        (edit_read): Only do combo box stuff if no_gui flag is not set
        (edit_read): If no_gui flag set, search through possible_editors
        manually and set original_info.name that way
    
        * capplets/gnome-edit-properties/Makefile.am (INCLUDES):
        (gnome_edit_properties_capplet_LDADD): Add XML cflags/libs
    
        * capplets/gnome-edit-properties/gnome-edit-properties.c
        (edit_read_from_xml):
        (edit_write_to_xml):
        (do_get_xml):
        (do_set_xml): Implement
        (main): Call do_get_xml/do_set_xml when --get and --set passed
    
        * capplets/bell-properties/bell-properties.c (read_from_xml):
        Check if root node is correct before reading

 ChangeLog | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 1d7053c55a55be213cc5cb5e154c5787df78ac8b
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Aug 18 19:32:01 2000 +0000

    Added XML cflags/libs
    
    2000-08-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/bell-properties/Makefile.am (INCLUDES):
        (bell_properties_capplet_LDADD): Added XML cflags/libs
    
        * capplets/bell-properties/bell-properties.c (do_get_xml):
        (do_set_xml): Implement.
        (main): Call above functions on --get and --set
        (read_from_xml):
        (write_to_xml): Implement

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit dd169482d6da7dbf57cdb2b1a0004561ffb2e21d
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Aug 18 19:13:07 2000 +0000

    Check for putenv and setenv and set appropriate macros in config.h
    
    2000-08-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * configure.in: Check for putenv and setenv and set appropriate
        macros in config.h
    
    2000-08-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * preview.c (setup_path): Use setenv only when available, try to
        use putenv otherwise

 ChangeLog                           |  3 +++
 acconfig.h                          |  3 +++
 capplets/screensaver/ChangeLog      |  8 ++++++++
 capplets/screensaver/prefs-widget.c | 36 +++++++++++++++++++++++++++++-------
 capplets/screensaver/preview.c      | 10 ++++++++++
 configure.in                        |  2 ++
 6 files changed, 55 insertions(+), 7 deletions(-)

commit 890a61a575745b73128a826858058114f2702e71
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Fri Aug 18 18:51:01 2000 +0000

    Call do_set_xml and do_get_xml when --get or --set detected
    
    2000-08-18  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplets/background-properties/app-background.c (main): Call
        do_set_xml and do_get_xml when --get or --set detected
    
        * capplets/background-properties/property-background.c
        (background_read_from_xml):
        (background_write_to_xml): Implement. Read/write XML snapshot of
        the system's current state
        (get_color): Implement. Read a color represented as a string and
        fill in a GdkColor structure
        (do_get_xml):
        (do_set_xml): Implement. Do operations required for a --get and
        --set, respectively
    
        * capplets/background-properties/Makefile.am (INCLUDES): Add XML_CFLAGS
        (background_properties_capplet_LDADD): Add GNOME_XML_LIB

 ChangeLog | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 825346ef93f4bc94eb19c64e2521e9de05d3afe5
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Fri Aug 18 17:31:06 2000 +0000

    Updated German translation

 po/ChangeLog |  4 ++++
 po/de.po     | 64 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 42 insertions(+), 26 deletions(-)

commit 87f2fbb3e690182e8e631659d1cc6d402827471b
Author: Stanislav Brabec <utx@src.gnome.org>
Date:   Thu Aug 17 19:20:50 2000 +0000

    Fix building in separate directory.

 capplets/screensaver/ChangeLog                |  4 ++++
 capplets/screensaver/screensavers/Makefile.am | 24 ++++++++++++------------
 control-center/ChangeLog                      |  4 ++++
 control-center/Makefile.am                    |  1 +
 4 files changed, 21 insertions(+), 12 deletions(-)

commit fa01b686b48654b1625f8c345f9c199105384fb7
Author: Valek Frob <frob@src.gnome.org>
Date:   Thu Aug 17 18:23:29 2000 +0000

    Updated russian translation.

 po/ChangeLog |  4 ++++
 po/ru.po     | 56 +++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 41 insertions(+), 19 deletions(-)

commit 8a8918de8d021278ced5d07ec7c3da19dc8ca169
Author: Christopher R. Gabriel <cgabriel@src.gnome.org>
Date:   Thu Aug 17 16:11:58 2000 +0000

    updated italian translation

 po/ChangeLog |  4 ++++
 po/it.po     | 11 +++--------
 2 files changed, 7 insertions(+), 8 deletions(-)

commit e8f3f6efefa0ff307136fd727d99215d16aaf835
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Wed Aug 16 23:00:31 2000 +0000

    Added missing entries stored in gnome-config rather than .xscreensaver
    
    2000-08-16  Bradford Hovinen  <hovinen@helixcode.com>
    
        * preferences.c (preferences_write_xml):
        (preferences_read_xml): Added missing entries stored in
        gnome-config rather than .xscreensaver
        (screensaver_read_xml): Disable screensaver by default
        (preferences_write_xml): Cast values to ints before passing to
        g_strdup_printf

 capplets/screensaver/ChangeLog     |  7 +++++++
 capplets/screensaver/preferences.c | 39 ++++++++++++++++++++++++++++++++++----
 2 files changed, 42 insertions(+), 4 deletions(-)

commit d24a6c7b67a8e85c37655e557b440f0c737bc8af
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Wed Aug 16 22:40:02 2000 +0000

    Add support for --get and --set to cap_options (gnome_capplet_init): Add
    
    2000-08-16  Bradford Hovinen  <hovinen@helixcode.com>
    
        * capplet-widget.c: Add support for --get and --set to cap_options
        (gnome_capplet_init): Add return values 3 for --get and 4 for --set
    
    2000-08-16  Bradford Hovinen  <hovinen@helixcode.com>
    
        * rc-parse.c (write_screensaver_list): Don't try to write string
        if the screensaver has no command line
    
        * main.c (main): Register Popt table containing get and set
        options; call do_get_xml and do_set_xml when necessary
        (do_get_xml):
        (do_set_xml): Implement

 capplets/screensaver/ChangeLog     |  23 +++++
 capplets/screensaver/main.c        |  57 ++++++++++++
 capplets/screensaver/preferences.c | 185 +++++++++++++++++++++++++++++++++++++
 capplets/screensaver/preferences.h |   7 ++
 capplets/screensaver/rc-parse.c    |   5 +-
 5 files changed, 274 insertions(+), 3 deletions(-)

commit a92e2e6423aeab1e2b03d2dbe2701934326a5589
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Wed Aug 16 15:31:08 2000 +0000

    Remove extraneous precondition check (read_command_line): Rewrote to
    
    2000-08-16  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (get_select_widget): Remove
        extraneous precondition check
        (read_command_line): Rewrote to support quoted strings in the
        command line
    
    2000-08-12  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (write_command_line): Use flag free_v
        to determine whether to free data; add support for strings
        (write_string): Implement. Analagous to write_*
        (populate_table): Add support for strings
        (place_entry):
        (get_entry): Implement
        (place_screensaver_properties): Add support for strings
        (read_string): Implement
        (read_select):
        (write_select): Skip over nodes that don't have id attributes

 capplets/screensaver/ChangeLog                  |  20 ++
 capplets/screensaver/screensaver-prefs-dialog.c | 265 ++++++++++++++++++++----
 2 files changed, 250 insertions(+), 35 deletions(-)

commit 18f71b381500dbc70d4b410b573005dd7004b770
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Tue Aug 15 20:05:31 2000 +0000

    Updated Norwegian translation.
    
    2000-08-15  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 +
 po/no.po     | 551 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 374 insertions(+), 181 deletions(-)

commit cb4edce326a87f040ff52aa8625a3781ec5a1ba4
Author: Kai Lahmann <kail@src.gnome.org>
Date:   Mon Aug 14 19:54:04 2000 +0000

    Updated German translation

 po/ChangeLog |   4 +
 po/de.po     | 571 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 386 insertions(+), 189 deletions(-)

commit 755dfdbe04e7cd8206ab7ebaaf6f09b617197f40
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Aug 14 15:04:00 2000 +0000

    Added missing extract-labels.c

 capplets/screensaver/screensavers/extract-labels.c | 96 ++++++++++++++++++++++
 1 file changed, 96 insertions(+)

commit c5fc7bcce3ca4de23fbaf9cc188b54d2338814fa
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Aug 14 15:03:09 2000 +0000

    Added missing glade file

 control-center/gnomecc-preferences.glade | 237 +++++++++++++++++++++++++++++++
 1 file changed, 237 insertions(+)

commit e1fd517e64b729427dfe09bd44add9d4e2c34e78
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Aug 14 15:02:55 2000 +0000

    Added missing preferences.[ch]

 control-center/preferences.c | 320 +++++++++++++++++++++++++++++++++++++++++++
 control-center/preferences.h |  65 +++++++++
 2 files changed, 385 insertions(+)

commit 7437ead3c63e202f0a304d6efa6a10c30e18c578
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Aug 14 14:56:27 2000 +0000

    Fixed some distribution problems

 configure.in               | 1 +
 control-center/Makefile.am | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 2e35c02fca174ae09bf7db9f2f0b36ba89359f25
Author: Valek Frob <frob@src.gnome.org>
Date:   Sat Aug 12 12:16:33 2000 +0000

    Updated russian translation. Fixed POTFILES.in.

 po/ChangeLog   |   5 +
 po/POTFILES.in |  12 +-
 po/ru.po       | 548 ++++++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 384 insertions(+), 181 deletions(-)

commit 1cda85f92dc0844f8dcc8c609b325ddc2222daf0
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Fri Aug 11 19:17:30 2000 +0000

    Update Makefile.am's for capplets to use libcapplet/ directory
    Rewrote most of gnomecc

 ChangeLog                           |   6 +
 Makefile.am                         |   6 +-
 capplets/Makefile.am                |   4 +-
 capplets/mime-type/Makefile.am      |   6 +-
 capplets/theme-switcher/Makefile.am |   8 +-
 capplets/url-properties/Makefile.am |   6 +-
 capplets/wm-properties/Makefile.am  |   6 +-
 configure.in                        |  27 +-
 control-center/ChangeLog            |   5 +
 control-center/Makefile.am          |  14 +-
 control-center/capplet-dir-view.c   | 684 +++++++++++++++++++++++++
 control-center/capplet-dir-view.h   |  72 +++
 control-center/capplet-dir-window.c | 201 --------
 control-center/capplet-dir-window.h |  46 --
 control-center/capplet-dir.c        |  90 +++-
 control-center/capplet-dir.h        |  24 +-
 control-center/main.c               |  12 +-
 po/POTFILES.in                      |  12 +-
 po/ca.po                            | 404 ++++++---------
 po/cs.po                            | 634 +++++++++++------------
 po/da.po                            | 400 ++++++---------
 po/de.po                            | 405 ++++++---------
 po/el.po                            | 402 ++++++---------
 po/en_GB.po                         | 271 +---------
 po/es.po                            | 402 ++++++---------
 po/et.po                            | 587 ++++++++++-----------
 po/fi.po                            | 959 +++++++++++++++++-----------------
 po/fr.po                            | 406 ++++++---------
 po/ga.po                            | 870 ++++++++++++-------------------
 po/gl.po                            | 403 ++++++---------
 po/hr.po                            | 310 +++--------
 po/hu.po                            | 590 +++++++++++----------
 po/it.po                            | 624 +++++++++++------------
 po/ja.po                            | 398 ++++++---------
 po/ko.po                            | 585 +++++++++++----------
 po/lt.po                            | 398 ++++++---------
 po/nl.po                            | 625 +++++++++++------------
 po/no.po                            | 402 ++++++---------
 po/pl.po                            | 991 +++++++++++++++++-------------------
 po/pt.po                            | 580 ++++++++++-----------
 po/pt_BR.po                         | 492 ++++++++----------
 po/ro.po                            | 405 ++++++---------
 po/ru.po                            | 399 ++++++---------
 po/sl.po                            | 399 ++++++---------
 po/sv.po                            | 547 +++++++++-----------
 po/tr.po                            | 462 ++++++++---------
 po/uk.po                            | 500 +++++++++---------
 po/zh_CN.GB2312.po                  | 496 ++++++++----------
 po/zh_TW.Big5.po                    | 491 ++++++++----------
 49 files changed, 7810 insertions(+), 9256 deletions(-)

commit 6b4d87b2fed0faf4bbf65f881c2031c80d904ad8
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Thu Aug 10 15:34:00 2000 +0000

    Remove extraneous whitespace and replace tabs with spaces
    
    2000-08-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * resources.c (screensaver_get_desc_from_xrdb): Remove extraneous
        whitespace and replace tabs with spaces

 capplets/screensaver/ChangeLog   |  3 +++
 capplets/screensaver/resources.c | 22 ++++++++++++++++++++--
 2 files changed, 23 insertions(+), 2 deletions(-)

commit ce4b140d24ac7c84eced68b5df9d8c079d381208
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Thu Aug 10 14:51:00 2000 +0000

    Added ant.xml, bsod.xml, compass.xml, and flag.xml (courtesy of James
    
    2000-08-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensavers/Makefile.am (Screensavers_DATA): Added ant.xml,
        bsod.xml, compass.xml, and flag.xml (courtesy of James Antill
        <james@and.org>)

 capplets/screensaver/ChangeLog                |  4 ++
 capplets/screensaver/screensavers/Makefile.am | 15 +++++-
 capplets/screensaver/screensavers/ant.xml     | 74 +++++++++++++++++++++++++++
 capplets/screensaver/screensavers/bsod.xml    | 13 +++++
 capplets/screensaver/screensavers/compass.xml | 16 ++++++
 capplets/screensaver/screensavers/flag.xml    | 57 +++++++++++++++++++++
 6 files changed, 178 insertions(+), 1 deletion(-)

commit f03d61be34b70a94a554264d75be36f2932c77b8
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Thu Aug 10 14:38:31 2000 +0000

    Fix memory leak (read_select): Disable all widgets associated with
    
    2000-08-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (write_command_line): Fix memory leak
        (read_select): Disable all widgets associated with unselected
        nodes before enabling those associated with selected one
        (read_select): Don't iterate through menu items
        (read_number): Don't crash if person used bad argument

 capplets/screensaver/ChangeLog                  |  6 ++++++
 capplets/screensaver/screensaver-prefs-dialog.c | 27 ++++++++++++++++---------
 2 files changed, 24 insertions(+), 9 deletions(-)

commit ffc4063431e7228b4af69c50ab84abbd9557dbe4
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Thu Aug 10 13:15:25 2000 +0000

    Have string -> boolean conversion always convert to FALSE
    
    2000-08-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * expr.c (int_parse_atom): Have string -> boolean conversion
        always convert to FALSE
        (int_parse_factor): Set result to boolean TRUE when symbol of
        value 1 encountered.

 capplets/screensaver/ChangeLog | 8 ++++++++
 capplets/screensaver/expr.c    | 8 +++++---
 2 files changed, 13 insertions(+), 3 deletions(-)

commit b83773c0f4fe5327eaf5af2a8c3883964f51eb60
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Thu Aug 10 12:21:00 2000 +0000

    Map window before showing screensaver (close_preview): Unmap window after
    
    2000-08-10  Bradford Hovinen  <hovinen@helixcode.com>
    
        * preview.c (show_preview): Map window before showing screensaver
        (close_preview): Unmap window after killing screensaver

 capplets/screensaver/ChangeLog | 5 +++++
 capplets/screensaver/preview.c | 2 ++
 2 files changed, 7 insertions(+)

commit c3827b78aa6d3c1acad10393693a7a405e877f5a
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Wed Aug 9 18:11:02 2000 +0000

    Added public interface get_screensaver_dir_list

 capplets/screensaver/rc-parse.h | 2 ++
 1 file changed, 2 insertions(+)

commit caa9b7c95e1a8c23990f4d5126ef1571b6dc5fc3
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Wed Aug 9 18:10:15 2000 +0000

    Use get_screensaver_dir_list; iterate through all the directories listed
    
    2000-08-09  Bradford Hovinen  <hovinen@helixcode.com>
    
        * preview.c (setup_path): Use get_screensaver_dir_list; iterate
        through all the directories listed in list; use g_getenv
    
        * rc-parse.c (get_screensaver_dir_list): Make public, cache
        return value
        (command_exists): Don't cache screensaver_dir_list

 capplets/screensaver/ChangeLog  |  5 +++++
 capplets/screensaver/preview.c  | 20 ++++++++++++++++----
 capplets/screensaver/rc-parse.c | 25 ++++++++++++++-----------
 3 files changed, 35 insertions(+), 15 deletions(-)

commit e92747cbc59a5198742b36aaaf5ee309afdf2965
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Wed Aug 9 16:16:40 2000 +0000

    Implement. Get a list of possible directories where screensavers may be
    
    2000-08-09  Bradford Hovinen  <hovinen@helixcode.com>
    
        * rc-parse.c (get_screensaver_dir_list): Implement. Get a list of
        possible directories where screensavers may be found by scanning
        the XScreensaver binary.
        (command_exists): Search through list of screensaver directories
        from get_screensaver_dir_list rather than using the hardcoded one

 capplets/screensaver/ChangeLog  |  8 ++++++
 capplets/screensaver/rc-parse.c | 61 ++++++++++++++++++++++++++++++++++++-----
 2 files changed, 62 insertions(+), 7 deletions(-)

commit 584545bb82c26062ebb7e2ff51bbc39fc246ed63
Author: George Lebl <jirka@5z.com>
Date:   Wed Aug 9 06:23:46 2000 +0000

    A new application registry. The parsing is based upon mime-info. The
    
    Tue Aug 08 23:18:49 2000  George Lebl <jirka@5z.com>
    
        * libgnomevfs/Makefile.am,
          libgnomevfs/gnome-vfs-application-registry.[ch]:
          A new application registry.  The parsing is based upon
          mime-info.  The interface completely hides any structures
          and is based entierly on querying string keys.  Handles
          user settings as a delta against the system settings.  Also
          adds mime_types list support to the registry instead of this
          being read from the keys file.
    
        * libgnomevfs/gnome-vfs-mime-handlers.[ch]
          (gnome_vfs_mime_get_default_application)
          (gnome_vfs_mime_get_short_list_applications)
          (gnome_vfs_mime_get_all_applications)
          (gnome_vfs_mime_extend_all_applications)
          (gnome_vfs_mime_remove_from_all_applications)
          (gnome_vfs_mime_application_new_from_id)
          (application_known_to_be_nonexistent):
          Use the application registry API internally.  Remove the
          gnome_vfs_mime_define_application call as it doesn't
          make any sesnse any more and is replaced by an application
          registry call.  The all_applications calls now use the
          registry api for all their work.
    
        * libgnomevfs/gnome-vfs-mime-info.c (load_mime_type_info_from):
          Fix a bug where comments would only be ignored on the first
          line which would add nonsense mime types if comments were
          elsewhere in the file.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c
          (add_new_application)
          test/test-mime-handlers-set.c (main):
          Use the application registry for adding new applications
    
        * data/mime/Makefile.am, data/mime/gnome-vfs.keys,
          data/mime/gnome-vfs.applications,
          data/mime/application-registry-hack.keys:
          Remove the registry hack stuff, remove all_applications
          stuff from gnome-vfs.keys and add the applications from
          the registry hack to gnome-vfs.applications including
          the mime types they read.

 capplets/file-types/file-types-capplet-dialogs.c | 35 ++++++++++++++----------
 1 file changed, 20 insertions(+), 15 deletions(-)

commit fe894c6f20178ca0c9c1b8143c615fd2aecdeaad
Author: Maciej Stachowiak <mstachow@src.gnome.org>
Date:   Wed Aug 9 06:19:30 2000 +0000

    Move include of sys/types.h above include of regex.h to fix building on
    
        * mime-type-capplet/nautilus-mime-type-capplet.c: Move include of
        sys/types.h above include of regex.h to fix building on
        FreeBSD. Fix from Bill Huey <billh@gnuppy.monkey.org>.

 capplets/file-types/file-types-capplet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2a9d7416f59e92e5a91b96522258aa58637ceb1b
Author: Robin Slomkowski <rslomkow@src.gnome.org>
Date:   Tue Aug 8 21:34:56 2000 +0000

    nautilus-mime-type-icon-entry.h was forgotten

 capplets/file-types/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit d9f43fff1117f5c355b37b08d48f818a40d2b2c6
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Aug 8 14:42:37 2000 +0000

    Added additional section on arithmetic expressions

 capplets/screensaver/screensavers/README | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

commit 164fe06c3f373c8c448fc754498b4df83391d105
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Mon Aug 7 19:07:09 2000 +0000

    Added README
    
    2000-08-07  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensavers/Makefile.am (EXTRA_DIST): Added README

 capplets/screensaver/ChangeLog                   |  2 +
 capplets/screensaver/screensavers/Makefile.am    |  4 +-
 capplets/screensaver/screensavers/README         | 89 ++++++++++++++++++++++++
 capplets/screensaver/screensavers/attraction.xml | 40 +++++++++++
 4 files changed, 134 insertions(+), 1 deletion(-)

commit 122042e532d120d079034ec8092bf549b59a66c4
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Mon Aug 7 18:26:43 2000 +0000

    Allow values of multiple types
    
    2000-08-07  Bradford Hovinen  <hovinen@helixcode.com>
    
        * expr.c: Allow values of multiple types
    
        * main.c (main): Don't initialize glade

 capplets/screensaver/ChangeLog                |   4 +
 capplets/screensaver/expr.c                   | 205 +++++++++++++++++++-------
 capplets/screensaver/main.c                   |   2 -
 capplets/screensaver/screensavers/Makefile.am |  20 ++-
 4 files changed, 176 insertions(+), 55 deletions(-)

commit 148d8186a5434435331a892542392d2c348ae627
Author: Bradford Hovinen <hovinen@helixcode.com>
Date:   Mon Aug 7 16:04:33 2000 +0000

    Free structures only if they were ever allocated
    
    2000-08-07  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (screensaver_prefs_dialog_destroy):
        Free structures only if they were ever allocated
    
        * selection-dialog.c (get_known_savers): Implement. Read the
        screensaver directory for a list of valid screensavers
        (place_screensaver_list): Use known_savers rather than XML data
    
        * preferences.c (screensaver_get_label): Implement. Copy from
        get_label in resources.c
    
        * prefs-widget.c (deselect_saver_cb): Toggle only if event was a
        mouse button press, not a keyboard press
        (prefs_widget_init): Change vertical size of preview window to 200
        (prefs_widget_init): Use a table for the buttons below the
        screensaver list
        (prefs_widget_init): Change label of edit button to Settings...
        (prefs_widget_init): Don't have description and preview frames
        expand, have selection frame expand
    
        * Makefile.am (screensaver_properties_capplet_LDADD): Don't link
        against glade
        (INCLUDES): Don't set glade compilation flags
    
        * screensaver-prefs-dialog.c (get_select_widget): Show menu item
        (populate_table): Don't skip hgroups that lack ids
        (place_number):
        (place_boolean): Attach items with GTK_FILL
        (get_check_button):
        (get_select_widget): Set object data to point back to dialog
        (populate_table): Pass dialog, remove extraneous arguments
        (get_check_button): Connect toggled signal from here
        (get_select_widget): Set data and connect activate signals from
        here
        (place_number): Set default from default attribute
        (get_spinbutton): Set step_increment, page_increment, and
        page_size on adjustment
        (get_spinbutton):
        (place_number): Set default to average of high and low if not
        supplied
        (get_argument_data): Add i18n support
        (read_boolean):
        (read_number):
        (read_select):
        (write_boolean):
        (write_number):
        (write_select): Check if id is NULL before trying to look up a node
        (screensaver_prefs_dialog_new): Make sure CLI arguments and XML
        data were read successfully before trying to build the widget
        (get_argument_data): Return pointer to document rather than root node
        (screensaver_prefs_dialog_new): Set argument_data from argument_doc
        (screensaver_prefs_dialog_class_init): Set parent_class
        (screensaver_prefs_dialog_destroy): Implement; free all structures
        (free_set_cb): Implement
        (write_number): Don't assume correct format on the output string;
        just replace the '%' with the appropriate argument
        (write_command_line): Free arg iff generated from number
    
    2000-08-06  Bradford Hovinen  <hovinen@helixcode.com>
    
        * screensaver-prefs-dialog.c (get_screensaver_widget): Accept
        ScreensaverPrefsDialog as option
        (get_argument_data): Assume one file per screensaver
        (get_spinbutton):
        (get_check_button):
        (get_select_widget):
        (place_number):
        (place_boolean):
        (place_hgroup):
        (place_select):
        (populate_table): Implement
        (get_screensaver_widget): Rewrite to build screensaver config
        dialogs manually from the XML data
        (activate_option_cb):
        (toggle_check_cb): Pass dialog to set_widgets_sensitive
        (set_widgets_sensitive): Rewrite to use dialog->widget_db
        (write_boolean):
        (write_number):
        (write_select): Use widget_db
        (write_select):
        (write_command_line): Don't check no-output
        (write_command_line): Pass widget_db
        (read_boolean):
        (read_number):
        (read_select): Use widget_db
        (place_screensaver_properties): Pass dialog->widget_db to above
        functions
        (arg_mapping_exists): Use XML file rather than Glade definition
        (screensaver_prefs_dialog_new): Initialize settings_widget with
        the widget to be placed in the settings frame
        (place_screensaver_properties): Take xml node; process hgroups
        recursively
        (write_command_line): Process hgroups recursively
        (read_boolean):
        (read_number):
        (read_select): Check if set and set->value_widget are set before
        proceeding
    
        * screensaver-prefs-dialog.h (struct _PrefsDialogConfigOption):
        New structure
        (struct _ScreensaverPrefsDialog ): New member widget_db --
        key-value database of PrefsDialogConfigOptions indexed by id
        attribute from XML

 capplets/screensaver/ChangeLog                     |  105 ++
 capplets/screensaver/Makefile.am                   |    9 +-
 capplets/screensaver/preferences.c                 |   25 +
 capplets/screensaver/preferences.h                 |    2 +
 capplets/screensaver/prefs-widget.c                |   48 +-
 capplets/screensaver/rc-parse.c                    |   24 +-
 capplets/screensaver/screensaver-prefs-dialog.c    | 1009 +++++++++++++++-----
 capplets/screensaver/screensaver-prefs-dialog.h    |   12 +-
 capplets/screensaver/screensavers/Makefile.am      |    8 +-
 capplets/screensaver/screensavers/hacks.xml        |   51 -
 .../screensaver/screensavers/qix-settings.glade    |  839 ----------------
 capplets/screensaver/screensavers/qix.xml          |   46 +
 capplets/screensaver/selection-dialog.c            |  149 ++-
 capplets/screensaver/selection-dialog.h            |    2 +-
 14 files changed, 1092 insertions(+), 1237 deletions(-)

commit 8c5ee35a908422c1b6b9a6230a5d1037648a98d2
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Aug 5 14:17:44 2000 +0000

    Updated Slovenian translation

 po/sl.po | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit d56e0017fd34a7ef7e08e70ef1e149e50d20a74b
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Fri Aug 4 11:09:20 2000 +0000

    new script

 po/update.pl | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 166 insertions(+)

commit 516fb9087b1d44a7151417befdb1c890d0881b2a
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Thu Aug 3 15:33:44 2000 +0000

    Added my name to the list of maintainers

 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

commit f515abc9a881f82c498f770646b299ca7d811e56
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Aug 2 22:10:17 2000 +0000

    Fixed bug 1837, The icon in the action list item should represent the item
    
    2000-08-02  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 1837, The icon in the action list item
        should represent the item in the list.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_mime_list):
        Load icon and display based on action.

 capplets/file-types/file-types-capplet.c | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

commit f88e8d52b4c081413ec46e339542ca33bc110d76
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Aug 2 18:34:40 2000 +0000

    updated Catalan file

 po/ca.po | 24 +++++++++---------------
 1 file changed, 9 insertions(+), 15 deletions(-)

commit a2f21570bb39c15103e4d3f96881f1f71b989edb
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Aug 2 12:30:51 2000 +0000

    updated Catalan file

 po/ca.po | 596 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 313 insertions(+), 283 deletions(-)

commit 82353c4765062e4225233b0e4c09e1368b356db8
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Aug 2 09:18:18 2000 +0000

    Fixed bug 1836, Description list item icon wrong.
    
    2000-08-02  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug 1836, Description list item icon wrong.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_mime_list), (gdk_font_get_bold),
        Set up proper and scaled description column icon.
    
        (capplet_gdk_pixbuf_scale_to_fit):
        New function that scales an gdk-pixbuf to the requested
        width and height.  Copied from libnautilus.

 capplets/file-types/file-types-capplet.c | 103 +++++++++++++++++++++++--------
 1 file changed, 78 insertions(+), 25 deletions(-)

commit dd7acf74d1d77674c4ee1b5cd4f79cac26f311e0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Aug 2 08:04:29 2000 +0000

    Updated Norwegian translation.
    
    2000-08-02  Kjartan Maraas  <kmaraas@gnome.org>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |   4 +++
 po/no.po     | 102 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 67 insertions(+), 39 deletions(-)

commit 9f1288a2f426a31854263fd0bc18843f908479a6
Author: Takayuki KUSANO <kusano@src.gnome.org>
Date:   Wed Aug 2 02:10:17 2000 +0000

    Updated Japanese translation.
    
        * ja.po: Updated Japanese translation.

 po/ChangeLog |   4 +
 po/ja.po     | 258 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 159 insertions(+), 103 deletions(-)

commit 5eeb2d20a6f9c8ae9194fd124e6e78bb5f1a076a
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Tue Aug 1 20:22:57 2000 +0000

    New control center implementation

 control-center/Makefile.am          |  36 +++++
 control-center/capplet-dir-window.c | 201 +++++++++++++++++++++++++
 control-center/capplet-dir-window.h |  46 ++++++
 control-center/capplet-dir.c        | 292 ++++++++++++++++++++++++++++++++++++
 control-center/capplet-dir.h        |  74 +++++++++
 control-center/ccsplash.png         | Bin 0 -> 25562 bytes
 control-center/control-center.png   | Bin 0 -> 3296 bytes
 control-center/gnomecc.desktop      |  56 +++++++
 control-center/main.c               |  52 +++++++
 control-center/root-manager.c       |  77 ++++++++++
 10 files changed, 834 insertions(+)

commit f743b8507405de4f90fa8d38c87bc6c18aab9985
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jul 31 20:07:10 2000 +0000

    Added screensaver properties capplet

 capplets/screensaver/Makefile.am                   |  50 ++
 capplets/screensaver/screensavers/Makefile.am      |   4 +
 capplets/screensaver/screensavers/hacks.xml        |  51 ++
 .../screensaver/screensavers/qix-settings.glade    | 839 +++++++++++++++++++++
 4 files changed, 944 insertions(+)

commit 2830dc67b34fcc777cfcf774dc13cdf3a277dbe3
Author: Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>
Date:   Mon Jul 31 20:06:12 2000 +0000

    Added new screensaver properties capplet

 capplets/screensaver/ChangeLog                     |  488 ++++++
 capplets/screensaver/XScreenSaver_ad.h             |  952 ++++++++++++
 capplets/screensaver/checked-disabled.xpm          |   22 +
 capplets/screensaver/checked.xpm                   |   22 +
 capplets/screensaver/daemon.c                      |   77 +
 capplets/screensaver/daemon.h                      |   34 +
 capplets/screensaver/expr.c                        |  259 ++++
 capplets/screensaver/expr.h                        |   36 +
 capplets/screensaver/main.c                        |  248 +++
 capplets/screensaver/no-hack.png                   |  Bin 0 -> 2250 bytes
 capplets/screensaver/pref-file.c                   |  538 +++++++
 capplets/screensaver/pref-file.h                   |   33 +
 capplets/screensaver/preferences.c                 |  288 ++++
 capplets/screensaver/preferences.h                 |  110 ++
 capplets/screensaver/prefs-widget.c                | 1635 ++++++++++++++++++++
 capplets/screensaver/prefs-widget.h                |  128 ++
 capplets/screensaver/preview.c                     |  322 ++++
 capplets/screensaver/preview.h                     |   39 +
 capplets/screensaver/rc-parse.c                    |  601 +++++++
 capplets/screensaver/rc-parse.h                    |   48 +
 capplets/screensaver/resources.c                   |  138 ++
 capplets/screensaver/resources.h                   |   37 +
 capplets/screensaver/screensaver-prefs-dialog.c    |  953 ++++++++++++
 capplets/screensaver/screensaver-prefs-dialog.h    |   72 +
 .../screensaver/screensaver-properties.desktop     |   44 +
 capplets/screensaver/selection-dialog.c            |  239 +++
 capplets/screensaver/selection-dialog.h            |   61 +
 capplets/screensaver/unchecked-disabled.xpm        |   22 +
 capplets/screensaver/unchecked.xpm                 |   22 +
 29 files changed, 7468 insertions(+)

commit 7bd66b87444ecc4dafcdf2d6954d28cd70794945
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Jul 31 17:44:45 2000 +0000

    remove myself

 MAINTAINERS | 1 -
 1 file changed, 1 deletion(-)

commit 7a747d9f01f811a4c97fc5bae0b6654cecee9d5b
Author: ERDI Gergo <cactus@cactus.rulez.org>
Date:   Sun Jul 30 18:30:39 2000 +0000

    changed oaf_server_info_attr_lookup calls to oaf_server_info_prop_lookup
    
    2000-07-30  ERDI Gergo  <cactus@cactus.rulez.org>
    
    * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c
    (name_from_oaf_server_info): changed oaf_server_info_attr_lookup
    calls to oaf_server_info_prop_lookup

 capplets/file-types/file-types-capplet-dialogs.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4dcb4689cea0929b344087eb86dda92038602b1e
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Jul 28 23:07:34 2000 +0000

    New function to set the font of a widget to bold. These were borrowed from
    
    2000-07-28  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet), (pixmap_file), (gtk_widget_make_bold),
        (gtk_widget_set_font), (gtk_style_set_font), (gdk_font_get_bold):
        New function to set the font of a widget to bold.  These were
        borrowed from libnautilus-extensions.

 capplets/file-types/file-types-capplet.c | 149 ++++++++++++++++++++++++++++++-
 1 file changed, 146 insertions(+), 3 deletions(-)

commit f0748b05f0449f624c6ad9e85548d2df75a7a4c1
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Mon Jul 24 11:41:32 2000 +0000

    Added the Turkish entries for the mime-type-capplet.desktop

 capplets/file-types/nautilus-mime-type.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit babb844040f0e482d83050e87b3d58a35fcd8c87
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Jul 16 13:12:02 2000 +0000

    updated Greek file

 po/ChangeLog |   4 ++
 po/el.po     | 190 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 110 insertions(+), 84 deletions(-)

commit 725ce4934709cad73d89220d600d690174fd8ecc
Author: Robert Brady <rwb197@zepler.org>
Date:   Sat Jul 15 18:09:58 2000 +0000

    Updated British translation.
    
    2000-07-15  Robert Brady  <rwb197@zepler.org>
    
        * en_GB.po: Updated British translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 229 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 145 insertions(+), 88 deletions(-)

commit 6ebefae27fc3f22a234c89c7dbd90c2d76ee82e2
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sat Jul 15 01:56:53 2000 +0000

    New API to get and set icon data.
    
    2000-07-14  Gene Z. Ragan  <gzr@eazel.com>
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        * libgnomevfs/gnome-vfs-mime-handlers.h:
        (gnome_vfs_mime_get_icon), (gnome_vfs_mime_set_icon):
        New API to get and set icon data.
    
        * mime-type-capplet/Makefile.am:
        Added new file
        mime-type-capplet/nautilus-mime-type-icon-entry.c
    
        * mime-type-capplet/nautilus-mime-type-icon-entry.c:
        * mime-type-capplet/nautilus-mime-type-icon-entry.h:
        (nautilus_mime_type_icon_entry_get_type),
        (nautilus_mime_type_icon_entry_class_init), (entry_changed),
        (entry_activated), (setup_preview), (ientry_destroy),
        (browse_clicked), (icon_selected_cb), (cancel_pressed),
        (gil_icon_selected_cb), (nautilus_mime_type_show_icon_selection),
        (drag_data_received), (drag_data_get),
        (nautilus_mime_type_icon_entry_init),
        (nautilus_mime_type_icon_entry_new),
        (nautilus_mime_type_icon_entry_gnome_file_entry),
        (nautilus_mime_type_icon_entry_gnome_entry),
        (nautilus_mime_type_icon_entry_gtk_entry),
        (nautilus_mime_type_icon_entry_set_pixmap_subdir),
        (nautilus_mime_type_icon_entry_set_icon),
        (nautilus_mime_type_icon_entry_get_filename):
        New file.  This is a new verison of GnomeIconEntry.
        I am customizing it to look and bahve in a way that
        is compatible with Arlo's UI reccomendations.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (mime_list_selected_row_callback), (icon_changed),
        (change_icon_clicked), (init_mime_capplet),
        (nautilus_mime_type_capplet_update_info), (populate_mime_list):
        More UI cleanups.  Removed GnomeIconEntry and replaced
        with new NautilusMimeTypeIconEntry.

 capplets/file-types/Makefile.am             |   3 +-
 capplets/file-types/file-types-capplet.c    |  75 +--
 capplets/file-types/file-types-icon-entry.c | 754 ++++++++++++++++++++++++++++
 capplets/file-types/file-types-icon-entry.h |  71 +++
 4 files changed, 873 insertions(+), 30 deletions(-)

commit 2c3cae6a9a9f77e01485a84a2d465d1264318013
Author: Mathieu Lacage <mathieu@src.gnome.org>
Date:   Sat Jul 15 01:14:56 2000 +0000

    yet agin a fix to make it compile in strange prefixes.

 capplets/file-types/Makefile.am | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

commit d37fd8590e98deee7eb31e49d367c13b0693abfe
Author: Valek Frob <frob@src.gnome.org>
Date:   Thu Jul 13 14:04:04 2000 +0000

    Updated translation from Kai Lahmann (kl@linuxfaqs.de).

 po/ChangeLog |  4 ++++
 po/de.po     | 51 ++++++++++++++++++++++++++++-----------------------
 2 files changed, 32 insertions(+), 23 deletions(-)

commit cd0cd8432bb3fc84af06e71584bd6ea738ebe72d
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Wed Jul 12 16:25:55 2000 +0000

    updated pt_BR translations

 po/pt_BR.po | 160 ++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 95 insertions(+), 65 deletions(-)

commit b4ed38e4a024c79cde63eb5d529d1ff8b2011fb9
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sat Jul 8 00:57:36 2000 +0000

    Changed code to used renamed gnome_vfs_mime_extensions_list_free
    
    2000-07-07  Gene Z. Ragan  <gzr@eazel.com>
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_add_extension), (gnome_vfs_mime_remove_extension):
        Changed code to used renamed gnome_vfs_mime_extensions_list_free
    
        * libgnomevfs/gnome-vfs-mime-info.c:
        * libgnomevfs/gnome-vfs-mime-info.h:
        (gnome_vfs_mime_get_extensions_pretty_string):
        Return a list with period prepended, comma seperated items.
    
        (gnome_vfs_mime_extensions_list_free):
        Changed name form gnome_vfs_mime_extension_list_free
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_extension_list), (init_mime_capplet),
        (nautilus_mime_type_capplet_update_info), (populate_mime_list),
        (create_mime_list_and_scroller):
        More exciting UI layout work and feature completion.

 capplets/file-types/file-types-capplet.c | 87 ++++++++++++++++++++++++--------
 1 file changed, 65 insertions(+), 22 deletions(-)

commit a0a3cbefca8ddd24fc0c4a27709d6c0b51ea2760
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Jul 7 21:07:16 2000 +0000

    Updated Slovenian translation

 po/sl.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bd456bc68e1e31c7dbff888b4b486470500ef20a
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Jul 7 17:20:05 2000 +0000

    Added Slovenian translations

 capplets/theme-switcher/theme-selector.desktop | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 663e79f17d156306a931fe12cc1eeb72ab27aae9
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Jul 7 04:30:42 2000 +0000

    Added sorting functionality to the column buttons. Enabled columns to
    
    2000-07-06  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c: (column_clicked),
        (create_mime_list_and_scroller):
        Added sorting functionality to the column buttons.  Enabled
        columns to respond to a click.  Clicking a column header
        toggles between ascending and descending sort for that column.

 capplets/file-types/file-types-capplet.c | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit 981826b3e4915fb247d0d194ebe703baa6ca67eb
Author: Robin Slomkowski <rslomkow@src.gnome.org>
Date:   Thu Jul 6 05:28:57 2000 +0000

    Fixing Gene's mistake of adding a full path name to an .so for
    linking.

 capplets/file-types/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 32577cacec3ddfa94c777d3d92978c2e042c4057
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Jul 5 04:35:04 2000 +0000

    More capplet work in progress. Modifying applet and code to support UI
    
    2000-07-04  Gene Z. Ragan  <gzr@eazel.com>
        More capplet work in progress.  Modifying applet and code
        to support UI work done by Arlo.
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_add_extension), (gnome_vfs_mime_remove_extension):
        API changes to support new layout.
    
        * libgnomevfs/gnome-vfs-mime-info.c:
        * libgnomevfs/gnome-vfs-mime-info.h:
        (gnome_vfs_mime_get_extensions_list),
        (gnome_vfs_mime_get_extensions_string):
        API changes to support new layout.
    
        * mime-type-capplet/Makefile.am:
        Added dependency to GdkPixbuf.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (show_edit_components_dialog), (add_new_application),
        (show_new_application_window), (show_edit_application_window):
        API changes to support new layout.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        * mime-type-capplet/nautilus-mime-type-capplet.h:
        (populate_extension_list), (extension_list_deselected),
        (application_button_toggled), (viewer_button_toggled),
        (icon_changed), (init_mime_capplet),
        (nautilus_mime_type_capplet_update_info),
        (populate_application_menu), (populate_viewer_menu),
        (edit_default_clicked),
        (nautilus_mime_type_capplet_update_application_info),
        (nautilus_mime_type_capplet_update_viewer_info),
        (insert_mime_vals_into_clist), (create_mime_list_and_scroller),
        (nautilus_mime_type_capplet_get_selected_item_mime_type),
        (make_path), (pixmap_file):
        API changes to support new layout.

 capplets/file-types/Makefile.am                  |   3 +-
 capplets/file-types/file-types-capplet-dialogs.c |  44 +--
 capplets/file-types/file-types-capplet.c         | 471 ++++++++++++++---------
 capplets/file-types/file-types-capplet.h         |   2 +-
 4 files changed, 313 insertions(+), 207 deletions(-)

commit b3b5ced6ce0bc2940ade7213b16dcbfd356786f1
Author: Eskil Heyn Olsen <eskil@src.gnome.org>
Date:   Mon Jul 3 22:18:15 2000 +0000

    Making gnome-vfs rpm'able

 capplets/file-types/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit c4835a68de31682d7896425e64a83c5b97a674c8
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jun 27 23:02:32 2000 +0000

    Updated Slovenian translation

 po/sl.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit fae278e88a68c7fb180c948d5f687a90221a55ff
Author: Michael Meeks <michael@helixcode.com>
Date:   Tue Jun 27 16:12:02 2000 +0000

    add libgnomevfs
    
    2000-06-27  Michael Meeks  <michael@helixcode.com>
    
        * mime-type-capplet/Makefile.am (INCLUDES): add libgnomevfs

 capplets/file-types/Makefile.am | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 7e19452441f317373a6cd3759fcb8a203d4566f7
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Tue Jun 27 08:24:04 2000 +0000

    Updated Slovenian translation

 po/sl.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 5c77bcd4c535aed191d0ce3008d6fb9290e22d9a
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sun Jun 25 16:13:07 2000 +0000

    Updated Slovenian translation

 po/sl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 1d0671ed1f6909da414f5ca89075ca0b6115c46b
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Sat Jun 24 23:52:34 2000 +0000

    Added Slovenian translations

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 0910a65b249c6708cbe138e9dfd44613a25be4d9
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sat Jun 24 10:01:15 2000 +0000

    Made a working taregt in the Makefile.am for the mime-ytpe-capplets

 capplets/file-types/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ab2726e3bb8126b31e5aa49f833012339931cf23
Author: Andraz Tori <minmax@src.gnome.org>
Date:   Fri Jun 23 20:17:59 2000 +0000

    Added Slovenian translations

 configure.in |    2 +-
 po/sl.po     | 1530 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1531 insertions(+), 1 deletion(-)

commit 7f3302d6b83c9224e7f0ff97c092c393c0d0ddb6
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Thu Jun 22 23:36:29 2000 +0000

    Fixed bug #581. Ui for specifying whether applicaition can open multiple
    
    2000-06-22  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug #581.  Ui for specifying whether applicaition
        can open multiple files at once.
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        * libgnomevfs/gnome-vfs-mime-handlers.h:
        (gnome_vfs_mime_define_application):
        Added const char * argument for mime type.  Removed placeholder
        mime type.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (populate_default_applications_list),
        (populate_default_components_box),
        (initialize_edit_applications_dialog), (add_new_application),
        (show_new_application_window), (show_edit_application_window):
        Modified edit applicaiton list dialog to use a GtkList with
        embedded check buttons and labels.  This allows single list items
        to be selected so that individual items can be edited or deleted.
    
        * test/test-mime-handlers-set.c: (main):
        Fixed call to gnome_vfs_mime_define_application to use
        new argument.

 capplets/file-types/file-types-capplet-dialogs.c | 138 +++++++++++++++--------
 1 file changed, 91 insertions(+), 47 deletions(-)

commit 6a7fb3c7372ec71facb1d110a063f5bf4c414242
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Thu Jun 22 18:59:42 2000 +0000

    Clean up work on layout of capplet dialogs.
    
    000-06-22  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (show_new_application_window), (show_edit_application_window):
        Clean up work on layout of capplet dialogs.

 capplets/file-types/file-types-capplet-dialogs.c | 70 +++++++++++++++---------
 1 file changed, 45 insertions(+), 25 deletions(-)

commit 459de31d656ad4f67e9300bf71de8dcd63dc9874
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Thu Jun 22 01:48:29 2000 +0000

    Fixed bug #1434, Fix alignment of widgets in main capplet view.
    
    2000-06-21  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug #1434, Fix alignment of widgets in main capplet view.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet):
        Replaced use of multiple pack boxes with a table.  Things
        look much better now.

 capplets/file-types/file-types-capplet.c | 46 +++++++++++++-------------------
 1 file changed, 19 insertions(+), 27 deletions(-)

commit 24f9a12f1b7c6f26e790b1508fd49a3dd5b5b4ae
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Jun 21 18:39:48 2000 +0000

    Fixed bug #583
    
    2000-06-21  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug #583
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (initialize_edit_applications_dialog),
        (show_new_application_window), (show_edit_application_window):
        New dialog and items to indicate and allow user to
        set application behavior concerning multiple launch and
        URI handling.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet):
        Removed old UI code and migrated to dialog.

 capplets/file-types/file-types-capplet-dialogs.c | 76 +++++++++++++++++++++++-
 capplets/file-types/file-types-capplet.c         | 18 ------
 2 files changed, 74 insertions(+), 20 deletions(-)

commit 6d98ed445ad5fa3e6838ea66ab5111082a5f6763
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Jun 21 07:32:44 2000 +0000

    More work on adding applications and extension.
    
    2000-06-21  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (initialize_edit_applications_dialog),
        (nautilus_mime_type_capplet_show_new_extension_window),
        (add_new_application), (show_new_application_window):
        More work on adding applications and extension.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (nautilus_mime_type_capplet_add_extension),
        (remove_extension_clicked), (none_button_toggled),
        (application_button_toggled), (component_button_toggled),
        (init_mime_capplet),
        (nautilus_mime_type_capplet_get_selected_item_mime_type):
        Changed use of GtkFixed to use layout.  Layout is now messy
        again, but I should be able to get it looking right.

 capplets/file-types/file-types-capplet-dialogs.c | 90 +++++++++++++++++++++-
 capplets/file-types/file-types-capplet.c         | 97 +++++++++++++++---------
 capplets/file-types/file-types-capplet.h         |  9 ++-
 3 files changed, 156 insertions(+), 40 deletions(-)

commit f56e319e83abf7b3d2990560e6f44464420d3c4f
Author: Jing-Jong Shyue <shyue@src.gnome.org>
Date:   Wed Jun 21 06:34:47 2000 +0000

    Triditional Chinese PO File 2000/06/21

 po/zh_TW.Big5.po | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

commit 130114db19a7239f7aa8d8329c5a14a7a6b984fc
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Tue Jun 20 22:37:08 2000 +0000

    Added frame and set of radio buttons to indicate and allow the user to
    
    2000-06-20  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (mime_list_selected_row_callback), (none_button_toggled),
        (application_button_toggled), (component_button_toggled),
        (init_mime_capplet), (nautilus_mime_type_capplet_update_info):
        Added frame and set of radio buttons to indicate and allow the
        user to change the default action that will occur when a file
        is clicked/double-clicked in Nautilus.  We have three choices that
        map to the three types of actions we currently support.

 capplets/file-types/file-types-capplet.c | 97 ++++++++++++++++++++++++++++----
 1 file changed, 86 insertions(+), 11 deletions(-)

commit 9fc8036863d8ed423816d9d912ccb222338bd606
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Tue Jun 20 21:33:14 2000 +0000

    Fixed bug #1221
    
    2000-06-20  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug #1221
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (application_menu_activated), (populate_application_menu),
        (component_menu_activated), (populate_component_menu):
        Add handling of the case where a default application or
        component is not in the default applicaiton or component list.
        This involved some UI work and adding the default app to
        the default list.  Hopefully the gnome-vfs-mime-handler API
        will not allow this to happen, but we handle it just in case.
    
        Cleaned up the way the menu items for the default application
        and component are set and added a signal handler to set
        the user's choice of application or component to be the default.

 capplets/file-types/file-types-capplet.c | 254 ++++++++++++++++++++++++-------
 1 file changed, 196 insertions(+), 58 deletions(-)

commit a13cbb8223af4f0bc9a08eb6bb6e4cb8d79c14b7
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Tue Jun 20 18:55:19 2000 +0000

    Fixed bug #1055
    
    2000-06-20  Gene Z. Ragan  <gzr@eazel.com>
    
        Fixed bug #1055
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        * libgnomevfs/gnome-vfs-mime-handlers.h:
        (gnome_vfs_mime_add_extension):
        Renamed function to be more in accordance with other function
        in file.
    
        (gnome_vfs_mime_remove_extension):
        New function to remove mapped extension from mime type.
    
        * libgnomevfs/gnome-vfs-mime-info.c: (load_mime_list_info_from),
        (gnome_vfs_mime_get_extensions), (mime_list_sort), (get_key_name),
        (gnome_vfs_mime_commit_registered_types),
        (write_mime_data_foreach), (write_registered_mime_data):
        A couple of things done here.  One was work on the tokenizer
        so that it handled a variety of cases when reading in
        key data form .mime files.  Another was work on saving and
        deleting mapped extensions from the .mime file.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_extension_window):
        Work on saving and deleting mapped extensions from the .mime file.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (populate_extension_list),
        (nautilus_mime_type_capplet_add_extension),
        (remove_extension_clicked):
        Work on saving and deleting mapped extensions from the .mime file.

 capplets/file-types/file-types-capplet-dialogs.c |  5 ++-
 capplets/file-types/file-types-capplet.c         | 51 +++++++++++++++---------
 2 files changed, 37 insertions(+), 19 deletions(-)

commit 276185af537b1bd27e7d3a13cec8ba9d83a9d4c8
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Mon Jun 19 23:12:18 2000 +0000

    Removed obsolete files.
    
    2000-06-19  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/mime-data.c:
        * mime-type-capplet/mime-data.h:
        Removed obsolete files.
    
        * mime-type-capplet/Makefile.am:
        Removed above files from Makefile.
    
        * libgnomevfs/gnome-vfs-mime-handlers.c:
        * libgnomevfs/gnome-vfs-mime-handlers.h:
        (gnome_vfs_mime_add_extension_to_mime_type):
        New function.  Add extension mapping to named mime type
        and save to .mime file.
    
        * libgnomevfs/gnome-vfs-mime-info.c:
        * libgnomevfs/gnome-vfs-mime-info.h:
        (load_mime_list_info_from),
        (load_mime_type_info), (gnome_vfs_mime_get_extensions),
    
        (gnome_vfs_mime_extension_list_free):
        New function to deep free the list returned
        by gnome_vfs_mime_get_extensions()
    
        (gnome_vfs_mime_registered_mime_type_list_free),
        New function to deep free the list returned
        by gnome_vfs_mime_get_extensions()
    
        (gnome_vfs_mime_commit_registered_types):
        Public function to commit internal hash table
        of mime data to disk.
    
        (gnome_vfs_mime_set_registered_type_key):
        This functions sets the key data for the registered mime
        type's hash table.
    
        (write_mime_data_foreach), (write_mime_data):
        New functions to write out mime data from hash table.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_mime_window),
        (nautilus_mime_type_capplet_show_new_extension_window):
        Clean up work on dialogs.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (ok_callback),
        (populate_extension_list),
        (nautilus_mime_type_capplet_add_extension),
        (remove_extension_clicked), (init_mime_capplet),
        (delete_mime_clicked), (create_mime_list_and_scroller),
        (get_selected_item_mime_type):
        Clean up work on main capplet view.

 capplets/file-types/Makefile.am                  |   3 +-
 capplets/file-types/file-types-capplet-dialogs.c |  20 +-
 capplets/file-types/file-types-capplet.c         | 161 ++++------
 capplets/file-types/file-types-capplet.h         |   2 -
 capplets/file-types/mime-data.c                  | 363 -----------------------
 capplets/file-types/mime-data.h                  |  27 --
 6 files changed, 65 insertions(+), 511 deletions(-)

commit bb5059111b5624569af727efe294efcce9954f7f
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Sat Jun 17 07:58:12 2000 +0000

    File Types and Programs capplet work in progress.
    
    2000-06-17  Gene Z. Ragan  <gzr@eazel.com>
    
        File Types and Programs capplet work in progress.
    
        * mime-type-capplet/mime-info.c:
        * mime-type-capplet/mime-info.h:
        Removed obsolete files from capplet.
    
        * mime-type-capplet/Makefile.am:
        Remove above files form makefile.
    
        * libgnomevfs/gnome-vfs-mime-info.c:
        * libgnomevfs/gnome-vfs-mime-info.h:
        (list_context_new), (context_destroy_and_unlink),
        (load_mime_type_info_from),
        (load_mime_list_info_from), (mime_list_load),
        (load_mime_type_info), (gnome_vfs_mime_init),
        (gnome_vfs_mime_info_clear), (gnome_vfs_mime_info_shutdown),
        (get_key_name), (gnome_vfs_get_registered_mime_types):
        Various fixes and modifications.  Fixed a bug in the
        mime key database parser that caused comments to be
        read in incorrectly.
    
        * mime-type-capplet/mime-data.c:
        (add_to_key), (add_mime_vals_to_clist),
        (add_new_mime_type), (add_new_mime_type),
        (write_mime_foreach):
        Capplet work in progress.
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        (nautilus_mime_type_capplet_show_new_mime_window):
        Capplet work in progress.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        * mime-type-capplet/nautilus-mime-type-capplet.h:
        (main), (g_list_free_deep), (try_callback), (revert_callback),
        (ok_callback), (cancel_callback), (populate_extension_list),
        (mime_list_selected_row_callback), (init_mime_capplet),
        (nautilus_mime_type_capplet_update_info), (delete_mime_clicked),
        (edit_applications_clicked), (edit_components_clicked),
        (insert_mime_vals_into_clist), (create_mime_list_and_scroller):
        Capplet work in progress.

 capplets/file-types/Makefile.am                  |   5 +-
 capplets/file-types/file-types-capplet-dialogs.c |  13 +-
 capplets/file-types/file-types-capplet.c         | 194 ++++++---
 capplets/file-types/file-types-capplet.h         |   2 +-
 capplets/file-types/mime-data.c                  | 395 ++++--------------
 capplets/file-types/mime-data.h                  |  11 +-
 capplets/file-types/mime-info.c                  | 493 -----------------------
 capplets/file-types/mime-info.h                  |  42 --
 8 files changed, 226 insertions(+), 929 deletions(-)

commit 662a6f1803555da4b962362c7d9e1b57771e124c
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Thu Jun 15 23:32:08 2000 +0000

    Work in progress on the FIle Types and Programs Capplet Removed obsolete
    
    2000-06-15  Gene Z. Ragan  <gzr@eazel.com>
    
        Work in progress on the FIle Types and Programs Capplet
        * mime-type-capplet/Makefile.am:
        Removed obsolete files form build.
    
        * mime-type-capplet/edit-window.c:
        * mime-type-capplet/edit-window.h:
        Obsolete.  Removed.
    
        * mime-type-capplet/new-mime-window.c:
        * mime-type-capplet/new-mime-window.h:
        Obsolete.  Removed.
    
        * mime-type-capplet/mime-data.c: (add_mime_vals_to_clist),
        (selected_row_callback):
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.h:
        (edit_applications_dialog_destroy), (application_is_in_list),
        (application_button_toggled_callback),
        (populate_default_applications_box),
        (populate_default_components_box),
        (initialize_edit_applications_dialog),
        (show_edit_applications_dialog), (show_edit_components_dialog),
        (nautilus_mime_type_capplet_show_new_mime_window),
        (nautilus_mime_type_capplet_show_new_extension_window):
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        * mime-type-capplet/nautilus-mime-type-capplet.h:
        (revert_callback), (populate_extension_list),
        (nautilus_mime_type_capplet_add_extension),
        (add_extension_clicked), (remove_extension),
        (extension_list_selected), (extension_list_deselected),
        (init_mime_capplet), (nautilus_mime_type_capplet_update_info),
        (add_mime_clicked), (edit_components_clicked),
        (nautilus_mime_type_capplet_update_application_info),
        (nautilus_mime_type_capplet_update_component_info):

 capplets/file-types/Makefile.am                  |   6 +-
 capplets/file-types/edit-window.c                | 648 -----------------------
 capplets/file-types/edit-window.h                |  14 -
 capplets/file-types/file-types-capplet-dialogs.c | 365 +++++++------
 capplets/file-types/file-types-capplet-dialogs.h |   9 +-
 capplets/file-types/file-types-capplet.c         | 243 +++++++--
 capplets/file-types/file-types-capplet.h         |   8 +-
 capplets/file-types/mime-data.c                  |  74 +--
 capplets/file-types/mime-info.c                  |   1 +
 capplets/file-types/mime-info.h                  |  37 +-
 capplets/file-types/new-mime-window.c            | 102 ----
 capplets/file-types/new-mime-window.h            |  14 -
 12 files changed, 475 insertions(+), 1046 deletions(-)

commit 3ff9e56e827cbaefc313606c9b62fa753cd942bd
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Thu Jun 15 23:11:58 2000 +0000

    de.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 345db726fcd45addf121aeb201423915ac3b948d
Author: Darin Adler <darin@src.gnome.org>
Date:   Thu Jun 15 16:57:08 2000 +0000

    Added FIXMEs to places that get MIME info from the gnome-libs prefix since
    
        * libgnomevfs/gnome-vfs-gen-mimedb.c: (main):
        * libgnomevfs/gnome-vfs-mime-info.c: (gnome_vfs_mime_init):
        * libgnomevfs/gnome-vfs-mime-magic.c:
        (gnome_vfs_mime_get_magic_table):
        * libgnomevfs/gnome-vfs-mime.c: (mime_init):
        * mime-type-capplet/mime-data.c: (init_mime_type):
        Added FIXMEs to places that get MIME info from the gnome-libs
        prefix since we install this stuff in the gnome-vfs prefix.
        We already had a bug report about this.

 capplets/file-types/mime-data.c | 34 ++++++++++++++--------------------
 1 file changed, 14 insertions(+), 20 deletions(-)

commit e7597dd8cc844470b3c82413738c29953867650e
Author: Kenneth Christiansen <kenneth@src.gnome.org>
Date:   Thu Jun 15 09:41:16 2000 +0000

    added da

 capplets/file-types/nautilus-mime-type.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit e2c7c32d5dc1e2d276488789bd0044118ebe2c83
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Thu Jun 15 06:14:51 2000 +0000

    New files. Trying to clean up current capplet source and organize it in a
    
    2000-06-14  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.c:
        * mime-type-capplet/nautilus-mime-type-capplet-dialogs.h:
        New files. Trying to clean up current capplet source and
        organize it in a sensible way.
    
        (edit_application_dialog_destroy), (edit_component_dialog_destroy),
        (populate_default_applications_list),
        (populate_preferred_applications_list), (component_is_in_list),
        (component_button_toggled_callback),
        (populate_default_components_box),
        (populate_preferred_components_list),
        (initialize_edit_applications_dialog),
        (initialize_edit_components_dialog),
        (show_edit_applications_dialog), (show_edit_components_dialog),
        Brand new functions.
    
        * mime-type-capplet/Makefile.am:
        Added new source file listed above.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet), (populate_application_menu),
        (populate_component_menu), (edit_applications_clicked),
        (edit_components_clicked):
        Work on setting up info view.

 capplets/file-types/Makefile.am                  |   1 +
 capplets/file-types/file-types-capplet-dialogs.c | 567 +++++++++++++++++++++++
 capplets/file-types/file-types-capplet-dialogs.h |  33 ++
 capplets/file-types/file-types-capplet.c         | 171 ++++---
 4 files changed, 683 insertions(+), 89 deletions(-)

commit ee6dfffc70181f60dd11f79906514f3f9a943f8b
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Jun 14 02:14:20 2000 +0000

    More work in progress and added a new file to the capplet build.
    
    2000-06-13  Gene Z. Ragan  <gzr@eazel.com>
    
        More work in progress and added a new file to the capplet build.
    
        * mime-type-capplet/nautilus-mime-type-capplet.c: (main),
        (init_mime_capplet), (edit_applications_clicked),
        (edit_components_clicked), (edit_application_dialog_destroy),
        (initialize_edit_application_dialog),
        (show_edit_applications_dialog), (show_edit_components_dialog):
    
        * mime-type-capplet/nautilus-mime-type-capplet.h:
        New file

 capplets/file-types/file-types-capplet.c | 135 +++++++++++++++++++++++--------
 capplets/file-types/file-types-capplet.h |  30 +++++++
 2 files changed, 132 insertions(+), 33 deletions(-)

commit 53ce9946a6793a403ddbf2c53562856bee884292
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed Jun 14 01:50:59 2000 +0000

    Work in progress on the File Types and Program capplet
    
    2000-06-13  Gene Z. Ragan  <gzr@eazel.com>
    
        Work in progress on the File Types and Program capplet
    
        * mime-type-capplet/edit-window.c: (initialize_main_win):
        * mime-type-capplet/mime-data.c: (get_priority), (add_to_key),
        (mime_fill_from_file), (add_mime_vals_to_clist),
        (selected_row_callback), (create_mime_clist), (add_new_mime_type):
    
        * mime-type-capplet/mime-data.h:
        * mime-type-capplet/nautilus-mime-type-capplet.c:
        (init_mime_capplet), (nautilus_mime_type_capplet_update_info),
        (populate_application_menu), (populate_component_menu),
        (free_mime_info), (delete_mime_clicked), (add_mime_clicked),
        (edit_applications_clicked), (edit_components_clicked):

 capplets/file-types/edit-window.c              |  78 +++--
 capplets/file-types/file-types-capplet.c       | 391 +++++++++++++++++++++++--
 capplets/file-types/mime-data.c                | 143 +++++----
 capplets/file-types/mime-data.h                |  12 +-
 capplets/file-types/nautilus-mime-type.desktop |   2 +-
 capplets/file-types/new-mime-window.c          |  31 +-
 6 files changed, 500 insertions(+), 157 deletions(-)

commit c2d296c09527836d567df6504d594d257fbe3781
Author: Eskil Heyn Olsen <eskil@src.gnome.org>
Date:   Mon Jun 12 08:06:41 2000 +0000

    Changed the Requires to what the configure.in is actually checking for.
    
    
        * gnome-vfs.spec.in: Changed the Requires to what the configure.in
        is actually checking for.
        * libgnomevfs/Makefile.am: Added
        gnome-vfs-mime-sniff-buffer-private.h to HEADERS.
        * mime-type-capplet/Makefile.am: added a -D to install of the
        .desktop file. Ensures that the dir is there during rpm -ta.
    
        Can now build a gnome-vfs rpm.

 capplets/file-types/Makefile.am | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 5fee71527babeec2495941c8d4f826d544528e69
Author: Ville Hautamaki <ville@src.gnome.org>
Date:   Mon Jun 12 06:02:15 2000 +0000

    Finnish update by Pauli
    
    Ville

 ChangeLog    |  18 ++
 po/ChangeLog |   4 +
 po/fi.po     | 733 ++++++++++++++++++++++++++++++-----------------------------
 3 files changed, 401 insertions(+), 354 deletions(-)

commit 4449e688f0d30124627a96f5e7a07a12aee4c589
Author: Pavel Cisler <pavel@eazel.com>
Date:   Tue Jun 6 00:29:38 2000 +0000

    Added more bug numbers to FIXMEs. Fixed one misspelled FIXME that made it
    
    2000-06-05  Pavel Cisler  <pavel@eazel.com>
    
        * libgnomevfs-corba/gnome-vfs-slave.c: (serve_channel_read),
        (serve_channel_write):
        * libgnomevfs-pthread/gnome-vfs-job-slave.c:
        * mime-type-capplet/edit-window.c: (populate_application_menu):
        * mime-type-capplet/mime-data.c: (add_to_key):
        * modules/extfs-method.c: (do_open), (read_directory_list),
        (do_open_directory), (match):
        * modules/extfs/cpio.in:
        * modules/extfs/lha.in:
        * modules/file-method.c: (read_directory):
        * modules/gconf-method.c: (directory_handle_destroy):
        Added more bug numbers to FIXMEs.
        Fixed one misspelled FIXME that made it show up in the check-FIXME.pl tool.

 capplets/file-types/edit-window.c | 4 +++-
 capplets/file-types/mime-data.c   | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 81136fedf199ab9707024790667fb9781097adfa
Author: Darin Adler <darin@src.gnome.org>
Date:   Mon Jun 5 18:20:57 2000 +0000

    Added bug numbers to FIXMEs.
    
        * modules/http-method.c:
        * modules/newftp-method.c: (do_open_directory),
        (do_make_directory):
        * modules/pipe-method.c: (do_close):
        * test/gnome-file-selection/gicon.c: (get_stock_icon),
        (get_stock_overlay), (get_default_icon),
        (gicon_get_icon_for_file_2):
        * test/gnome-file-selection/gnome-file-selection-history.c:
        * test/gnome-file-selection/gnome-file-selection.c:
        (update_directory_combo_list), (setup_directory_combo_and_toolbar),
        (destroy), (class_init), (init):
        * test/test-info.c:
        Added bug numbers to FIXMEs.
    
        * mime-type-capplet/edit-window.c: (destruction_handler),
        (initialize_main_win), (launch_edit_window),
        (populate_application_menu):
        Got rid of the fixed-length mime_string field.
    
        * modules/file-method.c: (read_link), (get_stat_info):
        Some minor tweaks on the code Rebecca just checked in.
        There was a little problem with unsigned integers.

 capplets/file-types/edit-window.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 09a0f4d208af59696980815c0f71db75c14e1d80
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Jun 2 23:28:16 2000 +0000

    More work on handling the logic of populating the menu and handling
    
    2000-06-02  Gene Z. Ragan  <gzr@eazel.com>
    
        * mime-type-capplet/edit-window.c:
        (populate_application_menu):
        More work on handling the logic of populating the menu
        and handling special cases where short list, default application
        and applicaiton list may be NULL or empty.

 capplets/file-types/edit-window.c | 45 ++++++++++++++++++++++++++++++++-------
 capplets/file-types/mime-data.c   |  2 +-
 2 files changed, 38 insertions(+), 9 deletions(-)

commit 1d0d04ddfd42620d1da728a76154e05714832f81
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Jun 2 21:55:34 2000 +0000

    More work in progress on the capplet. Still incomplete.
    
    2000-06-02  Gene Z. Ragan  <gzr@eazel.com>
    
        More work in progress on the capplet.  Still incomplete.
    
        * mime-type-capplet/edit-window.c:
        (initialize_main_win),
        (populate_application_menu):
        The Application window now displays the shortlist and selected
        the default application if it is present in the short list.
    
        (add_application):
        All of the mchinery is hooked up, but the API does not seem to
        be registering the new choice.

 capplets/file-types/edit-window.c | 70 +++++++++++++++++++++++++++++----------
 1 file changed, 53 insertions(+), 17 deletions(-)

commit 5577b93b1a0fc6e6f047e9feb84468c984aea18d
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri Jun 2 18:34:36 2000 +0000

    More work in progress. Still incomplete.
    
    2000-06-02  Gene Z. Ragan  <gzr@eazel.com>
    
        More work in progress.  Still incomplete.
    
        * mime-type-capplet/edit-window.c: (initialize_main_win_vals),
        (show_edit_window), (populate_application_menu),
        (populate_component_menu), (application_menu_activate),
        (add_application), (show_file_selector):
        Work in progress.
    
        * mime-type-capplet/mime-data.c: (add_to_key):
        Work in progress.

 capplets/file-types/edit-window.c        | 88 +++++++++++++++++++++-----------
 capplets/file-types/file-types-capplet.c |  1 +
 capplets/file-types/mime-data.c          | 29 +++++++++--
 3 files changed, 85 insertions(+), 33 deletions(-)

commit 5ebec09c254f92a2a077beab485bd5de2bb79d15
Author: Maciej Stachowiak <mstachow@src.gnome.org>
Date:   Fri Jun 2 06:55:33 2000 +0000

    Define short-list components for text/plain
    
        * data/mime/gnome-vfs.keys: Define short-list components for
        text/plain
    
        First half of task 370 (write APIs for mime handler stuff)
    
        * libgnomevfs/gnome-vfs-mime-handlers.h,
        libgnomevfs/gnome-vfs-mime-handlers.c:
        (gnome_vfs_mime_set_default_action_type,
        gnome_vfs_mime_set_default_application,
        gnome_vfs_mime_set_default_component,
        gnome_vfs_mime_set_short_list_applications,
        gnome_vfs_mime_set_short_list_components,
        gnome_vfs_mime_extend_all_applications,
        gnome_vfs_mime_remove_from_all_applications): Implemented (w/ some
        slight interface changes relative to old headers/stubs.
    
        (gnome_vfs_mime_define_application): New function.
    
        (bool_to_str, gnome_vfs_strsplit_to_list,
        gnome_vfs_strjoin_from_list, comma_separated_str_to_str_list,
        str_list_to_comma_separated_str, str_list_difference): More helper functions.
    
        * test/test-mime-handlers-set.c: Test for mime handler setter
        APIs.
        * test/Makefile.am: Build it.
    
        * mime-type-capplet/edit-window.c (add_application): Remove
        now-invalid call to gnome_vfs_mime_set_default_application w/
        comment on how to do it better.

 capplets/file-types/edit-window.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit cc325cf040bef8fdd71489f5d2fa841473d8f15f
Author: JP Rosevear <jpr@arcavia.com>
Date:   Thu Jun 1 14:59:44 2000 +0000

    Make the capplet build if gnomevfs isn't already installed.
    
    2000-06-01  JP Rosevear  <jpr@arcavia.com>
    
        * mime-type-capplet/Makefile.am: Make the capplet build if
    gnomevfs
        isn't already installed.
    
        * libgnomevfs-corba/gnome-vfs-corba.c: Use only the oaf stuff
    
        * libgnomevfs-corba/gnome-vfs-slave.c: ditto
    
        * libgnomevfs/Makefile.am: Remove oaf conditionals since we
    require
        oaf now
    
        * libgnomevfs-corba/Makefile.am:
    
        * configure.in: Check for oaf >= 0.3.0 and make it mandatory

 capplets/file-types/Makefile.am | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 1bdfaaac57b0af8c40e5afb937463fa1e5e35da1
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Wed May 31 17:26:11 2000 +0000

    Work in progress for the modified Files and Programs capplet that is
    
    2000-05-31  Gene Z. Ragan  <gzr@eazel.com>
    
        Work in progress for the modified Files and Programs
        capplet that is relacing the old mime types capplet
        in the Gnome Control Center.
    
        * mime-type-capplet/Makefile.am:
        Added link dependeny to libgnomevfs.
    
        * mime-type-capplet/edit-window.c:
        (add_extension), (remove_extension):
        Rename functions to be more coherent.
    
        (initialize_main_win), (initialize_main_win_vals):
        Modified functions to remove dialog items
        that are obsolete in our new designs.  Added new
        items such as the application and component menus.
    
        (populate_application_menu),
        (populate_component_menu), (application_menu_activate):
        Application menu functions that list the short
        list of applications for a mime type and allow a user
        to add applications to the short list.
    
        (add_application), (show_file_selector):
        Menu callback and function to display GtkFileSelection to
        allow user to locate an application to be associated with
        mime type.
    
        * mime-type-capplet/mime-data.c:
        (add_new_mime_type):
        Modified functions for new mime APIs.
    
        * mime-type-capplet/new-mime-window.c: (launch_new_mime_window):
        Modified functions for new mime APIs.
    
        * modules/file-method.c: (file_handle_new):
        Modified functions for new mime APIs.

 capplets/file-types/Makefile.am          |   6 +-
 capplets/file-types/edit-window.c        | 212 +++++++++++++++++++------------
 capplets/file-types/file-types-capplet.c |   1 +
 capplets/file-types/mime-data.c          |  20 +--
 capplets/file-types/mime-data.h          |   2 +-
 capplets/file-types/new-mime-window.c    |  45 +------
 6 files changed, 140 insertions(+), 146 deletions(-)

commit 27c7a20ff7f122bf11952e1d4ceaf2380ee8a3e3
Author: Gene Z. Ragan <gzr@eazel.com>
Date:   Fri May 26 23:57:36 2000 +0000

    All of the below is work in progress on the Files and Programs capplet. I
    
    2000-05-26  Gene Z. Ragan  <gzr@eazel.com>
    
        All of the below is work in progress on the Files and Programs
        capplet.  I am currently retro-fitting jrb's capplet to use
        our modified capplet layout and new gnome-vfs mime API.
        This capplet does not currently work properly, but does build and
        causes no harm if run.
    
        * mime-type-capplet/edit-window.c: (ext_remove), (apply_changes),
        (initialize_main_win), (initialize_main_win_vals),
        (launch_edit_window), (hide_edit_window), (show_edit_window),
        (populate_application_menu), (populate_component_menu):
    
        * mime-type-capplet/mime-data.c: (selected_row_callback),
        (edit_clicked):
    
        * mime-type-capplet/nautilus-mime-type.desktop:
        Changed entries so capplet would register itself as "Files and Programs"

 capplets/file-types/edit-window.c              | 377 ++++++++++---------------
 capplets/file-types/edit-window.h              |   5 +-
 capplets/file-types/mime-data.c                |   4 +-
 capplets/file-types/nautilus-mime-type.desktop |  51 +---
 4 files changed, 164 insertions(+), 273 deletions(-)

commit 641d410d53fb9dbc045c0f328340268220413d63
Author: Ramiro Estrugo <ramiro@src.gnome.org>
Date:   Wed May 24 18:12:35 2000 +0000

    Rename the 'mime-type' capplet to 'nautilus-mime-capplet' to avoid
    clobbering the control-center's one.

 capplets/file-types/.cvsignore                 |   2 +-
 capplets/file-types/Makefile.am                |  24 +++--
 capplets/file-types/file-types-capplet.c       | 142 +++++++++++++++++++++++++
 capplets/file-types/mime-type-capplet.c        | 142 -------------------------
 capplets/file-types/mime-type.desktop          |  52 ---------
 capplets/file-types/nautilus-mime-type.desktop |  52 +++++++++
 6 files changed, 210 insertions(+), 204 deletions(-)

commit 674dd004d828cfa7a47107de97b0248e96b949ed
Author: Ramiro Estrugo <ramiro@src.gnome.org>
Date:   Tue May 23 23:23:57 2000 +0000

    mime-type-capplet/edit-window.c, mime-type-capplet/edit-window.h,
    
    * Makefile.am:
    * configure.in:
    * mime-type-capplet/.cvsignore:
    * mime-type-capplet/Makefile.am:
    * mime-type-capplet/edit-window.c,
    * mime-type-capplet/edit-window.h,
    * mime-type-capplet/mime-data.c,
    * mime-type-capplet/mime-data.h,
    * mime-type-capplet/mime-info.c,
    * mime-type-capplet/mime-info.h,
    * mime-type-capplet/mime-type-capplet.c,
    * mime-type-capplet/mime-type.desktop,
    * mime-type-capplet/new-mime-window.c,
    * mime-type-capplet/new-mime-window.h:
    Copy mime-type capplet from the control-center so that it can be
    improved and made to use gnome-vfs.
    
    This has the unfortunate side-effect of introducing a dependency
    on libcapplet.  This is temporary until the capplet can move back
    to the control-center.  At that time, the control-center will
    depend on gnome-vfs and eveyone will live happily ever after.

 capplets/file-types/.cvsignore          |   5 +
 capplets/file-types/Makefile.am         |  29 ++
 capplets/file-types/edit-window.c       | 577 ++++++++++++++++++++++++++++
 capplets/file-types/edit-window.h       |  15 +
 capplets/file-types/mime-data.c         | 656 ++++++++++++++++++++++++++++++++
 capplets/file-types/mime-data.h         |  34 ++
 capplets/file-types/mime-info.c         | 492 ++++++++++++++++++++++++
 capplets/file-types/mime-info.h         |  17 +
 capplets/file-types/mime-type-capplet.c | 142 +++++++
 capplets/file-types/mime-type.desktop   |  52 +++
 capplets/file-types/new-mime-window.c   | 116 ++++++
 capplets/file-types/new-mime-window.h   |  14 +
 12 files changed, 2149 insertions(+)

commit 7b219f893b64cd9b611c5f1388d43ff17a183137
Author: jfell <jfell@src.gnome.org>
Date:   Mon May 22 17:51:15 2000 +0000

    Updated French translation

 po/ChangeLog |   4 ++
 po/fr.po     | 188 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 111 insertions(+), 81 deletions(-)

commit feca3a5889acfc504af0cd904f964013336cbf4c
Author: Valek Frob <frob@src.gnome.org>
Date:   Sat May 20 18:16:54 2000 +0000

    Updated russian translation.

 po/ChangeLog |   4 +++
 po/ru.po     | 116 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 73 insertions(+), 47 deletions(-)

commit 8623e418cefbe5e1869cb171653fe435264ea876
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun May 14 23:36:54 2000 +0000

    Added Lithuanian strings

 capplets/theme-switcher/theme-selector.desktop | 4 ++++
 1 file changed, 4 insertions(+)

commit f7206cb06451dd5f16b8f6a3047135754800f1d2
Author: Jesus Bravo Alvarez <jesusb@src.gnome.org>
Date:   Thu May 11 22:10:40 2000 +0000

    Fixed Galician translation

 po/gl.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 915f7137061ffb7a46d7830d415d3c737b354630
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Wed May 10 12:15:39 2000 +0000

    Szabolcs BAN <shooby@gnome.hu>
    
     * Updated.

 po/hu.po | 51 +++++++++++++++++++++++++++++----------------------
 1 file changed, 29 insertions(+), 22 deletions(-)

commit f2ae35066c47c247a6cfbb85031eadcb429dd5cd
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun May 7 03:15:00 2000 +0000

    Updated Lithuanian file

 po/lt.po | 178 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 123 insertions(+), 55 deletions(-)

commit 25b6cb8d6f82d7f707ccf39f180942d6f5500366
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu May 4 13:02:30 2000 +0000

    Updated ca.po

 po/ca.po | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2b8e2d01376c1080ea0f4b49255f25b0eaa88477
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed May 3 21:51:30 2000 +0000

    Updated Catalan file

 po/ca.po | 22 ++++++++++++++++++++--
 po/hr.po | 64 ++++++++++++++++++++++++++++++++--------------------------------
 2 files changed, 52 insertions(+), 34 deletions(-)

commit 01460469a2577bd150d7528d5017eeaf7f6538e0
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Apr 19 20:39:09 2000 +0000

    Updated Danish file

 po/ChangeLog | 1 +
 po/da.po     | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 80821c6a63985570336be4201a7494194638a61f
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Apr 19 12:06:40 2000 +0000

    Updated Catalan file

 po/ChangeLog |   4 +
 po/ca.po     | 631 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 365 insertions(+), 270 deletions(-)

commit b92729d60869f0da5766b0212f0aefcbb5b1a9a4
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Apr 15 23:33:31 2000 +0000

    Updated Lithuanian file

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 1adfd3281e641ad14e602c2d2ddb8ab3dcac4668
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sat Apr 15 11:12:42 2000 +0000

    Added tr to ALL_LINGUAS

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ac0d2385f94ceceb038cc25d80383bbf15de88d1
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Sat Apr 15 11:11:40 2000 +0000

    Added the Turkish translation for the control-center

 po/ChangeLog |    4 +
 po/tr.po     | 1509 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1513 insertions(+)

commit 9277f2af5d7a9478cc4bc301103980950c64abb9
Author: Ville Hautamaki <ville@src.gnome.org>
Date:   Fri Apr 14 12:46:22 2000 +0000

    Desktop and translation Finnish update
    
    
    Desktop and translation Finnish update
    
    Ville

 capplets/theme-switcher/theme-selector.desktop |  4 --
 po/fi.po                                       | 54 ++++++++++++--------------
 2 files changed, 25 insertions(+), 33 deletions(-)

commit a43e777fee2d3840bf563593d8fddfde5b4be601
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Apr 11 12:51:17 2000 +0000

    Updated Spanish and Lithuanian files

 po/es.po | 120 +++++++++++++++++++++++++++++++--------------------------------
 po/et.po |   2 +-
 po/lt.po |  82 +++++++++++++++++++++----------------------
 po/pl.po |   6 ++--
 po/ro.po |   2 +-
 po/ru.po |   2 +-
 po/uk.po |   2 +-
 7 files changed, 109 insertions(+), 107 deletions(-)

commit 52acafdd0af5019dc95defc54974113749e7d8d4
Author: Jesus Bravo Alvarez <jesusb@src.gnome.org>
Date:   Mon Apr 10 22:27:56 2000 +0000

    Updated Galician translation

 po/ChangeLog |   4 +
 po/gl.po     | 398 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 215 insertions(+), 187 deletions(-)

commit 11a3941e03e0cc3c4c8bdc68d2e0e1384e79ff76
Author: Fatih Demir <kabalak@src.gnome.org>
Date:   Mon Apr 10 16:38:03 2000 +0000

    Added [tr] to the files

 ChangeLog                                      | 6 ++++++
 capplets/theme-switcher/theme-selector.desktop | 2 ++
 2 files changed, 8 insertions(+)

commit 2073ad8066ec696e8d79a16cb6d7ba583962c264
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Apr 8 01:47:55 2000 +0000

    added Lithuanian entries to *.desktop files

 ChangeLog                                      | 4 ++++
 capplets/theme-switcher/theme-selector.desktop | 2 ++
 2 files changed, 6 insertions(+)

commit 74d49c09d0d98f557abc8ca7983d3230dedc134e
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Apr 7 09:39:19 2000 +0000

    updated Lithuanian file

 po/ChangeLog |  4 ++++
 po/lt.po     | 19 ++++++++-----------
 2 files changed, 12 insertions(+), 11 deletions(-)

commit 314d88f1e7e33281c41fab2122647e315c278b0e
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Apr 5 22:15:41 2000 +0000

    updated Spanish language file

 po/ChangeLog |   4 ++
 po/ca.po     | 120 +++++++++++++++++++++++-------------------
 po/es.po     | 102 ++++++++++++++++++++++--------------
 po/hr.po     | 169 ++++++++++++++++++++++++++++++++++-------------------------
 4 files changed, 230 insertions(+), 165 deletions(-)

commit 8fe17b33c96005033ca15ce5f74aca5b0add2b76
Author: Dan Damian <dand@src.gnome.org>
Date:   Wed Apr 5 18:35:04 2000 +0000

    Updated Romanian translation.

 po/ro.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1025417a1cb2a2b4c715c2866d851720528d59e8
Author: Dan Damian <dand@src.gnome.org>
Date:   Wed Apr 5 15:30:08 2000 +0000

    Updated Romanian translation.

 po/ChangeLog |   4 +
 po/ro.po     | 250 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 156 insertions(+), 98 deletions(-)

commit a9c8e6a5c024e64f121193e2ca29c84040a7eeef
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Tue Apr 4 18:32:44 2000 +0000

    Updated Polish translation

 po/ChangeLog |  4 ++++
 po/pl.po     | 72 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 40 insertions(+), 36 deletions(-)

commit c888f46f149264b88568f05e6d56a99d83a73a2f
Author: Ville Hautamaki <ville@src.gnome.org>
Date:   Mon Apr 3 08:51:52 2000 +0000

    Pauli Virtanen updated The Finnish translation

 po/ChangeLog |   3 +
 po/fi.po     | 462 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 258 insertions(+), 207 deletions(-)

commit abe4b43150a72b17bccf7ad5bec45391f46bfe8f
Author: Spiros Papadimitriou <spapadim@src.gnome.org>
Date:   Fri Mar 31 17:59:03 2000 +0000

    - Minor fix.

 po/el.po | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 8d810686c6b5852b93110372cb32112dea6ce4e5
Author: Spiros Papadimitriou <spapadim@src.gnome.org>
Date:   Fri Mar 31 17:48:32 2000 +0000

    - Updated Greek (el) translation.

 po/ChangeLog |   4 ++
 po/el.po     | 137 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 77 insertions(+), 64 deletions(-)

commit d19a856aee417ead66d970ebea480acea05beff4
Author: Birger Langkjer/danish translations <birger@src.gnome.org>
Date:   Fri Mar 31 01:31:43 2000 +0000

    Modified Files: balsa/po/da.po control-center/po/da.po Tag:
    
    
     Modified Files:
        balsa/po/da.po control-center/po/da.po
      Tag: control-center-1-0
        control-center-1-0/po/da.po
      No tag
        ggv/po/da.po gnome-applets/po/da.po
        gnome-media/tcd/gtcd.desktop
        gnome-pim/gncal/calendar-conduit-control-applet.desktop
        gnome-pim/gncal/gncal.desktop
        gnome-pim/gncal/todo-conduit-control-applet.desktop
        gnome-pim/po/da.po
        gnome-utils/mini-utils/gcolorsel/gcolorsel.desktop
        gnome-utils/po/da.po magicdev/cd.desktop

 po/da.po | 224 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 137 insertions(+), 87 deletions(-)

commit c0f06240e5f808ab8c23af8dc29971452d67852f
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Mar 29 02:18:02 2000 +0000

    added Lithuanian file

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/el.po     |    3 +-
 po/lt.po     | 1531 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/pl.po     |    7 +-
 6 files changed, 1547 insertions(+), 5 deletions(-)

commit 684be8992282ab7851a7ee1e04000c974b600bdb
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Mon Mar 27 02:57:52 2000 +0000

    Update.
    
    * de.po: Update.

 po/ChangeLog |   4 +++
 po/de.po     | 111 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 67 insertions(+), 48 deletions(-)

commit f6a260c1fe6f0e274dee8bdd688ff3b75d30dbd7
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Mon Mar 27 02:42:38 2000 +0000

    Add some more dots to messages.
    
    * capplets/mime-type/mime-info.c: Add some more dots to messages.

 ChangeLog                      | 4 ++++
 capplets/mime-type/mime-info.c | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit b26f65dadc2de53977fef73b9175c7414caf57eb
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Mon Mar 27 02:06:54 2000 +0000

    Add ca, el, hr, and uk. Sort alphabetically.
    
    * configure.in (ALL_LINGUAS): Add ca, el, hr, and uk. Sort alphabetically.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit f404a734de4a868b4128a9f434de3406e452e36c
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Mon Mar 13 19:53:59 2000 +0000

    Updated.

 po/ChangeLog |  4 ++++
 po/ga.po     | 28 ++++++++--------------------
 2 files changed, 12 insertions(+), 20 deletions(-)

commit be915147dc3fbbfd4a8e21ae4fbd72c9620e18e1
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   Sat Mar 11 22:44:37 2000 +0000

    updates.

 po/ChangeLog |   4 +
 po/ga.po     | 661 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 309 insertions(+), 356 deletions(-)

commit f6d31a57ecf40b49eb02037fb62e207585cc3d80
Author: Birger Langkjer/danish translations <birger@src.gnome.org>
Date:   Sat Mar 4 23:33:02 2000 +0000

    Modified Files: achtung/po/da.po control-center/po/da.po gedit/po/da.po
    
    
    Modified Files:
        achtung/po/da.po control-center/po/da.po gedit/po/da.po
        glade/po/da.po gnome-applets/po/da.po gnome-libs/po/da.po
        gnome-vfs/po/da.po gnomeicu/po/da.po

 po/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 68a06d00f0e18bd86171f8a533616a1a29dc27b1
Author: Christopher R. Gabriel <cgabriel@src.gnome.org>
Date:   Sun Feb 27 01:10:27 2000 +0000

    Updated italian translation

 po/ChangeLog |   4 +
 po/it.po     | 255 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 114 insertions(+), 145 deletions(-)

commit ab278451245b99531181e817599db941c1fe88e4
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Mon Feb 21 18:33:37 2000 +0000

    Salvaged my changes before deleting my local tree.

 po/de.po | 219 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 125 insertions(+), 94 deletions(-)

commit c2f71a78f067a1ca9c87849032b9397be9787ce8
Author: iholmes <iholmes>
Date:   Sun Feb 6 21:39:48 2000 +0000

    Add libglade checks Use GdkPixbuf for image loading. Use gnome-libs2
    
    Add libglade checks
    Use GdkPixbuf for image loading.
    Use gnome-libs2 functions instead of gnome-libs1

 ChangeLog    | 4 ++++
 configure.in | 2 ++
 2 files changed, 6 insertions(+)

commit 54b1f55f3765b60b9be1ccfa4545edf3955c7b7b
Author: Yuan-Chung Cheng <platin@src.gnome.org>
Date:   Sun Jan 30 10:38:14 2000 +0000

    Added po file from TurboLinux Chinese Develop Team.

 ChangeLog          |    5 +
 configure.in       |    2 +-
 po/ChangeLog       |    4 +
 po/zh_CN.GB2312.po | 1511 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 1521 insertions(+), 1 deletion(-)

commit c7156fd2b217b01bfb58eaa7bc99e6a301526f43
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Fri Jan 28 19:26:26 2000 +0000

    ja.po: Add some untranslated.

 po/ja.po | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit cfa14fda45201962394892b707e3a52e01ed52e9
Author: Spiros Papadimitriou <spapadim@src.gnome.org>
Date:   Sun Jan 23 10:26:22 2000 +0000

    - Added original version of Greek translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 88faedd8b292879a97572087063cbb307056c157
Author: Spiros Papadimitriou <spapadim@src.gnome.org>
Date:   Sun Jan 23 10:24:14 2000 +0000

    - Added original version of Greek translation (still missing a few parts...).

 po/el.po | 1527 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1527 insertions(+)

commit abf55dfec026a0a90340a3d79662175cf841564c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jan 13 23:05:46 2000 +0000

    Massive changes to build system to permit gnome-2.0 compilation. From here
    
    2000-01-13  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: Massive changes to build system to permit
        gnome-2.0 compilation.  From here on out, you need gnome-2.0 or
        greater installed.
    
    You will prolly not be able to get this to work.

 ChangeLog                           |   6 ++
 Makefile.am                         |   7 +-
 autogen.sh                          | 128 +++++++++++++++++++++++++++++++++++-
 capplets/mime-type/Makefile.am      |   4 +-
 capplets/theme-switcher/Makefile.am |   4 +-
 capplets/url-properties/Makefile.am |   4 +-
 capplets/wm-properties/Makefile.am  |   4 +-
 configure.in                        |  24 ++-----
 8 files changed, 146 insertions(+), 35 deletions(-)

commit 60041f483a36832d07ed443fb347b59446a6a2a5
Author: Mikael Djurfeldt <mdj@src.gnome.org>
Date:   Fri Jan 7 15:14:32 2000 +0000

    *** empty log message ***

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit b3a408f9da4698f774f19e4b8478a888b84a0aa4
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Mon Jan 3 19:57:50 2000 +0000

    A little script that lets people update the .pot file without makefiles
    
    2000-01-03  Kjartan Maraas  <kmaraas@online.no>
    
        * update.sh: A little script that lets people
        update the .pot file without makefiles etc.

 po/ChangeLog | 5 +++++
 po/update.sh | 8 ++++++++
 2 files changed, 13 insertions(+)

commit 2a23dc40a66ec42c57db3804826a4edb63162a2a
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Wed Dec 29 00:24:15 1999 +0000

    Updated Polish translation

 po/ChangeLog |  4 ++++
 po/pl.po     | 59 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 47 insertions(+), 16 deletions(-)

commit 61cd563783b3f87dfb30ab01f2a81f5b6cec057c
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Thu Dec 23 12:19:31 1999 +0000

    Assigned icon

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 4b49f5db297d40a6591104b3690d84c40a8a829f
Author: Vladimir Vuksan <vvuksan@src.gnome.org>
Date:   Tue Dec 21 05:06:53 1999 +0000

    Initial checkin

 po/hr.po | 1441 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1441 insertions(+)

commit a993e405e67f8c73530503f996ee151840565cd9
Author: Birger Langkjer/danish translations <birger@src.gnome.org>
Date:   Fri Dec 17 01:55:11 1999 +0000

    ----------------------------------------------------------------------
    
    
     ----------------------------------------------------------------------
        control-center/capplets/bell-properties/bell-properties.desktop
        control-center/capplets/desktop-links/Appearances.directory
        control-center/capplets/desktop-links/Gnome.directory
        control-center/capplets/desktop-links/Multimedia.directory
        control-center/capplets/gnome-edit-properties/gnome-edit-properties.desktop
        control-center/capplets/keyboard-properties/keyboard-properties.desktop
        control-center/capplets/mouse-properties/mouse-properties.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/3d.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Ant.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Atlantis.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Attraction.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Bsod.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Bubble3d.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Bubbles.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Cage.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Compass.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Coral.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Crystal.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Decayscreen.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Deluxe.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Demon.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Discrete.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Distort.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Flag.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Flame.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Forest.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/GLPlanet.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Galaxy.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Gears.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Greynetic.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Halo.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Interference.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Jigsaw.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Julia.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Kaleidescope.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Kumppa.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Laser.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Lightning.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Lisa.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Lissie.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Loop.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Maze.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Moebius.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Moire.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Moire2.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Morph3d.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Mountain.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Noseguy.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Penetrate.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Penrose.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Pipes.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Pyro.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Qix.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Rocks.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Rorschach.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Rotor.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Rubik.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Sierpinski.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Slidescreen.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Slip.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Sonar.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Sphere.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Spiral.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Spotlight.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Sproingies.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Squiral.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Stairs.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Starfish.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Strange.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Superquadrics.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Swirl.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Triangle.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Truchet.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Vines.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Worm.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Xflame.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Xjack.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Xlyap.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Xmatrix.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/Xroger.desktop
        control-center/capplets/screensaver-properties/screensaver-desktops/screensaver-properties.desktop
        control-center/capplets/session-properties/session-properties.desktop
        control-center/capplets/sound-properties/sound-properties.desktop
        control-center/capplets/theme-switcher/theme-selector.desktop
        control-center/capplets/ui-properties/application.desktop
        control-center/capplets/ui-properties/mdi.desktop
        control-center/capplets/url-properties/url-properties.desktop
        control-center/capplets/wm-properties/wm-properties.desktop
        control-center/capplets/wm-properties/wm-desktops/Enlightenment.desktop
        control-center/capplets/wm-properties/wm-desktops/IceWM.desktop
        control-center/capplets/wm-properties/wm-desktops/Scwm.desktop
        control-center/capplets/wm-properties/wm-desktops/WindowMaker.desktop
        control-center/capplets/wm-properties/wm-desktops/twm.desktop
        control-center/control-center/gnomecc.desktop
        control-center/po/da.po gtop/po/da.po mc/po/da.po
     ----------------------------------------------------------------------

 capplets/theme-switcher/theme-selector.desktop |  2 ++
 po/da.po                                       | 27 +++++++++++++-------------
 2 files changed, 15 insertions(+), 14 deletions(-)

commit 87fc78f00025894ec467f60b6e7278949df9a51a
Author: Birger Langkjer/danish translations <birger@src.gnome.org>
Date:   Sun Dec 12 21:32:35 1999 +0000

    Modified Files: control-center/po/da.po gnome-core/po/da.po
    
    
     Modified Files:
        control-center/po/da.po gnome-core/po/da.po
        gnome-pilot/po/da.po

 po/da.po | 106 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 53 insertions(+), 53 deletions(-)

commit 175cae8e596ca128bdb7d096bc79395e01683552
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Dec 9 18:19:25 1999 +0000

    small update of fr.po

 po/ca.po |  22 +++----
 po/da.po |   6 +-
 po/fr.po | 209 ++++++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 133 insertions(+), 104 deletions(-)

commit 2737834296719cf76f7e20b455589ba06a23a3cf
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Fri Nov 26 10:21:24 1999 +0000

    Updated Norwegian translation.
    
    1999-11-26  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 49 ++++++++++++++++++++-----------------------------
 2 files changed, 24 insertions(+), 29 deletions(-)

commit 47a6051155cf2db49ae85e3cd5bfe32ed7561adb
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Wed Nov 24 18:35:36 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
    * Updated Hungarian translations

 po/hu.po | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit f1ccc793592351dfae0b9203e3866ba92ff978dd
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Nov 10 16:14:19 1999 +0000

    new desktop entries

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 46cb5c5ff23058b8c85b95376bec06f42635a074
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Nov 6 13:47:16 1999 +0000

    updated es.po

 po/ca.po | 28 ++++++++++++++--------------
 po/da.po | 12 ++++++------
 po/es.po |  8 ++++----
 3 files changed, 24 insertions(+), 24 deletions(-)

commit 045ab86872e09fa9569f0de55c93937f34d0a46f
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Sat Nov 6 11:35:43 1999 +0000

    Updated Norwegian translation.
    
    1999-11-06  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 71 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 44 insertions(+), 31 deletions(-)

commit 0006f271ffb5970cbba41a4138fc43a5d0afffdb
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Mon Nov 1 10:06:31 1999 +0000

    Updated Ukrainian Translation

 po/ChangeLog | 4 ++++
 po/uk.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit b566aecfd6ed90f715b199b87f6597ffa423cf8a
Author: ubén López Gómez/gallego translations <ryu@src.gnome.org>
Date:   Sun Oct 31 22:11:59 1999 +0000

    Updated galician translation
    
    
    Updated galician translation

 po/ChangeLog | 4 ++++
 po/gl.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1583e9618366589c7ada63d38c89a5622718ee45
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Fri Oct 29 07:42:58 1999 +0000

    Added Ukrainian Translations

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 po/uk.po                                       | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 7f5127e58ea086aa66565c5973af2f710f9d6240
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   Thu Oct 28 15:34:21 1999 +0000

    Added Ukrainian Translation

 po/ChangeLog |    4 +
 po/uk.po     | 1500 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1504 insertions(+)

commit e119f33fc6dabf40e258cf7644d31b3596e91c93
Author: Yuan-Chung Cheng <platin@src.gnome.org>
Date:   Tue Oct 26 03:07:54 1999 +0000

    control-center's chinese translation of the menu entry,
    translated by S.J. Luo <u8711505@cc.nctu.edu.tw>, CLE Team.

 capplets/theme-switcher/theme-selector.desktop | 4 ++++
 1 file changed, 4 insertions(+)

commit e14dde18a9dc6fef7741f1562266294479668b3e
Author: Yuan-Chung Cheng <platin@src.gnome.org>
Date:   Tue Oct 26 02:43:46 1999 +0000

    po file for zh_TW.Big5

 configure.in     |    2 +-
 po/zh_TW.Big5.po | 1522 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1523 insertions(+), 1 deletion(-)

commit 390899451cddeb834b2e561a4d22bf4963a16c6f
Author: Jesus Bravo Alvarez <jesusb@src.gnome.org>
Date:   Sun Oct 24 02:11:53 1999 +0000

    Modified Galician translation entries in ChangeLog

 ChangeLog    | 2 +-
 po/ChangeLog | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 4dfe9f650e28a73583780bf7d80ae9212b471877
Author: ubén López Gómez/gallego translations <ryu@src.gnome.org>
Date:   Sun Oct 24 02:00:57 1999 +0000

    Officially added the gallician language.
    
    
    
    Officially added the gallician language.

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 po/gl.po     | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit b52c808ad0159af78b511ee65a785faded18b59e
Author: ubén López Gómez/gallego translations <ryu@src.gnome.org>
Date:   Sun Oct 24 01:50:59 1999 +0000

    A lot of bugs in the file, and some mistakes in the translation.
    
    
    
    A lot of bugs in the file, and some mistakes in the translation.

 po/gl.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 6440fa2ce8e5be94af7df2967749411286a79526
Author: David Šauer <davidsa@src.gnome.org>
Date:   Fri Oct 22 00:32:08 1999 +0000

    Updates of czech .po

 po/cs.po | 162 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 96 insertions(+), 66 deletions(-)

commit 4cec8ec281c7177868e688f02b5ce635b6f91399
Author: ubén López Gómez/gallego translations <ryu@src.gnome.org>
Date:   Mon Oct 18 21:37:27 1999 +0000

    Galician translation of GNOME Control Center
    
    
    Galician translation of GNOME Control Center

 po/gl.po | 1555 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1555 insertions(+)

commit ffc972d682f15d7a754a52986f8ba1e36e53926d
Author: David Šauer <davidsa@src.gnome.org>
Date:   Fri Oct 15 17:20:06 1999 +0000

    Update to Czech translations in most *.desktop

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 013d02c45ce56c2c88a78f60df713bb2076e1047
Author: David Šauer <davidsa@src.gnome.org>
Date:   Fri Oct 15 15:08:55 1999 +0000

    Updated cs.po

 po/cs.po | 245 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 130 insertions(+), 115 deletions(-)

commit 08b80e37813f82ade181f053858038b80a52485e
Author: ÉRDI Gergo <cactus@src.gnome.org>
Date:   Sat Oct 9 15:18:44 1999 +0000

    Hungarian translation update

 po/hu.po | 2 ++
 1 file changed, 2 insertions(+)

commit 4febf47fb6b902d88df9c9aef05c0199bbd4309b
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Oct 7 11:16:01 1999 +0000

    updated pt_BR translations
    
    rodrigo@conectiva.com.br

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 62 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 35 insertions(+), 31 deletions(-)

commit c02b5e2adbf26382c170a3b9726f41101ed193b6
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Thu Oct 7 09:54:32 1999 +0000

    German translation

 po/ChangeLog |  4 ++++
 po/de.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 5b9b78316df70832e2b2bd68d71f402bad177ecd
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Oct 6 13:46:39 1999 +0000

    updated danish language file

 po/ChangeLog |  4 ++++
 po/da.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 4438f3dad288db0ad01a0e7b99b341c36cc0d26c
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Tue Oct 5 22:27:06 1999 +0000

    ru.po: updated Russian language file

 po/ChangeLog |   4 +++
 po/ru.po     | 112 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 80 insertions(+), 36 deletions(-)

commit bc8dddc9ac93df295eba31ffcaad5afa803d9e18
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Oct 5 20:15:57 1999 +0000

    1.0.51 released.
    
    
    1999-10-05  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: 1.0.51 released.
    
    1999-10-05  Jonathan Blandford  <jrb@redhat.com>
    
        * tree.c (read_directory): let's close our directory.  Fix
              (small) memory leak. (thanks to mem-buddy for catching this.)
    
    1999-10-05  Jonathan Blandford  <jrb@redhat.com>
    
        * ui-properties.c (try,revert): Add gnome_preferences_save ();

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 1c15e4cb5073211895a3b7e6111b6140c0bcd43f
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Oct 5 19:26:40 1999 +0000

    updated spanish language file

 po/ChangeLog |   4 +
 po/ca.po     | 316 ++++++++++++++++++++++++++++++++---------------------------
 po/da.po     | 135 +++++++++++++------------
 po/es.po     |  12 +--
 4 files changed, 255 insertions(+), 212 deletions(-)

commit d6a90bbd2381adaa5a2ce156bb8bf6259b492ec3
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Tue Oct 5 07:39:45 1999 +0000

    ru.po: updated Russian language file

 po/ChangeLog |   4 ++
 po/ru.po     | 178 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 96 insertions(+), 86 deletions(-)

commit d37969287ca67993a5afb4aa8173b5f5b53e0e53
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Oct 1 21:39:01 1999 +0000

    added po file from <Birger Langkjer>
    
    
    1999-10-01  Jonathan Blandford  <jrb@redhat.com>
    
        * da.po: added po file from <Birger Langkjer>

 po/ChangeLog |   4 ++
 po/da.po     | 157 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 76 insertions(+), 85 deletions(-)

commit a43cc544554a5309dac40af3ac7d0531351e54a1
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Oct 1 13:26:19 1999 +0000

    minor fixes

 po/ChangeLog | 7 +++++++
 po/nl.po     | 4 ++--
 po/pl.po     | 1 -
 3 files changed, 9 insertions(+), 3 deletions(-)

commit 64e9d4f3965efa45daf32975375d26142b28a1e1
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Oct 1 13:21:29 1999 +0000

    update da and es files

 po/da.po | 334 +++++++++++++++++++++++++++++++++++++--------------------------
 po/es.po | 216 +++++++++++++++++++++++------------------
 2 files changed, 316 insertions(+), 234 deletions(-)

commit 37dd196884132f937bc7af31aad9825a0b5b094e
Author: Gert Dewit <gertd@src.gnome.org>
Date:   Fri Oct 1 08:14:23 1999 +0000

    first Dutch translation

 po/nl.po | 635 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 363 insertions(+), 272 deletions(-)

commit 4bf3ad963cd1e2303cee8e7e2ea8446471f14f12
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Sep 30 22:08:24 1999 +0000

    updated pt_BR.po

 po/pt_BR.po | 109 +++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 68 insertions(+), 41 deletions(-)

commit 15ca14d23ebced16abcfb767ecff700fd35b1505
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Sep 30 22:00:37 1999 +0000

    update pt_BR translations

 po/pt_BR.po | 38 ++++++++++++++++++++++++++++++++------
 1 file changed, 32 insertions(+), 6 deletions(-)

commit c7fb6792fd96b8cdb420e7aa462037100ed705f1
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Sep 30 21:29:43 1999 +0000

    Updated Norwegian translation.
    
    1999-09-30  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 31 ++++++++++++++++++++-----------
 2 files changed, 24 insertions(+), 11 deletions(-)

commit b9b50c39f66c2ffb8d67e86f554857d7ea4b01f2
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Sep 30 21:03:38 1999 +0000

    updated pt_BR translations

 po/pt_BR.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 39 insertions(+), 13 deletions(-)

commit 48dd9e3b2dfe0828f9ce04337ef8b8bfc626f076
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Sep 30 20:28:08 1999 +0000

    updated pt_BR translations

 po/pt_BR.po | 169 +++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 94 insertions(+), 75 deletions(-)

commit 1d46b826b847b2f877d70feb575400ccd0806154
Author: Tomas Ogren <stric@ing.umu.se>
Date:   Thu Sep 30 19:42:21 1999 +0000

    Updated.
    
    1999-09-30  Tomas Ogren  <stric@ing.umu.se>
    
    * sv.po: Updated.

 po/ChangeLog |  4 +++
 po/sv.po     | 96 +++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 66 insertions(+), 34 deletions(-)

commit 2475b439d14c7cf31b131156ab3442ff1dc29de5
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Sep 30 19:36:36 1999 +0000

    another i18n

 capplets/wm-properties/wm-properties-capplet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f68ae22143318f37a696ac5be5574e06324acf1
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Sep 30 19:35:54 1999 +0000

    forgot to I18N this.
    
    1999-09-30  Jonathan Blandford  <jrb@redhat.com>
    
            * capplets/wm-properties/wm-properties-capplet.c
            (show_restart_info): forgot to I18N this.

 ChangeLog                                      | 3 +++
 capplets/wm-properties/wm-properties-capplet.c | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit ec639169a25fceba987fbc3eee01c22a2173f543
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Thu Sep 30 19:21:20 1999 +0000

    updated pt_BR translations

 po/ChangeLog |  4 +++
 po/pt_BR.po  | 84 +++++++++++++++++++++---------------------------------------
 2 files changed, 33 insertions(+), 55 deletions(-)

commit 25f61dbfdbff5aee1b29a7882c6f44deaa1e55ec
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Sep 30 18:47:33 1999 +0000

    Updated Norwegian translation.
    
    1999-09-29  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated Norwegian translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 73 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 49 insertions(+), 28 deletions(-)

commit 1611c477d2183de13a81599d47407a9715e770cb
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Sep 30 18:22:25 1999 +0000

    removed some of the most bogus code I've seen in a while.
    
    
    1999-09-30  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/bell-properties/bell-properties.c (bell_setup): removed
        some of the most bogus code I've seen in a while.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 4fc132f7d8ed4533f81fcc67a2be834ae7a3bda1
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Sep 29 19:05:44 1999 +0000

    Give people the option to save right away.
    
    
    1999-09-29  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/wm-properties/wm-properties-capplet.c
        (show_restart_info): Give people the option to save right away.

 ChangeLog                                      |  5 ++++
 capplets/wm-properties/wm-properties-capplet.c | 38 ++++++++++++++++++--------
 2 files changed, 32 insertions(+), 11 deletions(-)

commit 2053d50a118e3b1a87f0a899be19b4b99902551b
Author: Gert Dewit <gertd@src.gnome.org>
Date:   Wed Sep 29 12:50:49 1999 +0000

    added empty nl.po file for new translator

 po/nl.po | 1392 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1392 insertions(+)

commit 8b813409e125a975c3f5d5b602a888e79be9cada
Author: Gert Dewit <gertd@src.gnome.org>
Date:   Wed Sep 29 12:50:08 1999 +0000

    Added empty nl translation for new translator

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e0a1c38c8fd32803d8310d16074fe09b379c6cd7
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Wed Sep 29 06:04:02 1999 +0000

    ja.po: Update from Itani Eiichiro
    
    
    
    ja.po: Update from Itani Eiichiro

 po/ChangeLog |  4 ++++
 po/ja.po     | 63 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 39 insertions(+), 28 deletions(-)

commit 52b93bbc84613cd9d4230dd32df7971e626c8273
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Sep 28 23:18:02 1999 +0000

    1.0.50
    
    
    1999-09-28  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: 1.0.50
    
        * capplets/wm-properties/wm-properties-capplet.c (select_row): now
        we set the sensitivity of the edit-button correctly.

 ChangeLog                                      | 7 +++++++
 capplets/wm-properties/wm-properties-capplet.c | 1 +
 configure.in                                   | 2 +-
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 569d22a9265ba20e84dd858f9426410a12920e95
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Tue Sep 28 22:07:59 1999 +0000

    Added Romainan translation from Dan Damian <dand@dnttm.ro>.
    
    1999-09-28  Kjartan Maraas  <kmaraas@online.no>
    
        * ro.po: Added Romainan translation from Dan
        Damian <dand@dnttm.ro>.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    5 +
 po/ro.po     | 1484 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 1494 insertions(+), 1 deletion(-)

commit e9e45331f2cc29fe7c5c8880fe0ad0bcab0477d9
Author: Richard Hult <rhult@src.gnome.org>
Date:   Mon Sep 27 17:05:15 1999 +0000

    Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 74 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 40 insertions(+), 38 deletions(-)

commit b3798db0e1368a8910ae9d4ee6a08c1e5f47bad6
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Sun Sep 26 22:12:20 1999 +0000

    Updated Polish translation

 po/ChangeLog |   4 +
 po/pl.po     | 727 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 365 insertions(+), 366 deletions(-)

commit 5f06ad87c9f93d4c633902f9ddc170c910cfe029
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Sun Sep 26 21:13:20 1999 +0000

    Updated translation.
    
    1999-09-26  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 29 +++++++++++++++--------------
 2 files changed, 19 insertions(+), 14 deletions(-)

commit c16eed369e76d7dab27e5db2089a74ccabea6923
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Sun Sep 26 17:51:32 1999 +0000

    Update translation for 1.0.40

 po/ChangeLog |  4 ++++
 po/sv.po     | 25 +++++++++++++++----------
 2 files changed, 19 insertions(+), 10 deletions(-)

commit 5546de34024d4e487c706762ef04f81da84096e7
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Fri Sep 24 18:39:45 1999 +0000

    Add pt_BR translations

 ChangeLog | 1 +
 1 file changed, 1 insertion(+)

commit 85686a3ac218003b170d481ba2a587299e57e32d
Author: Jorge Godoy <docsbr@src.gnome.org>
Date:   Fri Sep 24 17:43:33 1999 +0000

    Add Brazilian Portuguese (pt_BR) support and translations

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ChangeLog |    4 +
 po/pt_BR.po  | 1643 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 1652 insertions(+), 1 deletion(-)

commit e4d7a6079b1bfeee1dbdc30d4117990e01ec6276
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Fri Sep 24 16:17:57 1999 +0000

    Make 'dist-hook' targets, which copy the .spec file into $(distdir),
    
    
    
    Make 'dist-hook' targets, which copy the .spec file into $(distdir), depend upon the
    .spec file, so that the .spec file will be regenerated when a previously-compiled tree
    is 'dist'd with a new version number.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit da3c9d34afbb76bc9e0abbfd4020b55d2645fbdf
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Wed Sep 22 17:35:11 1999 +0000

    updated fr.po for 1.0.40
    
    * updated fr.po for 1.0.40

 po/ChangeLog | 5 ++++-
 po/fr.po     | 8 ++++++--
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 8c1069d5038495d4db696d5cf123d768830dd77d
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Tue Sep 21 17:03:20 1999 +0000

    german translation

 po/ChangeLog |  4 ++++
 po/de.po     | 23 ++++++++++++++---------
 2 files changed, 18 insertions(+), 9 deletions(-)

commit c89f1da0ab525fb572764dcf6b9d15394121b56f
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Tue Sep 21 09:19:08 1999 +0000

    Updated Polish translation

 po/ChangeLog | 5 +++++
 po/pl.po     | 5 +++++
 2 files changed, 10 insertions(+)

commit d0facf3f0c04a8b12322d95c12f28315f29092f4
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Tue Sep 21 07:06:37 1999 +0000

    ignore my_control_center_idl
    
    * .cvsignore: ignore my_control_center_idl

 .cvsignore | 1 +
 ChangeLog  | 4 ++++
 2 files changed, 5 insertions(+)

commit 72c13e8af062909c141ecc64a85ec64b2d03bcbf
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Sep 20 23:54:26 1999 +0000

    1.0.40

 ChangeLog                                      |   7 +
 capplets/wm-properties/wm-properties-capplet.c |  18 ++
 configure.in                                   |   2 +-
 po/cs.po                                       | 317 ++++++++++++------------
 po/da.po                                       | 184 +++++++-------
 po/de.po                                       |  98 ++++----
 po/en_GB.po                                    | 292 +++++++++++-----------
 po/es.po                                       | 328 +++++++++++++------------
 po/et.po                                       | 135 +++++-----
 po/fi.po                                       | 327 ++++++++++++------------
 po/fr.po                                       | 207 ++++++++--------
 po/ga.po                                       | 299 +++++++++++-----------
 po/hu.po                                       | 313 ++++++++++++-----------
 po/it.po                                       | 323 ++++++++++++------------
 po/ja.po                                       | 321 ++++++++++++------------
 po/no.po                                       | 164 +++++++------
 po/pl.po                                       | 184 +++++++-------
 po/pt.po                                       | 327 ++++++++++++------------
 po/ru.po                                       | 309 ++++++++++++-----------
 po/sv.po                                       | 107 ++++----
 20 files changed, 2235 insertions(+), 2027 deletions(-)

commit 62cc08f5cc05ef65ceb992daa34f6c7817a3d271
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Sep 20 21:50:08 1999 +0000

    Updated translation

 po/ChangeLog |   4 +
 po/ko.po     | 328 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 162 insertions(+), 170 deletions(-)

commit dcb0ff57f3e287f8a09ea7a21272bb953a305e98
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Mon Sep 20 20:00:41 1999 +0000

    Removed category column and added icon to "play" button

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 2ea25082032a3cf7f6e0a2567bc7e15ae31c0bfe
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Mon Sep 20 19:09:00 1999 +0000

    german translation

 po/ChangeLog |   4 ++
 po/de.po     | 129 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 56 insertions(+), 77 deletions(-)

commit f8e54eae578b8a7b89c4acf80844d9cd0f6a43e7
Author: Richard Hult <rhult@src.gnome.org>
Date:   Mon Sep 20 17:39:58 1999 +0000

    Updated Swedish desktop entries.

 ChangeLog                                      | 4 ++++
 capplets/theme-switcher/theme-selector.desktop | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 468ad47725c2e1c023b4c368c17957865787789f
Author: Lauris Kaplinski <lauris@src.gnome.org>
Date:   Fri Sep 17 23:10:56 1999 +0000

    Added Estonian tranlations (et.po, *.desktop, *.directory)

 ChangeLog                                      |    4 +
 capplets/theme-switcher/theme-selector.desktop |    2 +
 configure.in                                   |    2 +-
 po/ChangeLog                                   |    4 +
 po/et.po                                       | 1464 ++++++++++++++++++++++++
 5 files changed, 1475 insertions(+), 1 deletion(-)

commit 189d9b69f5a7f91ce0b35b5264f17f4b4851ae24
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Fri Sep 17 20:02:35 1999 +0000

    Updated translation

 po/ChangeLog |   4 +
 po/sv.po     | 321 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 154 insertions(+), 171 deletions(-)

commit 2686b4ec4457fa2f2778b0a6248908c85f0d9210
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Sep 17 19:52:41 1999 +0000

    fix revert-bug where hitting cancel right away caused the font to change.
    
    
    1999-09-17  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/theme-switcher/gui.c (update_theme_entries): fix
        revert-bug where hitting cancel right away caused the font to
        change.

 ChangeLog                          |  6 ++++++
 capplets/theme-switcher/gui.c      | 10 ++++++----
 capplets/theme-switcher/gui.c-6060 | 10 ++++++----
 3 files changed, 18 insertions(+), 8 deletions(-)

commit c9f79fc6aad2b0320435503c9a6d0f5008589467
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Fri Sep 17 18:39:39 1999 +0000

    Updated Danish translation from Kenneth Christiansen <kenneth@ripen.dk>.
    
    1999-09-17  Kjartan Maraas  <kmaraas@online.no>
    
        * da.po: Updated Danish translation from Kenneth
        Christiansen <kenneth@ripen.dk>.

 po/ChangeLog |   5 ++
 po/da.po     | 247 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 151 insertions(+), 101 deletions(-)

commit 518300bd2cc00c6617ad629edb9f3b953377af8b
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Mon Sep 13 22:21:56 1999 +0000

    Updated translation.
    
    1999-09-13  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated translation.

 po/ChangeLog |   4 ++
 po/no.po     | 169 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 89 insertions(+), 84 deletions(-)

commit aa9cd9f34a322dd1bcb1c0fb7bcb2cbe29d16f70
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Mon Sep 13 22:12:04 1999 +0000

    Update german translation

 po/ChangeLog |   4 +
 po/de.po     | 238 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 139 insertions(+), 103 deletions(-)

commit 8759b71d547ad077622599aa9da939c88b701510
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Sep 9 23:32:14 1999 +0000

    Updated Polish translation

 po/ChangeLog |   4 ++
 po/pl.po     | 166 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 88 insertions(+), 82 deletions(-)

commit cd43483d1c0f8bfc7bb7fcb72023a3c6a9246489
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Sep 9 18:02:32 1999 +0000

    Missed a NULL at the end of a g_strconcat. I wonder how this worked
    
    
    1999-09-09  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/parser.c
        (get_screensaver_widget): Missed a NULL at the end of a
        g_strconcat.  I wonder how this worked before.  Thanks to Morten
        Welinder <terra@diku.dk> for pointing this out.

 ChangeLog | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 9769c98bda9585801c8c21eea25307217e2e628b
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Wed Sep 8 10:13:50 1999 +0000

    1999--09-08  Vincent Renardias  <vincent@ldsol.com>
    
        * Updated fr.po:
        before: 283 translated messages, 13 fuzzy translations, 6 untranslated messages.
        after:  302 translated messages.

 po/ChangeLog |   6 +
 po/fr.po     | 947 +++++++----------------------------------------------------
 2 files changed, 112 insertions(+), 841 deletions(-)

commit a0340cbe7db3af12f2d00501f4bf8a5ed8978373
Author: 7 <jrb@redhat.com>
Date:   Tue Sep 7 19:44:26 1999 +0000

    Patch added from Iain Holmes <iain@webtribe.net> to add the ability to
    
    
    1999-09-07    <jrb@redhat.com>
    
        * capplets/mime-type/mime-type-capplet.c: Patch added from Iain
        Holmes <iain@webtribe.net> to add the ability to edit mime-type
        extensions.

 ChangeLog                              |   6 +
 capplets/mime-type/edit-window.c       | 311 ++++++++++++++++++++++++++++++---
 capplets/mime-type/mime-data.c         |  81 +++++++--
 capplets/mime-type/mime-data.h         |   4 +
 capplets/mime-type/mime-info.c         |   4 +-
 capplets/mime-type/mime-type-capplet.c |   4 +-
 6 files changed, 364 insertions(+), 46 deletions(-)

commit 707db9524a25fb60330612a6810c6f04a339b1fe
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Sep 6 10:02:58 1999 +0000

    updated es & da files
    completed the headers on some po files

 po/ca.po    | 1206 ++++++++++++++++++++++++++++++++++++++++++++------------
 po/cs.po    |  311 ++++++++-------
 po/da.po    |  369 +++++++++--------
 po/de.po    |  266 +++++++------
 po/en_GB.po |  272 +++++++------
 po/es.po    |  302 ++++++++------
 po/fi.po    |  295 ++++++++------
 po/fr.po    | 1271 ++++++++++++++++++++++++++++++-----------------------------
 po/ga.po    |  775 +++++++++++++++++++-----------------
 po/hu.po    |  286 ++++++++------
 po/it.po    |  336 +++++++++-------
 po/ja.po    |  354 ++++++++++-------
 po/ko.po    |  295 ++++++++------
 po/no.po    |   90 ++---
 po/pl.po    |  266 +++++++------
 po/pt.po    |  323 ++++++++-------
 po/ru.po    |  309 ++++++++-------
 po/sv.po    |  295 ++++++++------
 18 files changed, 4429 insertions(+), 3192 deletions(-)

commit e80bd047e30845a9d384d39bb8e826e649db81f0
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Fri Sep 3 21:31:16 1999 +0000

    Updated translation.
    
    1999-09-03  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated translation.

 po/ChangeLog |   4 ++
 po/no.po     | 214 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 132 insertions(+), 86 deletions(-)

commit 99069f63491f5fbee13d59fbb4af83bf1551efe2
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Sep 2 23:28:23 1999 +0000

    Added Polish translations (*.desktop, *.directory).
    
    
    Added Polish translations (*.desktop, *.directory).

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 764440033fcb363e605cb4c6ce8346f6fc938204
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Thu Sep 2 22:57:01 1999 +0000

    If help isn't found, display an error message.
    
    
    
    If help isn't found, display an error message.

 ChangeLog                                      | 4 ++++
 capplets/mime-type/mime-type-capplet.c         | 4 ++++
 capplets/theme-switcher/gui.c                  | 8 ++++++++
 capplets/theme-switcher/gui.c-6060             | 8 ++++++++
 capplets/wm-properties/wm-properties-capplet.c | 8 ++++++++
 5 files changed, 32 insertions(+)

commit f98afc603f8c1d67961453f47680947a9ce2be35
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Thu Sep 2 13:22:09 1999 +0000

    ja.po update from Itani Eiichiro.
    
    
    
    ja.po update from Itani Eiichiro.

 po/ChangeLog |   4 +
 po/ja.po     | 244 +++++++++++++++++++++++------------------------------------
 2 files changed, 98 insertions(+), 150 deletions(-)

commit 704d68f3b130e4be7cfde5bf5418e27563fb03bd
Author: Chyla Zbigniew <chyla@src.gnome.org>
Date:   Thu Sep 2 00:09:05 1999 +0000

    Updated polish translation

 po/ChangeLog |  4 ++++
 po/pl.po     | 67 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 37 insertions(+), 34 deletions(-)

commit 4969dfabc95e14bc061ece36211956b9f874e1c0
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Wed Sep 1 20:36:33 1999 +0000

    When reverting, store the executable name, not the viewed name.
    
    
    
    * capplets/gnome-edit-properties/gnome-edit-properties.c:
    When reverting, store the executable name, not the viewed name.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 3ff9333b3e8ebc966d0ca6057f52c25c8a2b1e3f
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Tue Aug 31 10:44:36 1999 +0000

    1999-08-31  Kjartan Maraas  <kmaraas@online.no
    
        * da.po: Updated translation from Birger Langkjer
        <birger.langkjer@image.dk>

 po/ChangeLog |   5 +
 po/da.po     | 520 ++++++++++++++++++++++-------------------------------------
 2 files changed, 197 insertions(+), 328 deletions(-)

commit c139d13b0c826105b1c402f65e4ee5fc10fb5cea
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Sun Aug 29 11:59:37 1999 +0000

    german translation (small changes)

 po/de.po | 49 +++++++++++++++++++++++--------------------------
 1 file changed, 23 insertions(+), 26 deletions(-)

commit 210b0e6bcec3a9c3af79453e24fe7706f3ba724e
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Sun Aug 29 11:58:51 1999 +0000

    add gettext mark again

 ChangeLog                          | 5 +++++
 capplets/theme-switcher/gui.c      | 2 +-
 capplets/theme-switcher/gui.c-6060 | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit 9ff5e8b976d27a56ece665049b62322af03c9b3a
Author: Karl Eichwalder <ke@src.gnome.org>
Date:   Sun Aug 29 08:18:51 1999 +0000

    beautufy some strings

 ChangeLog                          | 9 +++++++++
 capplets/theme-switcher/gui.c      | 2 +-
 capplets/theme-switcher/gui.c-6060 | 2 +-
 3 files changed, 11 insertions(+), 2 deletions(-)

commit 7078197e407889b76cee8be78be51ec357dfe1b6
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Sat Aug 28 12:52:40 1999 +0000

    A whole lot of updates.

 po/ChangeLog |   4 ++
 po/de.po     | 132 ++++++++++++++++++++++++-----------------------------------
 2 files changed, 57 insertions(+), 79 deletions(-)

commit 3109866ee2c4c168dbf1846b7a0d4b6d567ecb30
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Fri Aug 27 20:25:48 1999 +0000

    control-center/capplet-widget-libs.c: If we're in a nest of main loops
    
    
    
    control-center/capplet-widget-libs.c: If we're in a nest of main loops (e.g. modal
    dialogs or something), do bad hacks to make sure capplets exit properly.
    
    /* This gross hack is here because just doing gtk_main_quit() won't exit a modal dialog
    that has popped up in a capplet, but at the same time just doing exit() won't let some
    capplets (e.g. wm-properties) do their preference saving in the post-gtk_main() part of
    main() -ECL */
    
    Also cleanup the symbol names a little & make stuff static when possible.

 ChangeLog | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit a6806cd580e43aa9b87bff1e94f4658d2c632367
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Thu Aug 26 20:29:58 1999 +0000

    Shooby Ban <shooby@synergon.hu>
    
    * Fixed few typos

 po/hu.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5a9fa0026983f2c847366e6508776ff6f52692c7
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Thu Aug 26 19:57:27 1999 +0000

    Shooby Ban <shooby@synergon.hu>
    
    * Updated Hungarian translations

 po/hu.po | 161 ++++++++++++++++++++++-----------------------------------------
 1 file changed, 57 insertions(+), 104 deletions(-)

commit efa3324ac96ef83f627da4c281b9696e743120cc
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Tue Aug 24 22:33:02 1999 +0000

    Updated translation.
    
    1999-08-25  Kjartan Maraas  <kmaraas@online.no>
    
        * no.po: Updated translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 10 ++--------
 2 files changed, 6 insertions(+), 8 deletions(-)

commit a8944d8c488eb7ded523eb106235e908568a71ac
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Tue Aug 24 21:09:11 1999 +0000

    Updated translation.
    
    1999-08-24  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/no.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit dc48d606424ec93c2abf50ff880c011038bd89ca
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Mon Aug 23 10:45:47 1999 +0000

    Updated finnish translations.

 po/ChangeLog |   4 +++
 po/fi.po     | 102 +++++++++++++++++++++++------------------------------------
 2 files changed, 44 insertions(+), 62 deletions(-)

commit 348d67d181043a8c978d7a8be4c996c330f96756
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Aug 21 19:12:43 1999 +0000

    finished adding catalan descriptions

 ChangeLog                                      | 6 ++++++
 capplets/theme-switcher/theme-selector.desktop | 2 ++
 2 files changed, 8 insertions(+)

commit dc84a4046177471ea739e425c07e9b15741b84da
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Thu Aug 19 17:03:02 1999 +0000

    Use sysconfdir=/etc
    
    
    
    Use sysconfdir=/etc

 control-center.spec.in | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit dc848edf2d4f4fd167d54bb59ccd80158114c774
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Aug 19 10:22:17 1999 +0000

    added catalan *.po files and cataln description on various *.desktop files

 po/ChangeLog |   5 +
 po/ca.po     | 743 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 748 insertions(+)

commit 8512a34762a84bcd736d9afd7367531fdd01af2b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Aug 18 15:37:57 1999 +0000

    updated es file

 po/ChangeLog | 4 ++++
 po/es.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit dc86a4d00249803975e0e3671dcee80a6280052d
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Aug 18 15:35:33 1999 +0000

    updated es file

 po/es.po | 118 ++++++++++++++++++++-------------------------------------------
 1 file changed, 37 insertions(+), 81 deletions(-)

commit f3558ad64237311321f68928bb6d24906ee4ebc1
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Wed Aug 18 06:14:23 1999 +0000

    ru.po: Additional updates.

 po/ru.po | 91 +++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 56 insertions(+), 35 deletions(-)

commit 9e78153991841843ebc304cbf2f191437e37f2c9
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Wed Aug 18 05:16:24 1999 +0000

    ru.po: Compilation problem fixed.

 po/ru.po | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit ae48145a850255273357ad1a7addbdb3a049cd35
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Wed Aug 18 05:02:07 1999 +0000

    ru.po: Updated translation ( and a lot of work still head :( ).

 po/ChangeLog |   4 +
 po/ru.po     | 368 ++++++++++++++++++-----------------------------------------
 2 files changed, 118 insertions(+), 254 deletions(-)

commit 1e999e12d3855256fb91dafe1b53d1cea7342ccb
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Aug 17 18:22:29 1999 +0000

    1.0.6 released...

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/cs.po     | 489 ++++++++++++++++++++++++++++----------------
 po/da.po     | 493 +++++++++++++++++++++++++++-----------------
 po/de.po     | 417 ++++++++++++++++++++++++++------------
 po/en_GB.po  | 435 +++++++++++++++++++++++++--------------
 po/es.po     | 530 +++++++++++++++++++++++++++++++-----------------
 po/fi.po     | 523 +++++++++++++++++++++++++++++++----------------
 po/fr.po     | 208 +++++++++++++++----
 po/ga.po     | 455 ++++++++++++++++++++++++++---------------
 po/hu.po     | 520 +++++++++++++++++++++++++++++++----------------
 po/it.po     | 522 ++++++++++++++++++++++++++++++-----------------
 po/ja.po     | 520 +++++++++++++++++++++++++++++++----------------
 po/ko.po     | 197 ++++++++++++++----
 po/no.po     |   2 +-
 po/pl.po     | 650 +++++++++++++++++++++++++++++------------------------------
 po/pt.po     | 517 +++++++++++++++++++++++++++++++----------------
 po/ru.po     | 491 +++++++++++++++++++++++++++-----------------
 po/sv.po     | 406 +++++++++++++++++++++++++------------
 19 files changed, 4793 insertions(+), 2588 deletions(-)

commit 51d7ea03f41355d8a5ee3962d8cee83c6853c2ba
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Mon Aug 16 21:46:11 1999 +0000

    Updated translations. *.desktop: Same here.
    
    1999-08-16  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translations.
                *.desktop: Same here.

 ChangeLog    |   4 ++
 po/ChangeLog |   4 ++
 po/no.po     | 195 +++++++++++++++++++++++++++++++++++++++++++++++------------
 3 files changed, 166 insertions(+), 37 deletions(-)

commit fb5d8c4562d2a3dda6fc3569d406dfc984f3a27f
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Aug 16 15:42:37 1999 +0000

    Patch from Chyla Zbigniew <chyla@alice.ci.pwr.wroc.pl> to gettextize
    
    
    1999-08-16  Jonathan Blandford  <jrb@redhat.com>
    
        * Patch from Chyla Zbigniew <chyla@alice.ci.pwr.wroc.pl> to
        gettextize everything.  Sorry translators...

 ChangeLog                                      |    5 +
 capplets/mime-type/mime-data.c                 |    8 +-
 capplets/mime-type/mime-info.c                 |    8 +-
 capplets/theme-switcher/gui.c                  |    2 +-
 capplets/theme-switcher/gui.c-6060             |    2 +-
 capplets/wm-properties/wm-properties-capplet.c |   17 +-
 po/pl.po                                       | 2616 +++++++-----------------
 7 files changed, 773 insertions(+), 1885 deletions(-)

commit 611f3fa6bf8adbe6b95cd0beabc84b6201520d87
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Sat Aug 14 21:54:26 1999 +0000

    Finnish translation updates.

 po/ChangeLog |  4 ++++
 po/fi.po     | 71 ++++++++++++++++++++----------------------------------------
 2 files changed, 27 insertions(+), 48 deletions(-)

commit 2f3309b405f94545bf15d7125f50a5bbd4521f2d
Author: Nam SungHyun <namsh@src.gnome.org>
Date:   Fri Aug 13 12:23:59 1999 +0000

    fix typo

 po/ko.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 384ba1b008914e301436a2b67121b74c8cce7b2e
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Fri Aug 13 10:41:24 1999 +0000

    Updated for next weeks release.
    
    * Updated for next weeks release.

 po/ChangeLog |   4 +
 po/fr.po     | 250 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 138 insertions(+), 116 deletions(-)

commit 6f4bd778958c77f2c237d11d2ac95d1d92589227
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Aug 13 05:26:48 1999 +0000

    Inserted Korean-translated strings.
    
        * capplets/wm-properties/wm-desktops/*.desktop: Inserted
        Korean-translated strings.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit a7e7ed787a741e33581e81a902043885228a7a43
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Aug 13 05:26:10 1999 +0000

    updated translation.
    
        * ko.po: updated translation.

 po/ChangeLog |   4 ++
 po/ko.po     | 152 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 76 insertions(+), 80 deletions(-)

commit 7d99edc382e6874580d8aaeec00fef97b9fdd9b3
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Aug 12 21:41:23 1999 +0000

    Updated translation.
    
    1999-08-12  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/ChangeLog |   4 ++
 po/no.po     | 222 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 122 insertions(+), 104 deletions(-)

commit b0802f4b6876111226ed001ea1cafc48834fea1d
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Aug 10 05:24:06 1999 +0000

    Updated translation.
    
        * ko.po: Updated translation.

 po/ChangeLog |   4 +
 po/ko.po     | 476 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 254 insertions(+), 226 deletions(-)

commit 9e21a5953a41a264fdbd74527421626e07dcd7d2
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Aug 9 12:37:43 1999 +0000

    For easier i18n, used g_strdup_printf() instead of g_strconcat().
    
        * capplets/mime-type/edit-window.c (initialize_main_win_vals): For
        easier i18n, used g_strdup_printf() instead of g_strconcat().

 ChangeLog                        | 5 +++++
 capplets/mime-type/edit-window.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit e2df862bf4372f62304f49d6065ee1d3d5f5e6ba
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Thu Aug 5 16:40:30 1999 +0000

    Updating Swedish translation

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit d124eceddba0cb770c1ae3b5cc2c7fcdee086f46
Author: Richard Hult <rhult@src.gnome.org>
Date:   Thu Aug 5 16:38:48 1999 +0000

    A few updates of the Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit c9f29ff25fa2f9a3de209afb20a1859ffc138036
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Thu Aug 5 16:24:20 1999 +0000

    Reverting.

 po/sv.po | 677 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 353 insertions(+), 324 deletions(-)

commit 3ba7d97de5c734ac76a2da9cfde759270d68b3c8
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Aug 5 15:44:06 1999 +0000

    upgraded swedish translations

 po/sv.po | 677 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 324 insertions(+), 353 deletions(-)

commit a6a5aa14aed10d44672e2762d7ee03f0c658e326
Author: Anders Carlsson <andersca@src.gnome.org>
Date:   Thu Aug 5 09:33:17 1999 +0000

    Updated translation.

 po/ChangeLog |    4 +
 po/sv.po     | 1941 ++++++++++++----------------------------------------------
 2 files changed, 391 insertions(+), 1554 deletions(-)

commit 68435a0935269ea29044819c1c361eeae5851145
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Thu Aug 5 08:41:22 1999 +0000

    Minor updates...
    
    * Minor updates...

 po/fr.po | 318 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 161 insertions(+), 157 deletions(-)

commit 9b7aea4b32de1b365067d31ad4745e2fcbc2c487
Author: Karsten Weiss <karsten@addx.au.s.shuttle.de>
Date:   Wed Aug 4 17:56:09 1999 +0000

    Updated translation.
    
    1999-08-04  Karsten Weiss  <karsten@addx.au.s.shuttle.de>
    
            * de.po: Updated translation.

 po/ChangeLog |   4 +
 po/de.po     | 306 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 152 insertions(+), 158 deletions(-)

commit 77b6c60c0f410fa1919b64054e561aa3c6bf2d8e
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Wed Aug 4 08:13:23 1999 +0000

    Updated translation.
    
    1999-08-04  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/no.po | 248 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 130 insertions(+), 118 deletions(-)

commit 2f08e84b679849100cd5cf0e75a4528d4e581bd1
Author: 4 <jrb@redhat.com>
Date:   Wed Aug 4 05:05:02 1999 +0000

    move the new menubar.
    
    
    1999-08-04    <jrb@redhat.com>
    
        * capplets/theme-switcher/demo.c (demo_main): move the new menubar.

 ChangeLog                            |  4 ++++
 capplets/theme-switcher/demo.c       | 44 ++++++++++++++++--------------------
 capplets/theme-switcher/demo.c-45827 | 44 ++++++++++++++++--------------------
 3 files changed, 44 insertions(+), 48 deletions(-)

commit 7ad35a1ed4a63b1edc348d08bf7e96d6187dc903
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Wed Aug 4 01:27:16 1999 +0000

    keyboard-properties: Add a 'Preview' frame .
    
    
    
    keyboard-properties: Add a 'Preview' frame .
    
    screensaver-properties: Make the usage of
    /usr/X11R6/lib/xscreensaver/ a bit more generic.
    
    Fix DPMS.
    
    Remove warnings.
    
    sound-properties: Make it apply when people click 'OK'.
    
    theme-switcher: Add a menubar & menu for people to see.
    Fix warnings
    
    ui-properties: Speed up startup, fix bugs (see ChangeLog).
    
    wm-properties: Work with 0 wm's listed.

 capplets/theme-switcher/demo.c                 | 37 ++++++++----
 capplets/theme-switcher/demo.c-45827           | 37 ++++++++----
 capplets/theme-switcher/gui.c                  | 12 ++--
 capplets/theme-switcher/gui.c-6060             | 12 ++--
 capplets/wm-properties/wm-list.c               | 27 +++++----
 capplets/wm-properties/wm-properties-capplet.c | 78 +++++++++++++++++---------
 6 files changed, 131 insertions(+), 72 deletions(-)

commit b570b94516f2d550ec8a898e0eeb1be1049e9bd7
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Tue Aug 3 21:01:19 1999 +0000

    Five cent hack to try and avoid not having a window manager to list.
    
    
    
    Five cent hack to try and avoid not having a window manager to list.

 capplets/wm-properties/wm-desktops/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 52c0b89441cadc146fcf9159a54fa298cd80a7f7
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Tue Aug 3 16:35:00 1999 +0000

    Simplify the execution of the screensaver demo thingies, and add
    
    
    
    * capplets/screensaver-properties/callbacks.c: Simplify the execution of
    the screensaver demo thingies, and add /usr/X11R6/lib/xscreensaver to the
    PATH just before exec so we catch the Red Hat Linux-installed ones.

 ChangeLog | 6 ++++++
 README    | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 977d36a1a98f7d0a3928f071e2511e08aab30334
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Tue Aug 3 08:55:38 1999 +0000

    Updated translation.
    
    1999-08-03  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/no.po | 35 ++++++++++-------------------------
 1 file changed, 10 insertions(+), 25 deletions(-)

commit ea561b001dc2738e8ed6085591dcc4ecf894ac65
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Aug 2 21:58:59 1999 +0000

    updated es file

 po/es.po | 68 ++++++++++++++++++++++------------------------------------------
 1 file changed, 23 insertions(+), 45 deletions(-)

commit d7ba65c644658b2305f93b2b62ed5041c31335eb
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Aug 2 16:34:21 1999 +0000

    Make control-center/Makefile.am more -j safe.
    
    
    
    Make control-center/Makefile.am more -j safe.

 po/cs.po    | 75 ++++++++++++++++++++++++++++++++++++++++----------------
 po/da.po    | 61 +++++++++++++++++++++++++++++++---------------
 po/de.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/en_GB.po | 49 +++++++++++++++++++++++++------------
 po/es.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/fi.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/fr.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/ga.po    | 63 +++++++++++++++++++++++++++++------------------
 po/hu.po    | 71 ++++++++++++++++++++++++++++++++++++++---------------
 po/it.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/ja.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/ko.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/no.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/pl.po    | 69 +++++++++++++++++++++++++++++++---------------------
 po/pt.po    | 76 +++++++++++++++++++++++++++++++++++++++++----------------
 po/ru.po    | 66 +++++++++++++++++++++++++++++++++----------------
 po/sv.po    | 81 ++++++++++++++++++++++++++++++++++++++-----------------------
 17 files changed, 852 insertions(+), 367 deletions(-)

commit de2f08673f32fad7ee3c9977c55c920fdec0038d
Author: Tomasz Kłoczko <kloczek@src.gnome.org>
Date:   Mon Aug 2 00:51:43 1999 +0000

    - added pl translations.

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit d4742d1e5853b758bc610398841f47004e84f92e
Author: Tom Tromey <tromey@src.gnome.org>
Date:   Sun Aug 1 22:16:29 1999 +0000

    Added session-properties/startup-programs.c.
    
        * POTFILES.in: Added session-properties/startup-programs.c.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 726bf4f2c3c907f6ba1d45aeef500dad08953519
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Sun Aug 1 21:27:15 1999 +0000

    Link gnomecc to -lcapplet so we don't duplicate the stubs/skels/common
    
    
    
    Link gnomecc to -lcapplet so we don't duplicate the stubs/skels/common stuff (save mem a bit).
    
    Fix -j builds WRT idl compilation.

 po/cs.po    |  679 ++++++++++++++++++++---
 po/da.po    |  256 +++++----
 po/de.po    |  126 +++--
 po/en_GB.po |  242 +++++----
 po/es.po    |  264 +++++----
 po/fi.po    |  267 +++++----
 po/fr.po    | 1749 +++++++++++++++++++++++++----------------------------------
 po/ga.po    |  254 +++++----
 po/hu.po    |  263 +++++----
 po/it.po    |  267 +++++----
 po/ja.po    |  298 ++++++----
 po/ko.po    |  267 +++++----
 po/no.po    |    2 +-
 po/pl.po    |  257 +++++----
 po/pt.po    |  237 ++++----
 po/ru.po    |  249 +++++----
 po/sv.po    |  255 +++++----
 17 files changed, 3431 insertions(+), 2501 deletions(-)

commit ac421b1b9ec2a4bd2574b4c30ae9010e8903b766
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Jul 29 22:41:26 1999 +0000

    Updated translation.
    
    1999-07-30  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/ChangeLog |   4 ++
 po/no.po     | 152 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 92 insertions(+), 64 deletions(-)

commit a9d406770e66fc04bb788e227d6746df366477e3
Author: Owen Taylor <otaylor@redhat.com>
Date:   Thu Jul 29 22:25:55 1999 +0000

    *check* that the stuff you add here actually gets built/distributed.
    
    1999-07-29 Owen Taylor  <otaylor@redhat.com>
    
        * Removed e-conf files from POTFILES.in. People:
          *check* that the stuff you add here actually
          gets built/distributed.

 po/ChangeLog   | 6 ++++++
 po/POTFILES.in | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 0b86a7ff672c4bd223fd6bf616458e4534d022d5
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Thu Jul 29 20:08:48 1999 +0000

    Allow defining a CUSTOM_RELEASE at RPM build time

 control-center.spec.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5bac7922d59598331ec3c8253f60d30a9f4f73d8
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Tue Jul 27 14:21:13 1999 +0000

    sync old CVS dir before moving to new office.
    
    * sync old CVS dir before moving to new office.

 po/POTFILES.in | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit bf1da6436d207de220a52fd1c6ab19e33ccfc189
Author: Karsten Weiss <karsten@addx.au.s.shuttle.de>
Date:   Fri Jul 23 22:48:38 1999 +0000

    Updated translation.
    
    1999-07-24  Karsten Weiss  <karsten@addx.au.s.shuttle.de>
    
            * de.po: Updated translation.

 capplets/mime-type/edit-window.c     |   4 +-
 capplets/mime-type/new-mime-window.c |   2 +-
 po/ChangeLog                         |   4 +
 po/de.po                             | 191 +++++++++++++++++++----------------
 4 files changed, 110 insertions(+), 91 deletions(-)

commit 18fdfd2c590329faee2bb38558f7e327f3113a69
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Wed Jul 21 17:14:40 1999 +0000

    French translation mostly finished.
    
    * French translation mostly finished.

 po/ChangeLog |   4 +
 po/fr.po     | 624 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 343 insertions(+), 285 deletions(-)

commit b2c0d27ce266486837ed4c09be432473b4a6de76
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Sun Jul 18 08:41:44 1999 +0000

    Updated translation.
    
    1999-07-18  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/ChangeLog |  4 +++
 po/no.po     | 82 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 47 insertions(+), 39 deletions(-)

commit 7cf8acaf5cfce5287fd1e45d49931a4518e2591e
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Thu Jul 15 10:15:41 1999 +0000

    Updated.
    
    * fr.po: Updated.

 po/fr.po | 1792 +++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 1194 insertions(+), 598 deletions(-)

commit 974b80ac5d93b77633fa7ed4c3282b45686a1b83
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Jul 14 19:33:35 1999 +0000

    Patch from Fabrice.Bellet@imag.fr for i18n and portability.
    
    
    1999-07-14  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/mime-type/edit-window.c (initialize_main_win_vals):
        Patch from Fabrice.Bellet@imag.fr for i18n and portability.
    
    1999-07-08    <jrb@redhat.com>
    
        * mouse-properties.c (mouse_apply): Added patch by Tom Tromey
        <tromey@cygnus.com> to handle left-handed wheeled mice.  Fixed
        Authors file, too.

 ChangeLog                            | 5 +++++
 capplets/mime-type/edit-window.c     | 2 +-
 capplets/mime-type/mime-data.c       | 4 ++--
 capplets/mime-type/new-mime-window.c | 1 +
 4 files changed, 9 insertions(+), 3 deletions(-)

commit f32db6dfd38c3420dcef1f01c57ac334d86e005b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Jul 13 20:25:36 1999 +0000

    updated a lot of *.desktip, *.directory and *.soundlists with spanish,
    french and waloon descriptions

 capplets/theme-switcher/theme-selector.desktop | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 5b02c07c61e4bd0c55f40b5e33e270e8292f7539
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Jul 1 19:50:50 1999 +0000

    Updated translation.
    
    1999-07-01  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 77 +++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 51 insertions(+), 30 deletions(-)

commit 5255a86c90fa289ff2e3476683427261e054b2aa
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Mon Jun 28 11:28:19 1999 +0000

    Updated translations contributed by David Sauer <davids@orfinet.cz>.
    
    * Updated translations contributed by David Sauer <davids@orfinet.cz>.

 po/cs.po | 1257 ++++++++++++--------------------------------------------------
 1 file changed, 231 insertions(+), 1026 deletions(-)

commit a51fd385eb0ec26464f5368f4f814a4d2b9dec83
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Sat Jun 26 21:55:00 1999 +0000

    Finnish

 po/fi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f120b7d901136699b3ab127ad55bdd61a17031d9
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Sat Jun 26 21:51:55 1999 +0000

    Finnish updates.

 po/ChangeLog |   4 +
 po/fi.po     | 367 ++++++++++++++++++++---------------------------------------
 2 files changed, 129 insertions(+), 242 deletions(-)

commit f1fbad3ede8285eba7c98449a6e99f2b5cb147a8
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Jun 24 20:01:06 1999 +0000

    updated spanish language file

 po/es.po | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit a18145bd3d2eaa1ee3de676246da4651b5ebdb2f
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Wed Jun 23 04:33:17 1999 +0000

    ja.po: Japanese translation update from Itani Eiichiro.
    
    
    
    ja.po: Japanese translation update from Itani Eiichiro.

 po/ChangeLog |  4 ++++
 po/ja.po     | 72 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 44 insertions(+), 32 deletions(-)

commit 904058be6194973044d426914df3799c182a40f8
Author: 2 <jrb@redhat.com>
Date:   Tue Jun 22 17:32:50 1999 +0000

    made "~/" be gnome_util_user_home instead.
    
    
    1999-06-22    <jrb@redhat.com>
    
        * capplets/theme-switcher/lister.c (print_standard_stuff): made
        "~/" be gnome_util_user_home instead.

 ChangeLog                              | 5 +++++
 capplets/theme-switcher/lister.c       | 8 +++++++-
 capplets/theme-switcher/lister.c-42011 | 8 +++++++-
 3 files changed, 19 insertions(+), 2 deletions(-)

commit 6bcf2017816da096c13a29d4915f002dae8eaf81
Author: 6 <jrb@redhat.com>
Date:   Wed Jun 16 18:56:22 1999 +0000

    patch from Akira Higuchi (a-higuti@math.sci.hokudai.ac.jp) to handle I18N
    
    
    1999-06-16    <jrb@redhat.com>
    
        * capplets/theme-switcher/demo.c (demo_main): patch from Akira
        Higuchi (a-higuti@math.sci.hokudai.ac.jp) to handle I18N in the
        preview window.

 ChangeLog                            | 6 ++++++
 capplets/theme-switcher/demo.c       | 2 +-
 capplets/theme-switcher/demo.c-45827 | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit a971cc41bf44a4a29777b1f6cd1440ed54ce2e58
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Wed Jun 16 00:32:18 1999 +0000

    Remove conflict markers.

 ChangeLog | 2 --
 1 file changed, 2 deletions(-)

commit 70575c34d26d9ddad55f4faf48952ca75f46e64f
Author: Nuno Ferreira <nmrf@rnl.ist.utl.pt>
Date:   Wed Jun 16 00:30:16 1999 +0000

    Added Portuguese translations.
    
    1999-06-15  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * */*.desktop: Added Portuguese translations.
    
    1999-06-16  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.

 ChangeLog    |   4 +
 po/ChangeLog |   4 +
 po/pt.po     | 400 +++++++++++++++++++++--------------------------------------
 3 files changed, 146 insertions(+), 262 deletions(-)

commit 314d1bb362c3be7656e5b7bffa2665aed4f6879a
Author: 5 <jrb@redhat.com>
Date:   Tue Jun 15 17:24:16 1999 +0000

    make ANSI C compliant
    
    
    1999-06-15    <jrb@redhat.com>
    
        * corba-glue.c (control_center_corba_gtk_init):  make ANSI C
        compliant
    
    1999-06-15    <jrb@redhat.com>
    
        * capplets/screensaver-properties/parser.c (parse_key): make ANSI
        C Compliant.
    
        * capplets/background-properties/property-background.c
        (background_apply): ditto
    
        * capplets/background-properties/property-background.c
        (color_setup): don't add it twice.

 ChangeLog | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 8359cee7aac15225bd86afcc0e958ceacd3a6441
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Tue Jun 15 17:20:44 1999 +0000

    Add maintainers list

 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

commit e580e4e26f095a17bdaa184cfd570f3a3ecf1bbb
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Mon Jun 14 22:12:21 1999 +0000

    Updated German translation.

 po/de.po | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 2fe7bd7664d5f142bdc196dbb8d0d9d6d7d02304
Author: Robert Brady <rbrady@src.gnome.org>
Date:   Mon Jun 14 20:18:44 1999 +0000

    Added support for scwm window manager, closing bug #811.

 ChangeLog                                      | 6 ++++++
 capplets/wm-properties/wm-desktops/Makefile.am | 1 +
 2 files changed, 7 insertions(+)

commit 0dbdabb86ce38444cdde4994a2ad10f78622d342
Author: 4 <jrb@redhat.com>
Date:   Mon Jun 14 17:06:32 1999 +0000

    fix problem with default screensaver locking the screen inappropriately.
    
    
    1999-06-14    <jrb@redhat.com>
    
        * capplets/screensaver-properties/callbacks.c (revert_callback):
        fix problem with default screensaver locking the screen
        inappropriately.
    
        * capplets/screensaver-properties/screensaver-properties-capplet.c
        (main): ditto.
    
    999-06-14    <jrb@redhat.com>
    
        * tree.c (generate_tree): make it GTK_SELECTION_BROWSE instead of
        SINGLE.  Revert change below.
        (selected_row_callback): ditto

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 4b21962cf1de20e73bea967dbd27f6609a52cd8e
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sat Jun 12 07:25:38 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
    * Updated hungarian translations

 po/hu.po | 608 ++++++++-------------------------------------------------------
 1 file changed, 76 insertions(+), 532 deletions(-)

commit 4fbdd8592db11a31d7ec814c546999d3b25f91ec
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Fri Jun 11 20:37:49 1999 +0000

    Fixed ChangeLog entry for my last commit.

 capplets/url-properties/ChangeLog | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 59ec83d4582f8ef0d805fd343c93508981f3b6bf
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Fri Jun 11 20:34:21 1999 +0000

    Make the "URL properties" capplet behave politely in case of an initialization
    error.

 capplets/url-properties/ChangeLog        | 5 +++++
 capplets/url-properties/url-properties.c | 2 ++
 2 files changed, 7 insertions(+)

commit c500b14cf1552ebebbc064adbf93ef3d88a7513d
Author: 8 <jrb@redhat.com>
Date:   Tue Jun 8 22:06:42 1999 +0000

    *capplets/gnome-edit-properties/gnome-edit-properties.c (struct
    
    
    1999-06-08    <jrb@redhat.com>
    
        *capplets/gnome-edit-properties/gnome-edit-properties.c (struct
        _EditorDescription): fix the fact that gnomecc thinks that the
        capplet has changed, even when it hasn't.

 ChangeLog | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 3dc8c08bfaa1091b2c91741bccaa08874369f8e3
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Jun 8 19:27:38 1999 +0000

    Forest now works again...

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 7398ea5109c7787d6833ac0ee2a6a9fb5d169676
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Jun 8 12:03:11 1999 +0000

    updated spanish language file

 po/es.po | 32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

commit bad6f880b9fed26bdca30e5518fa1b455c43b2a3
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Fri Jun 4 19:50:40 1999 +0000

    added entry for English (British).
    
    1999-06-04  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: added entry for English (British).

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a39aeaed541fe6b9cf5eb48c8d6cf29045bc9e7
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Fri Jun 4 19:48:09 1999 +0000

    added british translation from Robert Brady.
    
    1999-06-04  Kjartan Maraas  <kmaraas@online.no>
    
                * en_GB.po: added british translation from Robert Brady.

 po/ChangeLog |    4 +
 po/en_GB.po  | 1168 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1172 insertions(+)

commit 163449ba1648dd9240f2406fce8ea109c1fb8d13
Author: James Henstridge <james@daa.com.au>
Date:   Thu Jun 3 01:54:38 1999 +0000

    When setting the dpms settings for the X server, use gnome_config_get_int
    
    1999-06-03  James Henstridge  <james@daa.com.au>
    
        * capplets/screensaver-properties/screensaver-properties-capplet.c:
        When setting the dpms settings for the X server, use
        gnome_config_get_int to retrieve the user setting rather than
        gnome_config_get_string.  Before, it was adding together two
        pointers, multiplying the value by 60 and casting it as an int :)

 ChangeLog              | 8 ++++++++
 control-center.spec.in | 1 +
 2 files changed, 9 insertions(+)

commit 2ae9dd40dad5ddc9ed056de06084425757245afe
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Fri May 28 08:06:09 1999 +0000

    Add Japanese entry.
    
    
    
    Add Japanese entry.

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit d8f64c4c0c5f4e7de3d071e28d8a2349b6a14783
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Mon May 24 12:38:19 1999 +0000

    Updated German translation.

 po/ChangeLog |    4 +
 po/cs.po     | 1361 ++++++++++++----------------------------
 po/da.po     | 1389 ++++++++++++++---------------------------
 po/de.po     | 1263 ++++++++++---------------------------
 po/es.po     | 1077 +++++++++++++++++---------------
 po/fi.po     | 1391 ++++++++++++++---------------------------
 po/fr.po     | 1967 +++++++++++++++++++++++++---------------------------------
 po/ga.po     | 1370 +++++++++++++---------------------------
 po/hu.po     | 1508 +++++++++++++++++++++-----------------------
 po/it.po     |  158 ++++-
 po/ko.po     |  122 +++-
 po/no.po     |    2 +-
 po/pl.po     | 1484 ++++++++++++++++----------------------------
 po/pt.po     | 1385 +++++++++++++----------------------------
 po/ru.po     | 1384 +++++++++++++----------------------------
 po/sv.po     | 1725 +++++++++++++++++++-------------------------------
 16 files changed, 6510 insertions(+), 11080 deletions(-)

commit c4d7154643a244f3161459159d690a5cb47edba8
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Thu May 20 02:13:22 1999 +0000

    Japanese translation update from ITANI EIICHIRO
    
    
    
    Japanese translation update from ITANI EIICHIRO

 po/ChangeLog |   4 +
 po/ja.po     | 696 +++++++++++++++++++++++++++++++++++++++++++++++++++--------
 2 files changed, 606 insertions(+), 94 deletions(-)

commit 74cbf079963d6424d2e248197b9f2d7987c4615e
Author: Jacob Berkman <jberkman@src.gnome.org>
Date:   Sun May 16 04:08:21 1999 +0000

    made the capplet actually save its settings (gnome bug #169)

 capplets/url-properties/ChangeLog        | 6 ++++++
 capplets/url-properties/url-properties.c | 1 +
 2 files changed, 7 insertions(+)

commit 4588378fac13f1162fe0f0825a1cb4177466fde5
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Wed May 12 10:13:29 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
    * Updated hungarian translations.

 po/ChangeLog |  4 ++++
 po/hu.po     | 14 +++-----------
 2 files changed, 7 insertions(+), 11 deletions(-)

commit f5a40027bfdc4f986917f6aa29b241b385e281c3
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu May 6 01:25:20 1999 +0000

    updatedspanish language file

 po/es.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cb132b02aea07399ba77adb280637bf786cecdbb
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Wed May 5 23:33:27 1999 +0000

    Add `\n' to translation.
    
    * no.po: Add `\n' to translation.

 po/ChangeLog | 4 ++++
 po/no.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 85ad2efb709a09abb8809214aeaee92fc0098eb4
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Wed May 5 14:26:53 1999 +0000

    Updated translation.
    
    1999-05-05  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 793eb503862bc37e6d345142908a56a80d7d87f0
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Wed May 5 14:22:06 1999 +0000

    Updated translation.

 po/no.po | 1292 +++++++++++++++-----------------------------------------------
 1 file changed, 316 insertions(+), 976 deletions(-)

commit d8db6ec41e03c1bed85e2f93b4566b913ef5fce2
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue May 4 18:31:22 1999 +0000

    Fixed typo in a filename.

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 35857cfaffa73f71642b74ec6fcd570acf374eaa
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Tue May 4 18:29:21 1999 +0000

    Added `capplets/mime-type/mime-data.c',
    
    1999-05-05  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * POTFILES.in: Added `capplets/mime-type/mime-data.c',
        `capplets/mime-type/mime-mime-info.c',
        `capplets/mime-type/mime-type-capplet.c',
        `capplets/mime-type/new-mime-window.c'.

 po/ChangeLog   | 7 +++++++
 po/POTFILES.in | 4 ++++
 2 files changed, 11 insertions(+)

commit 3a6e4ab98d71978913e818bbea38f73e6b1710f8
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue May 4 18:19:01 1999 +0000

    Updated Korean translation

 po/ko.po | 1374 +++++++++++++++-----------------------------------------------
 1 file changed, 330 insertions(+), 1044 deletions(-)

commit d6822f0998a9390836df437d4ee5827d3bb258bb
Author: Tuomas Kuosmanen <tigert@src.gnome.org>
Date:   Mon May 3 22:31:41 1999 +0000

    ..aaannd a new ICCCOONNN!!!! /tig

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit bfe86830e0b7196b7becfc35a442d61bcd182560
Author: Tuomas Kuosmanen <tigert@src.gnome.org>
Date:   Mon May 3 22:29:21 1999 +0000

    guess what? yeah right. an icon. /tig

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 57dbe0d480435224ddd3ed62744eddefa36c2ae3
Author: Tuomas Kuosmanen <tigert@src.gnome.org>
Date:   Sun May 2 00:55:31 1999 +0000

    Added icons for the capplet .desktop files for background, screensaver,
    theme and windowmanager properties. /tigert

 ChangeLog                                      | 9 +++++++++
 capplets/theme-switcher/theme-selector.desktop | 3 ++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 912253a7e089a863bad3fd6a9d76ea291a2fad68
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Wed Apr 28 22:24:53 1999 +0000

    Translation updates.

 po/ChangeLog   |    6 +
 po/POTFILES.in |    8 +-
 po/it.po       | 1255 ++++++++++++--------------------------------------------
 3 files changed, 279 insertions(+), 990 deletions(-)

commit ff62d2da4d3398b4edbe4bd041808031afc0e814
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Sun Apr 18 22:42:09 1999 +0000

    Updated translation.
    
    1999-04-20  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/no.po | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 73 insertions(+), 6 deletions(-)

commit 85a8e56fc22a499c3f29ec5a0f8a9844e98113cf
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Fri Apr 16 11:27:24 1999 +0000

    Further .desktop and .directory l10n for German.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d733434f4bc8ac36a2cc9bb68f3ebf9fed03afb9
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Apr 16 03:11:56 1999 +0000

    updated spanish language file,
    and i18n'ed the theme demo capplet

 capplets/theme-switcher/demo.c       |   36 +-
 capplets/theme-switcher/demo.c-45827 |   36 +-
 po/POTFILES.in                       |    1 +
 po/es.po                             | 1611 ++++++++++------------------------
 4 files changed, 523 insertions(+), 1161 deletions(-)

commit d66ffe56a6ef01868f53541ee888fc9d8ff7a4da
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Thu Apr 15 16:09:01 1999 +0000

    standard fr.po update...

 po/fr.po | 2472 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 1217 insertions(+), 1255 deletions(-)

commit 8ff0d529db838f1288698904a8acc5454c86f43a
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Thu Apr 15 02:55:46 1999 +0000

    Japanese translation ja.po updated.
    
    
    
    Japanese translation ja.po updated.

 po/ChangeLog |    4 +
 po/ja.po     | 1509 ++++++++--------------------------------------------------
 2 files changed, 202 insertions(+), 1311 deletions(-)

commit 3d22d3b2714498ca9e82d9f2648ae5de1fb51dc8
Author: 4 <jrb@redhat.com>
Date:   Wed Apr 14 19:13:03 1999 +0000

    if "No Screensaver" selected, don't show it.
    
    
    1999-04-14    <jrb@redhat.com>
    
        * capplets/screensaver-properties/screensaver-properties-capplet.c
        (main): if "No Screensaver" selected, don't show it.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 5341f069fe07ff80946d57843c35e01cbf4c8bca
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Wed Apr 14 16:22:31 1999 +0000

    Lots and lots and lots and lots of misc German l10n. Details should be
    in the ChangeLogs.

 ChangeLog    |  4 ++++
 po/ChangeLog |  4 ++++
 po/cs.po     | 17 +++++++++++------
 po/da.po     | 17 +++++++++++------
 po/de.po     | 26 +++++++++++++++-----------
 po/es.po     | 17 +++++++++++------
 po/fi.po     | 17 +++++++++++------
 po/fr.po     | 36 +++++++++++++++++++++++-------------
 po/ga.po     | 17 +++++++++++------
 po/hu.po     | 17 +++++++++++------
 po/it.po     | 17 +++++++++++------
 po/ja.po     | 17 +++++++++++------
 po/ko.po     | 17 +++++++++++------
 po/no.po     | 17 +++++++++++------
 po/pl.po     | 17 +++++++++++------
 po/pt.po     | 17 +++++++++++------
 po/ru.po     | 17 +++++++++++------
 po/sv.po     | 17 +++++++++++------
 18 files changed, 200 insertions(+), 108 deletions(-)

commit baf8fb1cc7e6b85e121d18f395d054bd4ca4efef
Author: bertrand <Bertrand.Guiheneuf@inria.fr>
Date:   Tue Apr 13 20:40:25 1999 +0000

    update some french translations
    
    1999-04-13  bertrand <Bertrand.Guiheneuf@inria.fr>
    
        * fr.po: update some french translations

 po/ChangeLog |   4 ++
 po/fr.po     | 230 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 124 insertions(+), 110 deletions(-)

commit 0455eb0d1f2bce68547342ee355d55446dba4231
Author: Matthias Warkus <mawarkus@src.gnome.org>
Date:   Tue Apr 13 19:30:38 1999 +0000

    Added/revamped/hyphenified German lines in .desktop entries;
    Updated/redid de.po.
    
    I have *not* changed all the other .po files, I've done "make
    update-po", that's all. Please kill me, should I have messed up the
    tree somehow.
    
    Kill me anyway, should I have goofed with CVS somehow. This thing
    scares me no end, I keep looking stuff up in the documentation, and
    it's with trembling fingers that I do my commits. Luckily I can't
    break any code since I don't work on any code :)

 po/cs.po | 1431 +++++++++++++++++++++++++++++++++++++++++--------
 po/da.po | 1312 ++++++++++++++++++++++++++++++++++++++++-----
 po/de.po | 1786 ++++++++++++++++++++++++++++++++++++++------------------------
 po/es.po | 1187 +++++++++++++++++++++++++++++++++++++++--
 po/fi.po | 1308 +++++++++++++++++++++++++++++++++++++++++----
 po/fr.po | 1383 ++++++++++++++++++++++++++++++++++++++++--------
 po/ga.po | 1433 +++++++++++++++++++++++++++++++++++++++++--------
 po/hu.po |   94 ++--
 po/it.po |  155 +++---
 po/ja.po | 1272 +++++++++++++++++++++++++++++++++++++++-----
 po/ko.po | 1186 +++++++++++++++++++++++++++++++++++++++--
 po/no.po |    2 +-
 po/pl.po | 1640 +++++++++++++++++++++++++++++++++++++++++++++------------
 po/pt.po | 1185 +++++++++++++++++++++++++++++++++++++++--
 po/ru.po | 1183 +++++++++++++++++++++++++++++++++++++++--
 po/sv.po | 1577 +++++++++++++++++++++++++++++++++++++++++++-----------
 16 files changed, 15413 insertions(+), 2721 deletions(-)

commit ba7c4b333abed5a7171bf87064919d2225828e0f
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Apr 13 19:17:41 1999 +0000

    many many changes. Now you can really add a mime-type.
    
    
    1999-04-13  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/mime-type/mime-data.c (write_mime_foreach): many many
        changes.  Now you can really add a mime-type.

 ChangeLog                        |  5 ++++
 capplets/mime-type/edit-window.c | 17 ++++++++---
 capplets/mime-type/mime-data.c   | 62 ++++++++++++++++++++++++++++++----------
 3 files changed, 65 insertions(+), 19 deletions(-)

commit 3d35442502737a018dfdf4bf2d7bad6e709d3168
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Apr 13 17:21:46 1999 +0000

    updated spanish language file, and added spanish/french to
    desktop files

 po/es.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 046909786d6f3acb6396bb3d8d0ca278c1ecf9a7
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Tue Apr 13 09:44:59 1999 +0000

    Updated translation.
    
    1999-04-13  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 76 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 43 insertions(+), 37 deletions(-)

commit 405189ca45ce7e2756d1ee27e26f9affc82eca68
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Apr 13 01:04:18 1999 +0000

    many fixes. ugh, this code sux
    
    many fixes.
    ugh, this code sux

 capplets/mime-type/edit-window.c       |   5 +-
 capplets/mime-type/mime-data.c         | 133 ++++++++++++++++++++++++++++++---
 capplets/mime-type/mime-data.h         |   6 +-
 capplets/mime-type/mime-info.c         |  22 ++++--
 capplets/mime-type/mime-info.h         |   3 +-
 capplets/mime-type/mime-type-capplet.c |  12 ++-
 capplets/mime-type/new-mime-window.c   |   1 -
 7 files changed, 157 insertions(+), 25 deletions(-)

commit 84ead5d0bb7eba0bad9e43ae654e6f8f9fbd8303
Author: Mark Crichton <crichton@src.gnome.org>
Date:   Mon Apr 12 07:16:35 1999 +0000

    added [fi] to 2nd name line in .desktop. I dont know Finnish, but I got a
    
    
    
    added [fi] to 2nd name line in .desktop.  I dont know Finnish, but I got
    a strong feeling tyypit is Finnish for type. ;)
    
    Mark

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit d39d48db95f8b4bbee59189d0f67940a131a5dfd
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sun Apr 11 17:46:53 1999 +0000

    wm-properties: Cosmetic cleanup mime-type: more work. Syncing with home
    
    
    wm-properties:  Cosmetic cleanup
    mime-type: more work.  Syncing with home 'puter

 ChangeLog                                      |   6 +-
 capplets/mime-type/edit-window.h               |   1 -
 capplets/mime-type/mime-data.c                 | 125 ++++++++++++++++++++++++-
 capplets/mime-type/mime-data.h                 |   4 +
 capplets/mime-type/mime-info.h                 |   1 -
 capplets/mime-type/mime-type-capplet.c         |   2 +
 capplets/mime-type/new-mime-window.c           |  13 ++-
 capplets/wm-properties/wm-properties-capplet.c |  17 +++-
 8 files changed, 159 insertions(+), 10 deletions(-)

commit 3c19d104a6fef6a578a0e298f1c9e01ad16d3563
Author: Alex Roberts <bse@dial.pipex.com>
Date:   Sat Apr 10 22:32:11 1999 +0000

    Added Gl screensavers: Atlantis, Pipes, Bubble3d, Lament, Rubik, Moebius,
    
    1999-04-10  Alex Roberts  <bse@dial.pipex.com>
    
        * capplets/screensaver-properties/screensaver-desktops/: Added
          Gl screensavers:
                Atlantis, Pipes, Bubble3d, Lament, Rubik, Moebius,
                Sproingies, Superquadratics, Gears, Morph3d, Cage,
                Stairs, GLPlanet.
          (These are the ones in the current xscreensaver-gl deb package)
    
        * capplets/screensaver-properties/callbacks.c: Commented out
          HAVE_REDHAT_XSCREENSAVER_RPM (i forget who told me about that,
          someone in #Gnome..)

 ChangeLog | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit b68704ef09e37f94a5d7438a7845a3490cc77d3e
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Sat Apr 10 06:31:15 1999 +0000

    updated

 po/ru.po | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit e0c4a403044baf56c53b48894b4f97272004e5a7
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Apr 9 22:57:54 1999 +0000

    began adding new add window. Will finish it later tonight...
    
    
    began adding new add window.  Will finish it later tonight...
    
    -Jonathan

 capplets/mime-type/Makefile.am         |   3 +-
 capplets/mime-type/edit-window.c       |   2 +-
 capplets/mime-type/mime-data.c         |  37 +++++++----
 capplets/mime-type/mime-data.h         |   2 +-
 capplets/mime-type/mime-info.c         |   2 +-
 capplets/mime-type/mime-type-capplet.c |  32 ++++++++--
 capplets/mime-type/new-mime-window.c   | 109 +++++++++++++++++++++++++++++++++
 capplets/mime-type/new-mime-window.h   |  14 +++++
 8 files changed, 179 insertions(+), 22 deletions(-)

commit 4564868a15693da568b40165a824085968c29add
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Apr 8 17:27:29 1999 +0000

    updated translation.
    
    1999-04-08  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: updated translation.

 po/no.po | 34 ++++++++++++++++++----------------
 1 file changed, 18 insertions(+), 16 deletions(-)

commit 604f5d21224f6f2e77e44b959c775ec580ee9fce
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Wed Apr 7 22:17:34 1999 +0000

    Quiet various debugging output from capplets.
    
    Dr Mike <drmike@redhat.com>

 capplets/theme-switcher/gui.c      | 26 ++++++++++++++++++++++----
 capplets/theme-switcher/gui.c-6060 | 26 ++++++++++++++++++++++----
 2 files changed, 44 insertions(+), 8 deletions(-)

commit 65758b677509415bd50349e8b301b12855f7676a
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Wed Apr 7 20:12:07 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
    * Updated hungarian translations

 po/hu.po | 1172 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 1109 insertions(+), 63 deletions(-)

commit 1e88e5780350833b2e98c72472563cb6d2f56f11
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Mon Apr 5 22:32:59 1999 +0000

    updated translation
    
    1999-04-06  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: updated translation

 po/no.po | 1163 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 1108 insertions(+), 55 deletions(-)

commit a892e3e1768dca785dd4849e8e156abace0a421f
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Sun Apr 4 23:57:52 1999 +0000

    Finnish translations

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 9b2448232898af63e205db3455bf261340a9fad0
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Sun Apr 4 23:33:34 1999 +0000

    Now, a working version... *blush*

 po/fi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b99fa592fad33cbfac61a1290369089468606643
Author: Mikko Rauhala <mjr@src.gnome.org>
Date:   Sun Apr 4 23:30:22 1999 +0000

    Completed and updated Finnish translations for control-center

 po/ChangeLog |    4 +
 po/fi.po     | 2014 ++++------------------------------------------------------
 2 files changed, 133 insertions(+), 1885 deletions(-)

commit 330e70501e373ece2eac702f0e80ad38548873bd
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Fri Apr 2 22:39:04 1999 +0000

    Updated several `.desktop' and `.directory' files with the Italian
    translations.

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit 8cb2e36d34f188ae883efc89bc045632c3c428d4
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Fri Apr 2 22:27:45 1999 +0000

    Misc I18N fixes.

 ChangeLog                                      | 40 +++++++++++++++
 capplets/wm-properties/wm-properties-capplet.c | 67 +++++++++++++-------------
 2 files changed, 74 insertions(+), 33 deletions(-)

commit 44e5bfabb936a3e5b51b61ee24cbadec69c515ff
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Fri Apr 2 22:06:28 1999 +0000

    Added some missing files to `POTFILES.in'.

 po/ChangeLog   | 7 +++++++
 po/POTFILES.in | 5 +++++
 2 files changed, 12 insertions(+)

commit 4450d06b3aa29a2f05f86b78ab51df4c670b8bd4
Author: Ettore Perazzoli <ettore@src.gnome.org>
Date:   Fri Apr 2 22:02:44 1999 +0000

    Updated Italian translation.

 po/ChangeLog |    4 +
 po/it.po     | 1881 ++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 1101 insertions(+), 784 deletions(-)

commit 0670a094d1fc70003c24e3076bcd5b4a1b4b34bd
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Apr 2 00:22:28 1999 +0000

    updating spanish language file

 po/es.po | 36 ++++++++++++++++--------------------
 1 file changed, 16 insertions(+), 20 deletions(-)

commit 4f33c3658b3319df3fb8ccb437131ea6e3811c28
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Apr 2 00:07:19 1999 +0000

    Patch by Adrian Hosey <ahosey@burningchrome.com> to allow selecting color.
    
    
    1999-04-01  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/parser.c (set_color): Patch by
        Adrian Hosey <ahosey@burningchrome.com> to allow selecting color.
        Used by Maze.desktop now, and possibly more later.

 ChangeLog |   4 ++
 po/pl.po  | 132 +++++++++++++++++++++++++++++++++++++++-----------------------
 po/pt.po  |  61 ++++++++++++++++-------------
 po/ru.po  |  61 ++++++++++++++++-------------
 po/sv.po  |  63 ++++++++++++++++--------------
 5 files changed, 188 insertions(+), 133 deletions(-)

commit a56565cc220f352fa78b1b285b4ea22d5bc4a96c
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Apr 1 23:14:15 1999 +0000

    added preview when browsing. Also, made distcheck.
    
    
    1999-04-01  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/background-properties/property-background.c
        (browse_wallpapers): added preview when browsing.
    Also, made distcheck.

 ChangeLog |   3 +
 po/cs.po  | 134 ++++++++++++++++++++++-------------
 po/da.po  | 128 +++++++++++++++++++++------------
 po/de.po  | 142 ++++++++++++++++++++++---------------
 po/es.po  | 238 +++++++++++++++++++++++++++++++++++++-------------------------
 po/fi.po  | 142 ++++++++++++++++++++++---------------
 po/fr.po  | 128 +++++++++++++++++++++------------
 po/ga.po  | 134 ++++++++++++++++++++++-------------
 po/hu.po  | 128 +++++++++++++++++++++------------
 po/it.po  | 142 ++++++++++++++++++++++---------------
 po/ja.po  | 127 +++++++++++++++++++++------------
 po/ko.po  | 128 +++++++++++++++++++++------------
 po/no.po  | 104 +++++++++++++++------------
 po/pt.po  | 115 +++++++++++++++++++-----------
 po/ru.po  | 115 +++++++++++++++++++-----------
 po/sv.po  | 127 ++++++++++++++++++++-------------
 16 files changed, 1277 insertions(+), 758 deletions(-)

commit cf2ebc88b6895b2ae4851c97bd4f24c08408d96e
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Apr 1 23:00:36 1999 +0000

    upped the version to 1.0.5
    
    
    1999-04-01  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: upped the version to 1.0.5
    
        * capplets/screensaver-properties/parser.c
        (init_screensaver_data): Fixes the Default setting problem.
    
        * capplets/screensaver-properties/callbacks.c (create_list):
        little bug that caused big problems.

 ChangeLog    | 8 ++++++++
 configure.in | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 4fbaae2503b3e708114b1c5218b993716d54b3ed
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Apr 1 18:09:57 1999 +0000

    I mixed wrong directories :-(

 configure.in |     2 +-
 po/es.po     |  2160 ++-----
 po/wa.po     | 18407 ---------------------------------------------------------
 3 files changed, 600 insertions(+), 19969 deletions(-)

commit 9b77c45e8552e8f36a99085eb17512b8bfe63888
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Apr 1 17:48:58 1999 +0000

    updated spanish language file, and added (a first version of) walloon language

 configure.in |     2 +-
 po/es.po     |  2161 +++++--
 po/wa.po     | 18407 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 19970 insertions(+), 600 deletions(-)

commit 523228b7094fb7d782b7c39acbb69c7ea7c7aee1
Author: Martin Baulig <martin@src.gnome.org>
Date:   Thu Apr 1 11:31:06 1999 +0000

    Make it compile.

 capplets/theme-switcher/gui.c      | 1 +
 capplets/theme-switcher/gui.c-6060 | 1 +
 2 files changed, 2 insertions(+)

commit 833b202360974d9aeb72290ef9a84dad48c7d1e7
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Apr 1 06:59:44 1999 +0000

    added new xscreensaver-3.08 screen hacks.
    
    
    1999-04-01  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/screensaver-desktops/Makefile.am
        (ssdata_DATA): added new xscreensaver-3.08 screen hacks.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 28a9a02eef9f9e9d160d0416ae21cccf6da30d02
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Apr 1 04:10:18 1999 +0000

    add try-exec like functionality to the screensaver list. This can be made
    
    
    1999-03-31  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/callbacks.c (create_list):
        add try-exec like functionality to the screensaver list.  This can
        be made more sophisticated in the future.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit b63c67767dcc70d9cc720bc29badd67cca2652ad
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Apr 1 00:58:38 1999 +0000

    Now you can set the font!
    
    
    1999-03-31  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/theme-switcher/gui.c,lister.c,da.h: Now you can set the
        font!

 ChangeLog                              |   5 +
 capplets/theme-switcher/da.h           |   8 +-
 capplets/theme-switcher/da.h-67648     |   8 +-
 capplets/theme-switcher/gui.c          | 224 +++++++++++++++++++++++----------
 capplets/theme-switcher/gui.c-6060     | 224 +++++++++++++++++++++++----------
 capplets/theme-switcher/lister.c       |  72 +++++++----
 capplets/theme-switcher/lister.c-42011 |  72 +++++++----
 7 files changed, 427 insertions(+), 186 deletions(-)

commit 982628466cf528a3e11f3d4fb4227986ad9dcd8f
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Sat Mar 27 17:23:00 1999 +0000

    C1999-03-27  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * capplets/screensaver-properties/parser.c (get_entry): free tem
        using free(), it's allocated with strdup.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 82da05b356a5854a72e11ef41d8f9735fcddc1b4
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Mar 26 16:35:43 1999 +0000

    oops -- should be mime-type-capplet, not mouse-capplet. Thanks to Jacob
    
    
    1999-03-26  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/mime-type/mime-type-capplet.c (main): oops -- should be
        mime-type-capplet, not mouse-capplet.  Thanks to Jacob Berkman
        <jberkman@andrew.cmu.edu> for pointing this out
    
    1999-03-22  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/theme-switcher/gui.c (click_entry): bug fix.  Now we
        can try again after a revert.

 ChangeLog                              | 11 +++++++++++
 capplets/mime-type/mime-type-capplet.c |  2 +-
 capplets/theme-switcher/gui.c          | 21 ++++++++++++++-------
 capplets/theme-switcher/gui.c-6060     | 21 ++++++++++++++-------
 4 files changed, 40 insertions(+), 15 deletions(-)

commit 22b745dd9c1a2dd2881cce480646b1c2631e4844
Author: Tomasz Kłoczko <kloczek@src.gnome.org>
Date:   Fri Mar 26 13:59:21 1999 +0000

    - modyfications which allow use $DESTDIR in install target.
    
    
    - modyfications which allow use $DESTDIR in install target.

 capplets/mime-type/Makefile.am      | 2 +-
 capplets/theme-switcher/Makefile.am | 2 +-
 capplets/url-properties/Makefile.am | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit c6bc00da84f1f34ea09544cb9020ffa79b25902d
Author: Tomasz Kłoczko <kloczek@src.gnome.org>
Date:   Fri Mar 26 10:07:54 1999 +0000

    - cosmetic (reorder in ALL_LINGUAS).
    
    
    - cosmetic (reorder in ALL_LINGUAS).

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2741da29837614aff08d08a4d75f4eda7567749e
Author: Jaka Mocnik <jaka.mocnik@kiss.uni-lj.si>
Date:   Fri Mar 26 00:18:45 1999 +0000

    connect combo_changed() to both entry's activate and list's
    
    
    1999-03-26  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>
    
        * capplets/gnome-edit-properties/gnome-edit-properties.c
        (entry_changed) renamed to combo_changed.
        (edit_setup): connect combo_changed() to both entry's activate
        and list's selection_changed signals.
        (edit_read): g_strdup text from entry. otherwise it is changed
        as the entry changes. g_free() it at appropriate places.

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 3ddaa3aa6f0e071cc14ed493f0c231f7cdb6864b
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Thu Mar 25 23:05:16 1999 +0000

    Updated translation
    
    1999-03-26  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation

 po/ChangeLog |  4 +++
 po/no.po     | 79 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 54 insertions(+), 29 deletions(-)

commit d4375842c06b6e01ad3d5a52d91247b1ae977eea
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Tue Mar 23 17:47:18 1999 +0000

    First look at `default.wm/Default/WM' before `$(datadir)/default.wm' for
    
    1999-03-23  Martin Baulig  <martin@home-of-linux.org>
    
        * capplets/wm-properties/wm-list.c (wm_list_init): First look
        at `default.wm/Default/WM' before `$(datadir)/default.wm' for
        the default WM so the gnome-wm script can write the chosen WM
        there.

 ChangeLog                        |  7 +++++++
 capplets/wm-properties/wm-list.c | 11 ++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

commit f15c405f95e06ec041af4c5ee34fd55e83a423fd
Author: Kjartan Maraas <kmaraas@online.no>
Date:   Tue Mar 23 00:44:50 1999 +0000

    Updated translation
    
    1999-03-23  Kjartan Maraas  <kmaraas@online.no>
    
                * no.po: Updated translation

 po/no.po | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

commit e157d883c6fbffa4da7aaa90cbfec85c7ecff95a
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Mon Mar 22 22:50:56 1999 +0000

    updated spanish language file

 po/es.po | 129 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 58 insertions(+), 71 deletions(-)

commit be48aba8d714e5364f4530b5b853b837a56c76c7
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Mar 22 17:12:56 1999 +0000

    removed debugging messages.
    Releasing 1.0.4

 ChangeLog    |   6 +++
 configure.in |   2 +-
 po/cs.po     |  50 +++++++++++++++----------
 po/da.po     |  50 +++++++++++++++----------
 po/de.po     |  50 +++++++++++++++----------
 po/es.po     | 119 +++++++++++++++++++++++++++++++++--------------------------
 po/fi.po     |  50 +++++++++++++++----------
 po/fr.po     |  50 +++++++++++++++----------
 po/ga.po     |  50 +++++++++++++++----------
 po/hu.po     |  51 +++++++++++++++----------
 po/it.po     |  50 +++++++++++++++----------
 po/ja.po     |  50 +++++++++++++++----------
 po/ko.po     |  51 +++++++++++++++----------
 po/no.po     |  51 +++++++++++++++----------
 po/pl.po     |  50 +++++++++++++++----------
 po/pt.po     |  54 +++++++++++++++++----------
 po/ru.po     |  50 +++++++++++++++----------
 po/sv.po     |  50 +++++++++++++++----------
 18 files changed, 544 insertions(+), 340 deletions(-)

commit 4db5641ca211150bcd83600655d8ce099277315b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Mar 21 14:11:56 1999 +0000

    updated spanish language file

 po/es.po | 89 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 46 insertions(+), 43 deletions(-)

commit a8848f194a79a3b82ec174b5554cff621ef769ff
Author: Frank Belew (Myth) <frb@src.gnome.org>
Date:   Sun Mar 21 07:36:03 1999 +0000

    capplets/gnome-edit-properties/gnome-edit-properties.c: added Nedit to the list

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 44d961a2fd226cd6f2356b61a4007e512a25a581
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Fri Mar 19 05:34:00 1999 +0000

    Fix from owen so that the preview process will die properly on 2.2 kernels
    when you exit the theme-selector-capplet
    
    Dr Mike <drmike@redhat.com>

 capplets/theme-switcher/demo.c       | 5 +++--
 capplets/theme-switcher/demo.c-45827 | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 16e9b022462d3b91304a0874a740c560197beae7
Author: Timur Bakeyev <mc@bat.ru>
Date:   Tue Mar 16 14:57:30 1999 +0000

    Add missed #include <sys/types.h>
    
    
    Tue Mar 16 17:54:04 1999 Timur Bakeyev <mc@bat.ru>
    
        * capplets/wm-properties/wm-list.c: Add missed #include <sys/types.h>

 ChangeLog                        | 4 ++++
 capplets/wm-properties/wm-list.c | 1 +
 2 files changed, 5 insertions(+)

commit 3cff1f9546a239834c328c7a1e9f93cd71e4fd2e
Author: Nuno Ferreira <nmrf@rnl.ist.utl.pt>
Date:   Tue Mar 16 00:07:28 1999 +0000

    Updated Portuguese translation.
    
    1999-03-16  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 35 ++++++++++++++++-------------------
 2 files changed, 20 insertions(+), 19 deletions(-)

commit 61871c426e3bfc070acf94f1e6af0b3ebf392b41
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Mar 15 19:31:13 1999 +0000

    No more warnings.
    
    
    1999-03-15  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/mime-type/: No more warnings.

 ChangeLog                        |  2 ++
 capplets/mime-type/edit-window.c | 12 +++++++-----
 capplets/mime-type/edit-window.h | 11 ++++++-----
 capplets/mime-type/mime-data.c   | 11 +++++++----
 capplets/mime-type/mime-data.h   |  4 ++--
 capplets/mime-type/mime-info.c   |  9 +++++----
 capplets/mime-type/mime-info.h   |  8 ++++----
 7 files changed, 33 insertions(+), 24 deletions(-)

commit 0ab962a48397415f6cf2bbec07eb565bd412bada
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Mar 15 18:05:33 1999 +0000

    Oh fooey. I forgot a file again... )-: I should know better by now...
    
    
    
    Oh fooey.  I forgot a file again... )-:
    I should know better by now...
    
    1999-03-15  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/mime-type/mime-info.c (write_initial_keys): Now we
        explicitly remove then recreate the file, so that we can guarantee
        that the mime-type gets reread.

 ChangeLog                      |   6 +
 capplets/mime-type/mime-info.c | 479 +++++++++++++++++++++++++++++++++++++++++
 capplets/mime-type/mime-info.h |  17 ++
 3 files changed, 502 insertions(+)

commit f4f5d28ffd179ba93f025ca62e024a536ab3a308
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Mar 15 04:51:12 1999 +0000

    We want to turn dpms off by default.
    
    
    1999-03-14  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/callbacks.c (screensaver_load):
        We want to turn dpms off by default.

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit 692ae9523448349f2408f3922540ecefd417d7eb
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Mar 15 04:07:36 1999 +0000

    the mime-type capplet should be ready for prime-time...
    Hopefully it'll work for most people.

 ChangeLog                              |   5 ++
 capplets/Makefile.am                   |   4 +-
 capplets/mime-type/Makefile.am         |   4 +-
 capplets/mime-type/edit-window.c       | 157 ++++++++++++++++++---------------
 capplets/mime-type/edit-window.h       |   5 +-
 capplets/mime-type/mime-data.c         |  24 +++--
 capplets/mime-type/mime-type-capplet.c |  25 +++---
 configure.in                           |   2 +-
 po/cs.po                               |  42 +++++----
 po/da.po                               |  30 +++++--
 po/de.po                               |  34 ++++---
 po/es.po                               |  30 +++++--
 po/fi.po                               |  34 ++++---
 po/fr.po                               |  30 +++++--
 po/ga.po                               |  34 ++++---
 po/hu.po                               |  31 +++++--
 po/it.po                               |  34 ++++---
 po/ja.po                               |  30 +++++--
 po/ko.po                               |  30 +++++--
 po/no.po                               |   4 +-
 po/pl.po                               |  34 ++++---
 po/pt.po                               |  30 +++++--
 po/ru.po                               |  30 +++++--
 po/sv.po                               |  34 ++++---
 24 files changed, 473 insertions(+), 244 deletions(-)

commit 14049208d884171325402adab78780b08ead05fb
Author: Owen Taylor <otaylor@redhat.com>
Date:   Sun Mar 14 22:26:36 1999 +0000

    Decrease time for starting from 20 seconds to 10 seconds.
    
    Fri Mar 12 12:06:18 1999  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/wm-properties/wm-exec.c (start_do): Decrease
        time for starting from 20 seconds to 10 seconds.
    
        * capplets/wm-properties/wm-properties-capplet.c (add_dialog):
        Track selected row properly on adds and deletes.
    
        * capplets/wm-properties/wm-properties-capplet.c: Fix
        bug where wm-properties capplet wouldn't exit upon
        succesful completion.

 ChangeLog                                      | 12 ++++++
 capplets/wm-properties/wm-exec.c               |  2 +-
 capplets/wm-properties/wm-properties-capplet.c | 52 ++++++++++++++++++++++----
 3 files changed, 58 insertions(+), 8 deletions(-)

commit e4d28750e740016e3396a117f6b7d29536110a54
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sun Mar 14 09:13:36 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
    * updated hungarian translations

 po/ChangeLog | 4 ++++
 po/hu.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit d747ffc8a0635d75632687d832ac512829ef99c0
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sat Mar 13 22:21:17 1999 +0000

    Updated translation
    
    1999-03-13  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation

 po/no.po | 33 +++++++++++++++++++++++----------
 1 file changed, 23 insertions(+), 10 deletions(-)

commit c52b6760345f26a882f181dbfdd75e55e48baced
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Sat Mar 13 00:53:31 1999 +0000

    more work. also minor fix in gnome-edit-properties. off to go see cruel
    
    more work.
    also minor fix in gnome-edit-properties.
    off to go see cruel intentions.

 capplets/mime-type/Makefile.am         |   2 +-
 capplets/mime-type/edit-window.c       | 262 ++++++++++++++++++++++++++++++++-
 capplets/mime-type/mime-data.c         |  70 ++++++---
 capplets/mime-type/mime-data.h         |   2 +
 capplets/mime-type/mime-type-capplet.c |   6 +-
 5 files changed, 319 insertions(+), 23 deletions(-)

commit af81c4017fc4ee1c323f099864a2d694190a80f2
Author: Owen Taylor <otaylor@redhat.com>
Date:   Fri Mar 12 15:46:11 1999 +0000

    Wait for our child to exit before quitting. The prevents us from pulling
    
    Fri Mar 12 10:53:10 1999  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/theme-switcher/main.c (main): Wait for
        our child to exit before quitting. The prevents
        us from pulling the socket window out from under
        our child.
    
        * capplets/theme-switcher/demo.c (demo_main): Clean
        up some warnings about types in formats.
    
        * capplets/theme-switcher/demo.c (demo_main): Exit
        cleanly if read from parent fails - don't drop
        a core.

 ChangeLog                            | 14 ++++++++++++
 capplets/theme-switcher/da.h         | 16 +------------
 capplets/theme-switcher/da.h-67648   | 16 +------------
 capplets/theme-switcher/demo.c       | 18 ++++++++-------
 capplets/theme-switcher/demo.c-45827 | 18 ++++++++-------
 capplets/theme-switcher/gui.c        | 44 +++++++++++++++++++++++++++++-------
 capplets/theme-switcher/gui.c-6060   | 44 +++++++++++++++++++++++++++++-------
 capplets/theme-switcher/main.c       |  9 +++++++-
 8 files changed, 116 insertions(+), 63 deletions(-)

commit 4d6e8150b5909bddb8538967a51bca6d38f189e5
Author: Owen Taylor <otaylor@redhat.com>
Date:   Fri Mar 12 07:28:19 1999 +0000

    Add an error dialog if installing a theme fails.
    
    Fri Mar 12 02:21:55 1999  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/theme-switcher/gui.c (browse_dialog_close):
        Add an error dialog if installing a theme fails.
    
        * capplets/theme-switcher/install.c (install_theme): Add
        a return value indicating success or failure.
    
        * capplets/theme-switcher/install.c (install_theme):
        Fixed reversed arguments for installing ungipped tarballs
    
    Fri Mar 12 01:12:15 1999  Owen Taylor  <otaylor@redhat.com>
    
        [ Patch from Patrik Nordebo <isildur@a39.ryd.student.liu.se> ]
    
        * capplets/theme-switcher/install.c (install_theme): Removed
        useless call to wait(). Install themes in .themes,
        not .gtk/themes.
    
    Fri Mar 12 01:06:53 1999  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/theme-switcher/lister.c (edit_file_to_use): Fixed
        reversed lines that were causing initial creation
        not to work properly.
    
        * capplets/theme-switcher/demo.c (send_reread): You
        can't fsync() a pipe...
    
        * capplets/theme-switcher/gui.c: Don't select list
        items before they are added to the list ... removed
        hack that sort of worked around this.
    
        * capplets/theme-switcher/gui.c (make_main): Major
        un-rasterization. (Sort of a shame, this was some
        of the funniest code I've ever seen.)
    
        * capplets/theme-switcher/gui.c (install_theme_callback):
        Removed non-functional transient-for code.
    
        * capplets/theme-switcher/demo.c (demo_data_in): Removed
        brutal, unreliable kill -9 in favor of noticing when
        the IPC pipe closes.
    
        * capplets/theme-switcher/demo.c (demo_main): Solved
        problem where dup2() was going astray by not using it.
    
        * capplets/theme-switcher/gui.c (update_theme_entries): Fix
        cut-and-paste typo.

 ChangeLog                               |  49 ++++++
 capplets/theme-switcher/da.h            |  20 ++-
 capplets/theme-switcher/da.h-67648      |  20 ++-
 capplets/theme-switcher/demo.c          |  33 ++--
 capplets/theme-switcher/demo.c-45827    |  33 ++--
 capplets/theme-switcher/globals.c       |  12 +-
 capplets/theme-switcher/globals.c-53032 |  12 +-
 capplets/theme-switcher/gui.c           | 276 +++++++++++++++++++-------------
 capplets/theme-switcher/gui.c-6060      | 276 +++++++++++++++++++-------------
 capplets/theme-switcher/install.c       |  81 +++++-----
 capplets/theme-switcher/install.c-64828 |  81 +++++-----
 capplets/theme-switcher/lister.c        |   4 +-
 capplets/theme-switcher/lister.c-42011  |   4 +-
 capplets/theme-switcher/main.c          |   1 +
 14 files changed, 534 insertions(+), 368 deletions(-)

commit 01abef3d80ded07be45325583ae67ef1988126c9
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Thu Mar 11 14:00:07 1999 +0000

    Updated translation
    
    1999-03-11  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation

 po/no.po | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit fdb99b1ad10b34d511e6612144d105fd60ad17ff
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Mar 11 03:11:12 1999 +0000

    Beginnings of the mime-type capplet.
    
    Also, fixed the stupid bug that prevented people from debugging capplets
    in gdb.

 ChangeLog                              |   5 +
 capplets/Makefile.am                   |   1 +
 capplets/mime-type/Makefile.am         |  23 +++
 capplets/mime-type/edit-window.c       |  23 +++
 capplets/mime-type/edit-window.h       |  12 ++
 capplets/mime-type/mime-data.c         | 283 +++++++++++++++++++++++++++++++++
 capplets/mime-type/mime-data.h         |  22 +++
 capplets/mime-type/mime-type-capplet.c | 101 ++++++++++++
 configure.in                           |   1 +
 po/no.po                               |  28 ++--
 10 files changed, 487 insertions(+), 12 deletions(-)

commit 70f062386348e1b031a0af070c3a49187a11c8d3
Author: Chris Lahey <clahey@umich.edu>
Date:   Wed Mar 10 19:43:37 1999 +0000

    Updated this to do proper loading with the old value. It also has a "Run
    
    1999-03-10  Chris Lahey  <clahey@umich.edu>
    
            * capplets/gnome-edit-properties/gnome-edit-properties.c: Updated
            this to do proper loading with the old value.  It also has a "Run
            In Terminal" button now.

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 9963e978792ac427fbf0be76ba230664f9587ad1
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Mar 10 00:27:13 1999 +0000

    Preparing for a release.

 capplets/Makefile.am                |   4 +-
 capplets/theme-switcher/Makefile.am |   2 +-
 capplets/wm-properties/Makefile.am  |   2 +-
 configure.in                        |   2 +-
 po/cs.po                            | 118 +++++++++---------
 po/da.po                            | 119 ++++++++++---------
 po/de.po                            | 118 +++++++++---------
 po/es.po                            | 231 ++++++++++++++++++++----------------
 po/fi.po                            | 118 +++++++++---------
 po/fr.po                            | 119 ++++++++++---------
 po/ga.po                            | 118 +++++++++---------
 po/hu.po                            | 122 ++++++++++---------
 po/it.po                            | 118 +++++++++---------
 po/ja.po                            | 119 ++++++++++---------
 po/ko.po                            | 119 ++++++++++---------
 po/pl.po                            | 118 +++++++++---------
 po/pt.po                            | 119 ++++++++++---------
 po/ru.po                            | 119 ++++++++++---------
 po/sv.po                            | 118 +++++++++---------
 19 files changed, 997 insertions(+), 906 deletions(-)

commit 575c19256b01a060dd3f225a5a3be91e7f5c73d7
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Wed Mar 10 00:06:30 1999 +0000

    Update translation
    
    1999-03-10  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Update translation

 po/no.po | 128 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 62 insertions(+), 66 deletions(-)

commit ff9e99528abd9543f737984f6dc4426664f9c0cc
Author: Owen Taylor <otaylor@src.gnome.org>
Date:   Tue Mar 9 19:08:48 1999 +0000

    Fixed log.

 ChangeLog | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 89c7aa35e12fe06fa7a34e48dbc00472cd1e56a3
Author: Jaka Mocnik <jaka.mocnik@kiss.uni-lj.si>
Date:   Mon Mar 8 18:40:57 1999 +0000

    set the combo to the value read.
    
    
    1999-03-08  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>
    
        * capplets/gnome-edit-properties/gnome-edit-properties.c (main):
        set the combo to the value read.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit ee81bac1db9626c4cd5b8b4e89282774c513ea7c
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Sun Mar 7 14:31:53 1999 +0000

    Read the default WM from $(datadir)/default.wm rather than using the first
    
    1999-03-02  Martin Baulig  <martin@home-of-linux.org>
    
        * capplets/wm-properties/wm-list.c (wm_list_init): Read the
        default WM from $(datadir)/default.wm rather than using the
        first one from the list.

 ChangeLog                        |  6 ++++++
 capplets/wm-properties/wm-list.c | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

commit 690b6e88f75b089425adbd3427825427e81da9c2
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Mar 3 00:43:24 1999 +0000

    updated spanish language file

 po/es.po | 252 +++++++++++++++++----------------------------------------------
 1 file changed, 69 insertions(+), 183 deletions(-)

commit 8850f4de69c62072047ac77a128aecc7d941c967
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Tue Mar 2 00:31:20 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
    * Updated hungarian translation

 po/hu.po | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 9a0eb80c5eeb9236f4f37ca31e38cd072c091a98
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Mar 1 21:52:12 1999 +0000

    1.0.1
    
    
    
    1.0.1

 configure.in |   2 +-
 po/cs.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/da.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/de.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/es.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/fi.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/fr.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/ga.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/hu.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/it.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/ja.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/ko.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/no.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/pl.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/pt.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/ru.po     | 106 +++++++++++++++++++++++++++++------------------------------
 po/sv.po     | 106 +++++++++++++++++++++++++++++------------------------------
 17 files changed, 849 insertions(+), 849 deletions(-)

commit 1f7a8497fee232f1d8218ad81104b6410c92ce5a
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Mon Mar 1 16:06:34 1999 +0000

    Bound users guide help to 'Help' buttons for several apps, and cleaned up a few .cvsignores

 .cvsignore                                     |  1 +
 capplets/theme-switcher/da.h                   |  2 ++
 capplets/theme-switcher/da.h-67648             |  2 ++
 capplets/theme-switcher/gui.c                  | 14 ++++++++++++++
 capplets/theme-switcher/gui.c-6060             | 14 ++++++++++++++
 capplets/wm-properties/wm-properties-capplet.c | 15 +++++++++++++++
 6 files changed, 48 insertions(+)

commit 43b45c2205440031e5d398755b1f6c76b9ff545b
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sun Feb 28 23:26:42 1999 +0000

    Fixed a typo in translation

 po/ko.po | 33 +++++++++++++++++++--------------
 1 file changed, 19 insertions(+), 14 deletions(-)

commit a63c6a44071b964ec7f5c23a4bbbf6f7f8775a4d
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sun Feb 28 23:23:44 1999 +0000

    Updated translation

 po/ko.po | 52 +++++++++++++++++++++-------------------------------
 1 file changed, 21 insertions(+), 31 deletions(-)

commit 8a31fccdd0c95c2c01fc9db75f90cb9ff92bda6a
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Sun Feb 28 22:37:37 1999 +0000

    last minute 1.0.0.1 stuff.
    
    
    
    last minute 1.0.0.1 stuff.

 configure.in | 2 +-
 po/cs.po     | 6 +++++-
 po/da.po     | 6 +++++-
 po/de.po     | 9 +++++----
 po/es.po     | 6 +++++-
 po/fi.po     | 9 +++++----
 po/fr.po     | 6 +++++-
 po/ga.po     | 9 +++++----
 po/hu.po     | 6 +++++-
 po/it.po     | 9 +++++----
 po/ja.po     | 6 +++++-
 po/ko.po     | 6 +++++-
 po/no.po     | 6 +++++-
 po/pl.po     | 6 +++++-
 po/pt.po     | 6 +++++-
 po/ru.po     | 6 +++++-
 po/sv.po     | 9 +++++----
 17 files changed, 81 insertions(+), 32 deletions(-)

commit 7a2ce8d8a6c9808614da69590520482bb0077b6f
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Sun Feb 28 22:22:15 1999 +0000

    Added some `--background-image' command line argument hack to set the
    
    1999-02-28  Martin Baulig  <martin@home-of-linux.org>
    
        * capplets/background-properties/app-background.c: Added some
        `--background-image' command line argument hack to set the
        background image.

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit afdd11420399f9a1c4ca581ed42d749a7fc4de3a
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Sun Feb 28 22:03:39 1999 +0000

    Fix .spec file for new .desktop directory.
    
    
    
    Fix .spec file for new .desktop directory.

 control-center.spec.in |   2 +-
 po/cs.po               |  70 ++++++++-----
 po/da.po               |  82 ++++++++++------
 po/de.po               |  81 +++++++++------
 po/es.po               | 262 +++++++++++++++++++++++++++----------------------
 po/fi.po               |  91 ++++++++++-------
 po/fr.po               |  63 +++++++-----
 po/ga.po               |  78 +++++++++------
 po/hu.po               |  41 +++++---
 po/it.po               |  81 +++++++++------
 po/ja.po               |  80 +++++++++------
 po/ko.po               |  77 ++++++++++-----
 po/no.po               |  72 +++++++++-----
 po/pl.po               |  88 ++++++++++-------
 po/pt.po               |  85 ++++++++++------
 po/ru.po               |  75 +++++++++-----
 po/sv.po               |  84 ++++++++++------
 17 files changed, 876 insertions(+), 536 deletions(-)

commit b952960265209757de05a488c277d85951908ef6
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Sun Feb 28 21:43:11 1999 +0000

    Made the N_()'ed strings be translated really.
    
    1999-03-01  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * capplets/sound-properties/sound-properties.c
        (sound_properties_create): Made the N_()'ed strings be translated
        really.
    
        * capplets/sound-properties/sound-properties.c (main): Inserted
        bindtextdomain() and textdomain().
    
        * capplets/bell-properties/bell-properties.c (bell_setup): Marked
        a translatable string with _().
    
        * capplets/*/{*.desktop, *.directory}: Added/Updated Korean
        translation.

 ChangeLog | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 42ba478893d356836242ae0139cbe1430cd57add
Author: Gregory McLean <gregm@src.gnome.org>
Date:   Sun Feb 28 02:24:54 1999 +0000

    libtool on the alpha gets confused by all the diffrent types (10 at last
    count). But in this case an Alpha is an Alpha :) Educate the spec file
    about this. Also update the requirements to match the latest released,
    stable versions of what it requires. This will make bug hunting much easier.
    
    
    -- Greg

 control-center.spec.in | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

commit 13226b06a7ffbdd2c677a228f51b9d291b94f5bc
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sat Feb 27 20:10:43 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
        * Updated hungarian translation
        * i18n fix for "Disable background selection"

 ChangeLog |   5 +++
 po/hu.po  | 119 ++++++++++++++++++++++++++++++++------------------------------
 2 files changed, 66 insertions(+), 58 deletions(-)

commit fdd7d9e79fa4d4a2103bdab863de4cb5689cc8a7
Author: bertrand <Bertrand.Guiheneuf@inria.fr>
Date:   Sat Feb 27 15:25:26 1999 +0000

    Fixed the "You have no entries listed ..." control-center crash.
    
    1999-02-27  bertrand <Bertrand.Guiheneuf@inria.fr>
    
        Fixed the "You have no entries listed ..."
        control-center crash.
    
        * capplets/desktop-links/Makefile.am:
        comment out the panel data install entries to respect
        new panel organisation. ".directory" are now installed
        correctly.
    
        * capplets/Makefile.am (always_built_SUBDIRS): uncomment
        desktop-link. This was causing gnomecc to crash :(

 ChangeLog            | 10 ++++++++++
 capplets/Makefile.am |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit d1165626617222849c7f5c463faf11abb7f06135
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Fri Feb 26 18:26:50 1999 +0000

    fixes + updates.
    
    * fr.po: fixes + updates.

 po/fr.po | 121 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 61 insertions(+), 60 deletions(-)

commit 37c1bacac1cc713c038d2b36ee31ffb1bcc5737e
Author: Rosanna Yuen <zana@src.gnome.org>
Date:   Fri Feb 26 17:24:10 1999 +0000

    Beginnings of the theme-selector dialog.
    typo fix in Flag.desktop

 capplets/theme-switcher/gui.c      | 77 +++++++++++++++++++++++++++++++++++++-
 capplets/theme-switcher/gui.c-6060 | 77 +++++++++++++++++++++++++++++++++++++-
 2 files changed, 152 insertions(+), 2 deletions(-)

commit ed042b5ffb6c72ad8912dc263941d9b12519d990
Author: Owen Taylor <otaylor@redhat.com>
Date:   Fri Feb 26 00:34:57 1999 +0000

    Add a tryexec.
    
    1999-02-25  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/wm-properties/wm-desktops/IceWM.desktop (TryExec): Add
        a tryexec.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 67cd7b081917f00e201de933a71599e2057c6ae5
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Thu Feb 25 20:09:09 1999 +0000

    I've implemented the new Panel groups as suggested on gnome-hackers
    
    Dr Mike <drmike@redhat.com>

 capplets/Makefile.am                | 4 ++--
 capplets/theme-switcher/Makefile.am | 3 +--
 capplets/url-properties/Makefile.am | 3 +--
 capplets/wm-properties/Makefile.am  | 3 +++
 4 files changed, 7 insertions(+), 6 deletions(-)

commit 1ca9ebd2cd2b7b783155da3f691e9dd1e834d0a0
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Feb 25 19:28:40 1999 +0000

    updated spanish language file and some menu entries;
    deleted all es_* there is nothing specific (and the files were empty),
    deleted ca.po, the files was empty and not managed.

 configure.in |    3 +-
 po/ca.po     | 2344 ----------------------------------------------------------
 po/es.po     | 2221 ++++---------------------------------------------------
 po/es_DO.po  |  660 -----------------
 po/es_GT.po  |  660 -----------------
 po/es_HN.po  |  660 -----------------
 po/es_MX.po  |  660 -----------------
 po/es_PA.po  |  660 -----------------
 po/es_PE.po  |  660 -----------------
 po/es_SV.po  |  660 -----------------
 10 files changed, 162 insertions(+), 9026 deletions(-)

commit 16bf2d9bf73f16d9777314fbc427b64e31774647
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Thu Feb 25 17:39:20 1999 +0000

    Updated translation

 po/ko.po | 345 +++++++++------------------------------------------------------
 1 file changed, 47 insertions(+), 298 deletions(-)

commit b02d416a45dbe97fff8add5e3ba6cddc7690b21a
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Thu Feb 25 09:35:47 1999 +0000

    Updated translation.
    
    1999-02-25  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation.

 po/ChangeLog |  4 ++++
 po/no.po     | 71 +++++++++++++++++++++++++-----------------------------------
 2 files changed, 33 insertions(+), 42 deletions(-)

commit 922e511ffe6ba016fc1b095a9863df4925c70fc3
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Feb 25 08:25:24 1999 +0000

    kill the last traces of e-conf

 configure.in | 1 -
 1 file changed, 1 deletion(-)

commit c1b71115d7bfc95917d738dc849f745b6197f10f
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Feb 25 08:04:23 1999 +0000

    Up we go, to 1.0 <-:
    
    1999-02-25  Jonathan Blandford  <jrb@redhat.com>
    
        * configure.in: Up we go, to 1.0 <-:
    
        * capplets/screensaver-properties/screensaver-desktops/*.desktop:
        Many changes by Rosanna...

 ChangeLog    | 12 ++++++++++++
 configure.in |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 7efab1f2837af0ebb70709aaf9cf284bf855d7e1
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Thu Feb 25 07:12:20 1999 +0000

    Updated Russian translations

 po/ru.po | 661 ++++++---------------------------------------------------------
 1 file changed, 57 insertions(+), 604 deletions(-)

commit 9f1bbe01d6dceb39e8b91042332a3dd236d429fe
Author: Sergey I. Panov <sipan@src.gnome.org>
Date:   Thu Feb 25 06:43:45 1999 +0000

    Adding Russian translations to *.desktop and *.directory files

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit a3f33d2f9b5de45ff3a964755ddc78df8d936019
Author: Owen Taylor <otaylor@redhat.com>
Date:   Wed Feb 24 22:59:12 1999 +0000

    Added window manager switching capplet. Please test. (a lot).
    
    1999-02-24  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/wm-properties: Added window manager
        switching capplet. Please test. (a lot).

 ChangeLog                                      |    5 +
 capplets/Makefile.am                           |    2 +-
 capplets/wm-properties/Makefile.am             |   26 +
 capplets/wm-properties/wm-desktops/Makefile.am |    9 +
 capplets/wm-properties/wm-exec.c               |  332 ++++++++
 capplets/wm-properties/wm-list.c               |  361 ++++++++
 capplets/wm-properties/wm-properties-capplet.c | 1041 ++++++++++++++++++++++++
 capplets/wm-properties/wm-properties.h         |   56 ++
 configure.in                                   |    2 +
 9 files changed, 1833 insertions(+), 1 deletion(-)

commit b0424d949e5ff6182c05873f6188675d1a72de69
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Feb 24 15:41:39 1999 +0000

    Comment out the icon code until we actually have enough icons to make it
    
    
    1999-02-24  Jonathan Blandford  <jrb@redhat.com>
    
        * tree.c (generate_tree_helper): Comment out the icon code until
        we actually have enough icons to make it worthwhile.
    
    1999-02-23  Jonathan Blandford  <jrb@redhat.com>
    
        *
        capplets/screensaver-properties/screensaver-desktops/Makefile.am:
        install in the right place.

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 8f40b30da275b81c01701a601b8cf3aa4531e132
Author: Bertrand Guiheneuf <bertrand@src.gnome.org>
Date:   Wed Feb 24 12:09:48 1999 +0000

    updated fr translations

 ChangeLog |  4 ++++
 po/fr.po  | 53 +++++++++++++++++++++++++++--------------------------
 2 files changed, 31 insertions(+), 26 deletions(-)

commit 4de2453243a24b1547b8c0fb1d7899a794d39b9a
Author: Michael Johnson <johnsonm@src.gnome.org>
Date:   Tue Feb 23 22:48:22 1999 +0000

    edit by Red Hat staff

 control-center.spec.in | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

commit c6f5d37671de87a14c06ea0cba4a5dc04bdcef71
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Feb 23 19:20:13 1999 +0000

    po files changed... oh well...
    also, removed e-conf from the Makefile.

 ChangeLog            |   4 +
 capplets/Makefile.am |   2 +-
 configure.in         |   4 +-
 po/ca.po             | 617 ++++++++++++++++------------------------
 po/cs.po             | 511 +++++++++++----------------------
 po/da.po             | 582 ++++++++++++--------------------------
 po/de.po             | 581 ++++++++++++++------------------------
 po/es.po             | 622 ++++++++++++++++------------------------
 po/es_DO.po          | 472 +++++++++----------------------
 po/es_GT.po          | 472 +++++++++----------------------
 po/es_HN.po          | 472 +++++++++----------------------
 po/es_MX.po          | 472 +++++++++----------------------
 po/es_PA.po          | 472 +++++++++----------------------
 po/es_PE.po          | 472 +++++++++----------------------
 po/es_SV.po          | 472 +++++++++----------------------
 po/fi.po             | 619 ++++++++++++++++------------------------
 po/fr.po             | 695 +++++++++++++++++++--------------------------
 po/ga.po             | 558 +++++++++++++-----------------------
 po/hu.po             | 176 +++++++-----
 po/it.po             | 585 ++++++++++++++------------------------
 po/ja.po             | 530 ++++++++++++-----------------------
 po/ko.po             | 778 ++++++++++++++++++++++++---------------------------
 po/no.po             | 175 +++++++-----
 po/pl.po             | 613 ++++++++++++++++------------------------
 po/ru.po             | 633 ++++++++++++++++++-----------------------
 po/sv.po             | 604 +++++++++++++++------------------------
 26 files changed, 4393 insertions(+), 7800 deletions(-)

commit 49f909ce6fdb9f65ae97b28b03cd04b888018e81
Author: Owen Taylor <otaylor@redhat.com>
Date:   Tue Feb 23 19:05:46 1999 +0000

    Use g_get_home_dir() instead of getenv ("HOME")
    
    Mon Feb 22 22:23:34 1999  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/theme-switcher/lister.c: Use g_get_home_dir()
         instead of getenv ("HOME")
    
        * capplets/theme-switcher/demo.c (demo_main): Strip
         out ~/.gtkrc from the default file set so we don't
         get a merge of the current theme and the new one.
    
        * capplets/theme-switcher/lister.c (use_theme): Modify
         .gtkrc instead of .gnome/gtkrc.

 ChangeLog                               | 12 ++++++++++++
 capplets/theme-switcher/demo.c          | 32 +++++++++++++++++++++++++++++++-
 capplets/theme-switcher/demo.c-45827    | 32 +++++++++++++++++++++++++++++++-
 capplets/theme-switcher/install.c       |  2 +-
 capplets/theme-switcher/install.c-64828 |  2 +-
 capplets/theme-switcher/lister.c        | 26 +++++++++++++++++++++-----
 capplets/theme-switcher/lister.c-42011  | 26 +++++++++++++++++++++-----
 7 files changed, 118 insertions(+), 14 deletions(-)

commit 36f65a53fb108e05d854f1893b0c8c7e4126ba5d
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Tue Feb 23 01:33:54 1999 +0000

    Added/Updated Portuguese translations.
    
    * Added/Updated Portuguese translations.

 ChangeLog    |  10 +++
 po/ChangeLog |   4 ++
 po/pt.po     | 197 ++++++++++++++++++++++++++++++++++++-----------------------
 3 files changed, 133 insertions(+), 78 deletions(-)

commit b360db0ee6b2edeb8118a593c3d64a6256bb6fd6
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Feb 22 22:44:02 1999 +0000

    Use a slightly smarter/faster algorithm for getting the connection to esd.
    
    
    
    * capplets/sound-properties/*.c: Use a slightly smarter/faster algorithm
    for getting the connection to esd.

 ChangeLog    | 5 +++++
 configure.in | 2 ++
 2 files changed, 7 insertions(+)

commit bdc52b9957e1eadb97fdfab5e5a656cb6cd172a6
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Feb 22 22:30:56 1999 +0000

    patch submitted by Franklin Belew <frb@umr.edu> to handle eterm/gnome-term
    
    
    1999-02-22  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/background-properties/property-background.c: patch
        submitted by Franklin Belew <frb@umr.edu> to handle
        eterm/gnome-term transparency. DOES NOT WORK CORRECTLY WITH TILED
        BACKGROUNDS.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 74aa0be3e206dd6a74c1aa7bf2d5ea1b5e87cceb
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Feb 22 20:52:23 1999 +0000

    forgot this

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 29fb1961e21c317aefca7e5dced3c28dece20535
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Feb 22 20:38:55 1999 +0000

    install desktop entries to the panel, so that the panel can deal with the
    
    
    1999-02-22  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/*/Makefile.am (install-data-local): install
        desktop entries to the panel, so that the panel can deal with the
        control-center.
    
        * capplets/desktop-links/Gnome.directory (Type): Make more
        compatible with the panel.

 capplets/theme-switcher/Makefile.am | 4 ++++
 capplets/url-properties/Makefile.am | 4 ++++
 2 files changed, 8 insertions(+)

commit 9ca8fece4f96fa6f1c1b3d9de98c6ed53bb8fe26
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Mon Feb 22 16:38:02 1999 +0000

    Added/Updated Korean translations.
    
    1999-02-23  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * capplets/desktop-links/{Desktop,Peripherals,UIOptions}.desktop:
        Added/Updated Korean translations.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 99a2cb46f4c0fca36aeaa2e1b8e6aa45fa96e6a1
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Feb 22 16:22:28 1999 +0000

    changed session_args[2] -> session_args[3] to allow for THREE items in it.
    
    
    1999-02-22  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/background-properties/app-background.c (main): changed
        session_args[2] -> session_args[3] to allow for THREE items in it.
        * capplets/screensaver-properties/screensaver-properties-capplet.c
        (main):  ditto.
        * capplets/bell-properties/bell-properties.c (main): ditto
        * capplets/keyboard-properties/keyboard-properties.c (main):
        ditto.
        * capplets/sound-properties/sound-properties.c (main): ditto.
    
    1999-02-22  Jonathan Blandford  <jrb@redhat.com>
    
        * capplet-manager.c (launch_capplet): fixed bug in save-changes
        dialog
    
        * callbacks.c (exit_row_callback): fixed the about box.

 ChangeLog                      | 11 +++++++++++
 capplets/theme-switcher/main.c | 10 +++++++---
 2 files changed, 18 insertions(+), 3 deletions(-)

commit e94ce3e48bf2658c7e6c5c7cee6066e77877d5c9
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Feb 22 01:20:10 1999 +0000

    removed extraneous debugging lines.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 20cfbbfeb63249fd103aec2109cdae68c3024490
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Feb 22 00:50:21 1999 +0000

    reworked the heirarchy of the tree.
    Now it makes a bit more sense, maybe...
    also, changed the indent size of the tree.

 capplets/theme-switcher/Makefile.am | 2 +-
 capplets/url-properties/Makefile.am | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 251ebe0484a8820d31c47e541bf6da8536a0b09b
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Sun Feb 21 20:15:29 1999 +0000

    Look for desktop files in gnome/apps, not apps/
    
    Dr Mike <drmike@redhat.com>

 control-center.spec.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b4d0d3d7ebcb78733d1b67bbc4bcd353a9892387
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Sun Feb 21 18:21:06 1999 +0000

    I have made control-center.spec a generated file, and I also updated
    the template specfile.
    
    Dr Mike <drmike@redhat.com>

 ChangeLog              |   3 ++
 Makefile.am            |   5 ++-
 configure.in           |   1 +
 control-center.spec    |  81 -----------------------------------
 control-center.spec.in | 112 +++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 120 insertions(+), 82 deletions(-)

commit 96e8b1ae3722b35a5b7aa57510caa683ab174e52
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Feb 19 16:46:44 1999 +0000

    Now preview actually works again.

 ChangeLog | 1 +
 1 file changed, 1 insertion(+)

commit 613d5ff87f125866fce54446d5b535a7913e77be
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Feb 19 15:26:53 1999 +0000

    it will now handle drawing previews better. Still a bit broken, though...
    
    1999-02-19  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/callbacks.c
        (dialog_destroy_callback): it will now handle drawing previews
        better.  Still a bit broken, though... ):

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit b2fbff827330538b78801737157b6336f2a0daec
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Fri Feb 19 14:28:06 1999 +0000

    cancel didn't do anything. Now it does.
    
    
    1999-02-19  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/background-properties/property-background.c
        (background_revert): cancel didn't do anything.  Now it does.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 52068b992b43ef71d4824682932c07246c01dd68
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Thu Feb 18 23:39:30 1999 +0000

    forgot this _AGAIN_ ):

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit c388ea69b5c92f642b19710fc7119a5f22cbbddb
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Feb 17 23:01:42 1999 +0000

    *capplets/background-properties/property-background.c (color_setup): many
    
    
    1999-02-17  Jonathan Blandford  <jrb@redhat.com>
    
        *capplets/background-properties/property-background.c
        (color_setup): many changes.  Looks a lot cleaner now.
        capplets/screensaver-properties/screensaver-desktops/Rocks.desktop
        (Demo): Make a minor change to make it less sea-sick inducing
    
        *capplets/screensaver-properties/screensaver-desktops/Bouboule.desktop (ExtendedComment):
        Get rid of the bogus default-flags val of root.

 ChangeLog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 6294ec9734b74941380417e0e3036c3cc74d6b61
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Wed Feb 17 07:29:51 1999 +0000

    Added missing bindtextdomain() and textdomain().
    
    1999-02-17  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * capplets/keyboard-properties/keyboard-properties.c (main): Added
        missing bindtextdomain() and textdomain().

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 541413cae4c49f7ad894645a2c852a8281d1f823
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Feb 17 02:28:59 1999 +0000

    updated danish language files and added danish to menus

 po/da.po | 2096 +++++++++-----------------------------------------------------
 1 file changed, 279 insertions(+), 1817 deletions(-)

commit 1538ace118814c6ad3b5733075d990ffda841110
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Wed Feb 17 01:09:46 1999 +0000

    I think sm has the right behaviour now.
    
    
    1999-02-16  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/screensaver-properties-capplet.c
        (main): I think sm has the right behaviour now.
    
        * capplets/screensaver-properties/callbacks.c (revert_callback):
        oops... now it has the right behaviour.  *fingers really crossed*

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit f8f06328e88155977090a8ebe526d0ace87df585
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Tue Feb 16 22:30:56 1999 +0000

    A lot of changes. I *think* it has the right behaviour now. If it doesn't,
    
    
    1999-02-16  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/screensaver-properties-capplet.c
        (main): A lot of changes.  I *think* it has the right behaviour
        now.  If it doesn't, please let me know.  Also, there's now a
        Random screensaver added.

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit fb2f4dbec3fbfa1835a54add294f06e1e456b854
Author: Felix Bellaby <felix@src.gnome.org>
Date:   Tue Feb 16 21:46:23 1999 +0000

    add session-properties capplet

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit 2f824dfa3648a76dfbb09dd1010fa74f0e6a4f2d
Author: Felix Bellaby <felix@src.gnome.org>
Date:   Tue Feb 16 21:45:50 1999 +0000

    add session-properties.c

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 88f6f1a97d32891772d72614cd78d9875981c3df
Author: Felix Bellaby <felix@src.gnome.org>
Date:   Tue Feb 16 21:45:12 1999 +0000

    add SM tests for session properties capplet

 configure.in | 4 ++++
 1 file changed, 4 insertions(+)

commit 899ed3022b348c8b6ca04ee9a488e3e014594127
Author: Felix Bellaby <felix@src.gnome.org>
Date:   Tue Feb 16 21:44:20 1999 +0000

    add session properties capplet

 capplets/Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit b99fe8d77a8055b3de1c32a5909994c4b9d60737
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Tue Feb 16 21:11:14 1999 +0000

    Shooby Ban <bansz@szif.hu>
    
     * Updated hungarian translation

 capplets/theme-switcher/theme-selector.desktop |   2 +
 po/hu.po                                       | 946 +++++--------------------
 2 files changed, 177 insertions(+), 771 deletions(-)

commit 370887927ca5b9a30424a715b6aed5ab679b2c31
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Tue Feb 16 20:58:48 1999 +0000

    Updated no.po
    
    1999-02-16  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated no.po

 po/no.po | 1041 +++++---------------------------------------------------------
 1 file changed, 73 insertions(+), 968 deletions(-)

commit 90f442426b35525d8ea96c0e2749183aa2d55aec
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Feb 15 22:25:08 1999 +0000

    Fix much brokenness. Should allow per-user sound settings now, and give
    
    
    
    Fix much brokenness. Should allow per-user sound settings now, and give
    warnings when the sound file doesn't exist.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 7b98c2bb971c5131c37d614ce54d71b626136cec
Author: Miguel de Icaza <miguel@nuclecu.unam.mx>
Date:   Mon Feb 15 20:49:42 1999 +0000

    Add gmc/Cooledit editor.
    
    1999-02-15  Miguel de Icaza  <miguel@nuclecu.unam.mx>
    
        * capplets/gnome-edit-properties/gnome-edit-properties.c
        (possible_editors): Add gmc/Cooledit editor.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 6b4e7d5ec1bb940aa8e0736572c8054415a248e2
Author: Nuno Ferreira <nmrf@rnl.ist.utl.pt>
Date:   Mon Feb 15 20:37:39 1999 +0000

    Updated.
    
    1999-02-15  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.

 po/ChangeLog |   4 +
 po/pt.po     | 450 +++++++++++------------------------------------------------
 2 files changed, 82 insertions(+), 372 deletions(-)

commit f2ffe2e7c5552ae95575aafafe5f00ac253a5f80
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sat Feb 13 16:32:51 1999 +0000

    updated translation
    
    1999-02-13  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * updated translation

 po/no.po | 896 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 746 insertions(+), 150 deletions(-)

commit 7bf109548778168b754444b71e863bbcb4da53b9
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Fri Feb 12 20:54:31 1999 +0000

    0.99.8.1
    
    
    
    0.99.8.1

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5d54f7923bc99c202c88231a4d7414dea88a4881
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Fri Feb 12 20:50:06 1999 +0000

    remove e-conf from potfiles......
    
    
    
    remove e-conf from potfiles......

 po/POTFILES.in | 2 --
 1 file changed, 2 deletions(-)

commit 1dc0708a5a41e3e5ddc0133631acb92e04f19919
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Feb 8 21:41:06 1999 +0000

    Change default background color to #005060 (from icewm).
    
    
    
    Change default background color to #005060 (from icewm).

 ChangeLog    | 5 +++++
 configure.in | 4 ++++
 2 files changed, 9 insertions(+)

commit f8b1a6c19dbae18d6cd4b84dd83677d6de3171a1
Author: Frank Belew (Myth) <frb@src.gnome.org>
Date:   Mon Feb 8 06:45:14 1999 +0000

    just some simple changes to remove warnings
    
    Frank Belew aka Myth

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit b09e4731150387372b66beff8c6f9083a1247384
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Mon Feb 8 00:44:18 1999 +0000

    Updated translations
    
    1999-02-08  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translations

 po/no.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 03c0ba96a1816f7921af2bccf5d4f56d92fc691d
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Mon Feb 8 00:29:53 1999 +0000

    Updated no.po.
    
    1999-02-08  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated no.po.

 po/no.po | 346 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 199 insertions(+), 147 deletions(-)

commit ad85c69073c945c06cab72534d61cf168260156e
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Sun Feb 7 07:48:07 1999 +0000

    Spell fixes

 po/ru.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit f46bba821f3ea7f33089bcd1886fde9ab8d619e3
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sat Feb 6 19:28:43 1999 +0000

    Update fr.po
    
    * Update fr.po

 po/fr.po | 274 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 174 insertions(+), 100 deletions(-)

commit bdd945f8e1029b7d34350210007618654dd5d718
Author: George Lebl <jirka@5z.com>
Date:   Sat Feb 6 01:29:31 1999 +0000

    add gvim to the list of editors
    
    Fri Feb 05 17:29:03 1999  George Lebl  <jirka@5z.com>
    
            * capplets/gnome-edit-properties/gnome-edit-properties.c: add
              gvim to the list of editors

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit a9dffcbce33543ad9775de4f0561d61b2b91c780
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Fri Feb 5 17:30:14 1999 +0000

    Added Korean translations.
    
    1999-02-06  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * capplets/*/*.desktop, capplets/*/*.directory,
        control-center/gnomecc.desktop: Added Korean translations.

 ChangeLog                                      | 5 +++++
 capplets/theme-switcher/theme-selector.desktop | 2 ++
 2 files changed, 7 insertions(+)

commit 75c273def005526d484888819114b2afbf8db523
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Fri Feb 5 17:26:12 1999 +0000

    Added capplets/gnome-edit-properties/gnome-edit-properties.c.
    
    1999-02-06  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * POTFILES.in: Added
        capplets/gnome-edit-properties/gnome-edit-properties.c.
    
    and Updated Korean translation..

 po/ChangeLog   |   5 +
 po/POTFILES.in |   1 +
 po/ko.po       | 416 +++++++++++++++++++++++++++++++--------------------------
 3 files changed, 235 insertions(+), 187 deletions(-)

commit e3ba9c0a03ebdf9dd1ea5098c031713933d2c4fe
Author: Elliot Lee <sopwith@redhat.com>
Date:   Tue Feb 2 23:06:59 1999 +0000

    Starts esd again. Also removed esd-side memory leak by deleting old
    
    
    1999-02-02  Elliot Lee <sopwith@redhat.com>
        * capplets/sound-properties/sound-properties.c:
        Starts esd again.
        Also removed esd-side memory leak by deleting old versions
        of the samples we are reloading.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7c3a7d7aec6945f5d44ee019ff058069f08cf3d8
Author: The Rasterman <raster@redhat.com>
Date:   Tue Feb 2 02:22:58 1999 +0000

    upped to 0.99.5
    
    
    
    1999-02-01  The Rasterman <raster@redhat.com>
            * configure.in, control-center.spec: upped to 0.99.5

 ChangeLog           | 3 +++
 configure.in        | 2 +-
 control-center.spec | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

commit cbc5809335a5a0f162adf87fd1d22d9d08aead84
Author: Chris Lahey <clahey@src.gnome.org>
Date:   Mon Feb 1 20:49:11 1999 +0000

    Added a gnome-edit-properties capplet.

 ChangeLog            | 20 ++++++++++++++++++++
 capplets/Makefile.am |  2 +-
 configure.in         |  1 +
 3 files changed, 22 insertions(+), 1 deletion(-)

commit 6b8874144c6fa1ca53195333e171fc14dd3a6462
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Feb 1 19:37:29 1999 +0000

    Revert session management changes until further discussion.
    
    
    
    Revert session management changes until further discussion.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit d44c7f7ce41e94c630e78a5fdccd3889b618b87e
Author: Felix Bellaby <felix@src.gnome.org>
Date:   Mon Feb 1 15:18:22 1999 +0000

    Fixes to session management for RestartAnyway clients

 ChangeLog | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 8e5126b34bf934a8854668482b1b992463643a85
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Jan 25 23:33:57 1999 +0000

    Don't try to run junk (initialize buffers, or don't use them at all).
    
    
    
    Don't try to run junk (initialize buffers, or don't use them at all).

 capplets/theme-switcher/gui.c           |  8 ++++----
 capplets/theme-switcher/gui.c-6060      |  8 ++++----
 capplets/theme-switcher/install.c       | 12 ++++++++----
 capplets/theme-switcher/install.c-64828 | 12 ++++++++----
 4 files changed, 24 insertions(+), 16 deletions(-)

commit 6843e880cee5eac12fb0fcaa4875f875ed0dc3e1
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Mon Jan 25 21:05:03 1999 +0000

    updated

 po/ru.po | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit 579b761a1d81a6c133979843d0faa9b333153d5c
Author: Martin Baulig <martin@src.gnome.org>
Date:   Mon Jan 18 06:34:34 1999 +0000

    Add missing files to the file list.

 control-center.spec | 4 ++++
 1 file changed, 4 insertions(+)

commit e99fda735d3339b1884bc5cf6e4f115a35d1bdb1
Author: Martin Baulig <martin@src.gnome.org>
Date:   Sun Jan 17 11:32:50 1999 +0000

    Set version number to 0.99.3 and made a new tarball.

 configure.in        |   4 +-
 control-center.spec |   6 +-
 po/ca.po            | 779 ++++++++++++++++++++++++++++++++++-----------------
 po/cs.po            | 674 +++++++++++++++++++++++++++++++-------------
 po/da.po            | 779 ++++++++++++++++++++++++++++++++++-----------------
 po/de.po            | 752 +++++++++++++++++++++++++++++++++----------------
 po/es.po            | 782 ++++++++++++++++++++++++++++++++++-----------------
 po/es_DO.po         | 645 ++++++++++++++++++++++++++++++------------
 po/es_GT.po         | 645 ++++++++++++++++++++++++++++++------------
 po/es_HN.po         | 645 ++++++++++++++++++++++++++++++------------
 po/es_MX.po         | 645 ++++++++++++++++++++++++++++++------------
 po/es_PA.po         | 645 ++++++++++++++++++++++++++++++------------
 po/es_PE.po         | 645 ++++++++++++++++++++++++++++++------------
 po/es_SV.po         | 645 ++++++++++++++++++++++++++++++------------
 po/fi.po            | 792 ++++++++++++++++++++++++++++++++++------------------
 po/fr.po            |   3 +-
 po/ga.po            | 736 +++++++++++++++++++++++++++++++++---------------
 po/hu.po            | 749 +++++++++++++++++++++++++++++++++----------------
 po/it.po            | 762 ++++++++++++++++++++++++++++++++++----------------
 po/ja.po            | 704 ++++++++++++++++++++++++++++++++--------------
 po/ko.po            | 721 +++++++++++++++++++++++++++++++++--------------
 po/no.po            | 717 +++++++++++++++++++++++++++++++++--------------
 po/pl.po            | 768 +++++++++++++++++++++++++++++++++-----------------
 po/pt.po            | 721 +++++++++++++++++++++++++++++++++--------------
 po/ru.po            | 782 +++++++++++++++++++++++++++++++++++----------------
 po/sv.po            | 774 +++++++++++++++++++++++++++++++++-----------------
 26 files changed, 11455 insertions(+), 5065 deletions(-)

commit d5d636a7301466e0b2d294808589d43f88c5cac2
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sat Jan 16 22:46:07 1999 +0000

    Sun, 17 Jan 1999 00:46:16 +0100  [Vincent]
    * Updated POTFILES.in
    * Updated fr.po accordingly

 po/POTFILES.in |  22 +-
 po/fr.po       | 726 +++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 507 insertions(+), 241 deletions(-)

commit 6a4020192cf7ef12be18b0d4ed05ec9480279071
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Wed Jan 13 00:00:34 1999 +0000

    changelog commit......
    
    
    
    changelog commit......

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit a96c54cd253208ec7ead8cf9f87583ea4bed0e86
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Tue Jan 12 23:58:19 1999 +0000

    detect X11 imlib separately.
    
    
    
    detect X11 imlib separately.

 configure.in | 8 ++++++++
 1 file changed, 8 insertions(+)

commit b390ef0b7d5048966623383e9b6cd7990e7c93aa
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Mon Jan 11 23:33:23 1999 +0000

    Updated translation.
    
    1999-01-12  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation.

 po/no.po | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

commit 581620e69c6456075aa4df69e7b49af62c3bbfa4
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Mon Jan 11 17:57:15 1999 +0000

    changing the default state of the Auto-Preview button.
    
    
    1999-01-11  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/theme-switcher/gui.c (make_main): changing the default
        state of the Auto-Preview button.
    
    po files updated as well (stupid make-dist)

 ChangeLog                          |  5 +++++
 capplets/theme-switcher/gui.c      |  2 +-
 capplets/theme-switcher/gui.c-6060 |  2 +-
 po/ca.po                           | 35 ++++++++++++++++------------------
 po/cs.po                           | 39 ++++++++++++++++++--------------------
 po/da.po                           | 35 ++++++++++++++++------------------
 po/de.po                           | 39 ++++++++++++++++++--------------------
 po/es.po                           | 35 ++++++++++++++++------------------
 po/es_DO.po                        | 24 ++++++-----------------
 po/es_GT.po                        | 24 ++++++-----------------
 po/es_HN.po                        | 24 ++++++-----------------
 po/es_MX.po                        | 24 ++++++-----------------
 po/es_PA.po                        | 24 ++++++-----------------
 po/es_PE.po                        | 24 ++++++-----------------
 po/es_SV.po                        | 24 ++++++-----------------
 po/fi.po                           | 39 ++++++++++++++++++--------------------
 po/fr.po                           | 35 ++++++++++++++++------------------
 po/ga.po                           | 29 ++++++++++------------------
 po/hu.po                           | 29 ++++++++++------------------
 po/it.po                           | 39 ++++++++++++++++++--------------------
 po/ja.po                           | 35 ++++++++++++++++------------------
 po/ko.po                           | 35 ++++++++++++++++------------------
 po/no.po                           | 33 +++++++++++++++-----------------
 po/pl.po                           | 35 ++++++++++++++++------------------
 po/pt.po                           | 35 ++++++++++++++++------------------
 po/sv.po                           | 39 ++++++++++++++++++--------------------
 26 files changed, 302 insertions(+), 441 deletions(-)

commit 8d5f411ae979ed5aad9b02b7309101d5868df2d8
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Mon Jan 11 16:47:09 1999 +0000

    translated

 po/ru.po | 203 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 102 insertions(+), 101 deletions(-)

commit 81a80bbb7067b302db037073db2fa7cbc5f7fa41
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Sat Jan 9 01:41:01 1999 +0000

    Fixes so this will work with Imlib 1.9 when it comes out.
    
    
    
    Fixes so this will work with Imlib 1.9 when it comes out.

 acconfig.h                          | 1 +
 capplets/theme-switcher/Makefile.am | 2 ++
 2 files changed, 3 insertions(+)

commit fa208e94870a9d307e9d953c7fdb6149435ee5b8
Author: Jonathan Blandford <jrb@redhat.com>
Date:   Thu Jan 7 03:24:34 1999 +0000

    fix for the Red Hat xscreensaver problem. just do a #define
    
    
    1999-01-06  Jonathan Blandford  <jrb@redhat.com>
    
        * capplets/screensaver-properties/callbacks.c: fix for the Red Hat
        xscreensaver problem.  just do a #define
        HAVE_REDHAT_XSCREENSAVER_RPM at the head of callbacks.c and all
        will work.

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit fe91f947cacdb6380efbaa723f11cda416ce83cb
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Jan 6 21:51:23 1999 +0000

    bumped up version to 0.99.1
    now makes dist correctly
    po files updated themselves accordingly... (:

 configure.in |  2 +-
 po/ca.po     | 67 +++++++++++++++++++++++++++++----------------------------
 po/cs.po     | 54 ++++++++++++++++++++--------------------------
 po/da.po     | 65 ++++++++++++++++++++++++++++---------------------------
 po/de.po     | 54 ++++++++++++++++++++--------------------------
 po/es.po     | 65 ++++++++++++++++++++++++++++---------------------------
 po/es_DO.po  | 48 ++++++++++++++++++-----------------------
 po/es_GT.po  | 48 ++++++++++++++++++-----------------------
 po/es_HN.po  | 48 ++++++++++++++++++-----------------------
 po/es_MX.po  | 48 ++++++++++++++++++-----------------------
 po/es_PA.po  | 48 ++++++++++++++++++-----------------------
 po/es_PE.po  | 48 ++++++++++++++++++-----------------------
 po/es_SV.po  | 48 ++++++++++++++++++-----------------------
 po/fi.po     | 69 ++++++++++++++++++++++++++++++-----------------------------
 po/fr.po     | 64 +++++++++++++++++++++++++++---------------------------
 po/ga.po     | 48 ++++++++++++++++++-----------------------
 po/hu.po     | 55 ++++++++++++++++++++++-------------------------
 po/it.po     | 54 ++++++++++++++++++++--------------------------
 po/ja.po     | 66 ++++++++++++++++++++++++--------------------------------
 po/ko.po     | 62 ++++++++++++++++++++++++++++-------------------------
 po/no.po     | 20 ++++++++---------
 po/pl.po     | 70 ++++++++++++++++++++++++++++++++----------------------------
 po/pt.po     | 62 ++++++++++++++++++++++++++++-------------------------
 po/ru.po     | 57 +++++++++++++++++++++++++------------------------
 po/sv.po     | 55 ++++++++++++++++++++++-------------------------
 25 files changed, 627 insertions(+), 698 deletions(-)

commit 3639e40816a1cf763f89f264447e2e5fcf5ab79e
Author: Jeff Garzik <jgarzik@src.gnome.org>
Date:   Wed Dec 30 20:53:19 1998 +0000

    s/g_copy_strings/g_strconcat/

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit 1d38354c9411e3afef089164f0300322e903020f
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sun Dec 27 09:16:25 1998 +0000

    And again
    
    1998-12-27  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * And again

 po/no.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit bfd5103ddb9560621914a50f9b51a7f3ed4f7995
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sun Dec 27 09:12:54 1998 +0000

    Updated translation.
    
    1998-12-27  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation.

 po/no.po | 46 +++++++++++++++++++---------------------------
 1 file changed, 19 insertions(+), 27 deletions(-)

commit ad52fa921f84c38dd225ec1a890c2bef91150551
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Tue Dec 22 12:56:36 1998 +0000

    Tue, 22 Dec 1998 14:54:44 +0100  [Vincent]
    * fr.po: Big update/updated my email addr.

 po/fr.po | 1807 ++------------------------------------------------------------
 1 file changed, 53 insertions(+), 1754 deletions(-)

commit 3c273a843df98dfc48f484172c493ac2d0b7eb3a
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Tue Dec 22 05:52:21 1998 +0000

    Updated.
    
    
    
    Updated.

 po/ChangeLog |    6 +-
 po/ja.po     | 1762 +++++-----------------------------------------------------
 2 files changed, 130 insertions(+), 1638 deletions(-)

commit 42330c6cf650493b27e1ebd10200e9828345329c
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sun Dec 20 19:23:45 1998 +0000

    Updated translation.
    
    1998-12-20  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation.

 po/no.po | 177 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 88 insertions(+), 89 deletions(-)

commit 8ce8b8a7363792559487ec73990f2f6d9e27cc55
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Fri Dec 18 17:57:51 1998 +0000

    Updated for 0.99.
    
        * ko.po: Updated for 0.99.

 po/ChangeLog |    4 +
 po/ko.po     | 1966 ++--------------------------------------------------------
 2 files changed, 52 insertions(+), 1918 deletions(-)

commit 63fc6230ad7559a0e628a4692ab5db3898752add
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Dec 18 17:08:27 1998 +0000

    beautification.
    
    UI properties needs tackling next... (:

 capplets/theme-switcher/gui.c      |    6 +-
 capplets/theme-switcher/gui.c-6060 |    6 +-
 po/ca.po                           | 3909 ++++++++++++++----------------
 po/cs.po                           | 1456 +++++-------
 po/da.po                           | 4038 ++++++++++++++-----------------
 po/de.po                           | 2569 ++++++--------------
 po/es.po                           | 4331 ++++++++++++++++------------------
 po/es_DO.po                        |  602 ++++-
 po/es_GT.po                        |  602 ++++-
 po/es_HN.po                        |  602 ++++-
 po/es_MX.po                        |  602 ++++-
 po/es_PA.po                        |  602 ++++-
 po/es_PE.po                        |  602 ++++-
 po/es_SV.po                        |  602 ++++-
 po/fi.po                           | 4221 +++++++++++++--------------------
 po/fr.po                           | 4360 +++++++++++++---------------------
 po/ga.po                           | 2443 +++++--------------
 po/hu.po                           | 2456 +++++--------------
 po/it.po                           | 2701 +++++++--------------
 po/ja.po                           | 3563 +++++++++++++---------------
 po/ko.po                           | 4566 ++++++++++++++++--------------------
 po/no.po                           |  376 ++-
 po/pl.po                           | 3798 ++++++++++--------------------
 po/pt.po                           |  133 +-
 po/ru.po                           | 3246 +++++--------------------
 po/sv.po                           | 2978 +++++++++--------------
 26 files changed, 23166 insertions(+), 32204 deletions(-)

commit 79e62200471c9e8468cb2916dda1bfb61c1b5b79
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Dec 16 20:30:59 1998 +0000

    got the spec file working (i think) added it to the dist.

 Makefile.am         |  2 +-
 control-center.spec | 22 ++++++----------------
 2 files changed, 7 insertions(+), 17 deletions(-)

commit de71af5c1f65de869955c4b55df0e2a2f7869c43
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Dec 16 19:55:53 1998 +0000

    first attempt at a spec file.
    don't know if it does anything.

 control-center.spec | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)

commit 046f179f50a83818cf61e61baa94363a7cb428ea
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Dec 16 07:36:33 1998 +0000

    administrative changes

 ChangeLog    | 6 ++++++
 configure.in | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit fdc6e8c9ab4d064d644bc4ecb0771ad96655c791
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Dec 16 00:15:36 1998 +0000

    new style initialization script

 ChangeLog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 37926f879329d79c4b60d576dcf6f6be2be3f6dc
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Dec 15 20:38:24 1998 +0000

    make dist-check now works
    version number bumped up to 0.99

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b138979e95ee2ff66118c112ae44fe43392c206
Author: Richard Hestilow <hestgray@ionet.net>
Date:   Mon Dec 14 23:11:50 1998 +0000

    Modified to be a multi-capplet. No more ugly notebook within notebook! :-)
    
    1998-12-14  Richard Hestilow  <hestgray@ionet.net>
    
            * capplets/ui-properties: Modified to be a multi-capplet.
            No more ugly notebook within notebook! :-)
            Removed ui-properties.desktop, added application.desktop,
            dialogs.desktop, and mdi.desktop with the appropriate name translations
            that were in po. Also added ui-properties.directory.

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 29b7b7047b0fdc1293dce32fd39e0b2c209e280a
Author: Owen Taylor <otaylor@redhat.com>
Date:   Mon Dec 14 20:40:10 1998 +0000

    Change "Application" to "Applications" for consistency with "Dialogs" and
    
    Mon Dec 14 15:39:33 1998  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/ui-properties/ui-properties.c (ui_setup): Change
        "Application" to "Applications" for consistency
        with "Dialogs" and grammatical correctness.

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit f359048a587d6bce0b23b24b11f3239be5501981
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sat Dec 12 11:42:01 1998 +0000

    Updated translation
    
    1998-12-12  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * no.po: Updated translation

 po/no.po | 3331 ++++----------------------------------------------------------
 1 file changed, 190 insertions(+), 3141 deletions(-)

commit f0b3f7c7a207b2da32c7b4dac3db763a5982dd93
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Sat Dec 12 02:37:20 1998 +0000

    Some i18n work.
    
    .
        * capplets/desktop-links/Workspace.directory,
        capplets/desktop-links/Multimedia.directory: Added Portuguese translation.
    
    po/
    
        * POTFILES.in: Add control-center/capplet-manager.c,
        capplets/ui-properties/ui-properties.c,
        capplets/url-properties/url-properties.c,
        capplets/background-properties/property-background.c
    
        * pt.po: Updated.
    
    control-center/
    
        * capplet-manager.c: Marked strings for translation.
        Include <config.h>.
    
    capplets/
    
        * url-properties.desktop: Added Portuguese translation.

 ChangeLog                                |   5 +
 capplets/url-properties/ChangeLog        |   6 +
 capplets/url-properties/url-properties.c |   2 +-
 po/ChangeLog                             |  11 +
 po/POTFILES.in                           |   5 +-
 po/pt.po                                 | 338 +++++++++++++++++++++++++++++--
 6 files changed, 345 insertions(+), 22 deletions(-)

commit 84624d4ada234304cbc785c221d596e4c79d5ddd
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Fri Dec 11 21:53:51 1998 +0000

    Added .cvsignore.
    
    * Added .cvsignore.

 capplets/url-properties/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 14b3063864d6c37cd390a62ec063125e1013c74d
Author: Owen Taylor <otaylor@redhat.com>
Date:   Fri Dec 11 15:39:18 1998 +0000

    Prettification. The spacing probably still needs more tweaks.
    
    Fri Dec 11 10:39:07 1998  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/ui-properties/ui-properties.c: Prettification.
        The spacing probably still needs more tweaks.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 9326b012961e915ccb16a6560f1d4942a07527ff
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Fri Dec 11 11:58:43 1998 +0000

    minor change. -Jonathan
    
    minor change.
    -Jonathan

 capplets/theme-switcher/gui.c      | 2 +-
 capplets/theme-switcher/gui.c-6060 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 9814b031ac992504d01a2a1435418691f1db3cc6
Author: Andrew T. Veliath <andrewtv@src.gnome.org>
Date:   Thu Dec 10 17:49:20 1998 +0000

    Updated for changes in GnomePreferences.
    
        * capplets/ui-properties/ui-properties.c (ui_setup): Updated for
        changes in GnomePreferences.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 43c816517783645e25b98d683e7e64b2471c28e4
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Thu Dec 10 02:14:11 1998 +0000

    Change gnome-core.pot to control-center.pot.
    
    * .cvsignore: Change gnome-core.pot to control-center.pot.

 po/.cvsignore | 2 +-
 po/ChangeLog  | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit bdef44530c2c4d9173a577e05c177eb4069c2117
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Thu Dec 10 02:12:11 1998 +0000

    Removed the translations from gnome-core.
    
    * pt.po: Removed the translations from gnome-core.

 po/ChangeLog |    4 +
 po/pt.po     | 3326 ++++------------------------------------------------------
 2 files changed, 192 insertions(+), 3138 deletions(-)

commit 5f266c150bff7133d7baa272ae9a7f4895fca269
Author: Manish Vachharajani <mvachhar@src.gnome.org>
Date:   Wed Dec 9 05:38:55 1998 +0000

    Remove POTFILES that used to be in gnome-core

 po/POTFILES.in | 104 +++++----------------------------------------------------
 1 file changed, 8 insertions(+), 96 deletions(-)

commit e11e9f4be69b245ec8ba7ab44b8d0654b6c95ff8
Author: Manish Vachharajani <mvachhar@src.gnome.org>
Date:   Wed Dec 9 05:30:08 1998 +0000

    fixed source finding file

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 40aff2efa90e242297c9f23940f4d3da799d62f6
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Tue Dec 8 20:52:50 1998 +0000

    Fixes
    
    Dr Mike <drmike@redhat.com>

 autogen.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 7b75a1062f522f1dddf9d4cda8b01e473df0bde6
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Tue Dec 8 20:47:55 1998 +0000

    New and better than ever in a new home
    
    Dr Mike <drmike@redhat.com>

 AUTHORS      |   3 +-
 Makefile.am  |  19 +++------
 README       |  11 ++++--
 acconfig.h   |  16 --------
 configure.in | 127 ++---------------------------------------------------------
 5 files changed, 17 insertions(+), 159 deletions(-)

commit 44b6dd093474a0c51be7aeb0da4feb31179946fc
Author: Michael Lausch <mila@src.gnome.org>
Date:   Tue Dec 8 16:00:21 1998 +0000

    Made fvwmpager module self contained. It does not need the fvwm2 sources
    to compile.
    The fvwmpager module integrates a little bit better with
    gnomepager_applet now.
    Various bug fixes.
    
    help-browser/help-caller.c
    panel/applet-widget.c
    panel/extern.c
       integrated API changes from GOAD

 ChangeLog    |  6 ++++++
 configure.in | 36 +++---------------------------------
 2 files changed, 9 insertions(+), 33 deletions(-)

commit b681337c920e51d0392ad12442e14f2155f9dfc8
Author: Yukihiro Nakai <nakai@src.gnome.org>
Date:   Tue Dec 8 06:04:14 1998 +0000

    Fixed the word for "GNU GPL".
    
    
    
    Fixed the word for "GNU GPL".

 po/ja.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6d3914cd34b984fcf0682fb4d786680655771199
Author: James Henstridge <james@daa.com.au>
Date:   Tue Dec 8 04:12:24 1998 +0000

    forgot the copyright message at the top of the file.
    
    1998-12-08  James Henstridge  <james@daa.com.au>
        * url-properties.c: forgot the copyright message at the top of the
        file.

 capplets/url-properties/ChangeLog        |  6 +++++-
 capplets/url-properties/url-properties.c | 18 ++++++++++++++++++
 2 files changed, 23 insertions(+), 1 deletion(-)

commit 77cf1314e49aa80a7bc89e7511b80c5ef459ff3a
Author: James Henstridge <james@daa.com.au>
Date:   Tue Dec 8 02:26:12 1998 +0000

    a new applet to configure the behaviour of the gnome_url_show function in
    
    1998-12-07  James Henstridge  <james@daa.com.au>
        * capplets/url-properties: a new applet to configure the behaviour of
        the gnome_url_show function in libgnome.

 ChangeLog                                |   4 +
 capplets/Makefile.am                     |   2 +-
 capplets/url-properties/ChangeLog        |   7 +
 capplets/url-properties/Makefile.am      |  21 +++
 capplets/url-properties/url-properties.c | 269 +++++++++++++++++++++++++++++++
 configure.in                             |   1 +
 6 files changed, 303 insertions(+), 1 deletion(-)

commit 53e6d29d4b3ad6fc717201d87cb0c4587a262484
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Mon Dec 7 18:44:15 1998 +0000

    updated translation.
    
    1998-12-07  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * no.po: updated translation.

 po/no.po | 188 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 85 insertions(+), 103 deletions(-)

commit b7c970d612486006ed02fa4890031b7ddb53e168
Author: George Lebl <jirka@src.gnome.org>
Date:   Mon Dec 7 10:25:33 1998 +0000

    the last changelog message was supposed to be in applets not the
    root

 ChangeLog | 5 -----
 1 file changed, 5 deletions(-)

commit 62531ba1eedb9e06d55764259aaef91ee668fe5f
Author: George Lebl <jirka@5z.com>
Date:   Mon Dec 7 10:23:20 1998 +0000

    fixed up includes, removed applet-lib.h and added applet-widget.h where
    
    Mon Dec 07 02:17:08 1998  George Lebl  <jirka@5z.com>
    
            * */*.c: fixed up includes, removed applet-lib.h and added
              applet-widget.h where missing

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit a7a5d7f989f7987030d25fbca706102fb675c9ef
Author: Jeff Garzik <jgarzik@src.gnome.org>
Date:   Mon Dec 7 06:04:29 1998 +0000

    GNOME-standard autogen.sh scripts automatically run 'automake -a'.  -a
    installs any necessary files that are required in a GNU-standard
    install, such as COPYING, INSTALL, mkinstalldirs, etc.
    
    So begone, automake-installed files.

 .cvsignore | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit a1bf88fc9a72a4bb8aaf2fc0441cee5985484781
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sun Dec 6 23:25:52 1998 +0000

    Updated translation.
    
    1998-12-07  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * no.po: Updated translation.

 po/no.po | 346 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 178 insertions(+), 168 deletions(-)

commit fc4705fd9f33b3136ffc90e79f932e598fe61ead
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sun Dec 6 16:23:22 1998 +0000

    hu added to ALL_LANGUES...

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a71c303a89dfdbc79848da6429083ccd610f64b4
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Sun Dec 6 13:17:06 1998 +0000

    Added hungarian (magyarszkij) support... (Not complete)

 po/hu.po | 2235 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 2235 insertions(+)

commit a3594f9d4b06a828c5c14e3da0ea97e04aa0835d
Author: Tuomas Kuosmanen <tigert@src.gnome.org>
Date:   Sun Dec 6 08:27:15 1998 +0000

    ..and the Changelog too - someday I learn to use cvs :) /tigert

 ChangeLog | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 8e35b7a702a45bc283f9aba79864524c8331ecde
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Sat Dec 5 23:24:33 1998 +0000

    Polish translation from Zbigniew Chyla <cyba@t19.ml.org>

 configure.in |    2 +-
 po/pl.po     | 3172 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3173 insertions(+), 1 deletion(-)

commit 977242941176f221ff5ef1348091feaa8a1cfaed
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Sat Dec 5 21:49:50 1998 +0000

    Updated Portuguese translations.
    
    * Updated Portuguese translations.

 po/ChangeLog |   4 +
 po/pt.po     | 697 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 365 insertions(+), 336 deletions(-)

commit 9012da130fe69568ee1473221b34587040d69e36
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Dec 3 00:02:07 1998 +0000

    Add a closing brace.
    
    * capplets/sound-properties/sound-properties.c (main):
    Add a closing brace.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 866f1a85266dc4fc7388048fabc4eb44f6aafb9b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Dec 2 19:11:28 1998 +0000

    updated catalan language file

 po/ca.po | 14 --------------
 1 file changed, 14 deletions(-)

commit 77bae3931a4434c09214ecb6b06ebe225e0cbb94
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Dec 2 19:08:23 1998 +0000

    updated catalan language file

 po/ca.po | 2315 +++++++++++++++++++++++++++-----------------------------------
 1 file changed, 1021 insertions(+), 1294 deletions(-)

commit 8d71ff89ac0f20aeb33a0006dde7e69cec377615
Author: Changwoo Ryu <cwryu@adam.kaist.ac.kr>
Date:   Wed Dec 2 18:18:48 1998 +0000

    Use gettext 0.10.35 Removed `sed POTFILES...'. Removed gettext macros.
    
    1998-12-03  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        Use gettext 0.10.35
        * configure.in (AC_OUTPUT): Removed `sed POTFILES...'.
        * acinclude.m4: Removed gettext macros.

 .cvsignore        |   4 +-
 ChangeLog         |   6 +
 acinclude.m4      | 389 ------------------------------------------------------
 configure.in      |   7 +-
 po/.cvsignore     |   2 +-
 po/Makefile.in.in | 247 ----------------------------------
 6 files changed, 11 insertions(+), 644 deletions(-)

commit 70f393fe2b3c953f25c9b5a3cf2f175292d11e23
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Wed Dec 2 08:47:32 1998 +0000

    Removed `desktop-properties' - we have capplets for all of them now.
    
    1998-12-02  Martin Baulig  <martin@home-of-linux.org>
    
        * Makefile.am (always_built_SUBDIRS): Removed `desktop-properties' -
        we have capplets for all of them now.

 ChangeLog   | 5 +++++
 Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 70bf09d8b0f0e7a4afa328c00e70b13906d807cd
Author: Martin Baulig <martin@src.gnome.org>
Date:   Wed Dec 2 08:25:15 1998 +0000

    Added german translation.

 capplets/theme-switcher/theme-selector.desktop | 2 ++
 1 file changed, 2 insertions(+)

commit e62a802ab2c845f95448e78333d0db245654171e
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Wed Dec 2 08:19:06 1998 +0000

    Added "Look&Feel" properties capplet.
    
    1998-12-02  Martin Baulig  <martin@home-of-linux.org>
    
        * capplets/ui-properties: Added "Look&Feel" properties capplet.

 ChangeLog            | 2 ++
 capplets/Makefile.am | 3 ++-
 configure.in         | 1 +
 3 files changed, 5 insertions(+), 1 deletion(-)

commit 550aef17978975a1e1714a1ece730cc333cd14e7
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Tue Dec 1 23:34:58 1998 +0000

    Added bell properties capplet.
    
    1998-12-02  Martin Baulig  <martin@home-of-linux.org>
    
        * capplets/bell-properties: Added bell properties capplet.

 ChangeLog            | 4 ++++
 capplets/Makefile.am | 2 +-
 configure.in         | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

commit 347c7471ba44c61fe43c3b6e4d77454cbdb32e3c
Author: lukka <lukka@src.gnome.org>
Date:   Tue Dec 1 05:40:28 1998 +0000

    fi.po update

 po/ChangeLog |   4 +
 po/fi.po     | 709 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 372 insertions(+), 341 deletions(-)

commit 073cd7795b148737fbfaf15e60e9026a475fb28a
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Mon Nov 30 23:36:01 1998 +0000

    Updated translation.
    
    1998-12-01  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation.

 po/no.po | 528 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 282 insertions(+), 246 deletions(-)

commit 2bb87340c9b4223747db9217be9ca5c2844190f2
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Nov 30 19:26:38 1998 +0000

    s/gtk_container_border_width/gtk_container_set_border_width/
    
    
    
    s/gtk_container_border_width/gtk_container_set_border_width/

 capplets/theme-switcher/gui.c      | 10 +++++-----
 capplets/theme-switcher/gui.c-6060 | 10 +++++-----
 2 files changed, 10 insertions(+), 10 deletions(-)

commit 7ee710f883c7e458cc218776a8a16e8cc31b1a83
Author: Gregory McLean <gregm@src.gnome.org>
Date:   Sun Nov 29 23:23:59 1998 +0000

    Compilation fixes.
    
        * configure.in : add applets/gtkicker/Makefile to the generated
        makefiles.
        * applets/gtkicker/gticker.c : Applet api changes.
    
    wee gnome core compiles from scratch again.
    
    -- Greg

 ChangeLog    | 5 +++++
 configure.in | 1 +
 2 files changed, 6 insertions(+)

commit af9bf2e1a04c8551114b6fc7744fc52c22d61034
Author: Jeff Garzik <jgarzik@src.gnome.org>
Date:   Sun Nov 29 21:58:18 1998 +0000

    Added required app id arg to applet_widget_new (goadizing breakage).
    Corrected callback func return val in applets/bussign/bussign.c.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 3ebcd3925000f28205f72fb6fdfada3158ed797e
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Sun Nov 29 07:28:07 1998 +0000

    translated

 po/ru.po | 220 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 111 insertions(+), 109 deletions(-)

commit d3abc2fe1ed28ec9e32b8803b470c07fd6ba2e63
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Thu Nov 26 19:44:11 1998 +0000

    translation

 po/ru.po | 84 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 42 insertions(+), 42 deletions(-)

commit a2d2dc2998fc22c36c479db7f90ba82c7d86f14c
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Nov 25 22:45:06 1998 +0000

    Strings that have numbers in them are translated differently in
    DO, GT, HN, MX, PA, PE and SV than on other spanish speaking countries

 configure.in |  3 ++-
 po/es_DO.po  | 15 +++++++++++++++
 po/es_GT.po  | 15 +++++++++++++++
 po/es_HN.po  | 15 +++++++++++++++
 po/es_MX.po  | 15 +++++++++++++++
 po/es_PA.po  | 15 +++++++++++++++
 po/es_PE.po  | 15 +++++++++++++++
 po/es_SV.po  | 15 +++++++++++++++
 8 files changed, 107 insertions(+), 1 deletion(-)

commit baaff330bf4c3b742632c442f2cefe5d9685d460
Author: Max Valjanski <maxcom@src.gnome.org>
Date:   Wed Nov 25 21:14:15 1998 +0000

    Started translation of gnome-core.pot to Russian

 configure.in |    2 +-
 po/ru.po     | 3012 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 3013 insertions(+), 1 deletion(-)

commit 5bfda9d2d078e831adc9171c8331acad4c082eea
Author: lukka <lukka@src.gnome.org>
Date:   Wed Nov 25 17:22:34 1998 +0000

    Oops

 po/fi.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit eb42bf8ae9ce81b7560b0042b2614dc577c16a73
Author: lukka <lukka@src.gnome.org>
Date:   Wed Nov 25 17:22:12 1998 +0000

    Some more fi.po updates

 po/fi.po | 553 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 356 insertions(+), 197 deletions(-)

commit 273ccd37abbb6bfc9e80789d6a086347fe7c237a
Author: lukka <lukka@src.gnome.org>
Date:   Wed Nov 25 16:00:24 1998 +0000

    fi.po update

 po/ChangeLog |    4 +
 po/fi.po     | 2319 +++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 1581 insertions(+), 742 deletions(-)

commit 053178786900e33257de7f83db4691cc41ba6b0e
Author: Owen Taylor <otaylor@redhat.com>
Date:   Tue Nov 24 05:26:09 1998 +0000

    Removed include of gtk-socket.h, which now is in GTK+.
    
    Tue Nov 24 00:25:53 1998  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/theme-switcher/da.h: Removed include of
        gtk-socket.h, which now is in GTK+.

 ChangeLog                          | 5 +++++
 capplets/theme-switcher/da.h       | 1 -
 capplets/theme-switcher/da.h-67648 | 1 -
 3 files changed, 5 insertions(+), 2 deletions(-)

commit 69ca647cb7f272b49ad408e4c9d5b52fc64ed78d
Author: Andrew T. Veliath <andrewtv@src.gnome.org>
Date:   Mon Nov 23 19:50:29 1998 +0000

    Use gtk_scrolled_window_add_with_viewport instead of gtk_container_add
    
        * capplets/screensaver-properties/screensaver-properties-capplet.c: Use
        gtk_scrolled_window_add_with_viewport instead of gtk_container_add
        (gtk changes).

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 17626a311993c1b1444e32f9dbfcf09dea748a84
Author: Martin Baulig <martin@src.gnome.org>
Date:   Sun Nov 22 19:52:44 1998 +0000

    Added warning message that the `netload' applet will not be built if
    you don't have LibGTop.

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 6a4aee5f5f33ebc25ad50ee33504c813bbc2eb9b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Nov 22 15:59:28 1998 +0000

    updated ca & es language files

 po/ca.po | 6 +-----
 po/es.po | 6 +++---
 2 files changed, 4 insertions(+), 8 deletions(-)

commit bfc75ecab20fc92f912da8ef76e7416fb265186d
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sun Nov 22 10:13:43 1998 +0000

    Updated translation.
    
    1998-11-22  Kjartan Maraas  <kmaraas@fib.hl.no>
    
                * Updated translation.

 po/no.po | 426 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 272 insertions(+), 154 deletions(-)

commit 42d6f6c579026a314d80afdd174c26d2edba34ac
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Sat Nov 21 23:35:51 1998 +0000

    More i18n work.
    
    * More i18n work.

 ChangeLog                          |  5 ++++
 capplets/theme-switcher/gui.c      | 13 +++++----
 capplets/theme-switcher/gui.c-6060 | 13 +++++----
 po/POTFILES.in                     |  4 +++
 po/pt.po                           | 56 ++++++++++++++++++++++++++++++++++----
 5 files changed, 74 insertions(+), 17 deletions(-)

commit 1acac6b3586d597a7f3745ecf0e65c9081b655be
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Sat Nov 21 22:38:51 1998 +0000

    i18n work.
    
    * i18n work.

 ChangeLog                      |  18 +
 capplets/theme-switcher/main.c |   4 +
 po/ChangeLog                   |   6 +
 po/POTFILES.in                 |   6 +
 po/pt.po                       | 940 ++++++++++++++++++++++-------------------
 5 files changed, 543 insertions(+), 431 deletions(-)

commit b3eb20adb3c1ebbffa19507e21e74b0c3d3a1e35
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Nov 20 18:18:50 1998 +0000

    updated spanish language file

 po/ca.po | 139 ++++++++++++++++++++++++++++++-----------------------------
 po/es.po | 148 ++++++++++++++++++++++++++++++---------------------------------
 2 files changed, 142 insertions(+), 145 deletions(-)

commit ce13c77a58cd44c9f14068442ded2039dbb0f568
Author: lukka <lukka@src.gnome.org>
Date:   Wed Nov 18 17:04:38 1998 +0000

    make fi.po compile, patch from Richard Hult

 po/ChangeLog |  4 ++++
 po/fi.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit fd08629e46b9cbedbf133bae5674cf1250ef8673
Author: lukka <lukka@src.gnome.org>
Date:   Tue Nov 17 20:09:05 1998 +0000

    Updates to fi.po

 po/ChangeLog |   4 +
 po/fi.po     | 322 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 168 insertions(+), 158 deletions(-)

commit 19702cdac0a73a4cab2e72f6d12d38e85d53c3cb
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Tue Nov 17 18:52:17 1998 +0000

    updated translation gnome-terminal/gnome-terminal.c: fixed a typo
    
    1998-11-17  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * po/no.po: updated translation
          gnome-terminal/gnome-terminal.c: fixed a typo

 po/no.po | 651 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 331 insertions(+), 320 deletions(-)

commit 693f2851c0029cc77b44a54caaef9a01492244ed
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Tue Nov 17 18:23:13 1998 +0000

    Updated translation.
    
    1998-11-17  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * no.po: Updated translation.

 po/no.po | 549 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 287 insertions(+), 262 deletions(-)

commit 5f4ca489b0dc61334d787f1778e8719db2a69f76
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Nov 14 14:25:03 1998 +0000

    updated spanish language file

 po/es.po | 559 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 291 insertions(+), 268 deletions(-)

commit 042c53355628249ef0a3f0ebac4c69672726701b
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sat Nov 14 14:22:18 1998 +0000

    updated catalan language file

 po/ca.po | 3415 ++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 2551 insertions(+), 864 deletions(-)

commit 820ff8a970901532d4cf601b75a1888e92878071
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Fri Nov 13 20:07:50 1998 +0000

    Fri, 13 Nov 1998 21:07:25 +0100  [Vincent]
    
    * updated fr.po

 po/fr.po | 1923 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 1207 insertions(+), 716 deletions(-)

commit dd761aea181f89cd5481b476e627bdcc1e078427
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Fri Nov 13 18:19:33 1998 +0000

    added catalan language file

 configure.in |    2 +-
 po/ca.po     | 1198 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1199 insertions(+), 1 deletion(-)

commit 4a0f315fe90a037d2076df2bbce125ae8994e03f
Author: Andrew T. Veliath <andrewtv@src.gnome.org>
Date:   Fri Nov 13 05:28:30 1998 +0000

    fix my email address in log

 ChangeLog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 692fe9b02f381449af81728099b02c22f95e7752
Author: Andrew T. Veliath <andrewtv@src.gnome.org>
Date:   Fri Nov 13 04:23:22 1998 +0000

    Forgot on last commit.

 ChangeLog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 9c1c167ce5af95df522f0ded893feddf288d29dd
Author: Andrew T. Veliath <andrewv@usa.net>
Date:   Fri Nov 13 04:22:02 1998 +0000

    Remove HAVE_ORBIT, HAVE_MICO_ORB_RUN. HAVE_ORBIT is now implicit.
    
    1998-11-12  Andrew T. Veliath  <andrewv@usa.net>
    
        * acconfig.h: Remove HAVE_ORBIT, HAVE_MICO_ORB_RUN.  HAVE_ORBIT is
        now implicit.
    
        * Makefile.am: Remove ORBIT_INSTALLED AM_CONDITIONAL.
    
        * configure.in: The ORBit AM_CONDITIONAL is now in
        gnome-orbit-check.m4 as HAVE_ORBIT.

 Makefile.am  | 2 --
 acconfig.h   | 2 --
 configure.in | 6 ------
 3 files changed, 10 deletions(-)

commit e50f5e9dafab49cf2e91669d6ea7090f6019b0e7
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Nov 8 22:50:25 1998 +0000

    updated spanish language file

 po/es.po | 699 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 359 insertions(+), 340 deletions(-)

commit 3aa292505868e6633423c0faafe1de798b8c0ecd
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sat Nov 7 12:33:37 1998 +0000

    Updated Korean translation.

 po/ko.po | 2549 ++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 1665 insertions(+), 884 deletions(-)

commit c45bdbad82115a6209919fa8fc4e137c239f2154
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Fri Nov 6 22:41:14 1998 +0000

    `confdefs.h isn't a nice name for a header file. Since no other file uses
    
    * capplets/theme-switcher/main.c (confdefs.h): `confdefs.h isn't a
    nice name for a header file.  Since no other file uses it, just
    remove it.
    (THEME_SWITCHER_VERSION): New define.  Is what `VERSION' was used
    for.
    (main): Use new name for `VERSION'.
    * capplets/theme-switcher/confdefs.h: Delete.
    * capplets/theme-switcher/config.h: Delete.

 ChangeLog                          | 11 +++++++++++
 capplets/theme-switcher/confdefs.h |  4 ----
 capplets/theme-switcher/config.h   |  8 --------
 capplets/theme-switcher/main.c     |  6 ++++--
 4 files changed, 15 insertions(+), 14 deletions(-)

commit d9f5880509db634e05544aae60330536625cc8f2
Author: Owen Taylor <otaylor@redhat.com>
Date:   Fri Nov 6 22:16:04 1998 +0000

    include confdefs.h to get VERSION.
    
    Fri Nov  6 17:15:00 1998  Owen Taylor  <otaylor@redhat.com>
    
        * capplets/theme-switcher/main.c: include confdefs.h
        to get VERSION.
    
        * capplets/theme-switcher/demo.c (demo_main): Put the
        CList in a scrolled window.
    
        * Makefile.am: Build theme-switcher-capplet by default,
        now that themes are in GTK+ head.

 ChangeLog                            | 11 +++++++++++
 capplets/Makefile.am                 |  4 ++--
 capplets/theme-switcher/demo.c       | 12 +++++++++---
 capplets/theme-switcher/demo.c-45827 | 12 +++++++++---
 capplets/theme-switcher/main.c       |  1 +
 configure.in                         |  3 +++
 6 files changed, 35 insertions(+), 8 deletions(-)

commit 51c74169913ca4b920bb12c2c959d17c196da47d
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Nov 5 00:56:59 1998 +0000

    Actually define the HAVE_LIBESD conditional.
    
    * configure.in (have_libesd): Actually define the HAVE_LIBESD
    conditional.

 ChangeLog    | 8 +++++++-
 configure.in | 8 +++++---
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 0381c1472f8858dddbe9c3b8d54b25a503f7c27a
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Nov 2 22:45:57 1998 +0000

    Build sound-properties now.
    
    
    
    Build sound-properties now.

 capplets/Makefile.am | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit b7b3e55940d5dc3b180b2964e6998b49c31a6ab7
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Mon Nov 2 20:36:57 1998 +0000

    poptimization

 acconfig.h                     | 1 +
 capplets/theme-switcher/main.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit d18ebc5925870f3c8a6ef207eca5106829e83120
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sat Oct 31 04:56:19 1998 +0000

    Append esd.m4

 acinclude.m4 | 164 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 164 insertions(+)

commit 05d02a018a99eb06fcd114ee6f170e3d39efe809
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Oct 30 18:07:41 1998 +0000

    grr... lets _save_ the file before we check it in...
    
    grr...
    lets _save_ the file before we check it in...

 ChangeLog | 2 ++
 1 file changed, 2 insertions(+)

commit 50c5db2c0650dbf58cdac27d8df286b7a6b04903
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Fri Oct 30 18:06:34 1998 +0000

    fixed minor buglet if you don't have xscreensaver installed.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 6f40cbd2fa8dc0d684f370ba7437cef5b316e6a2
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 29 01:17:36 1998 +0000

    1998-10-28 The Rasterman <raster@redhat.co< added this.. going to work on
    
    
    
    1998-10-28 The Rasterman <raster@redhat.co<
            * applets/esd-manager: added this.. going to work on it...

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit 927fba7d33a5d472588cbdd5221a47837e744c7c
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 29 01:04:01 1998 +0000

    needed to add HAVE_LIBESD... :)
    
    
    
    needed to add HAVE_LIBESD... :)

 acconfig.h | 2 ++
 1 file changed, 2 insertions(+)

commit 87e05f590e826cf460a5dd69a18e2915f1ec0476
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 29 01:00:18 1998 +0000

    esdmanager builds conditionally on finding esd...
    
    
    
    esdmanager builds conditionally on finding esd...

 configure.in | 4 ++++
 1 file changed, 4 insertions(+)

commit e945792e5b5c6278d0c878bcb6d2e8143bd4b076
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 29 00:49:12 1998 +0000

    esd manager applet added
    
    
    
    esd manager applet added

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 0fc8f9fc65c40adeec0dbf896dd6275fc9abd771
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Wed Oct 28 01:39:09 1998 +0000

    Updated Portuguese translation.
    
    * Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 521 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 280 insertions(+), 245 deletions(-)

commit 4bcad6aed9d3ff586a5ceb0d1853275cbfb0e10b
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Oct 26 23:57:19 1998 +0000

    This is not a void function.
    
    * capplets/screensaver-properties/screensaver-properties-capplet.c
    (main): This is not a void function.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 2f816df6ca00c6f4b74786fc39e2e3ea0e199c85
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sat Oct 24 23:06:27 1998 +0000

    It's nicer when it compiles as well......
    
    1998-10-25  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * po/no.po: It's nicer when it compiles as well......

 po/no.po | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

commit 40eb9fc11a9019fe7ca20aaaf04705f0d1209b95
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sat Oct 24 23:03:01 1998 +0000

    Updated translation
    
    1998-10-25  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * no.po: Updated translation

 po/no.po | 1023 ++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 725 insertions(+), 298 deletions(-)

commit 2f20185ef00fa3ad5833af7f40812a21a57d1f63
Author: Tom Tromey <tromey@cygnus.com>
Date:   Wed Oct 21 05:05:36 1998 +0000

    Added `da'.
    
    1998-10-20  Tom Tromey  <tromey@cygnus.com>
    
        * configure.in (ALL_LINGUAS): Added `da'.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 8c67d0e037284a6a79c0384137b0dd014a379bc5
Author: Andrew T. Veliath <andrewtv@src.gnome.org>
Date:   Tue Oct 20 16:34:25 1998 +0000

    Update ORBit checks to use new gnome-orbit-checks.m4. acconfig.h: Add
    
        * configure.in: Update ORBit checks to use new
        gnome-orbit-checks.m4.  acconfig.h: Add HAVE_ORBIT.
    
    panel/
        * Makefile.am: Update IDL compiler rule to depend on ORBIT_IDL.
    
    n.b. Be sure to update macros and re autogen to get ORBIT_IDL defined.

 ChangeLog    |  5 +++++
 acconfig.h   |  1 +
 configure.in | 14 ++++++--------
 3 files changed, 12 insertions(+), 8 deletions(-)

commit b08f7c854ebec3b0dfd7b7d295a49830f3f8bdf1
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Mon Oct 19 19:03:55 1998 +0000

    cleaned up the interface some
    dirtied up the code some

 capplets/theme-switcher/.cvsignore      |   5 +
 capplets/theme-switcher/da.h            |  13 +-
 capplets/theme-switcher/da.h-67648      |  13 +-
 capplets/theme-switcher/demo.c          | 113 ++++++++-------
 capplets/theme-switcher/demo.c-45827    | 113 ++++++++-------
 capplets/theme-switcher/globals.c       |   5 +-
 capplets/theme-switcher/globals.c-53032 |   5 +-
 capplets/theme-switcher/gui.c           | 242 ++++++++++++++++++++------------
 capplets/theme-switcher/gui.c-6060      | 242 ++++++++++++++++++++------------
 capplets/theme-switcher/main.c          |   2 +-
 10 files changed, 464 insertions(+), 289 deletions(-)

commit 8b77425757efd2ea7e8608c4af1c943b36b8f8c7
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Mon Oct 19 16:30:45 1998 +0000

    Danish translations from Wandy

 po/da.po | 2641 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 2641 insertions(+)

commit bd48f2d0549c7f8a6912a51a6268b10f89be5751
Author: Owen Taylor <otaylor@gtk.org>
Date:   Mon Oct 19 02:00:25 1998 +0000

    Matching braces help.
    
    Sun Oct 18 22:02:28 1998  Owen Taylor  <otaylor@gtk.org>
    
        * capplets/background-properties/property-background.c
        (img_dnd_drop): Matching braces help.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 5fceba7d9b95e513c491cb48ef415b90b6be15a2
Author: Owen Taylor <otaylor@gtk.org>
Date:   Sun Oct 18 23:21:03 1998 +0000

    Use the new DND API.
    
    Sun Oct 18 19:18:21 1998  Owen Taylor  <otaylor@gtk.org>
    
        * background-properties/property-background.c: Use
        the new DND API.
    
    Sun Oct 18 19:15:05 1998  Owen Taylor  <otaylor@gtk.org>
    
        * gnome-terminal/gnome-terminal.c: Use the new DND API.
    
    Sun Oct 18 19:19:04 1998  Owen Taylor  <otaylor@gtk.org>
    
        * help-browser/window.c: Use the new DND API.
    
    Sun Oct 18 19:19:25 1998  Owen Taylor  <otaylor@gtk.org>
    
        * panel/panel.c: Use the new DND API.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 7d8b45d1b115666c30dc713b9781c0b97e30f072
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Sun Oct 18 11:08:46 1998 +0000

    updated spanish language file

 po/es.po | 204 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 101 insertions(+), 103 deletions(-)

commit 55cbbba67bda9673ad0397d05afda2d36d2128f6
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Wed Oct 14 19:55:33 1998 +0000

    Added Portuguese translations.
    
        * */*.desktop: Added Portuguese translations.
    
        * */*.directory: Likewise
    
        * po/pt.po: Updated.

 ChangeLog    |    6 +
 po/ChangeLog |    4 +
 po/pt.po     | 1282 +++++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 825 insertions(+), 467 deletions(-)

commit 5761f040efefecf71d7503de1bd7b2f9b72ebd7d
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sun Oct 11 12:45:15 1998 +0000

    Updated norwegian translation.
    
    1998-10-11  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * Updated norwegian translation.

 po/no.po | 197 +++++++++++++++++++++++++++------------------------------------
 1 file changed, 83 insertions(+), 114 deletions(-)

commit 28e71c572766e6842200ca2d825c0392f0be73df
Author: Federico Mena Quintero <federico@nuclecu.unam.mx>
Date:   Fri Oct 9 20:21:54 1998 +0000

    Updated. Thanks to Yukihiro Nakai for the patches.
    
    1998-10-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
    
        * ja.po: Updated.  Thanks to Yukihiro Nakai for the patches.

 po/ChangeLog |    4 +
 po/ja.po     | 1924 +++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 1088 insertions(+), 840 deletions(-)

commit eb0788d7f0d2dcb709a997eb5de93402193e490d
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 8 21:03:19 1998 +0000

    adding...
    
    
    
    adding...

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d4d1979fcf5715212b06971c938ffda7e7840525
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 8 21:02:59 1998 +0000

    adding.....
    
    
    
    adding.....

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit c6e437ba24c8d02cec325cfd178f46903c15b3a0
Author: Carsten Haitzler <raster@src.gnome.org>
Date:   Thu Oct 8 21:02:40 1998 +0000

    adding......
    
    
    
    adding......

 configure.in | 2 ++
 1 file changed, 2 insertions(+)

commit c4e155ca39c752e41562acd5c1425b90a732aa07
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Oct 8 19:04:27 1998 +0000

    updated spanish language files

 po/es.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 28da72c4ae559ccc7f669549fff8c61282cf3869
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Wed Oct 7 22:15:49 1998 +0000

    Start on sound properties capplet

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 8f3e53a6894332c080cf0bd3627b36d9db5defb7
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Wed Oct 7 17:39:04 1998 +0000

    Updated spanish descriptions, added some french descriptions, and two or three
    japanese descriptions.

 capplets/theme-switcher/theme-selector.desktop |    8 +-
 po/POTFILES.in                                 |    2 +
 po/es.po                                       | 1908 ++++++++++++++++--------
 3 files changed, 1254 insertions(+), 664 deletions(-)

commit 748371ae1e8069ffd784e67912b1f12724df9d8a
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Oct 7 00:03:19 1998 +0000

    added -lgnorba

 capplets/theme-switcher/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 87620b91872768385f650ba8eb680f07004a285f
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Sat Oct 3 12:40:32 1998 +0000

    More Norwegification
    
    1998-10-03  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * .desktop, no.po: More Norwegification

 capplets/theme-switcher/theme-selector.desktop |    2 +
 po/no.po                                       | 2050 ++++++++++++++----------
 2 files changed, 1220 insertions(+), 832 deletions(-)

commit 6d7c0d4c08a2848086148bc3d398810ca6b65f45
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Fri Oct 2 20:15:17 1998 +0000

    Yet another desperate attempt at trying to translate at the same rate you
    
    * Yet another desperate attempt at trying to translate at the same rate
      you guys add new code... ;)

 po/POTFILES.in |   16 +-
 po/fr.po       | 1312 ++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 849 insertions(+), 479 deletions(-)

commit 28e771f236b504960c1c9ecc8c50b43cb1b5b9f8
Author: johne <johne@src.gnome.org>
Date:   Thu Oct 1 19:51:33 1998 +0000

    Cosmetic trivialness.

 AUTHORS | 1 +
 1 file changed, 1 insertion(+)

commit 60f8bf378c6515501bead9518910191a754c6565
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Tue Sep 29 22:55:47 1998 +0000

    More warnings if `libgtop' isn't found.
    
    * configure.in (applets_libgtop):
    More warnings if `libgtop' isn't found.

 ChangeLog    | 5 +++++
 configure.in | 9 ++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 64ff604bba3d5fd1789aba42eb958e5c0f63e882
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Tue Sep 29 21:53:56 1998 +0000

    Port of background properties config tool into a capplet
    
    Partially functional, going to finish from home...
    
    Dr Mike <msf@redhat.com>

 capplets/Makefile.am | 2 +-
 configure.in         | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 83ec69d0024f2bf20a99576e2866c35cbaa7c5b2
Author: John Ellis <johne@bellatlantic.net>
Date:   Mon Sep 28 16:37:50 1998 +0000

    Add applets/slashapp/Makefile
    
    Mon Sep 28 12:31:00 1998  John Ellis  <johne@bellatlantic.net>
    
            * configure.in: Add applets/slashapp/Makefile

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit a5db568baa519307ed7cd987dfa492d446750f80
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sun Sep 27 21:04:54 1998 +0000

    Warn if some of the applets will not be built.
    
    * configure.in: Warn if some of the applets will not be built.

 ChangeLog    |  4 ++++
 configure.in | 28 ++++++++++++++++------------
 2 files changed, 20 insertions(+), 12 deletions(-)

commit 9857929bbd52e2377891a927d54e18561691fddb
Author: Michael Lausch <mila@src.gnome.org>
Date:   Sat Sep 26 23:18:56 1998 +0000

    Reworked the whole pager application.
    Now it uses a gnome_canvas.

 configure.in | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 3c8010405d9dccd99edd2fa4874c04abf0bfa35e
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Sep 24 22:33:22 1998 +0000

    updated spanish file

 po/es.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a55f317be551281c634c1e15b28ec0893c19bb27
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Thu Sep 24 04:32:38 1998 +0000

    Added some .cvsignores.
    
    * Added some .cvsignores.
    
    * Updated Portuguese translations.

 ChangeLog                                      |   15 +
 capplets/theme-switcher/theme-selector.desktop |    2 +
 po/pt.po                                       | 1436 +++++++++++++++---------
 3 files changed, 893 insertions(+), 560 deletions(-)

commit 2007e09506cfed3067557e9fd30ad3d4ff13131e
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Thu Sep 24 01:32:12 1998 +0000

    Sigh, more updates for 0.30 - Federico

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit 2941fc91d4db30ebe16dd14f60bfabfbc3906267
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Wed Sep 23 21:35:52 1998 +0000

    configure.in: Add 'capplets/screensaver-properties/Makefile' and
    
    
    
    configure.in: Add 'capplets/screensaver-properties/Makefile'
              and 'capplets/screensaver-properties/screensaver-desktops/Makefile'
              to AC_OUTPUT list.
    capplets/screensaver-properties/Makefile.am:
        Don't list "screensaver-properties.desktop".
    
    The rest: NFC

 configure.in | 2 ++
 1 file changed, 2 insertions(+)

commit ea4c73ec96d0561b1bc10b7325cc70671a48e56b
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Sep 23 16:44:05 1998 +0000

    added a README file...
    read it if you're interested in Capplets

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ccd16e1e62779bd04529a68fa1d735298d20886f
Author: Sebastian Wilhelmi <wilhelmi@ira.uka.de>
Date:   Wed Sep 23 14:51:43 1998 +0000

    quoted $FVWM_PAGER in test ! -z "$FVWM_PAGER"
    
    1998-09-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
    
        * configure.in (FVWM_PAGER): quoted $FVWM_PAGER in test ! -z
        "$FVWM_PAGER"

 ChangeLog    | 5 +++++
 configure.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 92102ebf0f2d8c4cc8ba3af56c07e566ae149eb5
Author: Michael Lausch <mila@src.gnome.org>
Date:   Wed Sep 23 13:49:36 1998 +0000

    Added Changelog entries for fvwm-pager.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 54d27d5a075729d39a15b53dbb573849c15a3f86
Author: Michael Lausch <mila@src.gnome.org>
Date:   Wed Sep 23 12:26:21 1998 +0000

    fvwm-pager added. See applets/fvwm-pager/README for details.
    
    fvwm-pager added.
    See applets/fvwm-pager/README for details.

 configure.in | 46 +++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 45 insertions(+), 1 deletion(-)

commit 359a24f020e42c4552874d1b9e93e1b86c1d0770
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Sep 23 05:29:43 1998 +0000

    An afternoon lost in make distchecking.  Ah well.  Life goes on - Federico

 ChangeLog      | 11 +++++++++++
 Makefile.am    |  5 +++--
 configure.in   |  3 ++-
 po/ChangeLog   |  8 ++++++++
 po/POTFILES.in |  5 -----
 5 files changed, 24 insertions(+), 8 deletions(-)

commit 724309cdfb53d004b51cbfc339883ab9433afbea
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Wed Sep 23 02:39:17 1998 +0000

    This will switch themes.  You need themes for it to compile so you
    need to edit the gnome-core/capplets/Makefile.am and
    gnome-core/configure.in to get this to compile.  If you do, it's
    pretty cool...

 capplets/theme-switcher/Makefile.am            |  29 ++
 capplets/theme-switcher/confdefs.h             |   4 +
 capplets/theme-switcher/config.h               |   8 +
 capplets/theme-switcher/da.h                   |  95 +++++
 capplets/theme-switcher/da.h-67648             |  95 +++++
 capplets/theme-switcher/demo.c                 | 135 +++++++
 capplets/theme-switcher/demo.c-45827           | 135 +++++++
 capplets/theme-switcher/file.c                 | 535 +++++++++++++++++++++++++
 capplets/theme-switcher/file.c-98078           | 535 +++++++++++++++++++++++++
 capplets/theme-switcher/globals.c              |  12 +
 capplets/theme-switcher/globals.c-53032        |  12 +
 capplets/theme-switcher/gui.c                  | 281 +++++++++++++
 capplets/theme-switcher/gui.c-6060             | 281 +++++++++++++
 capplets/theme-switcher/install.c              |  66 +++
 capplets/theme-switcher/install.c-64828        |  66 +++
 capplets/theme-switcher/lister.c               | 165 ++++++++
 capplets/theme-switcher/lister.c-42011         | 165 ++++++++
 capplets/theme-switcher/main.c                 |  18 +
 capplets/theme-switcher/signals.c              |  14 +
 capplets/theme-switcher/signals.c-20981        |  14 +
 capplets/theme-switcher/theme-selector.desktop |   6 +
 21 files changed, 2671 insertions(+)

commit 8196fea9a9f7e791faa96d9c6f1a0355650096c5
Author: Jaka Mocnik <jaka.mocnik@kiss.uni-lj.si>
Date:   Mon Sep 21 23:32:58 1998 +0000

    generate capplets/keyboard-properties/Makefile
    
    
    1998-09-22  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>
    
        * configure.in: generate capplets/keyboard-properties/Makefile

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 603d099eef5e48ff6310196ea449d156348896d5
Author: Jaka Mocnik <jaka.mocnik@kiss.uni-lj.si>
Date:   Mon Sep 21 23:32:04 1998 +0000

    added keyboard-properties to always_built_SUBDIRS
    
    
    1998-09-22  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>
    
        * Makefile.am: added keyboard-properties to always_built_SUBDIRS

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cc8b66bb01ff97d25f5a71313da91aafea9012b2
Author: Manish Vachharajani <mvachhar@src.gnome.org>
Date:   Mon Sep 21 01:32:45 1998 +0000

    Remove capplet/background-properties/Makefile from configure.in, dir isn't there

 configure.in | 1 -
 1 file changed, 1 deletion(-)

commit a9f10420334f17e9c981cde15094b3dd4978183a
Author: John Ellis <johne@bellatlantic.net>
Date:   Thu Sep 17 18:26:46 1998 +0000

    Removed conditional build of gmenu since gtk+-1.1 is now a requirement.
    
    Thu Sep 17 14:20:05 1998  John Ellis  <johne@bellatlantic.net>
    
            * configure.in, Makefile.am: Removed conditional build of gmenu since
            gtk+-1.1 is now a requirement.

 ChangeLog    |  5 +++++
 Makefile.am  | 10 +++-------
 configure.in |  6 ------
 3 files changed, 8 insertions(+), 13 deletions(-)

commit adb7ae7856a23e387e2cc38da504b5d84fd837af
Author: Ville Hautamaki <ville@src.gnome.org>
Date:   Tue Sep 15 12:24:29 1998 +0000

    Small translation update. Suggestions by Mika Ritola <foxtrot@sci.fi>
    
    
    Small translation update. Suggestions by Mika Ritola <foxtrot@sci.fi>
    
    Ville

 po/ChangeLog |  4 ++++
 po/fi.po     | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit 60ffeb221c4a51133bf3b1c34e3f6afcf3aa477a
Author: Alexandre Muniz <munizao@cyberhighway.net>
Date:   Fri Sep 11 21:32:02 1998 +0000

    entry for adding charpick stuff to configure.in
    
    1998-09-11  Alexandre Muniz  <munizao@cyberhighway.net>
        * ChangeLog: entry for adding charpick stuff to configure.in

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit 92521bda6a3d927238338c5683545a2b0c8d4c8f
Author: Alexandre Owen Muñiz <munizao@src.gnome.org>
Date:   Fri Sep 11 20:41:12 1998 +0000

    Added applets/charpick
    
    * configure.in (AC_OUTPUT): Added applets/charpick
    
    CVS:n (AC_OUTPUT): Added applets/charpick

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 87964942fd55135f44021583d3b0f752f0789b48
Author: Martin Baulig <martin@src.gnome.org>
Date:   Wed Sep 9 12:25:21 1998 +0000

    Added `HAVE_LIBGTOP_SMP'.

 acconfig.h | 3 +++
 1 file changed, 3 insertions(+)

commit f2df92314a08b4c799b1303d4691d18d15312cc9
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Sep 7 02:04:54 1998 +0000

    Remove unneeded variable.
    
    * capplets/Makefile.am (DIST_SUBDIRS): Remove unneeded variable.

 ChangeLog            | 4 ++++
 capplets/Makefile.am | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit f467242b23b873429fa8e3263212ac2d6f056313
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Sep 7 00:45:02 1998 +0000

    Toplevel: New check.
    
    Toplevel:
    * configure.in (GNOME_COMPILE_WARNINGS): New check.
    
    In applets/:
    * */Makefile.am: Removed CXXLINK hack.
    
    In panel/:
    * Makefile.am (xpanel): Comment out unused rule.

 ChangeLog    | 4 ++++
 configure.in | 2 ++
 2 files changed, 6 insertions(+)

commit fb3cb6a008b519ce5ffdce595689e9ea64ed9a6b
Author: Vincent Renardias <vincent@waw.com>
Date:   Sat Sep 5 19:21:34 1998 +0000

    - Updated some POTFILES.in's. - Updated fr.po's accordingly. - Corrected a
    
    1998-09-05  Vincent Renardias  <vincent@waw.com>
    
        * Weekly i18n updates:
          - Updated some POTFILES.in's.
          - Updated fr.po's accordingly.
          - Corrected a couple of typos. in the src code.

 po/POTFILES.in |   36 +-
 po/fr.po       | 1426 +++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 912 insertions(+), 550 deletions(-)

commit 993d9ef3e3874370938b18413ece6d7f4a09bed8
Author: George Lebl <jirka@5z.com>
Date:   Fri Sep 4 07:11:35 1998 +0000

    removed support for mico and related sources
    
    Fri Sep 04 00:07:08 1998  George Lebl  <jirka@5z.com>
    
            * configure.in,Makefile.am,po/POTFILES.in: removed support for
              mico and related sources
    
    Fri Sep 04 00:08:28 1998  George Lebl  <jirka@5z.com>
    
            * mico-*.(h|cc),applet-lib.cc: removed
    
            * orbit-glue.h: replaces mico-glue.h
    
            * Makefile.am: removed support for mico
    
    I hope I got all the automake stuff right ... but anyway .. mico support
    is out (it didn't really compile too well lately anyway, and it had bugs
    that had been fixed in the orbit files ... etc ... it wasn't worth
    maintaining) ... now it's much nicer ... and no more C++
    -George

 ChangeLog      |  5 +++++
 Makefile.am    |  9 ++++++---
 configure.in   | 58 ----------------------------------------------------------
 po/POTFILES.in |  4 ++--
 4 files changed, 13 insertions(+), 63 deletions(-)

commit 9dec6f07520de6468e4bece52490cb738ca33183
Author: George Lebl <jirka@5z.com>
Date:   Thu Sep 3 06:18:31 1998 +0000

    install tiles into a separate directory, we will want to browse this with
    
    Wed Sep 02 23:18:00 1998  George Lebl  <jirka@5z.com>
    
            * pixmaps/Makefile.am: install tiles into a separate directory,
              we will want to browse this with an icon browser and we only
              want tiles to show u

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit dccd2cadaf1cfa2ef9eacbefccebf41d5d1e9986
Author: Tristan Tarrant <ttarrant@src.gnome.org>
Date:   Tue Sep 1 11:34:49 1998 +0000

    More .cvsignore stuff.
    
    Tristan

 capplets/.cvsignore | 2 ++
 1 file changed, 2 insertions(+)

commit c937799798c2d920c6909498cfcb99ef79e4993e
Author: Radek Doulik <rodo@src.gnome.org>
Date:   Sun Aug 30 14:21:21 1998 +0000

    more czech translations by Adam Buble

 configure.in |    2 +-
 po/cs.po     | 1315 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1316 insertions(+), 1 deletion(-)

commit 1be649136db918fe0fd16483f0aa04e7a8ceb558
Author: Martin Baulig <martin@src.gnome.org>
Date:   Sun Aug 30 12:49:39 1998 +0000

    Added some LibGTop stuff.

 acconfig.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 780c0f0bbc14793bbd28d6a748d089687d9a0cff
Author: Christopher Blizzard <blizzard@appliedtheory.com>
Date:   Thu Aug 27 19:53:02 1998 +0000

    Add checks for seeing if libghttp is installed.
    
    1998-08-27  Christopher Blizzard  <blizzard@appliedtheory.com>
    
            * configure.in: Add checks for seeing if libghttp is installed.

 ChangeLog    | 4 ++++
 configure.in | 6 ++++++
 2 files changed, 10 insertions(+)

commit 766805f15f8f7698d5768a22be8d7e660b6e6f7c
Author: Marc Ewing <marc@src.gnome.org>
Date:   Thu Aug 27 03:02:43 1998 +0000

    Remove background-properties until it exists.
    
    -Marc

 capplets/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a560b3e5ab7434787ef430337d91114aa005a7ec
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Wed Aug 26 00:08:13 1998 +0000

    Updated Portuguese translation.

 po/pt.po | 93 ++++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 62 insertions(+), 31 deletions(-)

commit 3d95feaf7d48ffc54e40aea025f421d2f9561600
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Aug 25 22:14:30 1998 +0000

    added a capplets directory.
    These are used with the control-panel to view stuff.
    I'm only committing one capplet for now, but more will come soon (i hope.)
    note: these capplets aren't quite ready for prime-time.  In a few days they will
    be.

 Makefile.am          | 7 ++++---
 capplets/Makefile.am | 6 ++++++
 configure.in         | 4 ++++
 3 files changed, 14 insertions(+), 3 deletions(-)

commit abbab5a6a70365cb98574ac3e34e2a3be4eacd9d
Author: Michael Fulbright <drmike@src.gnome.org>
Date:   Mon Aug 24 22:40:28 1998 +0000

    Bah didnt realize CVS would make a commit message for each directory I
    added, even when you commit them all at once.
    
    Anyways, editted these files to have asclock applet built by default.
    
    Looks good, but its 64 pixels high. Someone needs to redo
    pixmaps so it fits in 48x48 perhaps.
    
    Also, it doesnt clean well with picky compiler options. But according to
    the author its a first cut.
    
    Dr Mike <msf@redhat.com>

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit e30f351220152cd4e9ec5431da85bec6d858bf0b
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Sun Aug 23 14:43:00 1998 +0000

    Removed. This check is no longer necessary since we now use libgtop for
    
    1998-08-23  Martin Baulig  <martin@home-of-linux.org>
    
        * configure.in (GNOME_FILEUTILS_CHECKS): Removed. This check
        is no longer necessary since we now use libgtop for the
        mountlist and fsusage stuff in the diskusage applet.
        * acconfig.h: Removed mountlist stuff.

 ChangeLog    |  5 ++++
 acconfig.h   | 78 ------------------------------------------------------------
 configure.in |  3 ---
 3 files changed, 5 insertions(+), 81 deletions(-)

commit 612865fb731960a447fc9dfab8cb17dac1e509c7
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Sun Aug 23 14:33:48 1998 +0000

    New check. Added libgtop stuff.
    
    1998-08-23  Martin Baulig  <martin@home-of-linux.org>
    
        * configure.in (GNOME_INIT_LIBGTOP): New check.
        * acconfig.h: Added libgtop stuff.

 ChangeLog    | 5 +++++
 acconfig.h   | 6 ++++++
 configure.in | 4 ++++
 3 files changed, 15 insertions(+)

commit 8bcbbdb50beb3ba126f742bced33ac95b4f242e5
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Fri Aug 21 18:17:49 1998 +0000

    Added Portuguese translations.
    
    * *.desktop: Added Portuguese translations.
    
    * po/pt.po: Updated.
    
    * applets/jbc/Makefile.in: Removed autogenerated file.
    
    * */.cvsignore: Added `Makefile.in' to ignored files.

 po/ChangeLog |   4 +
 po/pt.po     | 306 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 166 insertions(+), 144 deletions(-)

commit a46ba830e1043d95d8b180f4d7f5a46e5cae0949
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Fri Aug 21 04:26:44 1998 +0000

    Added gkb.
    
    
     Added gkb.

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 0626a172d69f3467ec9c2760511561796acbe562
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Aug 20 21:44:01 1998 +0000

    Make rule even more friendlier to a build without `DocBook'.
    
    * core-docs/Makefile.am (gnome-intro/gnome-intro.html):
    Make rule even more friendlier to a build without `DocBook'.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit fb75bca5c469eae8e5eb3688da36d2fd76eb24bb
Author: Tom Tromey <tromey@cygnus.com>
Date:   Thu Aug 20 06:58:40 1998 +0000

    Removed all smproxy code. Don't mention non-existent directory.
    
    Thu Aug 20 00:32:24 1998  Tom Tromey  <tromey@cygnus.com>
    
        * configure.in: Removed all smproxy code.
        Don't mention non-existent directory.

 ChangeLog    |  5 +++++
 configure.in | 28 ----------------------------
 2 files changed, 5 insertions(+), 28 deletions(-)

commit 2e6081152d1c7a10fe04262f98fae8a07c99d0f1
Author: Szabolcs Ban <bansz@src.gnome.org>
Date:   Thu Aug 20 06:44:18 1998 +0000

    *** empty log message ***

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit d5ea7d414f7fdf5c5f65dc8fea9bd7a92ca7d1a3
Author: Frank Belew (Myth) <frb@src.gnome.org>
Date:   Thu Aug 20 05:24:26 1998 +0000

    just some more \n fixes

 po/de.po | 4 ++--
 po/it.po | 4 ++--
 po/ja.po | 4 ++--
 po/ko.po | 4 ++--
 po/no.po | 4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

commit 7bbd01adad7f89b320a65e3965ff03b0070b5f42
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Wed Aug 19 16:55:35 1998 +0000

    Actually compile `control-center' if it is enabled.
    
    * Makefile.am (SUBDIRS): Actually compile `control-center' if
    it is enabled.
    (always_built_SUBDIRS): Reinstate `smproxy'.

 ChangeLog   |  6 ++++++
 Makefile.am | 10 +++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

commit 2f9e694af86c8cbfad6fe7618dae2b2d43e3481a
Author: Martin Baulig <martin@src.gnome.org>
Date:   Wed Aug 19 12:41:38 1998 +0000

    Fixed typo.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d34adddd4b4b7f6b988574aff9ee28e26ddf19b
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Wed Aug 19 12:38:23 1998 +0000

    Conditionally compiling `control-center' if we have ORBit.
    
    1998-08-19  Martin Baulig  <martin@home-of-linux.org>
    
        * Makefile.am: Conditionally compiling `control-center' if
        we have ORBit.

 ChangeLog   | 3 +++
 Makefile.am | 8 ++++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 0e514c8f775712b52316998dbf4447af131b87b1
Author: Martin Baulig <martin@src.gnome.org>
Date:   Wed Aug 19 12:18:26 1998 +0000

    Merged with `gnome-core.pot'.

 po/fr.po | 1037 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 528 insertions(+), 509 deletions(-)

commit 60cdaf072356790dd3d4ad3b99d79c0d185f2d2e
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Wed Aug 19 12:01:35 1998 +0000

    Merged with `gnome-core.pot'. Likewise. Likewise. Likewise. Likewise.
    
    1998-08-19  Martin Baulig  <martin@home-of-linux.org>
    
        * de.po: Merged with `gnome-core.pot'.
        * es.po: Likewise.
        * fr.po: Likewise.
        * ga.po: Likewise.
        * it.po: Likewise.
        * ko.po: Likewise.
        * no.po: Likewise.
        * pt.po: Likewise.
        * sv.po: Likewise.

 po/ChangeLog |   12 +
 po/de.po     |  914 ++++++++++------------
 po/es.po     |  138 ++--
 po/fi.po     | 2444 ++++++++++++++++++++++++++++++++++++++++++++++------------
 po/ga.po     |  862 ++++++++++-----------
 po/it.po     |  908 +++++++++++-----------
 po/ja.po     |  801 +++++++++----------
 po/ko.po     |  901 +++++++++++-----------
 po/no.po     |  915 +++++++++++-----------
 po/pt.po     |  233 +++---
 po/sv.po     |  839 +++++++++++---------
 11 files changed, 5139 insertions(+), 3828 deletions(-)

commit df3886f8da8c29483f0638d9602314e1a42da17f
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Wed Aug 19 12:00:01 1998 +0000

    Using $(always_built_SUBDIRS), $(sometimes_built_SUBDIRS) and correct
    
    1998-08-19  Martin Baulig  <martin@home-of-linux.org>
    
        * Makefile.am: Using $(always_built_SUBDIRS),
        $(sometimes_built_SUBDIRS) and correct $(DIST_SUBDIRS).

 ChangeLog   |  5 +++++
 Makefile.am | 12 +++++++++---
 2 files changed, 14 insertions(+), 3 deletions(-)

commit 5541d89c3ec4fbc2df9b7a2034f22361203972ac
Author: Martin Baulig <martin@src.gnome.org>
Date:   Wed Aug 19 09:48:43 1998 +0000

    Added `applets/winlist/Makefile' to the list of created Makefiles.

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 8b5f365586281a9240c884b62096c897db458b45
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Aug 18 23:15:08 1998 +0000

    updated spanish language file

 po/es.po | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

commit 254500bf9b782cb962f3d4963c14aa04b06d1db0
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Tue Aug 18 20:22:55 1998 +0000

    Updated spanish language file

 po/es.po | 566 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 341 insertions(+), 225 deletions(-)

commit 970cb0cd9ddcbce836628384ec0e225f1dacc14b
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Tue Aug 18 02:23:55 1998 +0000

    Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 419 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 222 insertions(+), 201 deletions(-)

commit bf9b12bc65fcd0dd71c337ae4c4152fb2b0288e5
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Mon Aug 17 19:38:00 1998 +0000

    Fixes for 0.28 - Federico

 ChangeLog      | 4 ++++
 configure.in   | 2 +-
 po/POTFILES.in | 5 -----
 3 files changed, 5 insertions(+), 6 deletions(-)

commit 3cbbbc4700455828b20c2efc2ce1a4d8adbd7abb
Author: Marc Ewing <marc@src.gnome.org>
Date:   Sat Aug 15 19:38:52 1998 +0000

    Added gnome-core.spec to EXTRA_DIST
    
    -Marc

 Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit e9c11f0e6b3fc9bff14c77c74ff3936922c800ad
Author: Martin Baulig <martin@home-of-linux.org>
Date:   Sat Aug 15 16:33:24 1998 +0000

    Removed spurious `--2fHTh5uZTiUOsy+g--' - has this file been corrupted ?
    
    1998-08-15  Martin Baulig  <martin@home-of-linux.org>
    
        * fi.po: Removed spurious `--2fHTh5uZTiUOsy+g--' - has this
        file been corrupted ?
    
    Sat Aug 15 10:14:38 1998  Tom Tromey  <tromey@cygnus.com>
    
        * sv.po: Removed spurious \n.
    
    1998-08-07  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.
    
    1998-08-04  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.
    
        * POTFILES.in: Added `desktop-properties/property-screensaver.cc'.
    
    1998-08-02  Raja R Harinath  <harinath@cs.umn.edu>
    
        * POTFILES.in: Remove applets/winlist/winlist.c,
        gemvt/getopt.c, help-browser/toc.c, help-browser/toc-man.c.
    
        * ja.po: Add `\n' to msgstr, to match msgid.
    
    1998-08-01  Raja R Harinath  <harinath@cs.umn.edu>
    
        * de.po: Merged with `gnome-core.pot'.
        * es.po: Likewise.
        * fr.po: Likewise.
        * ga.po: Likewise.
        * it.po: Likewise.
        * ko.po: Likewise.
        * no.po: Likewise.
        * pt.po: Likewise.
        * sv.po: Likewise.
    
    1998-07-25  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.
    
        * POTFILES.in: Added `panel/session.c' and organized it.
    
    1998-07-24  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.
    
        * POTFILES.in: Added `gmenu/dialogs.c', `gmenu/edit.c',
        `gmenu/gmenu.c', `gmenu/order.c' and `gmenu/tree.c'.
    
    1998-07-23  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * POTFILES.in: Added panel/applet.c
    
        * pt.po: Updated.
    
    Sun Jul 19 23:47:57 1998  Tom Tromey  <tromey@cygnus.com>
    
        * POTFILES.in: Added session-properties.c.
    
    1998-06-30  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * pt.po: Updated.
    
        * POTFILES.in: Added 'desktop-properties/app-ui.c',
        'desktop-properties/app-bell.c', 'desktop-properties/property-ui.c'
        and 'desktop-properties/property-bell.c'.
    
    
    1998-06-26  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
    
        * POTFILES.in: Added 'gnome-terminal/gnome-terminal.c'.
    
        * pt.po: New file.
    
    Thu Jun 11 23:38:18 1998  Tom Tromey  <tromey@cygnus.com>
    
        * it.po: Removed spurious \n.
    
    1998-06-04  Federico Mena Quintero  <federico@nuclecu.unam.mx>
    
        * POTFILES.in: Removed netwatch as it is not being compiled.
    
    Sun, 31 May 1998 20:37:24 +0200  Vincent Renardias  <vincent@waw.com>
    
        * fr.po: major update + corrected some typos.
    
    1998-05-23  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>
    
        * POTFILES.in: Added 'applets/netload/netload.c' and
        'applets/netload/properties.c'.
    
        * de.po: Updated German translation.
    
    1998-05-22  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>
    
        * POTFILES.in: Added 'applets/fish/fish.c' and
        'applets/clock/clock.c'.
    
        * de.po: Updated German translation.
    
    Wed Apr 29 14:46:00 1998  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * no.po: Updated Norwegian translation.
    
    Tue Mar 17 23:00:33 1998  George Lebl  <jirka@5z.com>
    
        * POTFILES.in: fixed the files after the applets move
    
    1998-03-13  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>
    
        * de.po: New file.
    
    Sat Mar  7 12:07:28 1998  Tom Tromey  <tromey@cygnus.com>
    
        * POTFILES.in: Added gsm/main.c and gsm/save-session.c.
    
    1998-03-04  Raja R Harinath  <harinath@cs.umn.edu>
    
        * POTFILES.in: Renamed panel/applet-lib.cc to
        panel/libapplet/applet-lib.cc.
    
    Tue, 24 Feb 1998 20:04:09 +0100  Vincent Renardias  <vincent@waw.com>
    
        * Added files to POTFILES.in:
        desktop-properties/{main,app-mouse,app-keyboard,app-background}.c
        panel/{panel_config_global,panel_config,menu,applet-lib}.{c,cc}
        panel/logout/logout.c
        * Updated fr.po consequently.
        * Added translations for desktop-links/*.directory
    
    Sun, 22 Feb 1998 18:27:32 +0100  Vincent Renardias  <vincent@waw.com>
    
        * fr.po: New file.
    
    Mon Feb 16 08:39:03 KST 1998  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
    
        * ko.po: New file.

 po/ChangeLog | 7 ++++++-
 po/fi.po     | 1 -
 2 files changed, 6 insertions(+), 2 deletions(-)

commit cf16439b87b20198717eaa45a868874f964f1b2e
Author: Tom Tromey <tromey@cygnus.com>
Date:   Sat Aug 15 16:19:08 1998 +0000

    *sv.po: Removed spurious \n.
    
    Sat Aug 15 10:14:38 1998  Tom Tromey  <tromey@cygnus.com>
    
        *sv.po: Removed spurious \n.

 po/ChangeLog | 4 ++++
 po/sv.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit edadee8a51343e340115edb6deae16c2076e8cc2
Author: Ville Hautamaki <ville@src.gnome.org>
Date:   Fri Aug 14 22:18:02 1998 +0000

    *** empty log message ***

 configure.in |   2 +-
 po/fi.po     | 819 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 820 insertions(+), 1 deletion(-)

commit ab8aecfad755774d3e8b7285fb7386b8d53fc541
Author: Martin Wahlen <mva@src.gnome.org>
Date:   Thu Aug 13 16:35:14 1998 +0000

    Updated sv.po
    
    
    Updated sv.po

 po/sv.po | 501 +++++++++++++++++++++++++--------------------------------------
 1 file changed, 194 insertions(+), 307 deletions(-)

commit 483d6078ceb5d4f7cd0568170f6a5048d9f74fa3
Author: Jonathan Blandford <jrb@src.gnome.org>
Date:   Tue Aug 11 03:18:37 1998 +0000

    added the beginnings of the control center.  This shouldn't do anything
    interesting on anyone elses computer but mine.  However, that will change
    tomorrow. (:

 Makefile.am  | 2 +-
 configure.in | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 52c032fad336563e0ff434aef876f013526b94f4
Author: Sebastian Wilhelmi <wilhelmi@src.gnome.org>
Date:   Fri Aug 7 06:51:23 1998 +0000

    forgotten '\n' again ...

 po/es.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 484b2ae46092b5c006e2fcf3a24e500b1e817af5
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Fri Aug 7 04:58:42 1998 +0000

    Updated Portuguese translation.
    Not finished (yet).

 po/ChangeLog |   4 +
 po/pt.po     | 430 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 290 insertions(+), 144 deletions(-)

commit e73a85b7f05b26495e2820d05bde00f092bbafac
Author: Pablo Saratxaga <pablo@src.gnome.org>
Date:   Thu Aug 6 21:49:17 1998 +0000

    Updated/added spanish menu descriptions and spanish language file

 po/POTFILES.in |   16 +
 po/es.po       | 1400 ++++++++++++++++++++++++++------------------------------
 2 files changed, 667 insertions(+), 749 deletions(-)

commit d629c525db7902ff28f80bfbdfb1e74a6b8f9b5d
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Aug 5 23:34:23 1998 +0000

    Remove smproxy until it does build properly

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 50671439143772bc262e7b989a0838e3ffdb85f7
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Aug 5 20:19:49 1998 +0000

    GNOME 0.25 -- drooling macaque

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b2e529dfb518ee11b5e779efa7dd9aff3db32ec4
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Tue Aug 4 01:36:21 1998 +0000

    Updated.
    
        * po/pt.po: Updated.
    
        * po/POTFILES.in: Added `desktop-properties/property-screensaver.cc'.
    
        * gmenu/gmenu.c (main): Marked string for translation.

 po/ChangeLog   |   6 +
 po/POTFILES.in |   1 +
 po/pt.po       | 408 ++++++++++++++++++++++-----------------------------------
 3 files changed, 161 insertions(+), 254 deletions(-)

commit b3719cea2d5e993139e9ccb03107423d01ce595d
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Aug 3 03:51:30 1998 +0000

    Add `gnome-intro.html'. (INTRO_EXTRA_DIST): Merge with EXTRA_DIST.
    
    * core-docs/Makefile.am (EXTRA_DIST): Add `gnome-intro.html'.
    (INTRO_EXTRA_DIST): Merge with EXTRA_DIST.
    
    Yay!
    `gnome-core' passed `make distcheck'.

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit 808292f29066821b556ac7d12ad0e2d713c8d03b
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Aug 3 03:50:43 1998 +0000

    Remove applets/winlist/winlist.c, gemvt/getopt.c, help-browser/toc.c,
    
    * POTFILES.in: Remove applets/winlist/winlist.c,
    gemvt/getopt.c, help-browser/toc.c, help-browser/toc-man.c.

 po/ChangeLog   | 5 +++--
 po/POTFILES.in | 2 --
 2 files changed, 3 insertions(+), 4 deletions(-)

commit c3f4a7b9bda2d695cb87e0da71936e01da91ca22
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Aug 3 01:23:36 1998 +0000

    Remove `applets/winlist/winlist.c', and `gemvt/getopt.c'. Add `\n' to
    
    * POTFILES.in: Remove `applets/winlist/winlist.c', and
    `gemvt/getopt.c'.
    * ja.po: Add `\n' to msgstr, to match msgid.

 po/ChangeLog   |    4 +-
 po/POTFILES.in |    1 -
 po/ja.po       | 2658 +++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 1858 insertions(+), 805 deletions(-)

commit 32f98ffef10b9aa2da2b8e03a7913f5286160f33
Author: Raja R Harinath <harinath@cs.umn.edu>
Date:   Sun Aug 2 23:22:03 1998 +0000

    Toplevel:
    1998-08-02  Raja R Harinath  <harinath@cs.umn.edu>
    
        * configure.in (PROGRAM_GMENU):
        Use AM_CONDITIONAL rather than AC_SUBST.
        (PROGRAMS_PANEL_{CDPLAYER,MIXER,MODEMLIGHTS}): Likewise.
        (AC_OUTPUT): Remove `applets/netwatch/Makefile'.
    
        * Makefile.am (gmenu): New var.
        (SUBDIRS): Use $(gmenu) instead of @PROGRAM_GMENU@.
    
    applets/:
    1998-08-02  Raja R Harinath  <harinath@cs.umn.edu>
    
        * Makefile.am (cdplayer,mixer,modemlights): New variables.
        (SUBDIRS): Use them, instead of @PROGRAMS_PANEL_*@.
    
    po/:
    1998-08-02  Raja R Harinath  <harinath@cs.umn.edu>
    
        * POTFILES.in: Remove `applets/winlist/winlist.c'.
    
    `make distcheck' nits.

 ChangeLog      |  10 +++++
 Makefile.am    |   6 ++-
 configure.in   |  23 +++++-----
 po/ChangeLog   |   4 ++
 po/POTFILES.in |   1 -
 po/de.po       | 127 +++++++++++++++++++++++++++++------------------------
 po/es.po       | 127 +++++++++++++++++++++++++++++------------------------
 po/fr.po       | 136 +++++++++++++++++++++++++++++++--------------------------
 po/ga.po       | 131 +++++++++++++++++++++++++++++-------------------------
 po/it.po       | 127 +++++++++++++++++++++++++++++------------------------
 po/ko.po       | 127 +++++++++++++++++++++++++++++------------------------
 po/no.po       | 127 +++++++++++++++++++++++++++++------------------------
 po/pt.po       | 130 +++++++++++++++++++++++++++++-------------------------
 po/sv.po       | 127 +++++++++++++++++++++++++++++------------------------
 14 files changed, 660 insertions(+), 543 deletions(-)

commit 39c56674da2e9f0aca8b6de199f0e83773cc9a07
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sun Aug 2 02:04:44 1998 +0000

    Merged with `gnome-core.pot'. Likewise. Likewise. Likewise. Likewise.
    
    * de.po: Merged with `gnome-core.pot'.
    * es.po: Likewise.
    * fr.po: Likewise.
    * ga.po: Likewise.
    * it.po: Likewise.
    * ko.po: Likewise.
    * no.po: Likewise.
    * pt.po: Likewise.
    * sv.po: Likewise.
    
    These were automatically `msgmerge'd when I was testing `make dist'.
    After a quick check, I'm convinced that this hasn't lost any
    translations, except those that wouldn't have been used anyway, since
    the corresponding msgid's don't exist any more.

 po/ChangeLog |   13 +-
 po/de.po     | 2759 +++++++++++++++++++++++++++++++++++++++-----------------
 po/es.po     | 2486 ++++++++++++++++++++++++++++++++++++++++----------
 po/fr.po     |   84 +-
 po/ga.po     | 2555 ++++++++++++++++++++++++++++++++++++++++++++--------
 po/it.po     | 2848 ++++++++++++++++++++++++++++++++++++++++------------------
 po/ko.po     | 2786 +++++++++++++++++++++++++++++++++++++++-----------------
 po/no.po     | 2782 +++++++++++++++++++++++++++++++++++++++-----------------
 po/pt.po     |  933 ++++++++++++++-----
 po/sv.po     | 2808 +++++++++++++++++++++++++++++++++++++++------------------
 10 files changed, 14694 insertions(+), 5360 deletions(-)

commit bd49552a94b44b2c8dbc61a1b0049a6792435b9d
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sun Aug 2 01:57:56 1998 +0000

    Use INSTALL_DATA in a for loop, don't install all at once.
    
    * core-docs/Makefile.am (install-data-local): Use INSTALL_DATA in
    a for loop, don't install all at once.
    (GNOME_INTRO_HTML_FILES): Remove $(srcdir) from names of files.
    (GNOME_INTRO_PICTURES): Likewise.
    (INTRO_EXTRA_DIST): Likewise.
    (GNOME_INTRO_GIFS): Likewise.
    (EXTRA_DIST): Likewise.
    
    Now `make dist' friendly.  Also, `make install' works for srcdir!=builddir.

 ChangeLog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 013748ac41290768e9dc8b6df57ffd73e6f8a13d
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sat Aug 1 03:27:26 1998 +0000

    Sat,  1 Aug 1998 05:24:40 +0200  [Vincent@waw.com]
    
    * It appeared that many po/POTFILES.in files were totally out of date...
    Updated those accordingly, and translated the new strings.
    
    NB: Does anyone would object to a modification of po/Makefile.in.in files to
    generate automatically the POTFILES.in's with a cmd like:
    grep '_(' `find . -name \*.\[chym\]` | cut -f 1 --delimiter ':'  | sed -e "s#^./##" |sort -u > po/POTFILES.in

 po/POTFILES.in |   36 +-
 po/fr.po       | 2589 +++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 1627 insertions(+), 998 deletions(-)

commit 0216a08991d046199b064b02b0121451b3897d1a
Author: Federico Mena Quintero <federico@nuclecu.unam.mx>
Date:   Fri Jul 31 20:41:52 1998 +0000

    Added Japanese translation.
    
    1998-07-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
    
        * configure.in (ALL_LINGUAS): Added Japanese translation.

 ChangeLog    |    4 +
 configure.in |    2 +-
 po/ja.po     | 1187 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 1192 insertions(+), 1 deletion(-)

commit 8ed4258218c895f9435b94883a79b3100815df9f
Author: Mark Galassi <rosalia@cygnus.com>
Date:   Wed Jul 29 04:25:15 1998 +0000

    regenerated the HTML using the latest DocBook tools; some filenames have
    
    1998-07-28  Mark Galassi  <rosalia@cygnus.com>
    
        * core-docs/gnome-intro/*.html: regenerated the HTML using the
        latest DocBook tools; some filenames have changed, and

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 5ef2a5048c089f97a49f94d20a548d614a8a8080
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Sat Jul 25 15:36:07 1998 +0000

    Added `panel/session.c' to POTFILES.in .
    Updated Portuguese translation.

 po/ChangeLog   |    6 +
 po/POTFILES.in |   71 +-
 po/pt.po       | 2386 +++++++++++++++++++++++++++++---------------------------
 3 files changed, 1257 insertions(+), 1206 deletions(-)

commit 5b5e9d292ef7b72a99bc185f08848aaeb3b0c68f
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Fri Jul 24 22:22:46 1998 +0000

    Internationalization work and Portuguese updates.

 po/ChangeLog   |   8 ++
 po/POTFILES.in |   6 ++
 po/pt.po       | 298 +++++++++++++++++++++++++++++++++++++++++++++------------
 3 files changed, 253 insertions(+), 59 deletions(-)

commit e3885c4e050bda37a466c2aba11809eb33026859
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Thu Jul 23 02:16:04 1998 +0000

    i18n'ed string in about dialog. Added panel/applet.c to POTFILES.in.
    Updated Portuguese translation.

 po/ChangeLog   |  2 ++
 po/POTFILES.in |  1 +
 po/pt.po       | 42 ++++++++++++++++++++++++++++++++++++++----
 3 files changed, 41 insertions(+), 4 deletions(-)

commit c69ee1cf2656a44d9b941ec5d8a55a05485b2c35
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Thu Jul 23 01:05:29 1998 +0000

    Updated Portuguese translations.

 po/ChangeLog |   4 +
 po/pt.po     | 570 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 317 insertions(+), 257 deletions(-)

commit ef895076d7e28868df8df3f3afa27157afe7c8ea
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Thu Jul 23 00:57:59 1998 +0000

    Removed generated files.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 0b764c094acc50c8a5d26d39457adeeb8ab98614
Author: Tom Tromey <tromey@cygnus.com>
Date:   Wed Jul 22 01:02:45 1998 +0000

    Removed. Don't define WINDOW_MANAGER, AC_SUBST it.
    
    Tue Jul 21 18:29:16 1998  Tom Tromey  <tromey@cygnus.com>
    
        * acconfig.h (WINDOW_MANAGER): Removed.
        * configure.in: Don't define WINDOW_MANAGER, AC_SUBST it.

 ChangeLog    | 5 +++++
 acconfig.h   | 3 ---
 configure.in | 6 +++++-
 3 files changed, 10 insertions(+), 4 deletions(-)

commit f453396a47124ee174d459d1597afec2adab1248
Author: Tom Tromey <tromey@cygnus.com>
Date:   Mon Jul 20 05:53:30 1998 +0000

    Added session-properties.c.
    
    Sun Jul 19 23:47:57 1998  Tom Tromey  <tromey@cygnus.com>
    
        * POTFILES.in: Added session-properties.c.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit 01fe1c82fd795389415d48d992951fb93bdebcf7
Author: John Ellis <johne@bellatlantic.net>
Date:   Sun Jul 19 07:41:38 1998 +0000

    variable PROGRAM_GMENU with a check for gtk/gtkctree.h which is in the
    
    Sun Jul 19 03:31:08 1998  John Ellis  <johne@bellatlantic.net>
    
            * configure.in: variable PROGRAM_GMENU with a check for
            gtk/gtkctree.h which is in the devel GTK.
            * Makefile.am: added above variable in the subdirs section, now
            gmenu is built/installed by default if the devel GTK is found.

 ChangeLog    | 7 +++++++
 Makefile.am  | 2 +-
 configure.in | 5 +++++
 3 files changed, 13 insertions(+), 1 deletion(-)

commit 432ab0f78c543a9256ac7b448165080a70c84865
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sun Jul 19 05:29:43 1998 +0000

    Use `STD_DEFINES' rather than `STD_CPP_DEFINES'. (ORB_LIBS): To replace
    
    * configure.in (SMPROXY_DEFS): Use `STD_DEFINES' rather than
    `STD_CPP_DEFINES'.
    (ORB_LIBS): To replace MICO_LIBS.
    (ORBIT_LIBS,MICO_LIBS): Don't subst.
    (ORBIT_CONFIG): Don't use `if [ .. ];', use `if test ..;'.
    
    * */Makefile.am: s/MICO_LIBS/ORB_LIBS/g.
    * panel/appletsConf.sh.h: Likewise.
    
    Note:
    Automake seems to generate buggy Makefiles for
    
        if FOO
        BAR = a \
                b \
                c
        endif
    
    I'll verify this and submit the test-case.

 ChangeLog    |   8 ++++
 configure.in | 139 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 80 insertions(+), 67 deletions(-)

commit 51082ab4534980ebd0eac3828afbfd27f0b2b867
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Sun Jul 19 00:54:31 1998 +0000

    Changes needed to get the panel to use ORBit.
    
    
    
    Changes needed to get the panel to use ORBit.
    
    Please let me know if this breaks compilation with MICO - I'm not fond of
    MICO but I don't want to destabilize the panel by requiring ORBit, just
    yet :) If you want to try it with ORBit, just install the latest glib &
    ORBit out of CVS.
    
    There is a bug if you try to remove an applet from the panel - ideas
    wanted.

 configure.in | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit b342c094dea98e314067031d36e05c7292b44069
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sat Jul 18 21:46:44 1998 +0000

    New check, based on AC_PATH_X11. Needed to get defines used in a X11 build
    
    * configure.in (SMPROXY_DEFS): New check, based on AC_PATH_X11.
    Needed to get defines used in a X11 build tree.

 ChangeLog    |  5 +++++
 configure.in | 26 ++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

commit ce99f91c5b6831adaacb66ad17e9380b121818f0
Author: Tom Tromey <tromey@cygnus.com>
Date:   Fri Jul 17 00:21:06 1998 +0000

    Added smproxy. Create smproxy/Makefile.
    
    Thu Jul 16 18:03:37 1998  Tom Tromey  <tromey@cygnus.com>
    
        * Makefile.am (SUBDIRS): Added smproxy.
        * configure.in: Create smproxy/Makefile.

 ChangeLog    | 5 +++++
 Makefile.am  | 2 +-
 configure.in | 1 +
 3 files changed, 7 insertions(+), 1 deletion(-)

commit c612cdcbebe6a680350c46927047a60cce30c8c2
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Thu Jul 16 13:01:37 1998 +0000

    Thu, 16 Jul 1998 14:52:19 +0200  [Vincent]
    
    * .FR translation updates...

 po/fr.po | 590 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 441 insertions(+), 149 deletions(-)

commit 620246c07c0cbc75e88fdc50d8d9e1f90ff4c1fd
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Jul 13 17:30:57 1998 +0000

    Stop searching as soon as a `mico-ld' is found. From Michael Lausch
    
    * configure.in (mico_prefix): Stop searching as soon as a
    `mico-ld' is found.  From Michael Lausch <mla@gams.co.at>.

 ChangeLog    | 5 +++++
 configure.in | 1 +
 2 files changed, 6 insertions(+)

commit 35ef17e3f7a44c6df2f680ef5fde825ac7326419
Author: Nat Friedman <nat@src.gnome.org>
Date:   Mon Jul 13 08:09:18 1998 +0000

    Added applets/battery/Makefile
    
    
    Added applets/battery/Makefile

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 4600e8c7941a96db7e62b122bda23af03fc736e1
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Thu Jul 9 00:09:34 1998 +0000

    George has made it all to easy to create panel applets.  To be
    consistent with that, the Gnome canvas makes it all to easy to create
    silly simple games.  So here is a "fifteen" game applet :-)
    
      Federico
    
    [Does anyone remember the game "The Incredible Machine"?  That would
    be extremely cool to write using the canvas...]

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit b983c5c8713b3b724eba7c413bd9f30b5dd9c7af
Author: Owen Taylor <otaylor@src.gnome.org>
Date:   Wed Jul 8 19:08:02 1998 +0000

    Changed Log

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit d9e92043524430af1a1f5b7fdbb05bad2f222e05
Author: Owen Taylor <otaylor@fresnel.labs.redhat.com>
Date:   Wed Jul 8 19:07:45 1998 +0000

    Fix shell syntax bug in case when MICO is not found.
    
    1998-07-08  Owen Taylor  <otaylor@fresnel.labs.redhat.com>
    
        * configure.in: Fix shell syntax bug in case when MICO
        is not found.

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5df09a6b1e52cb738b7a507a227db4a77cf1fb5f
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Tue Jun 30 13:10:17 1998 +0000

    Updated.
    
        * pt.po: Updated.
    
        * POTFILES.in: Added 'desktop-properties/app-ui.c',
        'desktop-properties/app-bell.c', 'desktop-properties/property-ui.c'
        and 'desktop-properties/property-bell.c'.

 po/ChangeLog   |  9 +++++++++
 po/POTFILES.in |  4 ++++
 po/pt.po       | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 3 files changed, 67 insertions(+), 5 deletions(-)

commit f6eb25e04bd34a100241974a9b9ef7fb1511fcef
Author: Nat Friedman <nat@src.gnome.org>
Date:   Mon Jun 29 06:18:19 1998 +0000

    One line change to properly set the $mico_prefix

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 814694dfd4879093dccef6983eb0fd386faa99e6
Author: Nuno Ferreira <nuno@src.gnome.org>
Date:   Fri Jun 26 22:50:20 1998 +0000

    Added 'gnome-terminal/gnome-terminal.c'.
    
        * POTFILES.in: Added 'gnome-terminal/gnome-terminal.c'.
    
        * Added Portuguese translation.

 ChangeLog      |    4 +
 configure.in   |    2 +-
 po/ChangeLog   |    6 +
 po/POTFILES.in |    1 +
 po/pt.po       | 1467 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 1479 insertions(+), 1 deletion(-)

commit fb73c951575a4797aa4abedc28c419638173c1e1
Author: Scott D Heavner <sdh@src.gnome.org>
Date:   Fri Jun 26 17:11:59 1998 +0000

    add config.h.in to ingnored files.

 .cvsignore | 1 +
 1 file changed, 1 insertion(+)

commit 4df4a3b1280fd87612c65162108d3d066c011c3d
Author: George Lebl <jirka@src.gnome.org>
Date:   Wed Jun 24 07:42:51 1998 +0000

    HA! I'm the only author ....
    
    add yourself so that I don't get too lonely there
    
    -George

 AUTHORS | 1 +
 1 file changed, 1 insertion(+)

commit e908e701d0b5c9f0783267d34cb4fe5a4a92b805
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Jun 22 23:25:56 1998 +0000

    Fix typo

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 875e8f6c012a7aed2ce76094fa294790ec2d7767
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Jun 22 23:22:25 1998 +0000

    Fix a couple of typos

 configure.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ce9af9b905e535c63ad6f37718d7bd6ccf91c7dc
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Mon Jun 22 22:40:20 1998 +0000

    Swedish translations

 configure.in |    2 +-
 po/sv.po     | 1236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1237 insertions(+), 1 deletion(-)

commit 6178f746fe615988fcd250da3273840a678bb88e
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Mon Jun 22 10:45:13 1998 +0000

    Mon, 22 Jun 1998 12:38:50 +0200  [Vincent]
    
    * .fr translation updates.

 po/fr.po | 178 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 97 insertions(+), 81 deletions(-)

commit 01678b1e40ca8c47aed3f4b6bfd3c0424a7e38ee
Author: Tom Tromey <tromey@cygnus.com>
Date:   Sat Jun 13 07:16:12 1998 +0000

    Ignore mkdir failures.
    
    Sat Jun 13 01:11:16 1998  Tom Tromey  <tromey@cygnus.com>
    
        * core-docs/Makefile.am (gnome-intro/book01.html): Ignore mkdir
        failures.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 835e6d654ded1e1f4b96acd27679d683ff932995
Author: Tom Tromey <tromey@cygnus.com>
Date:   Sat Jun 13 05:04:42 1998 +0000

    Look for mico-setup.sh in $mico_prefix/doc. Also, handle MICO 2.0.3
    
    Fri Jun 12 22:56:58 1998  Tom Tromey  <tromey@cygnus.com>
    
        * configure.in: Look for mico-setup.sh in $mico_prefix/doc.  Also,
        handle MICO 2.0.3 (still!).

 ChangeLog    |  5 +++++
 configure.in | 20 ++++++++++++++++----
 2 files changed, 21 insertions(+), 4 deletions(-)

commit 4fac700aae92031d77f3445b31758a27aa6000cf
Author: Tom Tromey <tromey@cygnus.com>
Date:   Fri Jun 12 05:42:54 1998 +0000

    Removed spurious \n.
    
    Thu Jun 11 23:38:18 1998  Tom Tromey  <tromey@cygnus.com>
    
        * it.po: Removed spurious \n.

 po/ChangeLog | 4 ++++
 po/it.po     | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit a7a14eb1c9840f58b44521c68a236b615d7de5c7
Author: John Ellis <johne@bellatlantic.net>
Date:   Fri Jun 12 01:40:26 1998 +0000

    removed in favor of Makefile.am could someone check Makefile.am?, automake
    
    1998-06-11  John Ellis  <johne@bellatlantic.net>
    
            * gmenu/Makefile: removed in favor of Makefile.am
            could someone check Makefile.am?, automake is new to me.

 ChangeLog    | 4 ++++
 configure.in | 1 +
 2 files changed, 5 insertions(+)

commit 75b951a45af4fe274124afeb1a90a75cee9a7e5e
Author: John Ellis <johne@bellatlantic.net>
Date:   Fri Jun 12 00:50:00 1998 +0000

    Checked in a gmenu, the GNOME menu editor, still needs a Makefile.am file
    
    1998-06-11  John Ellis  <johne@bellatlantic.net>
    
            * gmenu directory: Checked in a gmenu, the GNOME menu editor,
            still needs a Makefile.am file though.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit dfd642a5daf37d93ddc3a3b7ede351f259bbdd2e
Author: George Lebl <jirka@src.gnome.org>
Date:   Thu Jun 11 04:34:00 1998 +0000

    added -lbsd to the unwanted mico lib list since it doesn't seem to
    be needed and it messes up with redhat's glibc (from 5.0)
    -George

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 84e5d94e5c8781a52d489c08aedf98ee89c55991
Author: Manish Vachharajani <mvachhar@src.gnome.org>
Date:   Thu Jun 11 04:04:12 1998 +0000

    Make the panel compile again by including additional mico lib

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b98a671b8bbb19a31d20cb82f89931f6795ec303
Author: Owen Taylor <otaylor@gtk.org>
Date:   Wed Jun 10 15:48:25 1998 +0000

    Check for installed MICO version, and the libs it requires by using
    
    Wed Jun 10 11:34:52 1998  Owen Taylor  <otaylor@gtk.org>
    
        * configure.in acconfig.h: Check for installed MICO
          version, and the libs it requires by using mico-ld
          and mico-setup.sh.
    
          Add a HAVE_MICO_ORB_RUN macro to signal that we need
          to call orb->run(), as we do for mico-2.0.6 and later
    
    Wed Jun 10 11:41:11 1998  Owen Taylor  <otaylor@gtk.org>
    
        * */Makefile.am: Use MICO_LIBS variable from
          toplevel configure.in.
    
    Wed Jun 10 11:42:16 1998  Owen Taylor  <otaylor@gtk.org>
    
        * Makefile.am: Use MICO_LIBS variable from
          toplevel configure.in.
    
        * applet-lib.cc launcher-lib.cc mico-lib.cc. Call
          orb->run() at appropriate times when HAVE_MICO_ORB_RUN
          is defined.

 ChangeLog    |  9 +++++++++
 acconfig.h   |  6 ++++--
 configure.in | 44 ++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 57 insertions(+), 2 deletions(-)

commit 0498c6eed4c301a5e4b21355263de54392a66721
Author: Tristan Tarrant <ttarrant@src.gnome.org>
Date:   Wed Jun 10 14:56:58 1998 +0000

    Italian texts update.

 po/it.po | 805 +++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 574 insertions(+), 231 deletions(-)

commit 12b719a39eeccdc5d41c99faa070a0b6051ab35d
Author: Manish Vachharajani <mvachhar@src.gnome.org>
Date:   Wed Jun 10 14:41:14 1998 +0000

    Add HAVE_DEVGTK to acconfig.h

 acconfig.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 894a902eeeabe5de720d88a2e55966c7a5e49e27
Author: Gregory McLean <gregm@src.gnome.org>
Date:   Wed Jun 10 03:40:16 1998 +0000

    .cvsignore updates
    
    -- Greg

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit 6b9a96904cef9eb749ae35e2d0eff72dc4933b6e
Author: jim <jim@src.gnome.org>
Date:   Tue Jun 9 07:22:00 1998 +0000

    Added Debian packaging dir.
    
    
    Added Debian packaging dir.
    
     - Jim

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit e04aff30f8007cbae827c43f2f9b58d5daea9afc
Author: Stuart Parmenter <pavlov@src.gnome.org>
Date:   Sun Jun 7 19:07:20 1998 +0000

    guess we might as well make gnome-core work with gtk 1.1 as well
    -pav

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit f1d39c37fd03e1e4654a4c5c677098dacf7b19e3
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sun Jun 7 17:59:38 1998 +0000

    Sun,  7 Jun 1998 19:57:57 +0200  [Vincent]
    
    * gnome-core/po/fr.po: Updates.
    * mc/po/fr.po: Continuing to translate (~80% done)

 po/fr.po | 340 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 204 insertions(+), 136 deletions(-)

commit 6d33507447a48c6317fa457afd83280b0b08dbfd
Author: Mark Galassi <rosalia@cygnus.com>
Date:   Fri Jun 5 08:20:56 1998 +0000

    fixed it so that "make dist" will generate a reasonable distribution. Many
    
    1998-06-05  Mark Galassi  <rosalia@cygnus.com>
    
        * core-docs/Makefile.am: fixed it so that "make dist" will
        generate a reasonable distribution.  Many files were not listed in
        the EXTRAS, but I think they now are.

 ChangeLog | 6 ++++++
 1 file changed, 6 insertions(+)

commit c0cde0558f7b1dee8388608dec82686e759de938
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Fri Jun 5 04:41:40 1998 +0000

    More fixups - Federico

 po/POTFILES.in | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 6ba571722346f9fd33792266c7158c3877d797b5
Author: Federico Mena Quintero <federico@nuclecu.unam.mx>
Date:   Fri Jun 5 04:35:30 1998 +0000

    Removed netwatch as it is not being compiled.
    
    1998-06-04  Federico Mena Quintero  <federico@nuclecu.unam.mx>
    
        * POTFILES.in: Removed netwatch as it is not being compiled.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

commit c67d0c2cdeab0b259cc31db003d1520f54d35dae
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Fri Jun 5 01:47:42 1998 +0000

    0.13 -> 0.20

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 75c240f9ea0458a502370f6230bef8f5c72bd45a
Author: Robert Norris <srn@src.gnome.org>
Date:   Mon Jun 1 00:15:14 1998 +0000

    Added missing quote.
    
    
    Added missing quote.

 po/fr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 237c98911d9272b17cdd746a76ff5454994119e8
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sun May 31 19:58:19 1998 +0000

    Sun, 31 May 1998 21:57:08 +0200  [Vincent]
    
    * .fr translations updates.

 po/ChangeLog |   4 +
 po/fr.po     | 549 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 402 insertions(+), 151 deletions(-)

commit bb83ed4fc7686f88ba7def478b4eac2462ff24dc
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Sun May 31 15:01:32 1998 +0000

    Added Korean translations into *.desktop Updated Korean translated
    
    * Added Korean translations into *.desktop
    * Updated Korean translated message.

 po/ko.po | 1179 ++++++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 921 insertions(+), 258 deletions(-)

commit 4745b4f238d8ec9069860adfda766df8aaa42eed
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sat May 30 16:23:22 1998 +0000

    Automake conditional that always fails. This is used in some subdir
    
    * configure.in (FALSE): Automake conditional that always fails.
    This is used in some subdir Makefile.am tricks.

 ChangeLog    | 5 +++++
 configure.in | 3 +++
 2 files changed, 8 insertions(+)

commit 8fc8d9c31cbb7b9c4e426cc5ece41a3b1c158268
Author: Garrett Smith <gsmith@src.gnome.org>
Date:   Sat May 30 02:47:48 1998 +0000

    added a applet to control netscape with the remote interface.

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit d5190e6eb2c562bcb48112636662ccbc8d99ee1a
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Fri May 29 15:16:51 1998 +0000

    More translations etc. in gnome-core
    
    1998-05-29  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * More translations etc. in gnome-core

 po/no.po | 866 +++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 621 insertions(+), 245 deletions(-)

commit 4dca98be634147121d88e70ba06f1575059f966f
Author: gedit <gedit>
Date:   Wed May 27 17:55:37 1998 +0000

    woo! Dialer should compile now :)

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit adafb9c0e251a08f5cdf71f295e9d0f5c1dda511
Author: John Ellis <johne@bellatlantic.net>
Date:   Tue May 26 11:44:30 1998 +0000

    added PROGRAMS_PANEL_MODEMLIGHTS net/ppp_defs.h does not seem to exist on
    
    1998-05-26 John Ellis  <johne@bellatlantic.net>
    
        * configure.in, applets/Makefile.am: added
        PROGRAMS_PANEL_MODEMLIGHTS net/ppp_defs.h does not seem to
        exist on solaris.

 ChangeLog    | 5 +++++
 configure.in | 4 ++++
 2 files changed, 9 insertions(+)

commit 815ba9e9503bcddee4a47d881ab072ddbf827555
Author: John Ellis <johne@bellatlantic.net>
Date:   Mon May 25 20:20:40 1998 +0000

    drivemount and clockmail
    
    1998-05-25  John Ellis  <johne@bellatlantic.net>
    
        * added two new apps: drivemount and clockmail

 configure.in | 2 ++
 1 file changed, 2 insertions(+)

commit 9c34202d71d77c54c71319426b96d113efdb2b5d
Author: Max Watson <max@src.gnome.org>
Date:   Sun May 24 20:20:36 1998 +0000

    Added line to build applets/icewm-pager/Makefile

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 6bd660d8d401a1c2d912e7c46741007fddecd9de
Author: George Lebl <jirka@src.gnome.org>
Date:   Sat May 23 23:35:55 1998 +0000

    changed the applet files stuff
    -George

 po/POTFILES.in | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 2c58cdb19cf08bca17a677554ee6e043045686f4
Author: George Lebl <jirka@src.gnome.org>
Date:   Sat May 23 23:35:35 1998 +0000

    only build makefile in gen_util, not clock, printer nor mailcheck
    -George

 configure.in | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit e3fb641eb9a6901f9ad5947aa65af0411d79d0b4
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Sat May 23 10:37:36 1998 +0000

    Added 'applets/netload/netload.c' and 'applets/netload/properties.c'.
    
    * POTFILES.in: Added 'applets/netload/netload.c' and
    'applets/netload/properties.c'.
    * de.po: Updated German translation.

 po/ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit 5a270dc310da7e14416e3ff7ae7674fff5386993
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Sat May 23 10:37:12 1998 +0000

    Added 'applets/netload/netload.c' and 'applets/netload/properties.c'.
    
    * POTFILES.in: Added 'applets/netload/netload.c' and
    'applets/netload/properties.c'.

 po/POTFILES.in | 4 ++++
 1 file changed, 4 insertions(+)

commit 5234d3a081a793879db385b5339d2bb2660135ae
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Sat May 23 10:37:00 1998 +0000

    Updated German translation.
    
    * de.po: Updated German translation.

 po/de.po | 254 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 173 insertions(+), 81 deletions(-)

commit 8fee107e8bd2da28f032a843b9725384bcb42a3e
Author: Stuart Parmenter <pavlov@src.gnome.org>
Date:   Fri May 22 22:35:15 1998 +0000

    figured i'd commit a *working* configure.in
    
    guys, please try and make sure stuff at least compiles before you commit it ;)
    
    
    -pav

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 848962593ed4b48a21c33e521da3b4de2d71c567
Author: Martin Baulig <martin@src.gnome.org>
Date:   Fri May 22 17:19:50 1998 +0000

    *** empty log message ***

 ChangeLog | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit c57667c6ba942d051e3f314bd870b294ed80d258
Author: Martin Baulig <martin@src.gnome.org>
Date:   Fri May 22 17:15:47 1998 +0000

    added GNOME_FILEUTILS_CHECKS
    
    * configure.in: added GNOME_FILEUTILS_CHECKS

 configure.in | 2 ++
 1 file changed, 2 insertions(+)

commit 548525df5580cf112395585737d23011592fc444
Author: Martin Baulig <martin@src.gnome.org>
Date:   Fri May 22 17:14:54 1998 +0000

    New macros.
    
    * acconfig.h (AFS, MOUNTED_FREAD, MOUNTED_FREAD_FSTYP,
    MOUNTED_GETFSSTAT, MOUNTED_GETMNT, MOUNTED_GETMNTENT1,
    MOUNTED_GETMNTENT2, MOUNTED_GETMNTINFO, MOUNTED_LISTMNTENT,
    MOUNTED_VMOUNT, STAT_STATFS3_OSF1, STAT_READ_FILSYS,
    STAT_STATFS2_BSIZE, STAT_STATFS2_FSIZE, STAT_STATFS2_FS_DATA,
    STAT_STATFS4, STAT_STATVFS, STATFS_TRUNCATES_BLOCK_COUNTS):
    New macros.

 acconfig.h | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)

commit 4889201b0c4527574030ba8a182212cec7401311
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Fri May 22 16:36:23 1998 +0000

    Added 'applets/fish/fish.c' and 'applets/clock/clock.c'.
    
    * POTFILES.in: Added 'applets/fish/fish.c' and
    'applets/clock/clock.c'.
    
    * de.po: Updated German translation.

 po/ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit 8b554d0e764d0003a77cf95fe59d3954c98fe12f
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Fri May 22 16:35:38 1998 +0000

    Added 'applets/fish/fish.c' and 'applets/clock/clock.c'.
    
    * POTFILES.in: Added 'applets/fish/fish.c' and
    'applets/clock/clock.c'.

 po/POTFILES.in | 2 ++
 1 file changed, 2 insertions(+)

commit 7ea8c88dd7aa647b3e44bfd3fdb0fc8dd8346332
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Fri May 22 16:35:23 1998 +0000

    Updated German translation.
    
    * de.po: Updated German translation.

 po/de.po | 1030 +++++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 786 insertions(+), 244 deletions(-)

commit ba99e158c7b9143602cef512eb5c18b16bef40ba
Author: Havoc Pennington <hp@pobox.com>
Date:   Sun May 17 17:46:48 1998 +0000

    Removed auto-generated file netload/Makefile.in
    
    
    
    Removed auto-generated file netload/Makefile.in
    
    Sun May 17 12:44:46 1998  Havoc Pennington  <hp@pobox.com>
    
        * Imported modemlights applet, and added it to the Makefile.am

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 2a7ae365a95077f352b888a1ca520f8e19fbc952
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Sat May 16 01:11:49 1998 +0000

    Disable GemVt configuration -mig

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3101f1bcae4bc0ebc6b49bc1672c2b4fe7b25821
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Fri May 15 22:54:03 1998 +0000

    i18n changes to bussign
    
    
    
    i18n changes to bussign

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 6c9450b2aac86c09526839f29e80f32dc071f03c
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Thu May 14 13:37:57 1998 +0000

    Thu, 14 May 1998 15:33:07 +0200  [Vincent]
    
    * Yet another attempt to keep FR translations up to date...

 po/fr.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit bb5629da3ae676b905a57da0f5b41eda530082b5
Author: Christopher Blizzard <blizzard@src.gnome.org>
Date:   Thu May 14 01:50:43 1998 +0000

    Add the bussign to the build list.
    
    * Add the bussign to the build list.

 ChangeLog    | 5 +++++
 configure.in | 1 +
 2 files changed, 6 insertions(+)

commit 779393167654e257a27cb513eec6bf4c33cc15a6
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Wed May 13 21:00:08 1998 +0000

    Wed, 13 May 1998 22:59:15 +0200  [Vincent]
    
    * Translation updates.

 po/fr.po | 449 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 290 insertions(+), 159 deletions(-)

commit 4234f0a2c8501e384953564b2e89639e01e96f54
Author: Robert Norris <srn@src.gnome.org>
Date:   Fri May 8 06:21:35 1998 +0000

    Added netload.
    
    
    Added netload.

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 9f8a5961b85dfcf63b43acdb0950cb42e0def7c7
Author: George Lebl <jirka@src.gnome.org>
Date:   Fri May 8 03:09:49 1998 +0000

    ok .. try two of the commit .... fish applet going to
    applets dir and getting a new Amusements category ...
    -George

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 52dc218a30eff33def6eaec19b005e15a27d747e
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Thu May 7 17:43:47 1998 +0000

    More Irish

 configure.in |   2 +-
 po/ga.po     | 543 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 544 insertions(+), 1 deletion(-)

commit d5ea8e0095d9af976871ab66858cd5166f0a924c
Author: George Lebl <jirka@src.gnome.org>
Date:   Tue May 5 09:51:25 1998 +0000

    added the printer makefile so that the whole thing will build
    -George

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 3e9d8a3004d3717eb40165bb9143e6e1e4162e7d
Author: Mark Galassi <rosalia@cygnus.com>
Date:   Tue May 5 09:34:15 1998 +0000

    added a bit more to the panel; that's it for the Red Hat 5.1 release, I
    
    1998-05-05  Mark Galassi  <rosalia@cygnus.com>
    
        * core-docs/gnome-intro.sgml: added a bit more to the panel;
        that's it for the Red Hat 5.1 release, I guess.

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit 6229443fc0dece94601b1f163532665d4aef2cd2
Author: Mark Galassi <rosalia@cygnus.com>
Date:   Tue May 5 07:34:09 1998 +0000

    fixed little bug in installing help files.
    
    1998-05-05  Mark Galassi  <rosalia@cygnus.com>
    
        * core-docs/Makefile.am (install-data-local): fixed little bug in
        installing help files.

 ChangeLog | 3 +++
 1 file changed, 3 insertions(+)

commit 4b67555e3b9dd05e1d205e1dcc1ba5c33fe85dc7
Author: Mark Galassi <rosalia@cygnus.com>
Date:   Tue May 5 07:21:09 1998 +0000

    completed the GNOME intro; there are many omissions, but it seems OK. Now
    
    1998-05-05  Mark Galassi  <rosalia@cygnus.com>
    
        * core-docs/gnome-intro.sgml: completed the GNOME intro; there are
        many omissions, but it seems OK.  Now I have to proofread it a bit
        and add a mention of panel applets.  I also added all the
        generated HTML files for people who do not have the docbook tools
        installed (this sucks).
    
        * core-docs/Makefile.am: put core-docs under automake with some
        quickly hacked-up rules for the RH-5.1 release.  I will clean it
        up later; this seems to work and install gnome-intro in a way such
        that the help browser picks it up.
    
        * Makefile.am (SUBDIRS): added core-docs

 ChangeLog    | 15 +++++++++++++++
 Makefile.am  |  3 ++-
 configure.in |  1 +
 3 files changed, 18 insertions(+), 1 deletion(-)

commit 83fdec557c988246e94d19be065c43665363e95c
Author: Kjartan Maraas <kmaraas@fib.hl.no>
Date:   Mon May 4 10:40:02 1998 +0000

    Updated the translation (no) in gnome-core
    
    Mon May 04 12:35:31 1998  Kjartan Maraas  <kmaraas@fib.hl.no>
    
        * Updated the translation (no) in gnome-core

 po/no.po | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit a114f1852219e38592dec4c3af25af11f80cfd98
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Mon May 4 06:11:00 1998 +0000

    We dont use libutil anymore -mig

 acconfig.h   | 2 --
 configure.in | 7 -------
 2 files changed, 9 deletions(-)

commit 07087e23059e38ccb36721c23cc4d6c259309a36
Author: Tom Tromey <tromey@cygnus.com>
Date:   Mon May 4 04:58:31 1998 +0000

    New macro. Include UTIL_LIB check from gnome-libs.
    
    Sun May  3 22:43:59 1998  Tom Tromey  <tromey@cygnus.com>
    
        * acconfig.h (HAVE_FORKPTY): New macro.
        * configure.in: Include UTIL_LIB check from gnome-libs.

 ChangeLog    | 5 +++++
 acconfig.h   | 3 +++
 configure.in | 7 +++++++
 3 files changed, 15 insertions(+)

commit a515d045904f349b6038f155bfc8e70b5fb9b455
Author: Mark Galassi <rosalia@src.gnome.org>
Date:   Sun May 3 16:20:18 1998 +0000

    added beginnings of a gnome-intro manual

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit e6931ed318cba32d8020fb051fc9a29e0e607fed
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Thu Apr 30 22:07:23 1998 +0000

    Added gnome-terminal.dekstop file Various little fixes for the
    
    
    
    Added gnome-terminal.dekstop file
    Various little fixes for the panel/drop-image support.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b7376fa4c8c0cfd2467befa6c572902362ee53d7
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Wed Apr 29 13:01:09 1998 +0000

    Updated Changelog to reflect updated no.po <kmaraas@fib.hl.no>

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 986a79f097a2f46b3d7498975105d3ddb4a895ac
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   Wed Apr 29 12:27:37 1998 +0000

    Wed 29 Apr 14:22:00 1998 Kjartan Maraas <kmaraas@fib.hl.no>
    
    
    Wed 29 Apr 14:22:00 1998 Kjartan Maraas <kmaraas@fib.hl.no>
    
        * Updated the Norwegian translation.

 po/no.po | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit 3d444ed1e12ad39a6b7291980a9c93350e5d60c6
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Tue Apr 28 19:53:50 1998 +0000

    Dropped the crypt code as it was not protecting anything (only case we
    
    
    
    Dropped the crypt code as it was not protecting anything (only
    case we care about is local case).
    
    Gnome terminal should be working now correctly.
    
    Miguel.

 configure.in | 8 --------
 1 file changed, 8 deletions(-)

commit 1f93d7c82382e4a868cbed07e49cff2b111914ba
Author: Tristan Tarrant <ttarrant@src.gnome.org>
Date:   Tue Apr 28 12:43:23 1998 +0000

    Italian texts update - Tristan Tarrant

 po/it.po | 495 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 413 insertions(+), 82 deletions(-)

commit 8d44efbb55f4ba34f745e7daf91fa903c590454f
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Tue Apr 28 06:09:42 1998 +0000

    My first attempt at using the Zvt widget for the full-fledged GNOME
    
    
    
    My first attempt at using the Zvt widget for the full-fledged GNOME
    terminal.
    
    Miguel.

 Makefile.am  | 2 +-
 configure.in | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 228370748ab609615aac963784bf5dd88869a037
Author: EDT 1998 Gregory McLean <gregm@comstar.net>
Date:   Tue Apr 28 01:17:22 1998 +0000

    changed a couple of <icon>.xpm to <icon.png> as the xpm files for _thoose_
    
    Mon Apr 27 20:42:24 EDT 1998 Gregory McLean <gregm@comstar.net>
    
            * panel/menu.c : changed a couple of <icon>.xpm to <icon.png> as
              the xpm files for _thoose_ icons wern't there.

 ChangeLog | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 03ba69e7b27bb90b620b17861342b2638d0af4e2
Author: rhlabs <rhlabs>
Date:   Mon Apr 27 03:15:44 1998 +0000

    Added configuration for the new mixer applet
    
    Dr Mike <msf@redhat.com>

 configure.in | 7 +++++++
 1 file changed, 7 insertions(+)

commit a863f1540bfd8be57a06fc6ef82b413be7d1409e
Author: Tom Tromey <tromey@cygnus.com>
Date:   Sun Apr 26 22:33:49 1998 +0000

    New macro. Added --with-window-manager option.
    
    Sun Apr 26 01:05:51 1998  Tom Tromey  <tromey@cygnus.com>
    
        * acconfig.h (WINDOW_MANAGER): New macro.
        * configure.in: Added --with-window-manager option.

 ChangeLog    | 3 +++
 acconfig.h   | 3 +++
 configure.in | 5 +++++
 3 files changed, 11 insertions(+)

commit 41558a02798121690c639dc21092533555e08712
Author: Tom Tromey <tromey@cygnus.com>
Date:   Sun Apr 26 16:49:41 1998 +0000

    Unconditionally look for crypt.h.
    
    Sun Apr 26 01:05:51 1998  Tom Tromey  <tromey@cygnus.com>
    
        * configure.in: Unconditionally look for crypt.h.

 ChangeLog    | 4 ++++
 configure.in | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 99cbb093f67699becc33b092ea9893e5cbadb115
Author: EDT 1998 Gregory McLean <gregm@comstar.net>
Date:   Sun Apr 26 15:16:43 1998 +0000

    changed the AC_PROG_LEX -> AM_PROG_LEX though I couldn't find any lex
    
    Sun Apr 26 10:55:18 EDT 1998 Gregory McLean <gregm@comstar.net>
    
            * configure.in: changed the AC_PROG_LEX -> AM_PROG_LEX
              though I couldn't find any lex files that this is needed
              for. IIRC automake 1.2 supports this macro also.
        * applets/netwatch/netwatch.c: some work on getting it to work
          with the new applet_lib stuff.
        * applets/netwatch/netwatch-old.c: is the original code.

 ChangeLog    | 6 ++++++
 configure.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 973dba615433491e42ec46b8644a2325b1a8f0d9
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sat Apr 25 01:03:27 1998 +0000

    Sat, 25 Apr 1998 03:02:30 +0200  [Vincent]
    
    * fr.po files updated.

 po/fr.po | 228 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 115 insertions(+), 113 deletions(-)

commit f28b767807a26f63c47579721bb314f92306a1e2
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Fri Apr 24 23:44:39 1998 +0000

    Norwegian translation

 configure.in |   2 +-
 po/no.po     | 840 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 841 insertions(+), 1 deletion(-)

commit dbbc00f31b875014e444bad97dd60a7cada457ac
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Fri Apr 24 18:14:39 1998 +0000

    Configure for -lcrypt library.
    
    
    
    Configure for -lcrypt library.

 configure.in | 8 ++++++++
 1 file changed, 8 insertions(+)

commit be44a8c1df03ef872a845d24477c5789255572aa
Author: Radek Doulik <rodo@src.gnome.org>
Date:   Wed Apr 22 15:29:31 1998 +0000

    added cpumemusage
    
    Radek

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit abd768b22f6bdac74186d50248a35e5190af149d
Author: Tim P. Gerla <timg@src.gnome.org>
Date:   Tue Apr 21 07:00:51 1998 +0000

    Added applets/cpuload/Makefile to configure.in

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 2059d523301e3aa5a33772fec54fbce7280a8c13
Author: EDT 1998 Gregory McLean <gregm@comstar.net>
Date:   Sun Apr 19 13:42:11 1998 +0000

    updated to ignore generated files.
    
    Sun Apr 19 09:38:36 EDT 1998 Gregory McLean <gregm@comstar.net>
    
            * applets/*/.cvsignore: updated to ignore generated files.

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 401e94c56034e13328cacec5c7b823c1035e41a1
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sat Apr 18 00:01:50 1998 +0000

    Fri, 17 Apr 1998 23:48:12 +0200  [Vincent]
    
    Update the French translations a bit everywhere...
    
    Major changes for:
    * gnome-help (New)
    * ee (Much more complete translations plus fixed a typo in the original version ;)
    * ghex (New)
    * gncal (New)
    * mc (Updated, Added more translations, still needs work through)

 po/fr.po | 701 +++++++++++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 502 insertions(+), 199 deletions(-)

commit 0f2bbef0ff75cce6791bfb837a6030eac3dd308e
Author: rhlabs <rhlabs>
Date:   Thu Apr 16 18:08:51 1998 +0000

    Added es.po back
    
    Dr Mike <msf@redhat.com>

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7dc718243e9e0e52a8a3dc516fc70815e8c57efd
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Thu Apr 16 17:33:08 1998 +0000

    Missing file.
    
    
    Missing file.

 po/es.po | 815 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 815 insertions(+)

commit d4cef7b2de19912990c3ea4dfd2d7a4a8df3f9fe
Author: rhlabs <rhlabs>
Date:   Thu Apr 16 15:17:05 1998 +0000

    I think someone left out the po/es.po file, right now gnome-core won't
    build properly. I took es.po out of ALL_LINGUAS
    
    Dr Mike <msf@redhat.com>

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7b52d857326483457c680b807b9a44b6996efe77
Author: Miguel de Icaza <miguel@nuclecu.unam.mx>
Date:   Thu Apr 16 05:05:06 1998 +0000

    Spanish translation for gnome core +
    
    
    
    Spanish translation for gnome core +
    
    1998-04-15  Miguel de Icaza  <miguel@nuclecu.unam.mx>
    
        * history.c: i18n support.
        * gnome-helpwin.c: i18n support.
        * gnome-help-browser.c (configCallback): i18n support.
        * bookmarks.c (createBookmarksWindow): Add support for i18n

 configure.in   |  2 +-
 po/POTFILES.in | 15 +++++++++++++++
 2 files changed, 16 insertions(+), 1 deletion(-)

commit ea14991f706bdccbcd67ca9f44fc34aa95d6ef5a
Author: Tristan Tarrant <ttarrant@src.gnome.org>
Date:   Wed Apr 8 13:25:56 1998 +0000

    Updated Italian texts - Tristan Tarrant <ttarrant@suntlc.etnoteam.it>

 po/it.po | 371 ++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 239 insertions(+), 132 deletions(-)

commit 46dcdb2d3c4f519f9f9934de7230081880967c5a
Author: George Lebl <jirka@src.gnome.org>
Date:   Wed Mar 18 09:11:57 1998 +0000

    create a Makefile in applets/applets-dirs
    - George

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 2a8009e187e75ba9498975c593aad2b262e789c1
Author: George Lebl <jirka@5z.com>
Date:   Wed Mar 18 07:33:16 1998 +0000

    updated teh Makefiles being created
    
    Tue Mar 17 23:26:47 1998  George Lebl  <jirka@5z.com>
    
            * configure.in: updated teh Makefiles being created
    
            * Makefile.am: build in applets
    
            * applets/Makefile.am: build clock
    
    Tue Mar 17 23:27:31 1998  George Lebl  <jirka@5z.com>
    
            * clock/clock.c: updated to the corba clock.c
    
    Tue Mar 17 23:22:50 1998  George Lebl  <jirka@5z.com>
    
            * clock.c: removed, clock is now in ../applets/clock/
    
    Tue Mar 17 23:30:04 1998  George Lebl  <jirka@5z.com>
    
            * gtkplug.[ch], gtksocket.[ch]: removed from panel, they
              are in libgnomeui now
    
    I think I forgot to commit a few changes .. so a big lump comming up :)
    
    (btw why does cvs -z9 commit in the root of gnome-core find stuff
    that I didn't touch???)
    
    -George

 ChangeLog    |  8 ++++++++
 Makefile.am  |  3 ++-
 configure.in | 11 ++++++-----
 3 files changed, 16 insertions(+), 6 deletions(-)

commit f47ab8ad3388de3f682c58c5b96238d4fb47ece2
Author: George Lebl <jirka@5z.com>
Date:   Wed Mar 18 07:08:29 1998 +0000

    fixed the files after the applets move
    
    Tue Mar 17 23:00:33 1998  George Lebl  <jirka@5z.com>
    
            * POTFILES.in: fixed the files after the applets move

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 9ae7a15243c86da8a80b5751b3fcaf1be7743b99
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Tue Mar 17 09:30:50 1998 +0000

    Updated translation.

 po/ko.po | 337 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 233 insertions(+), 104 deletions(-)

commit 7fc418d39b6c71c0541b32da6a4133818ae3c94f
Author: George Lebl <jirka@5z.com>
Date:   Sun Mar 15 04:23:57 1998 +0000

    added a Launcher interface, but didn't do anything with it yet.
    
    Sat Mar 14 20:21:31 1998  George Lebl  <jirka@5z.com>
    
            * gnome-panel.idl, launcher-lib.(cc|h): added a Launcher
              interface, but didn't do anything with it yet.

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit b566e5edee35d3dbf38d6d5e0e2e6f684b8de40a
Author: George Lebl <jirka@5z.com>
Date:   Fri Mar 13 21:46:38 1998 +0000

    fixed some FIXME's and added some sanity checks
    
    Fri Mar 13 13:44:40 1998  George Lebl  <jirka@5z.com>
    
            * panel.c,clock.c: fixed some FIXME's and added some
              sanity checks

 ChangeLog | 5 +++++
 1 file changed, 5 insertions(+)

commit b02c3daa2b808d4de16e974b90fdc10641b31ade
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Fri Mar 13 16:56:39 1998 +0000

    Added German translation.
    
    * configure.in (ALL_LINGUAS): Added German translation.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3a7d355d250d78a0d6b6eb1faaa5b240706772c0
Author: Carsten Schaar <carsten@src.gnome.org>
Date:   Fri Mar 13 16:56:00 1998 +0000

    New file.
    
    * de.po: New file.

 po/ChangeLog |   4 +
 po/de.po     | 541 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 545 insertions(+)

commit e9bf25691374888ab10f06a0b5d245dd0a72eb0e
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Fri Mar 13 07:31:35 1998 +0000

    New check for `inet_aton'.
    
    * configure.in (RES_LIBS): New check for `inet_aton'.
    
    - Hari

 ChangeLog    |  4 ++++
 configure.in | 12 ++++++++++++
 2 files changed, 16 insertions(+)

commit 48e370dc91f6e2315759fd88edf56f1d99a79337
Author: Tom Tromey <tromey@cygnus.com>
Date:   Wed Mar 11 05:35:32 1998 +0000

    Removed. Don't create stamp.h.
    
    Tue Mar 10 22:33:39 1998  Tom Tromey  <tromey@cygnus.com>
    
        * stamp.h.in: Removed.
        * configure.in: Don't create stamp.h.

 ChangeLog    | 5 +++++
 configure.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 988a25e42d01f4a84602be364c9f71c7147680b1
Author: Tom Tromey <tromey@cygnus.com>
Date:   Mon Mar 9 04:54:23 1998 +0000

    Removed. Don't create version.h.
    
    Sun Mar  8 21:41:18 1998  Tom Tromey  <tromey@cygnus.com>
    
        * version.h.in: Removed.
        * configure.in: Don't create version.h.

 ChangeLog    | 5 +++++
 configure.in | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b9e431b156595a3a5fc1935f56e1df119c130705
Author: Tom Tromey <tromey@cygnus.com>
Date:   Mon Mar 9 02:44:00 1998 +0000

    Added gsm/main.c and gsm/save-session.c.
    
    Sat Mar  7 12:07:28 1998  Tom Tromey  <tromey@cygnus.com>
    
        * POTFILES.in: Added gsm/main.c and gsm/save-session.c.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 2 ++
 2 files changed, 6 insertions(+)

commit c3c8d58e6d08e040f3c608fa1dcf2ab43ca75a1e
Author: George Lebl <jirka@src.gnome.org>
Date:   Thu Mar 5 07:37:55 1998 +0000

    updates to reflect the current panel tree - George

 po/POTFILES.in | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 52e7fa2e35f0875fad32782ab89c08200147b42a
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Wed Mar 4 23:12:36 1998 +0000

    remove a few extra makefile listings

 configure.in | 4 ----
 1 file changed, 4 deletions(-)

commit 21475b576a77b7612ce0c99998c06795d841b6b9
Author: Tom Tromey <tromey@cygnus.com>
Date:   Wed Mar 4 08:29:14 1998 +0000

    Added.
    
    Wed Mar  4 01:18:19 1998  Tom Tromey  <tromey@cygnus.com>
    
        * acconfig.h (HAVE_PROGRAM_INVOCATION_SHORT_NAME,
        HAVE_PROGRAM_INVOCATION_NAME): Added.

 ChangeLog  | 5 +++++
 acconfig.h | 2 ++
 2 files changed, 7 insertions(+)

commit 23bf33d88e81c37e2300ac5945cf59d82953ec83
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Wed Mar 4 06:18:17 1998 +0000

    libapplet changes

 po/ChangeLog   | 5 +++++
 po/POTFILES.in | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 21ad4cefa413b584805082a34a81522c6216d378
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Wed Mar 4 06:16:25 1998 +0000

    Add `panel/libapplet/Makefile'.
    
    * configure.in (AC_OUTPUT): Add `panel/libapplet/Makefile'.
    
    - Hari

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 2e772bffd0fa3b63192d8519058fd0384d243763
Author: Tom Tromey <tromey@cygnus.com>
Date:   Mon Mar 2 22:35:56 1998 +0000

    Removed check for SMlib.h; now comes from gnome-x-checks.m4.
    
    Mon Mar  2 15:30:00 1998  Tom Tromey  <tromey@cygnus.com>
    
        * configure.in: Removed check for SMlib.h; now comes from
        gnome-x-checks.m4.

 ChangeLog    | 5 +++++
 configure.in | 6 +-----
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 6883759be942d61dfac6d4be93c0ca3cc98b15e6
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sat Feb 28 19:09:00 1998 +0000

    Sat, 28 Feb 1998 20:07:19 +0100  [Vincent]
    
    * Updated existing fr.po files, corrected some typos.

 po/fr.po | 48 ++++++++++++++++++++++++------------------------
 1 file changed, 24 insertions(+), 24 deletions(-)

commit b1cf5257044903e5f73d2a90a53c4255418f78e2
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Feb 26 21:14:55 1998 +0000

    Make the check for SMlib.h work better with the checks that happen in
    
    * configure.in: Make the check for SMlib.h work better with the
    checks that happen in macros/gnome-x-checks.m4.
    
    - Hari

 ChangeLog    | 5 +++++
 configure.in | 8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

commit 83c51aa6b7293ee11e249abb7bea7c242db58078
Author: Tom Tromey <tromey@cygnus.com>
Date:   Thu Feb 26 19:45:07 1998 +0000

    Check for X11/SM/SMlib.h.
    
    Thu Feb 26 12:37:07 1998  Tom Tromey  <tromey@cygnus.com>
    
        * configure.in: Check for X11/SM/SMlib.h.

 ChangeLog    | 4 ++++
 configure.in | 4 ++++
 2 files changed, 8 insertions(+)

commit beb50fc5c50c7b2ba90497c352b5ce48510a346a
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Feb 26 01:51:28 1998 +0000

    Misc. fixes  -- Hari

 Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7af9c6f6d3e1ba04e17e20a4165c80dc63de480f
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Feb 26 00:57:09 1998 +0000

    Remove duplicated entry for `panel/batmon/Makefile'.
    
    * configure.in (AC_OUTPUT): Remove duplicated entry for
    `panel/batmon/Makefile'.
    
    - Hari

 ChangeLog    | 5 +++++
 configure.in | 1 -
 2 files changed, 5 insertions(+), 1 deletion(-)

commit e8ca46aa517930c994d5f85d041c1b17426abacd
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Wed Feb 25 19:28:46 1998 +0000

    Wed, 25 Feb 1998 20:26:22 +0100  [Vincent]
    
    - Added missing it.po in configure.in (ALL_LINGUAS)

 configure.in | 2 +-
 po/fr.po     | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 08836b3419ad35bc6a5dda6e3f7c727482b05da7
Author: Tim Janik <timj@src.gnome.org>
Date:   Wed Feb 25 13:54:11 1998 +0000

    yeppers, initial gemvt import, finally!
    this is much a work in progress, it compiles and
    runs a shell, but that's it currently.

 Makefile.am  | 4 ++--
 configure.in | 7 +++++++
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 4e51e3cb8bb881166c88bf80c2f030c12afd6af1
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Tue Feb 24 19:44:28 1998 +0000

    Tue, 24 Feb 1998 20:04:09 +0100  Vincent Renardias  <vincent@waw.com>
    
            * Added files to POTFILES.in:
            desktop-properties/{main,app-mouse,app-keyboard,app-background}.c
            panel/{panel_config_global,panel_config,menu,applet-lib}.{c,cc}
            panel/logout/logout.c
            * Updated fr.po consequently.
            * Added translations for desktop-links/*.directory

 po/ChangeLog   |   9 ++
 po/POTFILES.in |  10 ++
 po/fr.po       | 290 ++++++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 226 insertions(+), 83 deletions(-)

commit d38405c92426921596dfa0010a894122d99bf64b
Author: rhlabs <rhlabs>
Date:   Mon Feb 23 19:05:48 1998 +0000

    Added gnome-info2html entry
    
    Dr Mike <msf@redhat.com>

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 851a347e0bf2a5f51d279e99918aa5ecc4966a11
Author: Tristan Tarrant <ttarrant@src.gnome.org>
Date:   Mon Feb 23 13:37:22 1998 +0000

    Italian texts - Tristan Tarrant <ttarrant@suntlc.etnoteam.it>

 po/it.po | 415 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 415 insertions(+)

commit 863416e251de698f7aa2084c17f6997fe955132a
Author: Vincent Renardias <vinc@src.gnome.org>
Date:   Sun Feb 22 17:28:54 1998 +0000

    Added French translations...

 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/fr.po     | 430 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 435 insertions(+), 1 deletion(-)

commit 312a61cac41edcb3d4c21697edb6bcfda655c82c
Author: rhlabs <rhlabs>
Date:   Fri Feb 20 20:51:18 1998 +0000

    Added help-browser/gnome-man2html to dirs to get built

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 86b0a75c1906bfef174886b8c9b4f0c1f1fa899e
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Mon Feb 16 23:41:12 1998 +0000

    Remove traces of `ac_gnome.m4'

 acinclude.m4 | 1 -
 1 file changed, 1 deletion(-)

commit b6c87c8163f6cedd2ba8a74b872e880fb2e62933
Author: Changwoo Ryu <cwryu@src.gnome.org>
Date:   Mon Feb 16 00:15:04 1998 +0000

    Added Korean translations.
    And some ".cvsignore"'s.

 .cvsignore    |   3 +
 configure.in  |   2 +-
 po/.cvsignore |   1 +
 po/ChangeLog  |   4 +
 po/ko.po      | 429 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 438 insertions(+), 1 deletion(-)

commit 25078f297b516b129119a46cfc657992c7218a1c
Author: Tom Tromey <tromey@cygnus.com>
Date:   Sat Feb 14 08:44:23 1998 +0000

    Use tab in rule, not space.
    
    Sat Feb 14 01:31:21 1998  Tom Tromey  <tromey@cygnus.com>
    
        * Makefile.am (macros/macros.dep): Use tab in rule, not space.
    
        * configure.in: Run AC_LINK_FILES for gettext.

 ChangeLog    | 6 ++++++
 Makefile.am  | 2 +-
 configure.in | 2 ++
 3 files changed, 9 insertions(+), 1 deletion(-)

commit 7e06af132f173dc86397cecd02cf962421ad3612
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sat Feb 14 06:08:15 1998 +0000

    update .cvsignore.

 po/.cvsignore | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 9f72873211c1f05743f0747da09e5bbfbeaedfb6
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Sat Feb 14 06:06:56 1998 +0000

    Add new check. (AC_OUTPUT): Also generate `macros/Makefile'.
    
    * configure.in (GNOME_X_CHECKS): Add new check.
    (AC_OUTPUT): Also generate `macros/Makefile'.
    
    * Makefile.am (macros/macros.dep): Maintainer rule to
    auto-regenerate aclocal.m4.
    (SUBDIRS): Add `macros'.
    
    * help-browser/gnome-helpwin.c (gnome_helpwin_load): Replace
    `snprintf' with `g_snprintf'.

 ChangeLog    | 19 ++++++++++++++
 Makefile.am  |  9 +++++--
 acconfig.h   |  1 +
 autogen.sh   | 84 +++---------------------------------------------------------
 configure.in |  3 +++
 5 files changed, 33 insertions(+), 83 deletions(-)

commit 7a5721aaca658c55b9d0f3db01f3623b57de936c
Author: rhlabs <rhlabs>
Date:   Fri Feb 13 23:35:03 1998 +0000

    Added rule to make help-browser Makefile
    
    Dr Mike <msf@redhat.com>

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit 221945fac311ae9574b4da67977a348a00630b9e
Author: rhlabs <rhlabs>
Date:   Fri Feb 13 23:34:05 1998 +0000

    Added the help-browser directory to master list of SUBDIRS
    
    Dr Mike <msf@redhat.com>

 Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 4d3c21f4d25c499f9675397fece84eb1e83888e1
Author: Raja R Harinath <harinath@src.gnome.org>
Date:   Thu Feb 12 00:11:49 1998 +0000

    Use AM_ACLOCAL_INCLUDE

 configure.in | 2 ++
 1 file changed, 2 insertions(+)

commit e73ee0a9968f512b46c119fc75cb4b8895088045
Author: Elliot Lee <sopwith@src.gnome.org>
Date:   Wed Feb 11 22:22:32 1998 +0000

    misc fixes

 autogen.sh   | 11 +++++++++--
 configure.in |  9 +++++++++
 2 files changed, 18 insertions(+), 2 deletions(-)

commit db2c4096177076206846c0933be85d40963b6b72
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Feb 11 05:22:02 1998 +0000

    GnomeCore -- more fixes

 configure.in | 2 ++
 1 file changed, 2 insertions(+)

commit 41d2bc8543bcfab92934aa96b95d41abcaf2806d
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Feb 11 02:12:07 1998 +0000

    gnome-core potfiles

 po/Makefile.in.in | 247 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/POTFILES.in    |  10 +++
 2 files changed, 257 insertions(+)

commit 8b30e0acc7753d1b56954995f1c7e0026d7df33a
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Feb 11 02:11:24 1998 +0000

    Misc setup changes

 autogen.sh   | 1 +
 configure.in | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit eaadabbef337ab16596e16706f627e1551045935
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Wed Feb 11 01:39:34 1998 +0000

    Gnome Core updates

 .cvsignore    | 20 ++++++++++++++++++++
 Makefile.am   |  2 +-
 NEWS          |  1 +
 autogen.sh    |  6 +++++-
 configure.in  | 12 +-----------
 po/.cvsignore |  7 +++++++
 6 files changed, 35 insertions(+), 13 deletions(-)

commit 3c03b47392098da82a675d968629c4d62da49619
Author: Arturo Espinosa <unammx@src.gnome.org>
Date:   Tue Feb 10 21:22:12 1998 +0000

    Gnome CORE module is ready

 Makefile.am  |   1 +
 README       |   4 +
 acconfig.h   |   7 ++
 acinclude.m4 | 390 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 autogen.sh   |  83 +++++++++++++
 configure.in |  69 +++++++++++
 6 files changed, 554 insertions(+)

Generated by dwww version 1.15 on Sun Jun 23 05:09:34 CEST 2024.